ERC-721
Overview
Max Total Supply
0 NAME
Holders
2,800
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 NAMELoading...
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:
GigaNameNFT
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/utils/Strings.sol"; import {GameNFT} from "../gamenft/GameNFT.sol"; import {NAME_CID, ETH_MINT_PRICE_CID, IS_GIGA_NAME_CID, ID_CID, INITIALIZED_CID, ADDRESS_CID} from "../../constants/ColumnConstants.sol"; import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, MANAGER_ROLE} from "../../constants/RoleConstants.sol"; import { IGigaNameNFT, ID } from "./IGigaNameNFT.sol"; import {DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; /** @title GigaName NFTs on L2 */ contract GigaNameNFT is GameNFT, IGigaNameNFT { using Strings for uint256; // 0 max supply = infinite uint256 constant MAX_SUPPLY = 0; /** SETUP */ constructor(address gameRegistryAddress, address royaltyRecipient, uint96 feeNumerator) GameNFT(MAX_SUPPLY, "NAME", "NAME", "Name #", gameRegistryAddress, ID, royaltyRecipient, feeNumerator) {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("GigaNameNFT", ID); _initialize(); } function validateUsername(string memory username) public pure returns (bool) { bytes memory usernameBytes = bytes(username); // Check length if (usernameBytes.length < 4 || usernameBytes.length > 15) { return false; } // Check first character is not underscore if (usernameBytes[0] == '_') { return false; } // Check each character for (uint i = 0; i < usernameBytes.length; i++) { bytes1 char = usernameBytes[i]; if (!( (char >= 'a' && char <= 'z') || (char >= '0' && char <= '9') || char == '_' )) { return false; } } return true; } function mintByManager(address to, string memory username) external onlyRole(MANAGER_ROLE) { _confirmMint(to, username); } function mintUsernameByMinterContract(address to, string memory username, bytes memory signature) external onlyRole(MINTER_ROLE) returns (uint256) { return _confirmMintWithSignature(to, username, signature); } function mintUsername(address to, string memory username, bytes memory signature) external payable { uint256 price = getMintPrice(); require(price > 0, "Mint price not set"); require(msg.value >= price, "Insufficient payment"); _confirmMintWithSignature(to, username, signature); uint256 excess = msg.value - price; if (excess > 0) { (bool success, ) = payable(msg.sender).call{value: excess}(""); require(success, "Failed to return excess ETH"); } } function setMintPrice(uint256 price) external onlyRole(MANAGER_ROLE) { _setTableUint256Value(ETH_MINT_PRICE_CID, price); } function getMintPrice() public view returns (uint256) { return getTableUint256Value(ETH_MINT_PRICE_CID); } /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param id Id of the token to burn */ function burnByGameContract( uint256 id ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _burn(id); } /** Initializes traits for the given tokenId */ function _initializeTraits(uint256 tokenId, string memory username) internal { require(validateUsername(username), "Invalid username"); require(tokenId == uint256(keccak256(abi.encodePacked(username))), "Token ID does not match name"); _setDocBoolValue(tokenId, IS_GIGA_NAME_CID, true); validateUsername(username); _setDocStringValue(tokenId, NAME_CID, username); } function _confirmMintWithSignature(address to, string memory username, bytes memory signature) internal returns (uint256) { bytes32 messageHash = keccak256(abi.encodePacked(username, to)); require(verifySignature(messageHash, signature), "Invalid signature"); return _confirmMint(to, username); } function _confirmMint(address to, string memory username) internal returns (uint256) { uint256 tokenId = uint256(keccak256(abi.encodePacked(username))); _initializeTraits(tokenId, username); _safeMint(to, tokenId); return tokenId; } function _cleanupAfterBurn(uint256 tokenId) override internal { super._cleanupAfterBurn(tokenId); _setDocBoolValue(tokenId, IS_GIGA_NAME_CID, false); _setDocStringValue(tokenId, NAME_CID, ""); } function setSignerAddress(address newSigner) external onlyRole(MANAGER_ROLE) { _setDocAddressValue(_getSignerDocId(), ADDRESS_CID, newSigner); } function _getSignerDocId() private pure returns (uint256) { return uint256(keccak256("signer")); } function getSignerAddress() public view returns (address) { return getDocAddressValue(_getSignerDocId(), ADDRESS_CID); } // Add new helper function for signature verification function verifySignature(bytes32 messageHash, bytes memory signature) public view returns (bool) { bytes32 ethSignedMessageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", messageHash)); address signer = getSignerAddress(); require(signer != address(0), "Signer not set"); return SignatureChecker.isValidSignatureNow( signer, ethSignedMessageHash, signature ); } }
// 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 LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {IGameNFT} from "./IGameNFT.sol"; import {MANAGER_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import {BALANCE_CID, UNLOCKED_CID, CONTRACT_URI_CID, NAME_CID, MINT_COUNT_CID, BURN_COUNT_CID,ADDRESS_CID, MAX_SUPPLY_CID, IS_SOULBOUND_CID, INITIALIZED_CID, OWNER_CID, BASE_NAME_CID, BASE_URI_CID, LAST_TRANSFER_TIME_CID, OWNER_CID} from "../../constants/ColumnConstants.sol"; import {DataTable} from "../../db/DataTable.sol"; import {IERC721UpdateHandler} from "../IERC721UpdateHandler.sol"; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {ERC721C} from "@creator-token-standards/erc721c/ERC721C.sol"; import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import {BasicRoyalties} from "@creator-token-standards/programmable-royalties/BasicRoyalties.sol"; import {ERC721OpenZeppelin} from "@creator-token-standards/token/erc721/ERC721OpenZeppelin.sol"; import {OwnableBasic} from "@creator-token-standards/access/OwnableBasic.sol"; import {ERC721OpenZeppelinBase, ERC721OpenZeppelin} from "@creator-token-standards/token/erc721/ERC721OpenZeppelin.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol"; /** @title NFT base contract for all game NFTs. Exposes traits for the NFT and respects GameRegistry/Soulbound access control */ abstract contract GameNFT is ERC721C, DataTable, IGameNFT, BasicRoyalties, OwnableBasic { using Strings for uint256; address public beforeUpdateHandler; address public afterUpdateHandler; /** ERRORS **/ /// @notice Account must be non-null error InvalidAccountAddress(); /// @notice Token id is not valid error InvalidTokenId(); /// @notice Exceeds max supply error ExceedsMaxSupply(); /// @notice Trading is locked error TradingLocked(); /** EVENTS **/ /// @notice Emitted when time held time is updated event TimeHeldSet(uint256 tokenId, address account, uint32 timeHeld); /// @notice Emitted when last transfer time is updated event LastTransferSet(uint256 tokenId, uint32 lastTransferTime); /// @notice Emitted when contractURI has changed event ContractURIUpdated(string uri); uint256 private _tokenMaxSupply; string private _baseTokenName; /** SETUP **/ constructor(uint256 tokenMaxSupply, string memory nameToSet, string memory symbol, string memory baseTokenName, address gameRegistryAddress, uint256 id, address royaltyRecipient, uint96 feeNumerator) DataTable(gameRegistryAddress, id) ERC721OpenZeppelin(nameToSet, symbol) BasicRoyalties(royaltyRecipient, feeNumerator) { _tokenMaxSupply = tokenMaxSupply; _baseTokenName = baseTokenName; } function _initialize() internal { _setTableUint256Value(MAX_SUPPLY_CID, _tokenMaxSupply); _setTableStringValue(BASE_NAME_CID, _baseTokenName); } /** * @param tokenId token id to check * @return Whether or not the given tokenId has been minted */ function exists(uint256 tokenId) public view returns (bool) { return _ownerOf(tokenId) != address(0); } function owner() public view override(DataTable, Ownable) returns (address) { return super.owner(); } function name() public view override(DataTable, ERC721OpenZeppelinBase) returns (string memory) { return DataTable.name(); } function setBaseURI(string memory uri) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_URI_CID, uri); } function withdraw(uint256 amount) external nonReentrant onlyRole(MANAGER_ROLE) { (bool success, ) = payable(msg.sender).call{value: amount}(""); require(success, "Transfer failed"); } /** * @param tokenId token id to check * @return Whether or not the given tokenId has had its traits initialized */ /** * @return Generates a dynamic tokenURI based on the traits associated with the given token */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { // Make sure this still errors according to ERC721 spec require( exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return super.tokenURI(tokenId); } function _baseURI() internal override view returns (string memory) { return getTableStringValue(BASE_URI_CID); } /** * @dev a method that bulk sets initialized imported NFTs * @param tokenIds List of TokenIds to be initialized */ function setTraitsInitialized( uint256[] calldata tokenIds ) external onlyRole(MANAGER_ROLE) { for (uint256 i = 0; i < tokenIds.length; i++) { _setDocBoolValue(tokenIds[i], INITIALIZED_CID, true); } } function getAccountKey(address account) internal pure returns (uint256) { return uint256(keccak256(abi.encode(account))); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address walletAddress) public view override(IERC721, ERC721) returns (uint256) { return getDocUint256Value(getAccountKey(walletAddress), BALANCE_CID); } function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyRole(MANAGER_ROLE) { _setDefaultRoyalty(receiver, feeNumerator); } function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) external onlyRole(MANAGER_ROLE) { _setTokenRoyalty(tokenId, receiver, feeNumerator); } function deleteDefaultRoyalty() external onlyRole(MANAGER_ROLE) { _deleteDefaultRoyalty(); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view override returns (address) { return getDocAddressValue(tokenId, OWNER_CID); } /** * @param account Account to check hold time of * @param tokenId Id of the token * @return The time in seconds a given account has held a token */ function getTimeHeld( address account, uint256 tokenId ) external view override returns (uint32) { address ownerOfToken = ownerOf(tokenId); if (account == address(0)) { revert InvalidAccountAddress(); } if (ownerOfToken == account) { uint32 lastTransferTime = uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID)); uint32 currentTime = SafeCast.toUint32(block.timestamp); return currentTime - lastTransferTime; } return 0; } /** @return Token name for the given tokenId */ function tokenName( uint256 tokenId ) public view virtual returns (string memory) { if (hasDocStringValue(tokenId, NAME_CID)) { // If token has a name trait set, use that return getDocStringValue(tokenId, NAME_CID); } else { return string(abi.encodePacked(getTableStringValue(BASE_NAME_CID), tokenId.toString())); } } /** * @inheritdoc IERC165 */ function supportsInterface( bytes4 interfaceId ) public view virtual override( ERC721C, IERC165, ERC2981 ) returns (bool) { return interfaceId == type(IGameNFT).interfaceId || ERC721C.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } /** * Sets the before token transfer handler * * @param handlerAddress Address to the transfer hook handler contract */ function setUpdateHandler( address handlerAddress, bool before ) external onlyRole(MANAGER_ROLE) { if (before) { beforeUpdateHandler = handlerAddress; } else { afterUpdateHandler = handlerAddress; } } /** INTERNAL **/ /** Initializes traits for the given tokenId */ function _initializeTraits(uint256 tokenId) internal virtual { _setDocBoolValue(tokenId, INITIALIZED_CID, true); } function maxSupply() public view returns (uint256) { return getTableUint256Value(MAX_SUPPLY_CID); } /** * Sets the current contractURI for the contract * * @param _uri New contract URI */ function setContractURI(string calldata _uri) public onlyRole(MANAGER_ROLE) { _setTableStringValue(CONTRACT_URI_CID, _uri); emit ContractURIUpdated(_uri); } /** * @return Contract metadata URI for the NFT contract, used by NFT marketplaces to display collection inf */ function contractURI() public view returns (string memory) { return getTableStringValue(CONTRACT_URI_CID); } /** * Mint token to recipient * * @param to The recipient of the token * @param tokenId Id of the token to mint */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal override { uint256 _maxSupply = maxSupply(); if (_maxSupply != 0 && getTotalSupply() >= _maxSupply) { revert ExceedsMaxSupply(); } if (tokenId == 0) { revert InvalidTokenId(); } super._safeMint(to, tokenId, data); // Conditionally initialize traits if (getDocBoolValue(tokenId, INITIALIZED_CID) == false) { _initializeTraits(tokenId); } } /** * @notice Checks for soulbound status before transfer * @inheritdoc ERC721C */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override( ERC721C ) { if (from != address(0) && to != address(0)) { if (isTradingLocked()) { revert TradingLocked(); } } for (uint256 i = 0; i < batchSize; i++) { uint256 tokenId = firstTokenId + i; if (beforeUpdateHandler != address(0)) { IERC721UpdateHandler( beforeUpdateHandler ).update( from, to, firstTokenId ); } _setDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID, SafeCast.toUint32(block.timestamp)); require(!getTableBoolValue(IS_SOULBOUND_CID) || from == address(0) || to == address(0), "GameNFT: Token is soulbound"); super._beforeTokenTransfer(from, to, tokenId, batchSize); } } function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal override(ERC721C) { for (uint256 i = 0; i < batchSize; i++) { uint256 tokenId = firstTokenId + i; if (afterUpdateHandler != address(0)) { IERC721UpdateHandler( afterUpdateHandler ).update( from, to, tokenId ); } if (from != address(0)) { _decrementAmount(getAccountKey(from), BALANCE_CID, 1); } else { _incrementAmount(0, MINT_COUNT_CID, 1); } _setDocAddressValue(tokenId, OWNER_CID, to); if (to == address(0)) { _incrementAmount(0, BURN_COUNT_CID, 1); _cleanupAfterBurn(tokenId); } else { _incrementAmount(getAccountKey(to), BALANCE_CID, 1); } super._afterTokenTransfer(from, to, tokenId, batchSize); } } function getLastTransfer( uint256 tokenId ) external view returns (uint32) { return uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID)); } function mintBatch(address /*to*/, uint256 /*amount*/) pure external returns (uint256[] memory) { return new uint256[](0); } function setSoulbound(bool soulbound) external onlyRole(MANAGER_ROLE) { _setTableBoolValue(IS_SOULBOUND_CID, soulbound); } function isSoulbound() public view returns (bool) { return getTableBoolValue(IS_SOULBOUND_CID); } function _cleanupAfterBurn(uint256 tokenId) virtual internal { _setDocBoolValue(tokenId, INITIALIZED_CID, false); } function getTotalMinted() public view returns (uint256) { return getTableUint256Value(MINT_COUNT_CID); } function getTotalBurned() public view returns (uint256) { return getTableUint256Value(BURN_COUNT_CID); } function getTotalSupply() public view returns (uint256) { return getTotalMinted() - getTotalBurned(); } function burn(uint256 tokenId) external { require(ownerOf(tokenId) == msg.sender, "You are not the owner of this token"); _burn(tokenId); } function isTradingLocked() public view returns (bool) { return !getTableBoolValue(UNLOCKED_CID); } function setTradingLocked(bool locked) external onlyRole(MANAGER_ROLE) { _setTableBoolValue(UNLOCKED_CID, !locked); } }
// 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"));
// 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; import {IGameNFT} from "../gamenft/IGameNFT.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.giganamenft")); interface IGigaNameNFT is IGameNFT { function mintUsernameByMinterContract(address to, string memory username, bytes memory signature) external returns (uint256); function burnByGameContract(uint256 id) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; import "../Address.sol"; import "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Gnosis Safe. * * _Available since v4.1._ */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature); if (error == ECDSA.RecoverError.NoError && recovered == signer) { return true; } (bool success, bytes memory result) = signer.staticcall( abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature) ); return (success && result.length == 32 && abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector)); } }
// 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) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toUint248(uint256 value) internal pure returns (uint248) { require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits"); return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toUint240(uint256 value) internal pure returns (uint240) { require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits"); return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toUint232(uint256 value) internal pure returns (uint232) { require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits"); return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.2._ */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toUint216(uint256 value) internal pure returns (uint216) { require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits"); return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toUint208(uint256 value) internal pure returns (uint208) { require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits"); return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toUint200(uint256 value) internal pure returns (uint200) { require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits"); return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toUint192(uint256 value) internal pure returns (uint192) { require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits"); return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toUint184(uint256 value) internal pure returns (uint184) { require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits"); return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toUint176(uint256 value) internal pure returns (uint176) { require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits"); return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toUint168(uint256 value) internal pure returns (uint168) { require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits"); return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toUint160(uint256 value) internal pure returns (uint160) { require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits"); return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toUint152(uint256 value) internal pure returns (uint152) { require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits"); return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toUint144(uint256 value) internal pure returns (uint144) { require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits"); return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toUint136(uint256 value) internal pure returns (uint136) { require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits"); return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v2.5._ */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toUint120(uint256 value) internal pure returns (uint120) { require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits"); return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toUint112(uint256 value) internal pure returns (uint112) { require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits"); return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toUint104(uint256 value) internal pure returns (uint104) { require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits"); return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.2._ */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toUint88(uint256 value) internal pure returns (uint88) { require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits"); return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toUint80(uint256 value) internal pure returns (uint80) { require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits"); return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toUint72(uint256 value) internal pure returns (uint72) { require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits"); return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v2.5._ */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toUint56(uint256 value) internal pure returns (uint56) { require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits"); return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toUint48(uint256 value) internal pure returns (uint48) { require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits"); return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toUint40(uint256 value) internal pure returns (uint40) { require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits"); return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v2.5._ */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toUint24(uint256 value) internal pure returns (uint24) { require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits"); return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v2.5._ */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v2.5._ */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. * * _Available since v3.0._ */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); require(downcasted == value, "SafeCast: value doesn't fit in 248 bits"); } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); require(downcasted == value, "SafeCast: value doesn't fit in 240 bits"); } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); require(downcasted == value, "SafeCast: value doesn't fit in 232 bits"); } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.7._ */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); require(downcasted == value, "SafeCast: value doesn't fit in 224 bits"); } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); require(downcasted == value, "SafeCast: value doesn't fit in 216 bits"); } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); require(downcasted == value, "SafeCast: value doesn't fit in 208 bits"); } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); require(downcasted == value, "SafeCast: value doesn't fit in 200 bits"); } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); require(downcasted == value, "SafeCast: value doesn't fit in 192 bits"); } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); require(downcasted == value, "SafeCast: value doesn't fit in 184 bits"); } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); require(downcasted == value, "SafeCast: value doesn't fit in 176 bits"); } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); require(downcasted == value, "SafeCast: value doesn't fit in 168 bits"); } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); require(downcasted == value, "SafeCast: value doesn't fit in 160 bits"); } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); require(downcasted == value, "SafeCast: value doesn't fit in 152 bits"); } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); require(downcasted == value, "SafeCast: value doesn't fit in 144 bits"); } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); require(downcasted == value, "SafeCast: value doesn't fit in 136 bits"); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); require(downcasted == value, "SafeCast: value doesn't fit in 128 bits"); } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); require(downcasted == value, "SafeCast: value doesn't fit in 120 bits"); } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); require(downcasted == value, "SafeCast: value doesn't fit in 112 bits"); } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); require(downcasted == value, "SafeCast: value doesn't fit in 104 bits"); } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.7._ */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); require(downcasted == value, "SafeCast: value doesn't fit in 96 bits"); } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); require(downcasted == value, "SafeCast: value doesn't fit in 88 bits"); } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); require(downcasted == value, "SafeCast: value doesn't fit in 80 bits"); } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); require(downcasted == value, "SafeCast: value doesn't fit in 72 bits"); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); require(downcasted == value, "SafeCast: value doesn't fit in 64 bits"); } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); require(downcasted == value, "SafeCast: value doesn't fit in 56 bits"); } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); require(downcasted == value, "SafeCast: value doesn't fit in 48 bits"); } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); require(downcasted == value, "SafeCast: value doesn't fit in 40 bits"); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); require(downcasted == value, "SafeCast: value doesn't fit in 32 bits"); } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); require(downcasted == value, "SafeCast: value doesn't fit in 24 bits"); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); require(downcasted == value, "SafeCast: value doesn't fit in 16 bits"); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); require(downcasted == value, "SafeCast: value doesn't fit in 8 bits"); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. * * _Available since v3.0._ */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title Interface for game NFTs that have stats and other properties */ interface IGameNFT is IERC721 { /** * @param account Account to check hold time of * @param tokenId Id of the token * @return The time in seconds a given account has held a token */ function getTimeHeld( address account, uint256 tokenId ) external view returns (uint32); function getLastTransfer( uint256 tokenId ) external view returns (uint32); /** * Mints a batch of ERC721 token * * @param to Recipient of the token * @param amount Quantity of token to mint */ function mintBatch(address to, uint256 amount) external returns (uint256[] memory); function exists(uint256 tokenId) external view returns (bool); function isTradingLocked() 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 LICENSE pragma solidity ^0.8.9; interface IERC721UpdateHandler { /** * Before transfer hook for NFTs. Performs any trait checks needed before transfer * */ function update( address from, address to, uint256 tokenId ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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 pragma solidity ^0.8.4; import "../utils/AutomaticValidatorTransferApproval.sol"; import "../utils/CreatorTokenBase.sol"; import "../token/erc721/ERC721OpenZeppelin.sol"; import "../interfaces/ITransferValidatorSetTokenType.sol"; import {TOKEN_TYPE_ERC721} from "@limitbreak/permit-c/Constants.sol"; /** * @title ERC721C * @author Limit Break, Inc. * @notice Extends OpenZeppelin's ERC721 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 ERC721C is ERC721OpenZeppelin, 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)")); isViewFunction = true; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateBeforeTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateAfterTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC721); } } /** * @title ERC721CInitializable * @author Limit Break, Inc. * @notice Initializable implementation of ERC721C to allow for EIP-1167 proxy clones. */ abstract contract ERC721CInitializable is ERC721OpenZeppelinInitializable, CreatorTokenBase, AutomaticValidatorTransferApproval { function initializeERC721(string memory name_, string memory symbol_) public override { super.initializeERC721(name_, symbol_); _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)")); isViewFunction = true; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateBeforeTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateAfterTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC721); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// 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 pragma solidity ^0.8.4; import "../../access/OwnablePermissions.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; abstract contract ERC721OpenZeppelinBase is ERC721 { // Token name string internal _contractName; // Token symbol string internal _contractSymbol; function name() public view virtual override returns (string memory) { return _contractName; } function symbol() public view virtual override returns (string memory) { return _contractSymbol; } function _setNameAndSymbol(string memory name_, string memory symbol_) internal { _contractName = name_; _contractSymbol = symbol_; } } abstract contract ERC721OpenZeppelin is ERC721OpenZeppelinBase { constructor(string memory name_, string memory symbol_) ERC721("", "") { _setNameAndSymbol(name_, symbol_); } } abstract contract ERC721OpenZeppelinInitializable is OwnablePermissions, ERC721OpenZeppelinBase { error ERC721OpenZeppelinInitializable__AlreadyInitializedERC721(); /// @notice Specifies whether or not the contract is initialized bool private _erc721Initialized; /// @dev Initializes parameters of ERC721 tokens. /// These cannot be set in the constructor because this contract is optionally compatible with EIP-1167. function initializeERC721(string memory name_, string memory symbol_) public virtual { _requireCallerIsContractOwner(); if(_erc721Initialized) { revert ERC721OpenZeppelinInitializable__AlreadyInitializedERC721(); } _erc721Initialized = true; _setNameAndSymbol(name_, symbol_); } }
// 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 // 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 // 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) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// 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 v4.4.1 (interfaces/IERC1271.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. * * _Available since v4.1._ */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: MIT 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 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 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; interface ITransferValidatorSetTokenType { function setTokenTypeOfCollection(address collection, uint16 tokenType) external; }
// 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 // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// 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 // 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 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 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.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 // 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.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 {} }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@limitbreak/creator-token-standards/=lib/creator-token-standards/", "@openzeppelin/=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/murky/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/", "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":"royaltyRecipient","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":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"InvalidAccountAddress","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[],"name":"InvalidTokenId","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"inputs":[],"name":"ShouldNotMintToBurnAddress","type":"error"},{"inputs":[],"name":"TradingLocked","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"lastTransferTime","type":"uint32"}],"name":"LastTransferSet","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"timeHeld","type":"uint32"}],"name":"TimeHeldSet","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","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":"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":"afterUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoApproveTransfersFromValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burnByGameContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getLastTransfer","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","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":[],"name":"getSignerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeHeld","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","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":"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":[],"name":"isSoulbound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"username","type":"string"}],"name":"mintByManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"username","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintUsername","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"username","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintUsernameByMinterContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"name":"setGameRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldPause","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"soulbound","type":"bool"}],"name":"setSoulbound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"locked","type":"bool"}],"name":"setTradingLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"setTraitsInitialized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bool","name":"before","type":"bool"}],"name":"setUpdateHandler","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"username","type":"string"}],"name":"validateUsername","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verifySignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010018e53637fff16b7c1caab5f135813bcf5ed1efcf580f00312b6aa195b86b0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x0004000000000002000d000000000002000000000401034f0000006001100270000017ac0010019d000017ac03100197000300000034035500020000000403550000008001000039000000400010043f00000001002001900000003f0000c13d000000040030008c000000690000413d000000000134034f000000000204043b000000e002200270000017d40020009c0000006b0000213d0000180b0020009c0000008e0000a13d0000180c0020009c000000c50000213d0000181a0020009c000001790000213d000018210020009c000003de0000a13d000018220020009c000007ad0000613d000018230020009c000006f50000613d000018240020009c000000690000c13d0000000001000416000000000001004b000000690000c13d00000000010300195eac2c590000040f000c00000001001d000b00000002001d000d00000003001d000000400100043d000a00000001001d00000020020000395eac2c7a0000040f0000000a01000029000000000001043500000000010004110000000d020000295eac39d70000040f5eac31270000040f0000000c010000290000000b020000290000000d030000295eac3baf0000040f0000000c010000290000000b020000290000000d030000290000000a040000295eac5da00000040f5eac5d8c0000040f000000000100001900005ead0001042e0000000002000416000000000002004b000000690000c13d0000001f02300039000017ad022001970000008002200039000000400020043f0000001f0530018f000017ae0630019800000080026000390000004f0000613d000000000704034f000000007807043c0000000001810436000000000021004b0000004b0000c13d000000000005004b0000005c0000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000000690000413d000000800200043d000017af0020009c000000690000213d000000a00100043d000d00000001001d000017af0010009c000000690000213d000000c00100043d000c00000001001d000017b00010009c000001f70000a13d000000000100001900005eae00010430000017d50020009c000000a40000a13d000017d60020009c000000db0000213d000017e40020009c000001a70000213d000017eb0020009c000003f50000a13d000017ec0020009c000007c80000613d000017ed0020009c0000070e0000613d000017ee0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d5eac32180000040f000017af0010019800000e580000c13d000000400100043d00000064021000390000187103000041000000000032043500000044021000390000187203000041000000000032043500000024021000390000002f030000390000143e0000013d000018270020009c000000f40000a13d000018280020009c000001390000213d0000182f0020009c000003780000a13d000018300020009c000005da0000613d000018310020009c0000058d0000613d000018320020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017af0010009c000000690000213d000007eb0000013d000017f10020009c0000011a0000a13d000017f20020009c000001560000213d000017f90020009c000003810000a13d000017fa0020009c000005e30000613d000017fb0020009c000005a20000613d000017fc0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c00000a5a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a7f0000013d0000180d0020009c000001cd0000213d000018140020009c000003fe0000a13d000018150020009c000007e30000613d000018160020009c0000071c0000613d000018170020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017af0010009c000000690000213d5eac5b130000040f5eac33bd0000040f0000078d0000013d000017d70020009c000001ea0000213d000017de0020009c0000040a0000a13d000017df0020009c000007ee0000613d000017e00020009c000007300000613d000017e10020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017af0010009c000000690000213d0000002402400370000000000202043b000017af0020009c000000690000213d5eac391b0000040f0000078a0000013d000018350020009c0000025d0000a13d000018360020009c000002c20000a13d000018370020009c000005500000613d000018380020009c0000053f0000613d000018390020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000101043b000c00000001001d5eac32180000040f000017af0110019800000e5c0000613d0000000d0010006b000014f40000c13d000000400100043d0000006402100039000018aa0300004100000000003204350000004402100039000018ab030000410000000000320435000000240210003900000021030000390000143e0000013d000017ff0020009c0000027e0000a13d000018000020009c000002e40000a13d000018010020009c000005630000613d000018020020009c000005480000613d000018030020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000000701000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f0000000100400190000009bf0000613d0000189101000041000000000010043f0000002201000039000000040010043f000018470100004100005eae00010430000018290020009c000003a90000a13d0000182a0020009c000005fe0000613d0000182b0020009c000005c10000613d0000182c0020009c000000690000c13d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c00000a9e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ac30000013d000017f30020009c000003b30000a13d000017f40020009c000006100000613d000017f50020009c000005d50000613d000017f60020009c000000690000c13d000000440030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c000d00000004001d000c00000005001d00000b460000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b6b0000013d0000181b0020009c000004260000a13d0000181c0020009c0000080b0000613d0000181d0020009c000007430000613d0000181e0020009c000000690000c13d000000640030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000c00000001001d0000002401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000004401400370000000000101043b000b00000001001d000017b00010009c000000690000213d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000a00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c000015890000c13d0000000103000031000000200030008c00000020040000390000000004034019000015ae0000013d000017e50020009c000004340000a13d000017e60020009c0000085b0000613d000017e70020009c000007690000613d000017e80020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af03100197000000a40030043f00000000010004140000000802200270000017af02200197000000040020008c000c00000003001d0000138e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000013b30000013d0000180e0020009c0000043e0000a13d0000180f0020009c000008600000613d000018100020009c0000077d0000613d000018110020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f0000188a01000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c00000d760000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d9b0000013d000017d80020009c000004570000a13d000017d90020009c000008e20000613d000017da0020009c000007940000613d000017db0020009c000000690000c13d0000000001000416000000000001004b000000690000c13d5eac364b0000040f0000078a0000013d000a00000002001d000000400100043d000b00000001001d000017b10010009c000020370000213d0000000b020000290000004001200039000000400010043f00000004010000390000000003120436000017b202000041000800000003001d0000000000230435000000400300043d000900000003001d000017b10030009c000020370000213d00000009040000290000004003400039000000400030043f0000000001140436000600000001001d0000000000210435000000400100043d000700000001001d000017b10010009c000020370000213d00000007020000290000004001200039000000400010043f00000006010000390000000002120436000017b301000041000400000002001d0000000000120435000000400100043d000500000001001d000017b40010009c000020370000213d00000005020000290000002001200039000000400010043f0000000000020435000000400200043d000300000002001d000017b40020009c000020370000213d00000003020000290000002003200039000100000003001d000000400030043f000000000002043500000005020000290000000002020433000200000002001d000017b50020009c000020370000213d000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000001330000c13d000000200030008c00000002040000290000024b0000413d0000001f024000390000000502200270000017b60220009a000000200040008c000017b702004041000000000000043f0000001f033000390000000503300270000017b60330009a000000000032004b0000024b0000813d000000000002041b0000000102200039000000000032004b000002470000413d0000001f0040008c00001c5e0000a13d000000000000043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000200200008a0000000202200180000000000101043b000020160000c13d0000002003000039000020230000013d0000183c0020009c000002990000213d0000183f0020009c000004650000613d000018400020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000c00000001001d0000000401400370000000000101043b000d00000001001d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c000009080000c13d0000000103000031000000200030008c000000200400003900000000040340190000092d0000013d000018060020009c000002bd0000213d000018090020009c000004860000613d0000180a0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c0000097b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009a00000013d0000183d0020009c000004a10000613d0000183e0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000018ad00200198000000690000c13d0000000101000039000018ae0020009c000002b90000613d000018af0020009c000002b90000613d000018b00020009c000002b90000613d000018b10020009c00000000030000390000000103006039000018b20020009c00000000040000390000000104006039000018b30020009c00000000050000390000000105006039000018b40020009c000000000134c19f000000000115c19f000000010110018f000000800010043f0000184e0100004100005ead0001042e000018070020009c000004a80000613d000018080020009c000004020000613d000000690000013d0000183a0020009c000004bf0000613d0000183b0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af03100197000000a40030043f00000000010004140000000802200270000017af02200197000000040020008c000c00000003001d000011860000c13d0000000103000031000000200030008c00000020040000390000000004034019000011ab0000013d000018040020009c000004e20000613d000018050020009c000000690000c13d000000640030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000501043b000017b50050009c000000690000213d0000002301500039000000000031004b000000690000813d0000000406500039000000000164034f000000000201043b000017b50020009c000020370000213d0000001f07200039000018b6077001970000003f07700039000018b607700197000018850070009c000020370000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000000690000213d0000002005600039000000000654034f000018b6072001980000001f0820018f000000a005700039000003170000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000059004b000003130000c13d000000000008004b000003240000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000a00220003900000000000204350000004402400370000000000502043b000017b50050009c000000690000213d0000002302500039000000000032004b000000690000813d0000000406500039000000000264034f000000000202043b000017b50020009c000020370000213d0000001f07200039000018b6077001970000003f07700039000018b607700197000000400800043d0000000007780019000c00000008001d000000000087004b00000000080000390000000108004039000017b50070009c000020370000213d0000000100800190000020370000c13d0000002408500039000000400070043f0000000c0500002900000000052504360000000007820019000000000037004b000000690000213d0000002003600039000000000334034f000018b6042001980000001f0620018f0000000001450019000003530000613d000000000703034f0000000008050019000000007907043c0000000008980436000000000018004b0000034f0000c13d000000000006004b000003600000613d000000000343034f0000000304600210000000000601043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f0000000000310435000000000125001900000000000104350000000a01000039000000000201041a000000400400043d00001842010000410000000000140435000000040140003900001886030000410000000000310435000b00000004001d00000024014000390000000003000411000000000031043500000000010004140000000802200270000017af02200197000000040020008c000022aa0000c13d0000000103000031000000200030008c00000020040000390000000004034019000022d40000013d000018330020009c000004e80000613d000018340020009c000000690000c13d0000000001000416000000000001004b000000690000c13d5eac2dcb0000040f0000078d0000013d000017fd0020009c000004ef0000613d000017fe0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d0000000f02000039000000000202041a000017af022001970000000003000411000000000032004b000008ff0000c13d0000000802000039000000000302041a0000187b03300197000000000001004b00000000040000190000187c0400c041000000000343019f000000000032041b000000800010043f0000000001000414000017ac0010009c000017ac01008041000000c0011002100000187d011001c70000800d0200003900000001030000390000187e04000041000006e60000013d0000182d0020009c0000051b0000613d0000182e0020009c000000690000c13d0000000001000416000000000001004b000000690000c13d5eac313e0000040f000017af011001970000078d0000013d000017f70020009c0000053a0000613d000017f80020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000000f01000039000000000101041a000017af011001970000000002000411000000000021004b000008ff0000c13d000017c20100004100000000001004430000000d0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d0000000d04000029000000000004004b000016ec0000613d000000000101043b000000000001004b000016ec0000c13d0000187501000041000000000010043f0000185e0100004100005eae00010430000018250020009c000006190000613d000018260020009c000000690000c13d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000903000039000000000203041a000000020020008c00000be40000c13d000017cf01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000189e01000041000000c40010043f000018790100004100005eae00010430000017ef0020009c000006590000613d000017f00020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000001001000039000004e60000013d000018180020009c0000067f0000613d000018190020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000000b01000039000000000101041a000000800010043f0000184e0100004100005ead0001042e000017e20020009c000006840000613d000017e30020009c000000690000c13d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000402400370000000000202043b000d00000002001d0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c00000bfa0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c1f0000013d0000181f0020009c000006a50000613d000018200020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b5eac32180000040f000017af001001980000078b0000013d000017e90020009c000006b70000613d000017ea0020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000001101000039000000000101041a000006f10000013d000018120020009c000006d20000613d000018130020009c000000690000c13d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c00000cd40000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cf90000013d000017dc0020009c000006eb0000613d000017dd0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b5eac34960000040f000017ac011001970000078d0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000c00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c000012270000c13d0000000103000031000000200030008c000000200400003900000000040340190000124c0000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000c00000001001d0000000401400370000000000101043b000d00000001001d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c000009da0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009ff0000013d0000000001000416000000000001004b000000690000c13d000017bf01000041000000800010043f0000184e0100004100005ead0001042e000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f0000188701000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c00000a1e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a430000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000101043b000c00000001001d000017b00010009c000000690000213d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af03100197000000a40030043f00000000010004140000000802200270000017af02200197000000040020008c000b00000003001d000015350000c13d0000000103000031000000200030008c000000200400003900000000040340190000155a0000013d0000000001000416000000000001004b000000690000c13d0000000f01000039000000000101041a000006f10000013d0000000001000416000000000001004b000000690000c13d5eac2dc10000040f000000800010043f0000184e0100004100005ead0001042e000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017b50010009c000000690000213d0000002302100039000000000032004b000000690000813d0000000402100039000000000224034f000000000202043b000900000002001d000017b50020009c000000690000213d00000009020000290000000502200210000800240010003d0000000801200029000000000031004b000000690000213d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000d00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c000019c90000c13d0000000103000031000000200030008c00000020040000390000000004034019000019ee0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f000018a101000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c000013470000c13d0000000103000031000000200030008c000000200400003900000000040340190000136c0000013d0000000001000416000000000001004b000000690000c13d5eac2ea20000040f0000078d0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b5eac2cd60000040f0000078d0000013d0000000001000416000000000001004b000000690000c13d5eac356f0000040f000000000001004b000000000100003900000001010060390000078d0000013d0000000002000416000000000002004b000000690000c13d0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c00000db20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000dd70000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017b50010009c000000690000213d0000002302100039000000000032004b000000690000813d000c00040010003d0000000c02400360000000000202043b000d00000002001d000017b50020009c000000690000213d0000000d01100029000b00240010003d0000000b0030006b000000690000213d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000a00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c00001a8e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001ab30000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c00000e6d0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e920000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b000000690000c13d00000000020004110000000d0020006c0000162f0000c13d000017cf01000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000187801000041000000c40010043f000018790100004100005eae00010430000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017af0010009c000000690000213d000000a001000039000000400010043f000000800000043f00000080020000395eac2c6b0000040f000000a00110008a000017ac0010009c000017ac010080410000006001100210000018a0011001c700005ead0001042e0000000001000416000000000001004b000000690000c13d5eac2f790000040f0000078d0000013d0000000001000416000000000001004b000000690000c13d000018a501000041000000800010043f0000000101000039000000a00010043f000018a60100004100005ead0001042e000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000c00000001001d0000000401400370000000000101043b000d00000001001d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c00000eb20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ed70000013d0000000001000416000000000001004b000000690000c13d00000000010300195eac2c590000040f000d00000001001d000c00000002001d0000000002030019000b00000003001d00000000010004115eac39d70000040f5eac31270000040f0000000d010000290000000c020000290000000b030000295eac3baf0000040f000000000100001900005ead0001042e0000000001000416000000000001004b000000690000c13d00000000010004115eac39500000040f0000000d01000039000000000001041b000000000100001900005ead0001042e000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000400300043d000017b10030009c000020370000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a0021002700000000000240435000017af011001980000000000130435000006480000c13d000000400300043d000017b10030009c000020370000213d0000004001300039000000400010043f0000000d01000039000000000101041a0000002004300039000000a0021002700000000000240435000017af0110019700000000001304350000000d0400002900000000034200a9000000000004004b0000064f0000613d00000000044300d9000000000042004b000007160000c13d000027100230011a000000400300043d000000200430003900000000002404350000000000130435000017ac0030009c000017ac0300804100000040013002100000189f011001c700005ead0001042e000000840030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000101043b000c00000001001d000017af0010009c000000690000213d0000006401400370000000000101043b000017b50010009c000000690000213d0000004402400370000000000202043b000b00000002001d000000040110003900000000020300195eac2c8c0000040f000a00000001001d00000000010004110000000b020000295eac39d70000040f5eac31270000040f0000000d010000290000000c020000290000000b030000295eac3baf0000040f0000000d010000290000000c020000290000000b030000290000003a0000013d0000000001000416000000000001004b000000690000c13d5eac32f30000040f0000078a0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000c00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c000013f90000c13d0000000103000031000000200030008c000000200400003900000000040340190000141e0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d5eac32180000040f000017af0110019800000e5c0000613d0000000002000411000000000021004b000014350000c13d0000000d010000295eac51f00000040f000000000100001900005ead0001042e000000440030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000002402400370000000000202043b000c00000002001d0000000402400370000000000202043b000d00000002001d0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c00000efb0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f200000013d0000000001000416000000000001004b000000690000c13d0000000f01000039000000000201041a000017af032001970000000005000411000000000053004b000008ff0000c13d000017ca02200197000000000021041b0000000001000414000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000303000039000017cc0400004100000000060000195eac5ea20000040f0000000100200190000000690000613d000000000100001900005ead0001042e0000000001000416000000000001004b000000690000c13d0000000a01000039000000000101041a0000000801100270000017af01100197000000800010043f0000184e0100004100005ead0001042e000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000101043b000017b50010009c000000690000213d000000040110003900000000020300195eac2c8c0000040f000c00000001001d00000000010004115eac39500000040f0000000d010000290000000c020000295eac44550000040f000000000100001900005ead0001042e0000000001000416000000000001004b000000690000c13d5eac2dcb0000040f000d00000001001d5eac2f790000040f0000000d0110006b0000078d0000813d0000189101000041000000000010043f0000001101000039000000040010043f000018470100004100005eae00010430000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b5eac32180000040f000d17af0010019c0000000001000039000000010100c0395eac336b0000040f000000400100043d0000000d020000290000000000210435000017ac0010009c000017ac01008041000000400110021000001841011001c700005ead0001042e0000000002000416000000000002004b000000690000c13d0000000a02000039000000000202041a0000184503000041000000800030043f0000184603000041000000840030043f00000000030004140000000802200270000017af02200197000000040020008c00000fa20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000fc70000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000b00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c0000166b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000016900000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000017b50010009c000000690000213d000000040110003900000000020300195eac2c8c0000040f00000004020000390000000202200367000000000202043b0000000003010019000000000102001900000000020300195eac37270000040f0000078a0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000017b50010009c000000690000213d000000040110003900000000020300195eac2c8c0000040f5eac337f0000040f000000000001004b0000000001000039000000010100c039000000400200043d0000000000120435000017ac0020009c000017ac02008041000000400120021000001841011001c700005ead0001042e000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000201041a0000184201000041000000800010043f0000184301000041000000840010043f0000000001000411000017af01100197000d00000001001d000000a40010043f00000000010004140000000802200270000017af02200197000000040020008c0000104b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000010700000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000c00000001001d0000000401400370000000000101043b000d00000001001d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c000010dc0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011010000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000c00000001001d0000000401400370000000000101043b000d00000001001d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c000011220000c13d0000000103000031000000200030008c00000020040000390000000004034019000011470000013d0000000001000416000000000001004b000000690000c13d0000000801000039000000000101041a00001896001001980000000001000039000000010100c039000000800010043f0000184e0100004100005ead0001042e000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000101043b000b00000001001d0000000a01000039000000000201041a0000184501000041000000800010043f0000184601000041000000840010043f00000000010004140000000802200270000017af02200197000000040020008c0000146d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000014920000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000017b50020009c000000690000213d0000002301200039000000000031004b000000690000813d0000000405200039000000000154034f000000000101043b000017b50010009c000020370000213d0000001f06100039000018b6066001970000003f06600039000018b606600197000018850060009c000020370000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000000690000213d0000002002500039000000000324034f000018b6041001980000001f0510018f000000a002400039000008350000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000008310000c13d000000000005004b000008420000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000a01000039000000000201041a000000400500043d000018420100004100000000001504350000000401500039000018430300004100000000003104350000000001000411000017af031001970000002401500039000c00000003001d000000000031043500000000010004140000000802200270000017af02200197000000040020008c00001c810000c13d0000000103000031000000200030008c0000002004000039000000000403401900001cae0000013d0000000001000416000000000001004b000000690000c13d5eac30500000040f0000078d0000013d000000640030008c000000690000413d0000000401400370000000000101043b000d00000001001d000017af0010009c000000690000213d0000002401400370000000000201043b000017b50020009c000000690000213d0000002301200039000000000031004b000000690000813d0000000405200039000000000154034f000000000101043b000017b50010009c000020370000213d0000001f06100039000018b6066001970000003f06600039000018b606600197000018850060009c000020370000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000000690000213d0000002002500039000000000524034f000018b6061001980000001f0710018f000000a0026000390000088c0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000028004b000008880000c13d000000000007004b000008990000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000520435000000a00110003900000000000104350000004401400370000000000201043b000017b50020009c000000690000213d0000002301200039000000000031004b000000690000813d0000000405200039000000000154034f000000000101043b000017b50010009c000020370000213d0000001f06100039000018b6066001970000003f06600039000018b606600197000000400700043d0000000006670019000c00000007001d000000000076004b00000000070000390000000107004039000017b50060009c000020370000213d0000000100700190000020370000c13d0000002407200039000000400060043f0000000c0200002900000000021204360000000006710019000000000036004b000000690000213d0000002003500039000000000434034f000018b6051001980000001f0610018f0000000003520019000008c80000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b000008c40000c13d000000000006004b000008d50000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000112001900000000000104355eac2ea20000040f000b00000001001d000000000001004b000022f20000c13d000000400100043d0000004402100039000018940300004100000000003204350000002402100039000000120300003900000e620000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000601043b000017af0060009c000000690000213d0000000f01000039000000000201041a000017af032001970000000005000411000000000053004b000008ff0000c13d000000000006004b000016a20000c13d000017cf01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000184b01000041000000c40010043f0000184c01000041000000e40010043f0000184d0100004100005eae00010430000017cf01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000189501000041000000c40010043f000018790100004100005eae00010430000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000091c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009180000c13d000000000006004b000009290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000116e0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001876040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c00000ef10000613d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000b0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000095e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000095a0000c13d000000000006004b0000096b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018fe0000c13d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009760000c13d000025450000013d000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000098f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000098b0000c13d000000000006004b0000099c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000117a0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001854040000410000000d05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000016bd0000c13d0000000001150019000000400010043f0000000d020000290000111e0000013d000000800050043f000000000003004b000012160000c13d000018b701600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a00000080010000395eac2c7a0000040f0000002001000039000000400200043d000d00000002001d000000000212043600000080010000395eac2c270000040f0000000d020000290000000001210049000017ac0010009c000017ac010080410000006001100210000017ac0020009c000017ac020080410000004002200210000000000121019f00005ead0001042e000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009ee0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009ea0000c13d000000000006004b000009fb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012b00000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001856040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000017570000c13d0000000001150019000000400010043f0000000b0200002900000000020204330000116a0000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a320000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a2e0000c13d000000000006004b00000a3f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012bc0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d000000000002004b000017860000c13d0000184a01000041000000000010043f0000000001000411000000040010043f0000188701000041000000240010043f000017c50100004100005eae00010430000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a6e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a6a0000c13d000000000006004b00000a7b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012c80000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001876040000410000000d05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000017a30000c13d0000000001150019000000400010043f0000000d0200002900000ef40000013d000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ab20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000aae0000c13d000000000006004b00000abf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012d40000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001850060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000aec0000613d0000004001a00210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac033001970003000000010355000000010020019000001af60000613d0000000d0a000029000018b6053001980000001f0630018f00000000045a001900000af60000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000af20000c13d000000000006004b00000b030000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6041001970000000001a40019000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000d040000290000000004040433000017b50040009c000000690000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000043030434000017b50030009c000020370000213d0000001f05300039000018b6055001970000003f05500039000018b6055001970000000005150019000017b50050009c000020370000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d000018b6063001970000001f0230018f000000000054004b000023840000813d000000000006004b000010470000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000b3f0000c13d000010470000013d000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b5a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b560000c13d000000000006004b00000b670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012e00000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001873060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000c060000290000000000650435000000a4044000390000000d0500002900000000005404350000000004000414000000040020008c00000b930000613d0000004001a00210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac033001970003000000010355000000010020019000001b020000613d0000000b0a000029000018b6053001980000001f0630018f00000000045a001900000b9d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000b990000c13d000000000006004b00000baa0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6011001970000000002a10019000000000012004b00000000010000390000000101004039000017b50020009c000020370000213d0000000100100190000020370000c13d000000400020043f000018520030009c000000690000213d000000200030008c000000690000413d0000000b010000290000000001010433000017b50010009c000000690000213d0000000b033000290000000b011000290000001f04100039000000000034004b0000000005000019000018530500804100001853044001970000185306300197000000000764013f000000000064004b00000000040000190000185304004041000018530070009c000000000405c019000000000004004b000000690000c13d0000000015010434000017b50050009c000020370000213d00000005045002100000003f0640003900001874066001970000000006260019000017b50060009c000020370000213d000000400060043f00000000005204350000000004140019000000000034004b000000690000213d000000000005004b00000d720000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000bde0000413d00000d720000013d0000000202000039000000000023041b0000000a02000039000000000202041a0000184203000041000000800030043f0000184303000041000000840030043f0000000003000411000017af03300197000d00000003001d000000a40030043f00000000030004140000000802200270000017af02200197000000040020008c000012ec0000c13d0000000104000031000000200040008c00000020030000390000000003044019000013110000013d000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c0e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c0a0000c13d000000000006004b00000c1b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013230000613d0000001f02400039000000600420018f00000080024001bf000c00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001860060000410000000c07000029000000000067043500000084064001bf0000000000560435000000c40540003900001861060000410000000000650435000000a4054000390000000d0600002900000000006504350000000005000414000000040020008c000017d30000c13d0000000002470019000b00000002001d000000400020043f0000000c020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b000000690000c13d0000000a02000039000000000202041a00001845060000410000000b07000029000000000067043500000004067001bf000018460700004100000000007604350000000802200270000017af02200197000000000005004b00001cd40000c13d0000000005000414000000040020008c00001e660000c13d0000000b02400029000c00000002001d000000400020043f0000000b020000290000000002020433000017af0020009c000000690000213d0000000b04000039000000000404041a0000000c070000290000004405700039000018620600004100000000006504350000185005000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c00000c760000613d0000000c010000290000004001100210000017ac0040009c000017ac04008041000000c003400210000000000131019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac0330019700030000000103550000000100200190000021170000613d000000200200008a00000000052301700000001f0630018f0000000c0450002900000c810000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b00000c7d0000c13d000000000006004b00000c8e0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000c01400029000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000c040000290000000004040433000017b50040009c000000690000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000054030434000017b50040009c000020370000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000017b50030009c000020370000213d000000400030043f00000000034104360000000007540019000000000067004b000000690000213d000000000724016f0000001f0640018f000000000035004b0000271c0000813d000000000007004b00000cd00000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000cca0000c13d000000000006004b000027320000613d0000000008030019000027280000013d000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ce80000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ce40000c13d000000000006004b00000cf50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000132f0000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001873060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000d220000613d0000004001a00210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac033001970003000000010355000000010020019000001b1a0000613d0000000d0a000029000018b6053001980000001f0630018f00000000045a001900000d2c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000d280000c13d000000000006004b00000d390000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6011001970000000002a10019000000000012004b00000000010000390000000101004039000017b50020009c000020370000213d0000000100100190000020370000c13d000000400020043f000018520030009c000000690000213d000000200030008c000000690000413d0000000d010000290000000001010433000017b50010009c000000690000213d0000000d033000290000000d011000290000001f04100039000000000034004b0000000005000019000018530500804100001853044001970000185306300197000000000764013f000000000064004b00000000040000190000185304004041000018530070009c000000000405c019000000000004004b000000690000c13d0000000015010434000017b50050009c000020370000213d00000005045002100000003f0640003900001874066001970000000006260019000017b50060009c000020370000213d000000400060043f00000000005204350000000004140019000000000034004b000000690000213d000000000005004b00000d720000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000d6d0000413d000000400100043d000d00000001001d5eac2c6b0000040f000009d00000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d8a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d860000c13d000000000006004b00000d970000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000133b0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b000018030000c13d0000184a01000041000000000010043f0000000001000411000000040010043f0000188a01000041000000240010043f000017c50100004100005eae00010430000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000dc60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000dc20000c13d000000000006004b00000dd30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013820000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001850060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000c40540003900001861060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000dfe0000613d0000004001a00210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac033001970003000000010355000000010020019000001b410000613d0000000d0a000029000018b6053001980000001f0630018f00000000045a001900000e080000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000e040000c13d000000000006004b00000e150000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6041001970000000001a40019000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000d040000290000000004040433000017b50040009c000000690000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000043030434000017b50030009c000020370000213d0000001f05300039000018b6055001970000003f05500039000018b6055001970000000005150019000017b50050009c000020370000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d000018b6063001970000001f0230018f000000000054004b0000238e0000813d000000000006004b000010470000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000e510000c13d000010470000013d0000000d010000295eac32180000040f000017af00100198000013cf0000c13d000000400100043d00000044021000390000185f030000410000000000320435000000240210003900000018030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae00010430000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e810000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e7d0000c13d000000000006004b00000e8e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013e10000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001856040000410000000d05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000018a70000c13d0000000001150019000000400010043f0000000d0200002900000000020204330000116a0000013d000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ec60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ec20000c13d000000000006004b00000ed30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013ed0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a0000187a040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000018d60000c13d0000000001150019000000400010043f0000000b020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d0000116a0000013d000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f0f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f0b0000c13d000000000006004b00000f1c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014490000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001850060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000c060000290000000000650435000000a4044000390000000d0500002900000000005404350000000004000414000000040020008c00000f480000613d0000004001a00210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac033001970003000000010355000000010020019000001b7c0000613d0000000b0a000029000018b6053001980000001f0630018f00000000045a001900000f520000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000f4e0000c13d000000000006004b00000f5f0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6041001970000000001a40019000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000b040000290000000004040433000017b50040009c000000690000213d0000000b063000290000000b034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000043030434000017b50030009c000020370000213d0000001f05300039000018b6055001970000003f05500039000018b6055001970000000005150019000017b50050009c000020370000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d000018b6063001970000001f0230018f000000000054004b000023980000813d000000000006004b000010470000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000f9b0000c13d000010470000013d000017ac0030009c000017ac03008041000000c0013002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000fb60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000fb20000c13d000000000006004b00000fc30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014550000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b05000039000000000505041a00001850060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000c40540003900001851060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000fee0000613d0000004001a00210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac033001970003000000010355000000010020019000001bdd0000613d0000000d0a000029000018b6053001980000001f0630018f00000000045a001900000ff80000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000ff40000c13d000000000006004b000010050000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6041001970000000001a40019000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000d040000290000000004040433000017b50040009c000000690000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000043030434000017b50030009c000020370000213d0000001f05300039000018b6055001970000003f05500039000018b6055001970000000005150019000017b50050009c000020370000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d000018b6063001970000001f0230018f000000000054004b000023a20000813d000000000006004b000010470000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000010410000c13d000000000002004b000023b80000613d0000000007050019000023ae0000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000105f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000105b0000c13d000000000006004b0000106c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014610000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b0000131f0000613d0000000a02000039000000000202041a00001845040000410000000c05000029000000000045043500000084011001bf0000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00001be90000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000c010000290000000001010433000d00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000c00000001001d000017c20100004100000000001004430000000d0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d0000004401300039000018480200004100000000002104350000184901000041000000000013043500000004013000390000000c0200002900000000002104350000002401300039000000000001043500000004010000390000000201100367000000000101043b000c00000003001d0000006402300039000000000012043500000000010004140000000d02000029000000040020008c000017500000613d0000000c02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000d020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000017500000c13d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010d70000c13d000025450000013d000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010f00000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010ec0000c13d000000000006004b000010fd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014c40000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001854040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000019050000c13d0000000001150019000000400010043f0000000b020000290000000002020433000017af0020009c000000690000213d0000116a0000013d000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011360000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011320000c13d000000000006004b000011430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014d00000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001860040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000019340000c13d0000000001150019000000400010043f0000000b020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d0000000000210435000000400110021000001841011001c700005ead0001042e0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011750000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011810000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000119a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011960000c13d000000000006004b000011a70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014dc0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b0000142d0000613d0000000a02000039000000000202041a00001845040000410000000b05000029000000000045043500000084011001bf0000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00001d590000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000b010000290000000001010433000c00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000b00000001001d000017c20100004100000000001004430000000c0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000000d02000029000000000021043500000044013000390000188d0200004100000000002104350000002401300039000018ac0200004100000000002104350000188e010000410000000000130435000d00000003001d00000004013000390000000b02000029000000000021043500000000010004140000000c02000029000000040020008c00001bd60000613d0000000d02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000c020000295eac5ea20000040f0000006003100270000117ac0030019d0003000000010355000000010020019000001bd60000c13d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012110000c13d000025450000013d000d00000006001d000c00000005001d000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d0000000d02000029000000020020008c000019630000813d000000a001000039000009c70000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000123b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012370000c13d000000000006004b000012480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014e80000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b0000142d0000613d0000000a02000039000000000202041a00001845040000410000000b05000029000000000045043500000084011001bf0000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00001d870000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000b010000290000000001010433000c00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000b00000001001d000017c20100004100000000001004430000000c0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d0000000d0000006b00000000010000390000000101006039000000400300043d000000640230003900000000001204350000004401300039000018b50200004100000000002104350000186d01000041000000000013043500000004013000390000000b020000290000000000210435000d00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c000012ab0000613d0000000d02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000c020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000022fc0000613d0000000d0100002900000000020000195eac2c7a0000040f000000000100001900005ead0001042e0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012b70000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012c30000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012cf0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012db0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012e70000c13d000025450000013d000017ac0030009c000017ac03008041000000c00130021000001844011001c75eac5ea70000040f0000006003100270000017ac04300197000000200040008c000000200300003900000000030440190000001f0630018f000000200730019000000080057001bf000013000000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012fc0000c13d000000000006004b0000130d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000151b0000613d0000001f02300039000000600220018f00000080052001bf000000400050043f000000200040008c000000690000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d000000000002004b00001b260000c13d0000184a01000041000000000010043f0000000d01000029000014300000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000132a0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013360000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013420000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000135b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000013570000c13d000000000006004b000013680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000157d0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000690000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000690000c13d000000000003004b00001b4d0000c13d0000184a01000041000000000010043f0000000001000411000000040010043f000018a101000041000000240010043f000017c50100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013890000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000139e0000c13d000000000006004b000013af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015d40000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b0000142d0000613d0000000d030000290000000801300210000017c7011001970000000a04000039000000000204041a0000186e02200197000000000112019f000000000014041b000000000003004b000006e90000c13d0000186f01000041000000000010043f0000185e0100004100005eae000104300000000a01000039000000000201041a000000400b00043d000018450100004100000000001b04350000000401b000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000015e00000c13d0000000103000031000000200030008c000000200400003900000000040340190000160c0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013e80000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013f40000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000140d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000014090000c13d000000000006004b0000141a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000165f0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b00001b880000c13d0000184a01000041000000000010043f0000000c01000029000000040010043f0000184301000041000000240010043f000017c50100004100005eae00010430000000400100043d00000064021000390000189903000041000000000032043500000044021000390000189a030000410000000000320435000000240210003900000023030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d3011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014500000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000145c0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014680000c13d000025450000013d000017ac0010009c000017ac01008041000000c0011002100000184f011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000014810000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000147d0000c13d000000000006004b0000148e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016b10000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c000000690000413d000000800200043d000017af0020009c000000690000213d0000000b03000039000000000303041a00001854040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c40310003900001855040000410000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c00001c170000c13d0000000001150019000a00000001001d000000400010043f0000000c010000290000000001010433000017af0010009c000000690000213d000000000001004b00001ec80000c13d000017cf010000410000000a03000029000000000013043500000004013001bf0000002002000039000000000021043500000044013000390000185f0200004100000000002104350000002401300039000000180200003900000000002104350000004001300210000017d0011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014cb0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014d70000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014e30000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014ef0000c13d000025450000013d0000000002000411000000000012004b000019700000c13d0000000c01000029000000000010043f0000000401000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000000101043b000000000201041a000017ca022001970000000d022001af000000000021041b0000000c010000295eac32180000040f000017af0510019800000e5c0000613d0000000001000414000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000403000039000018a9040000410000000d060000290000000c070000295eac5ea20000040f0000000100200190000000690000613d000006e90000013d0000001f0540018f000017ae06400198000000400200043d0000000003620019000015260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015220000c13d000000000005004b000015330000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001304350000006001400210000025530000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000015490000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000015450000c13d000000000006004b000015560000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019a50000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000690000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000690000c13d000000000003004b0000169e0000613d0000000c03000029000017b003300197000027110030008c00001ef20000413d000017cf03000041000000000031043500000084032001bf00000020040000390000000000430435000000e403200039000017d1040000410000000000430435000000c403200039000017d2040000410000000000430435000000a4022000390000002a0300003900000000003204350000004001100210000017d3011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015840000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000159d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000015990000c13d000000000006004b000015aa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019b10000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d000000000002004b00001ac20000613d0000000b02000029000017b002200197000b00000002001d000027110020008c00001f480000413d000017cf020000410000000904000029000000000024043500000084021001bf00000020030000390000000000320435000000e402100039000017d1030000410000000000320435000000c402100039000017d2030000410000000000320435000000a4011000390000002a0200003900000000002104350000004001400210000017d3011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015db0000c13d000025450000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c7000c0000000b001d5eac5ea70000040f0000000c0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015fb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015f70000c13d000000000006004b000016080000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019bd0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000c00000002001d000017b50020009c000020370000213d0000000100100190000020370000c13d0000000c01000029000000400010043f000000200030008c000000690000413d00000000020b0433000017af0020009c000000690000213d0000000b01000039000000000101041a0000000c060000290000004404600039000018700500004100000000005404350000185004000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c00001f590000c13d000000030100036700001f690000013d000000000020043f0000000501000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000000101043b0000000d02000029000000000020043f000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000000101043b000000000201041a000018b7022001970000000c03000029000000000232019f000000000021041b000000400100043d0000000000310435000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017b8011001c70000800d020000390000000303000039000018770400004100000000050004110000000d06000029000006e60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016660000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000167f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000167b0000c13d000000000006004b0000168c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ac60000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b00001e390000c13d0000184a01000041000000000010043f0000000b01000029000014300000013d000017ca02200197000000000262019f000000000021041b0000000001000414000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000303000039000017cc040000415eac5ea20000040f0000000100200190000006e90000c13d000000690000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016b80000c13d000025450000013d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000d0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016d40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016d00000c13d000000000006004b000016e10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ad20000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000009bd0000813d000000690000013d0000000801000039000000000201041a0000000801200270000017af01100198000016f40000c13d000000ff002001900000000001000019000017bf01006041000000400200043d000000200320003900000000004304350000000000120435000017ac0020009c000017ac0200804100000040012002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017c0011001c70000800d020000390000000103000039000017c1040000415eac5ea20000040f0000000100200190000000690000613d0000000804000039000000000104041a000017c6011001970000000d030000290000000802300210000017c702200197000000000112019f00000001011001bf000000000014041b000000000003004b000006e90000613d000017c20100004100000000001004430000000d0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000006e90000613d000017c20100004100000000001004430000000d0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d0000002401300039000002d1020000390000000000210435000017c4010000410000000000130435000c00000003001d00000004013000390000000002000410000000000021043500000000010004140000000d02000029000000040020008c000017500000613d0000000c02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017c5011001c70000000d020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000006e90000613d0000000c01000029000017b50010009c000020370000213d0000000c01000029000000400010043f000000000100001900005ead0001042e000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000b0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000176e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000176a0000c13d000000000006004b0000177b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ade0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a1b0000813d000000690000013d0000000a02000039000000000202041a000000ff0020019000001aea0000c13d00001888030000410000000d04000029000000000034043500000000030004140000000802200270000017af02200197000000040020008c00001db50000c13d0000000001140019000000400010043f0000000d020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d000000000002004b00001aeb0000c13d00000004010000390000000201100367000000000101043b5eac51f00000040f000000000100001900005ead0001042e000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000d0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000017ba0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017b60000c13d000000000006004b000017c70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b0e0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000690000413d0000000d0200002900000ef40000013d000017ac0050009c000017ac05008041000000c0015002100000004003700210000000000131019f000017d0011001c75eac5ea70000040f0000000c0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000017ea0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017e60000c13d000000000006004b000017f70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b310000613d0000001f02400039000000600420018f0000000002b40019000b00000002001d000000400020043f000000200030008c00000c3c0000813d000000690000013d000000c002100039000000400020043f0000000b020000390000000d040000290000000000240435000000a0041000390000188b0200004100000000002404350000000c02000039000000000202041a000000ff0020019000001b3d0000c13d000c00000004001d0000000a02000039000000000202041a000000400b00043d000018450400004100000000004b04350000000404b000390000184605000041000000000054043500000000040004140000000802200270000017af02200197000000040020008c0000184b0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f00001847011001c7000b0000000b001d5eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0b0000290000000b05700029000018380000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018340000c13d000000000006004b000018450000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001eff0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000017b50020009c000020370000213d0000000100100190000020370000c13d000000400020043f000000200030008c000000690000413d00000000010b0433000b00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000a00000001001d000017c20100004100000000001004430000000b0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000000002000410000000000021043500000044013000390000188d0200004100000000002104350000188e0100004100000000001304350000000401300039000800000001001d0000000a020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000b02000029000000040020008c000018910000613d0000000902000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000b020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000024520000613d0000000901000029000017b50010009c000020370000213d0000000903000029000000400030043f0000000a01000039000000000201041a0000184501000041000000000013043500001846010000410000000803000029000000000013043500000000010004140000000802200270000017af02200197000000040020008c0000246c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000024960000013d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000d0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000018be0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018ba0000c13d000000000006004b000018cb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b640000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000690000413d00000eaf0000013d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000b0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000018ed0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018e90000c13d000000000006004b000018fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b700000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000690000413d00000ef30000013d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000b0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000191c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019180000c13d000000000006004b000019290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c460000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000690000413d0000111d0000013d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000000b0b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000194b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019470000c13d000000000006004b000019580000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c520000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000011630000813d000000690000013d000000000101043b00000000030000190000000c050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000019660000413d000000c001200039000009c70000013d000000000010043f0000000501000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000000101043b0000000002000411000017af02200197000b00000002001d000000000020043f000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000000101043b000000000101041a000000ff00100190000014f70000c13d0000000801000039000000000101041a00001896001001980000199b0000613d0000000802100270000017af02200198000019990000c13d000000ff001001900000000002000019000017bf020060410000000b0020006b000014f70000613d000000400100043d0000006402100039000018a70300004100000000003204350000004402100039000018a803000041000000000032043500000024021000390000003d030000390000143e0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019ac0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019b80000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019c40000c13d000025450000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000019dd0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000019d90000c13d000000000006004b000019ea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c690000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b0000131f0000613d000000090000006b000006e90000613d000000000a040019000d00000000001d0000000d01000029000000050110021000000008011000290000000201100367000000000101043b000b00000001001d0000000a01000039000000000201041a000018450100004100000000001a04350000000401a000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00001a170000c13d0000000103000031000000200030008c0000002004000039000000000403401900001a420000013d000017ac00a0009c000017ac0300004100000000030a40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c7000c0000000a001d5eac5ea70000040f0000000c0a0000290000006003100270000017ac03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900001a310000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00001a2d0000c13d0000001f0740019000001a3e0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023d90000613d0000001f01400039000000600110018f0000000001a10019000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d00000000020a0433000017af0020009c000000690000213d0000000b01000039000000000101041a000a00000001001d000017c2010000410000000000100443000c00000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b0000000c03000029000000690000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a000390000187f0200004100000000002104350000002401a000390000000b0200002900000000002104350000186d0100004100000000001a04350000000401a000390000000a0200002900000000002104350000000001000414000000040030008c00001a850000613d000017ac00a0009c000017ac0200004100000000020a40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000c0000000a001d5eac5ea20000040f0000000c0a0000290000006003100270000117ac0030019d00030000000103550000000100200190000023e50000613d000017b500a0009c000020370000213d0000004000a0043f0000000d020000290000000102200039000d00000002001d000000090020006c00001a000000413d000006e90000013d000017ac0010009c000017ac01008041000000c00110021000001844011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00001aa20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00001a9e0000c13d000000000006004b00001aaf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c750000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b00001fc70000c13d0000184a01000041000000000010043f0000000a01000029000014300000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001acd0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ad90000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ae50000c13d000025450000013d0000000d01000029000000440210003900001889030000410000000000320435000000240210003900000010030000390000000000320435000017cf0200004100000000002104350000000402100039000000200300003900001e070000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001afd0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b090000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b150000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b210000c13d000025450000013d00000004020000390000000202200367000000000302043b00000000020004140000000006000411000000040060008c00001de30000c13d000017b50040009c000020370000213d000000010200003900001f160000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b380000c13d000025450000013d0000188c01000041000000000010043f0000185e0100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b480000c13d000025450000013d0000000a03000039000000000303041a000000ff0430018f0000000d0000006b00001dea0000c13d000000000004004b00001dfd0000613d000018b7023001970000000a03000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017b8011001c70000800d020000390000000103000039000018a304000041000003a80000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b6b0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b770000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b830000c13d000025450000013d0000000a02000039000000000202041a00001845040000410000000b05000029000000000045043500000084011001bf0000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00001e0b0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000b010000290000000001010433000c00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000b00000001001d000017c20100004100000000001004430000000c0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000000d02000029000000000021043500000044013000390000186c0200004100000000002104350000186d01000041000000000013043500000004013000390000000b020000290000000000210435000d00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c00001bd60000613d0000000d02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000c020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000023090000613d0000000d01000029000017b50010009c000020370000213d0000000d01000029000000400010043f000000000100001900005ead0001042e0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001be40000c13d000025450000013d000017ac0010009c000017ac01008041000000c0011002100000004003500210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001bff0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001bfb0000c13d000000000006004b00001c0c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e420000613d0000001f01400039000000600110018f0000000c01100029000000400010043f000000200030008c000010920000813d000000690000013d000017ac0030009c000017ac03008041000000c0013002100000004003500210000000000131019f000017d0011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001c2d0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001c290000c13d000000000006004b00001c3a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e4e0000613d0000001f01400039000000600110018f0000000c01100029000a00000001001d000000400010043f000000200030008c000014af0000813d000000690000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c4d0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c590000c13d000025450000013d000000000004004b000000000200001900001c620000613d00000000020104330000000301400210000018b80110027f000018b801100167000000000112016f0000000102400210000000000121019f000020310000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c700000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c7c0000c13d000025450000013d000017ac0050009c000017ac0300004100000000030540190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017c5011001c7000d00000005001d5eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0b0000290000000d0570002900001c9c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001c980000c13d000000000006004b00001ca90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e5a0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000d00000002001d000017b50020009c000020370000213d0000000100100190000020370000c13d0000000d01000029000000400010043f000000200030008c000000690000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b0000142d0000613d0000000a01000039000000000201041a00001845010000410000000d04000029000000000014043500000004014000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000021b40000c13d0000002004000039000021de0000013d0000000005000414000000040020008c00001e970000c13d0000000b02400029000c00000002001d000000400020043f0000000b020000290000000002020433000017af0020009c000000690000213d0000000b04000039000000000404041a0000000c0700002900000044057000390000186106000041000000000065043500000024057000390000000d06000029000000000065043500001850050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001cfc0000613d0000000c010000290000004001100210000017ac0040009c000017ac04008041000000c003400210000000000131019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac0330019700030000000103550000000100200190000021230000613d000018b6053001980000001f0630018f0000000c0450002900001d060000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b00001d020000c13d000000000006004b00001d130000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000018b6041001970000000c01400029000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000c040000290000000004040433000017b50040009c000000690000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000043030434000017b50030009c000020370000213d0000001f05300039000018b6055001970000003f05500039000018b6055001970000000005150019000017b50050009c000020370000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d000018b6063001970000001f0230018f000000000054004b0000273b0000813d000000000006004b00001d550000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001d4f0000c13d000000000002004b000027510000613d0000000007050019000027470000013d000017ac0010009c000017ac01008041000000c0011002100000004003500210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001d6f0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001d6b0000c13d000000000006004b00001d7c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ece0000613d0000001f01400039000000600110018f0000000b01100029000000400010043f000000200030008c000000690000413d000011cd0000013d000017ac0010009c000017ac01008041000000c0011002100000004003500210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001d9d0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001d990000c13d000000000006004b00001daa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001eda0000613d0000001f01400039000000600110018f0000000b01100029000000400010043f000000200030008c000000690000413d0000126e0000013d000017ac0030009c000017ac03008041000000c0013002100000004003400210000000000131019f0000185e011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0570002900001dcb0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b00001dc70000c13d000000000006004b00001dd80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ee60000613d0000001f01400039000000600110018f0000000d01100029000000400010043f000000200030008c000017940000813d000000690000013d000017ac0020009c000017ac02008041000000c001200210000000000003004b00001f0b0000c13d000000000200041100001f0f0000013d000000000004004b00001dfd0000c13d000018b70230019700000001022001bf0000000a03000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017b8011001c70000800d020000390000000103000039000018a204000041000003a80000013d000017cf03000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000018a4040000410000000000430435000000a402200039000000140300003900000000003204350000004001100210000017d0011001c700005eae00010430000017ac0010009c000017ac01008041000000c0011002100000004003500210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001e210000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001e1d0000c13d000000000006004b00001e2e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000200a0000613d0000001f01400039000000600110018f0000000b01100029000000400010043f000000200030008c00001b9b0000813d000000690000013d0000000c0000006b0000001101006039000000100100c039000000000201041a000017ca022001970000000d022001af000000000021041b000000000100001900005ead0001042e0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e490000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e550000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e610000c13d000025450000013d000017ac0050009c000017ac05008041000000c0015002100000000b03000029000b00000003001d0000004003300210000000000113019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001e7e0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001e7a0000c13d000000000006004b00001e8b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000206f0000613d0000001f02400039000000600220018f0000000b02200029000c00000002001d000000400020043f000000200030008c00000c550000813d000000690000013d000017ac0050009c000017ac05008041000000c0015002100000000b03000029000b00000003001d0000004003300210000000000113019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001eaf0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001eab0000c13d000000000006004b00001ebc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000207b0000613d0000001f02400039000000600220018f0000000b02200029000c00000002001d000000400020043f000000200030008c00001cda0000813d000000690000013d0000000d0000006b000020870000c13d0000185d01000041000000000010043f0000185e0100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ed50000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ee10000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eed0000c13d000025450000013d0000000d0000006b000020be0000c13d000017cf03000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000017ce040000410000000000430435000000a402200039000000190300003900001e070000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f060000c13d000025450000013d000017cb011001c70000800902000039000000000400041100000000050000195eac5ea20000040f00030000000103550000006003100270000117ac0030019d000017ac0430019800001f3a0000613d000000400500043d0000001f034000390000189b033001970000003f033000390000189c063001970000000003560019000000000063004b00000000060000390000000106004039000017b50030009c000020370000213d0000000100600190000020370000c13d000000400030043f0000000006450436000018b6054001980000001f0440018f000000000356001900001f2d0000613d000000000701034f000000007807043c0000000006860436000000000036004b00001f290000c13d000000000004004b00001f3a0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000001f410000613d00000001010000390000000902000039000000000012041b000000000100001900005ead0001042e000000400100043d00000044021000390000189d03000041000000000032043500000024021000390000000f0300003900000e620000013d0000000d0000006b000020d80000c13d000017cf020000410000000904000029000000000024043500000084021001bf00000020030000390000000000320435000000c40210003900001898030000410000000000320435000000a4011000390000001b0200003900000000002104350000004001400210000017d0011001c700005eae000104300000000c03000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c75eac5ea70000040f0000006003100270000117ac0030019d000017ac0330019700030000000103550000000100200190000021080000613d000000200200008a00000000052301700000001f0630018f0000000c0450002900001f740000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b00001f700000c13d000000000006004b00001f810000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000c01400029000000000041004b00000000040000390000000104004039000017b50010009c000020370000213d0000000100400190000020370000c13d000000400010043f000018520030009c000000690000213d000000200030008c000000690000413d0000000c040000290000000004040433000017b50040009c000000690000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000018530500804100001853044001970000185307600197000000000874013f000000000074004b00000000040000190000185304004041000018530080009c000000000405c019000000000004004b000000690000c13d0000000054030434000017b50040009c000020370000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000017b50030009c000020370000213d000000400030043f00000000034104360000000007540019000000000067004b000000690000213d000000000724016f0000001f0640018f000000000035004b0000255d0000813d000000000007004b00001fc30000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001fbd0000c13d000000000006004b000025730000613d0000000008030019000025690000013d0000000d020000290000001f02200039000018b602200197000a00000002001d0000003f02200039000018b6022001970000000902200029000017b50020009c000020370000213d000000400020043f0000000d02000029000000090500002900000000002504350000000b02000029000000000020007c000000690000213d0000000d02000029000018b6042001980008001f00200193000000a001100039000700000004001d000b00000001001d00000000014100190000000c020000290000002002200039000600000002001d000000020220036700001fe90000613d000000000402034f0000000b05000029000000004604043c0000000005650436000000000015004b00001fe50000c13d000000080000006b00001ff70000613d000000070220036000000008040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000b020000290000000d0120002900000000000104350000000a01000039000000000201041a000000400400043d00001845010000410000000000140435000c00000004001d00000004014000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000022250000c13d00000020040000390000224f0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020110000c13d000025450000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000201c0000c13d000000020020006c0000202e0000813d00000002020000290000000302200210000000f80220018f000018b80220027f000018b80220016700000005033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf000000000010041b00000003010000290000000001010433000500000001001d000017b50010009c0000203d0000a13d0000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000000101000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000001330000c13d000000200010008c0000205b0000413d0000000102000039000000000020043f00000005030000290000001f023000390000000502200270000017b90220009a000000200030008c000017ba020040410000001f011000390000000501100270000017b90110009a000000000012004b0000205b0000813d000000000002041b0000000102200039000000000012004b000020570000413d00000005010000290000001f0010008c000020b10000a13d0000000101000039000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000200200008a0000000502200180000000000101043b000021600000c13d00000020030000390000216d0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020760000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020820000c13d000025450000013d0000000d0010006c000021140000c13d0000000a01000039000000000201041a00001845010000410000000a030000290000000001130436000d00000001001d00000004013001bf0000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c0000212f0000c13d00000020010000390000000d02000029000000400020043f0000000a020000290000000002020433000017af0020009c000000690000213d0000000b03000039000000000303041a00001856040000410000000d05000029000000000045043500000004045001bf000000000034043500000044035000390000185704000041000000000043043500000024035000390000000b0400002900000000004304350000000003000414000000040020008c0000233a0000c13d0000000d01100029000000400010043f000023690000013d000000050000006b0000000001000019000020b60000613d0000000101000029000000000101043300000005040000290000000302400210000018b80220027f000018b802200167000000000121016f0000000102400210000000000121019f0000217b0000013d000000c004200039000000400040043f0000000d050000290000000000510435000000a00120003900000000003104350000000c01000029000000a001100210000000000151019f0000000d02000039000000000012041b000000400100043d0000000000310435000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017b8011001c70000800d020000390000000203000039000017c904000041000006e60000013d000000c002100039000000400020043f0000000d0200002900000009030000290000000000230435000000a0021000390000000b01000029000a00000002001d00000000001204350000000c01000029000000000010043f0000000e01000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d00000009020000290000000002020433000017af022001970000000a030000290000000003030433000000a003300210000000000223019f000000000101043b000000000021041b000000400100043d0000000b020000290000000000210435000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017b8011001c70000800d02000039000000030300003900001897040000410000000c050000290000165d0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000210f0000c13d000025450000013d00000000010000190000000a020000290000078e0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000211e0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000212a0000c13d000025450000013d000017ac0010009c000017ac01008041000000c0011002100000000a03000029000a00000003001d0000004003300210000000000113019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000021470000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000021430000c13d000000000006004b000021540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023160000613d0000001f01400039000000600110018f0000000a02100029000d00000002001d000000400020043f000000200030008c0000209a0000813d000000690000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000021660000c13d000000050020006c000021780000813d00000005020000290000000302200210000000f80220018f000018b80220027f000018b80220016700000003033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000102000039000000000012041b0000000b010000290000000001010433000500000001001d000017b50010009c000020370000213d0000000601000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000001330000c13d000000200010008c000021a00000413d0000000602000039000000000020043f00000005030000290000001f023000390000000502200270000017bb0220009a000000200030008c000017bc020040410000001f011000390000000501100270000017bb0110009a000000000012004b000021a00000813d000000000002041b0000000102200039000000000012004b0000219c0000413d00000005010000290000001f0010008c0000229d0000a13d0000000601000039000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000200200008a0000000502200180000000000101043b000023f20000c13d0000002003000039000023ff0000013d0000000d03000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000021cd0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000021c90000c13d000000000006004b000021da0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023220000613d0000001f01400039000000600110018f0000000d01100029000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d0000000d010000290000000001010433000d00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000c00000001001d000017c20100004100000000001004430000000d0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000018700200004100000000002104350000188001000041000000000015043500000004015000390000000c020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d0000000000120435000018b6041001970000001f0310018f000c00000005001d000000a402500039000000a10020008c000026190000413d000000000004004b000022200000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c0000221a0000c13d000000000003004b0000262f0000613d000000a0040000390000000005020019000026250000013d0000000c03000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c057000290000223e0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b0000223a0000c13d000000000006004b0000224b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000232e0000613d0000001f01400039000000600210018f0000000c01200029000000000021004b00000000020000390000000102004039000017b50010009c000020370000213d0000000100200190000020370000c13d000000400010043f000000200030008c000000690000413d0000000c010000290000000001010433000c00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000500000001001d000017c20100004100000000001004430000000c0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000185102000041000000000021043500001880010000410000000001150436000400000001001d000000040150003900000005020000290000000000210435000000240150003900000000000104350000000901000029000000000101043300000084025000390000000000120435000018b6041001970000001f0310018f000900000005001d000000a4025000390000000b0020006b000026580000813d000000000004004b000022990000613d0000000b063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000022930000c13d000000000003004b0000266f0000613d0000000005020019000026640000013d000000050000006b0000000001000019000022a20000613d0000000801000029000000000101043300000005040000290000000302400210000018b80220027f000018b802200167000000000121016f0000000102400210000000000121019f0000240d0000013d0000000b03000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017c5011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000022c30000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b000022bf0000c13d000000000006004b000022d00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023bf0000613d0000001f01400039000000600210018f0000000b01200029000000000021004b00000000020000390000000102004039000017b50010009c000020370000213d0000000100200190000020370000c13d000000400010043f000000200030008c000000690000413d0000000b010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b000025580000c13d0000184a01000041000000000010043f0000000001000411000000040010043f0000188601000041000000240010043f000017c50100004100005eae000104300000000002000416000a000b00200074000023cb0000813d000000400100043d0000004402100039000018930300004100000000003204350000002402100039000000140300003900000e620000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023040000c13d000025450000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023110000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000231d0000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023290000c13d000025450000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023350000c13d000025450000013d000017ac0030009c000017ac03008041000000c0013002100000000d03000029000d00000003001d0000004003300210000000000113019f000017d0011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000023520000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b0000234e0000c13d000000000006004b0000235f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024460000613d0000001f01400039000000600110018f0000000d01100029000000400010043f000000200030008c000000690000413d0000000d010000290000000001010433000d00000001001d000018580100004100000000001004430000000001000414000017ac0010009c000017ac01008041000000c00110021000001859011001c70000800b020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b0000185a0010009c000024f00000413d000000400100043d00000064021000390000185b03000041000000000032043500000044021000390000185c030000410000000000320435000000240210003900000026030000390000143e0000013d0000000007650019000000000006004b000023ab0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000023890000c13d000023ab0000013d0000000007650019000000000006004b000023ab0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000023930000c13d000023ab0000013d0000000007650019000000000006004b000023ab0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b0000239d0000c13d000023ab0000013d0000000007650019000000000006004b000023ab0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000023a70000c13d000000000002004b000023b80000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000d00000003001d0000000002230436000009cf0000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023c60000c13d000025450000013d00000080020000390000000d010000290000000c030000295eac5b380000040f00000000020004160000000b0020006c000006e90000613d00000000010004140000000004000411000000040040008c000024f90000c13d00000001020000390000000101000031000025060000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023e00000c13d000025450000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023ed0000c13d000025450000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000b0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000023f80000c13d000000050020006c0000240a0000813d00000005020000290000000302200210000000f80220018f000018b80220027f000018b8022001670000000b033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000602000039000000000012041b00000009010000290000000001010433000b00000001001d000017b50010009c000020370000213d0000000701000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000001330000c13d000000200010008c000024320000413d0000000702000039000000000020043f0000000b030000290000001f023000390000000502200270000017bd0220009a000000200030008c000017be020040410000001f011000390000000501100270000017bd0110009a000000000012004b000024320000813d000000000002041b0000000102200039000000000012004b0000242e0000413d0000000b010000290000001f0010008c0000245f0000a13d0000000701000039000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000200200008a0000000b02200180000000000101043b000025870000c13d0000002003000039000025940000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000244d0000c13d000025450000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000245a0000c13d000025450000013d0000000b0000006b0000000001000019000024640000613d000000060100002900000000010104330000000b040000290000000302400210000018b80220027f000018b802200167000000000121016f0000000102400210000000000121019f000025a20000013d0000000903000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000024850000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000024810000c13d000000000006004b000024920000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000253a0000613d0000001f01400039000000600110018f0000000901100029000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d00000009010000290000000001010433000b00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000a00000001001d000017c20100004100000000001004430000000b0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000018550200004100000000002104350000188e0100004100000000001304350000000401300039000800000001001d0000000a020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000b02000029000000040020008c000024da0000613d0000000902000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000b020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000028d30000613d0000000901000029000017b50010009c000020370000213d0000000903000029000000400030043f0000000a01000039000000000201041a0000184501000041000000000013043500001846010000410000000803000029000000000013043500000000010004140000000802200270000017af02200197000000040020008c000028e00000c13d0000000103000031000000200030008c000000200400003900000000040340190000290a0000013d0000000d02000029000017ac022001970000000001210049000017ac0010009c000007160000213d000000400200043d000a00000002001d0000000a020000290000078e0000013d000017ac0010009c000017ac01008041000000c001100210000017cb011001c700008009020000390000000a0300002900000000050000195eac5ea20000040f000000010220018f00030000000103550000006001100270000117ac0010019d000017ac01100197000000000001004b000025110000c13d000000000002004b000006e90000c13d000000400100043d00000044021000390000189203000041000000000032043500000024021000390000001b0300003900000e620000013d000017b50010009c000020370000213d0000001f03100039000018b6033001970000003f03300039000018b604300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000017b50040009c000020370000213d0000000100500190000020370000c13d000000400040043f0000000006130436000018b6031001980000001f0410018f000000000136001900000003050003670000252c0000613d000000000705034f000000007807043c0000000006860436000000000016004b000025280000c13d000000000004004b000025080000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000025080000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025410000c13d000000000005004b000025520000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae0001043000000080020000390000000d010000290000000c030000295eac5b380000040f0000078d0000013d0000000008730019000000000007004b000025660000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000025620000c13d000000000006004b000025730000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b000025800000c13d000000400100043d000017b40010009c000020370000213d0000002002100039000000400020043f0000000000010435000000400300043d0000285c0000013d0000000d04000029000018630040009c000026c40000413d00000040060000390000000d04000029000018630440012a000026cd0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000090600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000258d0000c13d0000000b0020006c0000259f0000813d0000000b020000290000000302200210000000f80220018f000018b80220027f000018b80220016700000009033000290000000003030433000000000223016f000000000021041b0000000b01000029000000010110021000000001011001bf0000000702000039000000000012041b000000400100043d0000002002100039000017bf0300004100000000003204350000000000010435000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017c0011001c70000800d020000390000000103000039000b00000003001d000017c1040000415eac5ea20000040f0000000100200190000000690000613d000017c2010000410000000000100443000017bf0100004100000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000025e80000c13d00000009010000390000000102000039000000000021041b0000000a04000029000017af00400198000013cb0000613d0000000c01000029000017b0021001970000000a01000039000000000301041a000017c6033001970000000804400210000017c704400197000000000334019f00000001033001bf000000000031041b000017c8010000410000000b03000039000000000013041b000000400100043d000027110020008c000027ff0000413d0000006402100039000017d10300004100000000003204350000004402100039000017d203000041000000000032043500000024021000390000002a030000390000143e0000013d000017c2010000410000000000100443000017bf0100004100000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d0000002401300039000002d1020000390000000000210435000017c4010000410000000000130435000000040130003900000000020004100000000000210435000017ac0030009c000900000003001d000017ac01000041000000000103401900000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017c5011001c7000017bf020000415eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000025c90000613d0000000901000029000017b50010009c000020370000213d0000000901000029000000400010043f000025c90000013d0000000005420019000000000004004b000026220000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b0000261e0000c13d000000000003004b0000262f0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000d03000029000000040030008c000017500000613d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac0100804100000060011002100000000c03000029000017ac0030009c000017ac030080410000004003300210000000000131019f000017ac0020009c000017ac02008041000000c002200210000000000121019f0000000d020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000017500000c13d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026530000c13d000025450000013d0000000005420019000000000004004b000026610000613d0000000b06000029000000000702001900000000680604340000000007870436000000000057004b0000265d0000c13d000000000003004b0000266f0000613d000b000b0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000b0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000c03000029000000040030008c0000268b0000613d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac0100804100000060011002100000000903000029000017ac0030009c000017ac030080410000004003300210000000000131019f000017ac0020009c000017ac02008041000000c002200210000000000112019f0000000c020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000027ad0000613d0000000901000029000017b50010009c000020370000213d0000000902000029000000400020043f0000000d0100002900000004030000290000000000130435000000200100003900000000001204350000004001200039000000070210002900000006030000290000000203300367000000070000006b000026a10000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b0000269d0000c13d000000080000006b000026af0000613d000000070330036000000008040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000d0110002900000000000104350000000a020000290000006001200210000018810110009a000018820020009c00001883010080410000000902000029000017ac0020009c000017ac020080410000004002200210000000000121019f0000000002000414000017ac0020009c000017ac02008041000000c00220021000000000012100190000800d0200003900000001030000390000188404000041000003a80000013d0000000d04000029000018650040009c000018640440212a00000000060000390000002006002039000018660040009c00000010066081bf0000186704408197000018660440812a000018680040009c0000000806608039000017b504408197000018680440812a000027100040008c0000000406608039000017ac04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000017b50040009c000020370000213d0000000100800190000020370000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f000026f60000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000026f20000c13d000000000007004b000000000665001900000021066000390000000d09000029000000090090008c0000000a7990011a0000000307700210000000010660008a000000000806043300001869088001970000186a0770021f0000186b07700197000000000787019f0000000000760435000026fa0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b000027ba0000813d000000000009004b000027180000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000027120000c13d000000000008004b000027d00000613d000000000a070019000027c60000013d0000000008730019000000000007004b000027250000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000027210000c13d000000000006004b000027320000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000d04000029000018630040009c000027550000413d00000040060000390000000d04000029000018630440012a0000275e0000013d0000000007650019000000000006004b000027440000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000027400000c13d000000000002004b000027510000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d0000285c0000013d0000000d04000029000018650040009c000018640440212a00000000060000390000002006002039000018660040009c00000010066081bf0000186704408197000018660440812a000018680040009c0000000806608039000017b504408197000018680440812a000027100040008c0000000406608039000017ac04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000017b50040009c000020370000213d0000000100800190000020370000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f000027870000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000027830000c13d000000000007004b000000000665001900000021066000390000000d09000029000000090090008c0000000a7990011a0000000307700210000000010660008a000000000806043300001869088001970000186a0770021f0000186b07700197000000000787019f00000000007604350000278b0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b000028080000813d000000000009004b000027a90000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000027a30000c13d000000000008004b0000281e0000613d000000000a070019000028140000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027b50000c13d000025450000013d000000000a970019000000000009004b000027c30000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000027bf0000c13d000000000008004b000027d00000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000027e70000813d000000000007004b000027e30000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000027dd0000c13d000000000006004b000027fd0000613d0000000008030019000027f30000013d0000000008730019000000000007004b000027f00000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000027ec0000c13d000000000006004b000027fd0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f000000000048043500000000035300190000284c0000013d0000000d03000029000017af053001980000285e0000c13d0000004402100039000017ce0300004100000000003204350000002402100039000000190300003900000e620000013d000000000a970019000000000009004b000028110000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b0000280d0000c13d000000000008004b0000281e0000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000028350000813d000000000007004b000028310000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c0000282b0000c13d000000000006004b0000284b0000613d0000000008030019000028410000013d0000000008730019000000000007004b0000283e0000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b0000283a0000c13d000000000006004b0000284b0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b00000000020000390000000102004039000017b50040009c000020370000213d0000000100200190000020370000c13d0000000003040019000000400040043f0000002002000039000023bc0000013d000017b10010009c000020370000213d0000004003100039000000400030043f0000002003100039000000000023043500000000005104350000000c01000029000000a001100210000000000151019f0000000d03000039000000000013041b000000400100043d0000000000210435000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017b8011001c70000800d020000390000000203000039000017c9040000415eac5ea20000040f0000000100200190000000690000613d0000000f01000039000000000201041a000017ca032001970000000006000411000000000363019f000000000031041b0000000001000414000017af05200197000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000303000039000017cc040000415eac5ea20000040f0000000100200190000000690000613d0000001201000039000000000001041b00000007010000290000000001010433000d00000001001d000017b50010009c000020370000213d0000001301000039000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001330000c13d0000000c01000029000000200010008c000028bf0000413d0000001301000039000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000c010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000028bf0000813d000000000002041b0000000102200039000000000012004b000028bb0000413d0000000d010000290000001f0010008c0000295f0000a13d0000001301000039000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d000000200200008a0000000d02200180000000000101043b000029c10000c13d0000002003000039000029cd0000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028db0000c13d000025450000013d0000000903000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000028f90000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000028f50000c13d000000000006004b000029060000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029530000613d0000001f01400039000000600110018f0000000901100029000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d00000009010000290000000001010433000b00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000a00000001001d000017c20100004100000000001004430000000b0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900001861020000410000000000210435000018800100004100000000001504350000000401500039000800000001001d0000000a020000290000000000210435000000240150003900000000000104350000000d01000029000000000101043300000084025000390000000000120435000018b6041001970000001f0310018f000900000005001d000000a4025000390000000c0020006b0000296b0000813d000000000004004b0000294f0000613d0000000c063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000029490000c13d000000000003004b000029820000613d0000000005020019000029770000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000295a0000c13d000025450000013d0000000d0000006b0000000001000019000029640000613d000000040100002900000000010104330000000d040000290000000302400210000018b80220027f000018b802200167000000000121016f000b000100400218000029da0000013d0000000005420019000000000004004b000029740000613d0000000c06000029000000000702001900000000680604340000000007870436000000000057004b000029700000c13d000000000003004b000029820000613d000c000c0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000c0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c0000299e0000613d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac0100804100000060011002100000000903000029000017ac0030009c000017ac030080410000004003300210000000000131019f000017ac0020009c000017ac02008041000000c002200210000000000112019f0000000b020000295eac5ea20000040f0000006003100270000117ac0030019d00030000000103550000000100200190000029b40000613d0000000901000029000017b50010009c000020370000213d0000000903000029000000400030043f0000000a01000039000000000201041a0000184501000041000000000013043500001846010000410000000803000029000000000013043500000000010004140000000802200270000017af02200197000000040020008c000029e20000c13d0000000103000031000000200030008c0000002004000039000000000403401900002a0c0000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029bc0000c13d000025450000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000029c60000c13d0000000d0020006c000029d80000813d0000000d020000290000000302200210000000f80220018f000018b80220027f000018b80220016700000007033000290000000003030433000000000223016f000000000021041b0000000d0100002900000001011002100000000b011001af0000001302000039000000000012041b000000200100003900000100001004430000012000000443000017cd0100004100005ead0001042e0000000903000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000029fb0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000029f70000c13d000000000006004b00002a080000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002a6e0000613d0000001f01400039000000600110018f0000000901100029000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d00000009010000290000000001010433000d00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000c00000001001d000017c20100004100000000001004430000000d0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d0000006401300039000017c802000041000000000021043500000044013000390000188f020000410000000000210435000018490100004100000000001304350000000401300039000a00000001001d0000000c020000290000000000210435000b00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c00002a500000613d0000000b02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000d020000295eac5ea20000040f0000006003100270000117ac0030019d0003000000010355000000010020019000002a7a0000613d0000000b01000029000017b50010009c000020370000213d0000000b04000029000000400040043f0000000c02000039000000000102041a000018b70110019700000001011001bf000000000012041b0000001201000039000000000101041a000d00000001001d0000000a01000039000000000201041a0000184501000041000000000014043500001846010000410000000a03000029000000000013043500000000010004140000000802200270000017af02200197000000040020008c00002a870000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ab10000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a750000c13d000025450000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a820000c13d000025450000013d0000000b03000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900002aa00000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00002a9c0000c13d000000000006004b00002aad0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002b150000613d0000001f01400039000000600110018f0000000b01100029000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d0000000b010000290000000001010433000c00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000a00000001001d000017c20100004100000000001004430000000c0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000000d02000029000000000021043500000044013000390000189002000041000000000021043500001849010000410000000001130436000b00000001001d00000004013000390000000a020000290000000000210435000d00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c00002af50000613d0000000d02000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000c020000295eac5ea20000040f0000006003100270000117ac0030019d0003000000010355000000010020019000002b210000613d0000000d01000029000017b50010009c000020370000213d0000000d01000029000000400010043f0000001301000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000c00000004001d0000001f0040008c00000000040000390000000104002039000a00000005001d000000000445013f0000000100400190000001330000c13d0000000d040000290000000c050000290000000000540435000000000003004b00002b2e0000c13d000001000100008a0000000a0110017f0000000b030000290000000000130435000000000002004b0000000001030019000000200110c03900002b490000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b1c0000c13d000025450000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b290000c13d000025450000013d000000000010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017b8011001c700008010020000395eac5ea70000040f0000000100200190000000690000613d0000000a02000029000000020020008c00002b3d0000813d000000200100003900002b480000013d000000000101043b0000000002000019000000000302001900000020022000390000000d04200029000000000501041a000000000054043500000001011000390000000c0020006c00002b3f0000413d00000040013000390000000d011000290000000d0110006a0000001f01100039000018b6011001970000000d02100029000000000012004b00000000010000390000000101004039000c00000002001d000017b50020009c000020370000213d0000000100100190000020370000c13d0000000c03000029000000400030043f0000000a01000039000000000201041a0000184501000041000000000013043500000004013000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00002b680000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b920000013d0000000c03000029000017ac0030009c000017ac030080410000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900002b810000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00002b7d0000c13d000000000006004b00002b8e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002bdb0000613d0000001f01400039000000600110018f0000000c01100029000017b50010009c000020370000213d000000400010043f000000200030008c000000690000413d0000000c010000290000000001010433000c00000001001d000017af0010009c000000690000213d0000000b01000039000000000101041a000a00000001001d000017c20100004100000000001004430000000c0100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000002bda0000613d000000000101043b000000000001004b000000690000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000018620200004100000000002104350000188001000041000000000015043500000004015000390000000a0200002900000000002104350000002401500039000000000001043500000084025000390000000d0100002900000000010104330000000000120435000018b6041001970000001f0310018f000d00000005001d000000a4025000390000000b0020006b00002be70000813d000000000004004b00002bd60000613d0000000b063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00002bd00000c13d000000000003004b00002bfe0000613d000000000502001900002bf30000013d000000000001042f0000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002be20000c13d000025450000013d0000000005420019000000000004004b00002bf00000613d0000000b06000029000000000702001900000000680604340000000007870436000000000057004b00002bec0000c13d000000000003004b00002bfe0000613d000b000b0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000b0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000c03000029000000040030008c00001bd60000613d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac0100804100000060011002100000000d03000029000017ac0030009c000017ac030080410000004003300210000000000131019f000017ac0020009c000017ac02008041000000c002200210000000000112019f0000000c020000295eac5ea20000040f0000006003100270000117ac0030019d0003000000010355000000010020019000001bd60000c13d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000025450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c220000c13d000025450000013d00000000430104340000000001320436000018b6063001970000001f0530018f000000000014004b00002c3d0000813d000000000006004b00002c390000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00002c330000c13d000000000005004b00002c530000613d000000000701001900002c490000013d0000000007610019000000000006004b00002c460000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00002c420000c13d000000000005004b00002c530000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f03300039000018b6023001970000000001210019000000000001042d000018520010009c00002c690000213d000000630010008c00002c690000a13d00000002030003670000000401300370000000000101043b000017af0010009c00002c690000213d0000002402300370000000000202043b000017af0020009c00002c690000213d0000004403300370000000000303043b000000000001042d000000000100001900005eae0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b00002c790000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b00002c730000413d000000000001042d0000001f02200039000018b6022001970000000001120019000000000021004b00000000020000390000000102004039000017b50010009c00002c860000213d000000010020019000002c860000c13d000000400010043f000000000001042d0000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae0001043000000000030100190000001f01100039000000000021004b0000000004000019000018530400404100001853052001970000185301100197000000000651013f000000000051004b00000000010000190000185301002041000018530060009c000000000104c019000000000001004b00002cd40000613d0000000205000367000000000135034f000000000401043b000018b90040009c00002cce0000813d0000001f01400039000018b6011001970000003f01100039000018b607100197000000400100043d0000000007710019000000000017004b00000000080000390000000108004039000017b50070009c00002cce0000213d000000010080019000002cce0000c13d0000002008300039000000400070043f00000000034104360000000007840019000000000027004b00002cd40000213d000000000585034f000018b6064001980000001f0740018f000000000263001900002cbe0000613d000000000805034f0000000009030019000000008a08043c0000000009a90436000000000029004b00002cba0000c13d000000000007004b00002ccb0000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000000024300190000000000020435000000000001042d0000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae00010430000000000100001900005eae0001043000020000000000020000000a02000039000000000202041a000000400c00043d000018450300004100000000003c04350000000404c000390000184603000041000000000034043500000000040004140000000802200270000017af02200197000000040020008c000200000001001d00002cea0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002d170000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0040009c000017ac04008041000000c001400210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002d050000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002d010000c13d000000000006004b00002d120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d970000613d00000002010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000017b500b0009c00002d810000213d000000010020019000002d810000c13d0000004000b0043f0000001f0030008c00002d7f0000a13d00000000020c0433000017af0020009c00002d7f0000213d0000000b04000039000000000404041a0000004405b00039000018550600004100000000006504350000002405b000390000000000150435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002d640000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002d500000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002d4c0000c13d000000000006004b00002d5d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002da30000613d0000001f01400039000000600710018f00000002010000290000000004b70019000017b50040009c00002d810000213d000000400040043f000000200030008c00002d7f0000413d00000000020b0433000017af0020009c00002d7f0000213d000000000002004b00002d870000613d000000000010043f0000000401000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000002d7f0000613d000000000101043b000000000101041a000017af01100197000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae0001043000000044024000390000185f030000410000000000320435000000240240003900000018030000390000000000320435000017cf020000410000000000240435000000040240003900000020030000390000000000320435000017ac0040009c000017ac040080410000004001400210000017d0011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900002dae0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d9e0000c13d00002dae0000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900002dae0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002daa0000c13d000000000005004b00002dbb0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000000801000039000000000201041a0000000801200270000017af0110019800002dc70000613d000000000001042d000000ff002001900000000001000019000017bf01006041000000000001042d00010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00002dde0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002e0a0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002df90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002df50000c13d000000000006004b00002e060000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e660000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c00002e600000213d000000010020019000002e600000c13d0000004000b0043f0000001f0030008c00002e5e0000a13d00000000020c0433000017af0020009c00002e5e0000213d0000000b04000039000000000404041a0000004405b00039000018ba060000410000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002e560000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e430000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e3f0000c13d000000000006004b00002e500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e840000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c00002e600000213d000000400010043f000000200030008c00002e5e0000413d00000000010b0433000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900002e710000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e6d0000c13d000000000005004b00002e7e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900002e8f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e8b0000c13d000000000005004b00002e9c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00002eb50000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ee10000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002ed00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002ecc0000c13d000000000006004b00002edd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f3d0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c00002f370000213d000000010020019000002f370000c13d0000004000b0043f0000001f0030008c00002f350000a13d00000000020c0433000017af0020009c00002f350000213d0000000b04000039000000000404041a0000004405b0003900001848060000410000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002f2d0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f1a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f160000c13d000000000006004b00002f270000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f5b0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c00002f370000213d000000400010043f000000200030008c00002f350000413d00000000010b0433000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900002f480000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f440000c13d000000000005004b00002f550000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900002f660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f620000c13d000000000005004b00002f730000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00002f8c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002fb80000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002fa70000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002fa30000c13d000000000006004b00002fb40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030140000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c0000300e0000213d00000001002001900000300e0000c13d0000004000b0043f0000001f0030008c0000300c0000a13d00000000020c0433000017af0020009c0000300c0000213d0000000b04000039000000000404041a0000004405b00039000018bb060000410000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000030040000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002ff10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002fed0000c13d000000000006004b00002ffe0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030320000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000300e0000213d000000400010043f000000200030008c0000300c0000413d00000000010b0433000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d00000000046200190000301f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000301b0000c13d000000000005004b0000302c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d00000000046200190000303d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030390000c13d000000000005004b0000304a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000030630000c13d0000000103000031000000200030008c000000200400003900000000040340190000308f0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000307e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000307a0000c13d000000000006004b0000308b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030eb0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c000030e50000213d0000000100200190000030e50000c13d0000004000b0043f0000001f0030008c000030e30000a13d00000000020c0433000017af0020009c000030e30000213d0000000b04000039000000000404041a0000004405b0003900001890060000410000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000030db0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030c80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030c40000c13d000000000006004b000030d50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031090000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000030e50000213d000000400010043f000000200030008c000030e30000413d00000000010b0433000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000030f60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030f20000c13d000000000005004b000031030000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000031140000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031100000c13d000000000005004b000031210000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae00010430000000000001004b0000312a0000613d000000000001042d000000400100043d0000006402100039000018bc0300004100000000003204350000004402100039000018bd03000041000000000032043500000024021000390000002d030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d3011001c700005eae0001043000010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000031510000c13d0000000103000031000000200030008c000000200400003900000000040340190000317d0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000316c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031680000c13d000000000006004b000031790000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031dc0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c000031d60000213d0000000100200190000031d60000c13d0000004000b0043f0000001f0030008c000031d40000a13d00000000020c0433000017af0020009c000031d40000213d0000000b04000039000000000404041a0000004405b000390000188d0600004100000000006504350000002405b00039000018ac060000410000000000650435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000031ca0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031b70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031b30000c13d000000000006004b000031c40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031fa0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000031d60000213d000000400010043f000000200030008c000031d40000413d00000000010b0433000017af0010009c000031d40000213d000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000031e70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031e30000c13d000000000005004b000031f40000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000032050000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032010000c13d000000000005004b000032120000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000020000000000020000000a02000039000000000202041a000000400c00043d000018450300004100000000003c04350000000404c000390000184603000041000000000034043500000000040004140000000802200270000017af02200197000000040020008c0000322b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000032590000013d000100000001001d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0040009c000017ac04008041000000c001400210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000032470000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000032430000c13d000000000006004b000032540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032b70000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000017b500b0009c000032b10000213d0000000100200190000032b10000c13d0000004000b0043f0000001f0030008c000032af0000a13d00000000020c0433000017af0020009c000032af0000213d0000000b04000039000000000404041a0000004405b00039000018550600004100000000006504350000002405b000390000000000150435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000032a50000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032920000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000328e0000c13d000000000006004b0000329f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032d50000613d0000001f01400039000000600710018f0000000001b70019000017b50010009c000032b10000213d000000400010043f000000200030008c000032af0000413d00000000010b0433000017af0010009c000032af0000213d000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000032c20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032be0000c13d000000000005004b000032cf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000032e00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032dc0000c13d000000000005004b000032ed0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000010000000000020000000a01000039000000000201041a000000ff01200190000033440000c13d000000400b00043d000018880100004100000000001b043500000000010004140000000802200270000017af02200197000000040020008c000033050000c13d0000000103000031000000200030008c00000020040000390000000004034019000033310000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f0000185e011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000331c0000c13d000000000006004b0000332d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000334d0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c000033470000213d0000000100200190000033470000c13d000000400010043f0000001f0030008c000033450000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033450000c13d000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000033580000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033540000c13d000000000005004b000033650000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae00010430000000000001004b0000336e0000613d000000000001042d000000400100043d00000044021000390000185f030000410000000000320435000000240210003900000018030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae0001043000040000000000020000000032010434000000100120008a000018c40010009c00000000010000190000338a0000a13d0000000001030433000018be01100197000018bf0010009c00000000010000190000338b0000c13d000000000001042d00000001010000390000000004000019000033910000013d0000000104400039000000000024004b0000338a0000813d00000000054300190000000005050433000018be05500197000018c00050009c000033a20000413d000018c20050009c000400000000003d000400010000403d0000338e0000413d0000000006000415000000040660008a00000005066002100000000007000415000000030770008a0000000507700210000300010000003d000033ae0000013d0000000006000415000000020660008a00000005066002100000000007000415000000010770008a0000000507700210000018c10050009c00000000080000390000000108002039000100000008001d000200000000003d000033ba0000a13d000018c30050009c000000000800003900000001080040390000000507700270000000000708001f0000000506600270000000000608001f0000338e0000413d000018bf0050009c0000338e0000613d0000000001000019000000000001042d000200000008001d0000000001000019000000000001042d00020000000000020000000a02000039000000000202041a000000400c00043d000018450300004100000000003c04350000000404c000390000184603000041000000000034043500000000040004140000000802200270000017af02200197000000040020008c000033d00000c13d0000000103000031000000200030008c00000020040000390000000004034019000033fe0000013d000100000001001d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0040009c000017ac04008041000000c001400210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000033ec0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000033e80000c13d000000000006004b000033f90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000345a0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000017b500b0009c000034540000213d0000000100200190000034540000c13d0000004000b0043f0000001f0030008c000034520000a13d00000000020c0433000017af0020009c000034520000213d0000000b04000039000000000404041a0000004405b00039000018c50600004100000000006504350000002405b000390000000000150435000018560500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000344a0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034370000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034330000c13d000000000006004b000034440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034780000613d0000001f01400039000000600710018f0000000001b70019000017b50010009c000034540000213d000000400010043f000000200030008c000034520000413d00000000010b0433000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000034650000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034610000c13d000000000005004b000034720000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000034830000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000347f0000c13d000000000005004b000034900000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000020000000000020000000a02000039000000000202041a000000400c00043d000018450300004100000000003c04350000000404c000390000184603000041000000000034043500000000040004140000000802200270000017af02200197000000040020008c000034a90000c13d0000000103000031000000200030008c00000020040000390000000004034019000034d70000013d000100000001001d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0040009c000017ac04008041000000c001400210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000034c50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034c10000c13d000000000006004b000034d20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035330000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000017b500b0009c0000352d0000213d00000001002001900000352d0000c13d0000004000b0043f0000001f0030008c0000352b0000a13d00000000020c0433000017af0020009c0000352b0000213d0000000b04000039000000000404041a0000004405b00039000018570600004100000000006504350000002405b000390000000000150435000018560500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000035230000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035100000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000350c0000c13d000000000006004b0000351d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035510000613d0000001f01400039000000600710018f0000000001b70019000017b50010009c0000352d0000213d000000400010043f000000200030008c0000352b0000413d00000000010b0433000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d00000000046200190000353e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000353a0000c13d000000000005004b0000354b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d00000000046200190000355c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035580000c13d000000000005004b000035690000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000035820000c13d0000000103000031000000200030008c00000020040000390000000004034019000035ae0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000359d0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035990000c13d000000000006004b000035aa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000360f0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c000036090000213d0000000100200190000036090000c13d0000004000b0043f0000001f0030008c000036070000a13d00000000020c0433000017af0020009c000036070000213d0000000b04000039000000000404041a0000004405b00039000018b5060000410000000000650435000018760500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000035fa0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035e70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035e30000c13d000000000006004b000035f40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000362d0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000036090000213d000000400010043f000000200030008c000036070000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000036070000c13d000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d00000000046200190000361a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036160000c13d000000000005004b000036270000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000036380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036340000c13d000000000005004b000036450000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae0001043000010000000000020000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c0000365e0000c13d0000000103000031000000200030008c000000200400003900000000040340190000368a0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000036790000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036750000c13d000000000006004b000036860000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000036eb0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c000036e50000213d0000000100200190000036e50000c13d0000004000b0043f0000001f0030008c000036e30000a13d00000000020c0433000017af0020009c000036e30000213d0000000b04000039000000000404041a0000004405b000390000186c060000410000000000650435000018760500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000036d60000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036c30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036bf0000c13d000000000006004b000036d00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000037090000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000036e50000213d000000400010043f000000200030008c000036e30000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000036e30000c13d000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000036f60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036f20000c13d000000000005004b000037030000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000037140000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000037100000c13d000000000005004b000037210000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae000104300004000000000002000400000002001d000000400200043d0000002003200039000018c60400004100000000004304350000003c0420003900000000001404350000003c010000390000000000120435000018c70020009c000038cf0000813d0000006001200039000000400010043f000017ac0030009c000017ac0300804100000040013002100000000002020433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f0000000100200190000038cd0000613d000000000101043b000300000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c0000375b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000037870000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000037760000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000037720000c13d000000000006004b000037830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000038e50000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c000038cf0000213d0000000100200190000038cf0000c13d0000004000b0043f000000200030008c000038cd0000413d00000000020c0433000017af0020009c000038cd0000213d0000000b04000039000000000404041a0000004405b000390000188d0600004100000000006504350000002405b00039000018ac060000410000000000650435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000037d40000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037c10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037bd0000c13d000000000006004b000037ce0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000038f10000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000038cf0000213d000000400010043f000000200030008c000038cd0000413d000000000c0b0433000017af00c0009c000038cd0000213d00000000000c004b000038d50000613d000000040400002900000000d2040434000000410020008c0000382c0000c13d00000040024000390000000002020433000018c80020009c0000382c0000213d00020000000c001d0000006003400039000000000303043300010000000d001d00000000040d04330000006005100039000000000025043500000040021000390000000000420435000000f8023002700000002003100039000000000023043500000003020000290000000000210435000000000000043f000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000018c9011001c700000001020000395eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000380f0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000380b0000c13d000000000005004b000000020c0000290000381d0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000000010d000029000038fd0000613d000000000200043d000017af00200198000000000200601900000001010000390000382b0000613d0000000002c2013f000017af002001980000382b0000c13d000000000001042d000000400100043d0000004402100039000000400400003900000000004204350000002002100039000018ca0400004100000000004204350000002404100039000000030500002900000000005404350000006405100039000000040400002900000000040404330000000000450435000000200e00008a0000000007e4016f0000001f0640018f000000840510003900000000005d004b0000384f0000813d000000000007004b0000384b0000613d00000000096d00190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000038450000c13d000000000006004b000038650000613d00000000080500190000385b0000013d0000000008750019000000000007004b000038580000613d00000000090d0019000000000a050019000000009b090434000000000aba043600000000008a004b000038540000c13d000000000006004b000038650000613d000000000d7d00190000000306600210000000000708043300000000076701cf000000000767022f00000000090d04330000010006600089000000000969022f00000000066901cf000000000676019f0000000000680435000000000554001900000000000504350000001f044000390000000004e4016f00000064054000390000000000510435000000a3044000390000000005e4016f0000000004150019000000000054004b00000000050000390000000105004039000017b50040009c000038cf0000213d0000000100500190000038cf0000c13d000000400040043f000000000401043300000000010004140000000400c0008c000038b20000c13d0000000102000039000000000003004b000038c70000613d000017b50030009c000038cf0000213d0000001f013000390000000001e1016f0000003f011000390000000004e1016f000000400100043d0000000004410019000000000014004b00000000050000390000000105004039000017b50040009c000038cf0000213d0000000100500190000038cf0000c13d000000400040043f00000000043104360000000005e301700000001f0630018f00000000035400190000000307000367000038990000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b000038950000c13d000000000006004b000038a60000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000530435000000000002004b000038cb0000613d0000000001010433000000200010008c0000000001000019000038b00000c13d0000000001040433000018ca0010009c00000000010000390000000101006039000000010110018f000000000001042d000017ac0020009c000017ac020080410000004002200210000017ac0040009c000017ac040080410000006003400210000000000223019f000017ac0010009c000017ac01008041000000c001100210000000000112019f00000000020c00195eac5ea70000040f000000200e00008a000000010220018f00030000000103550000006001100270000117ac0010019d000017ac03100197000000000003004b0000387d0000c13d00000060010000390000008004000039000000000002004b000038a80000c13d000000010100018f000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000004402100039000018cb03000041000000000032043500000024021000390000000e030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000039080000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038ec0000c13d000039080000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000039080000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038f80000c13d000039080000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000039080000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039040000c13d000000000005004b000039150000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300001000000000002000100000002001d000017af01100197000000000010043f0000000501000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000394e0000613d000000000101043b0000000102000029000017af02200197000100000002001d000000000020043f000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000394e0000613d000000000101043b000000000101041a000000ff011001900000393e0000613d000000000001042d0000000801000039000000000201041a00001896002001980000394c0000613d0000000801200270000017af01100198000039480000c13d000000ff002001900000000001000019000017bf01006041000000010010006b00000000010000390000000101006039000000000001042d0000000001000019000000000001042d000000000100001900005eae0001043000020000000000020000000a02000039000000000202041a000000400b00043d000018420300004100000000003b04350000000403b0003900001843040000410000000000430435000017af051001970000002401b00039000000000051043500000000010004140000000802200270000017af02200197000000040020008c000039660000c13d0000000103000031000000200030008c00000020040000390000000004034019000039940000013d000100000005001d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017c5011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000039820000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000397e0000c13d000000000006004b0000398f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039b90000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c000039ac0000213d0000000100200190000039ac0000c13d000000400010043f0000001f0030008c000039aa0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000039aa0000c13d000000000001004b000039b20000613d000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000184a01000041000000000010043f000000040050043f0000184301000041000000240010043f000017c50100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000039c40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039c00000c13d000000000005004b000039d10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300006000000000002000400000002001d000300000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000039ec0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a180000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003a070000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003a030000c13d000000000006004b00003a140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b6d0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c00003b570000213d000000010020019000003b570000c13d0000004000b0043f0000001f0030008c00003b550000a13d00000000020c0433000017af0020009c00003b550000213d0000000b04000039000000000404041a0000004405b00039000018550600004100000000006504350000002405b0003900000004060000290000000000650435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003a650000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003a520000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003a4e0000c13d000000000006004b00003a5f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b790000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c00003b570000213d000000400010043f000000200030008c00003b550000413d00000000020b0433000017af0020009c00003b550000213d000000000002004b00003b5d0000613d0000000301000029000317af0010019b000000030020006b00003a760000c13d0000000101000039000000000001042d000000000020043f0000000501000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000003b550000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000003b550000613d000000000101043b000000000101041a000000ff0110019000003a940000613d000000000001042d0000000003000415000000060330008a00000005033002100000000801000039000000000101041a000018960010019800003aa70000613d0000000802100270000017af0220019800003aa10000c13d000000ff001001900000000002000019000017bf020060410000000003000415000000050330008a0000000503300210000000030020006b000000010100003900003a930000613d000200000003001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00003aba0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003ae60000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000c001d5eac5ea70000040f000000010c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003ad50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003ad10000c13d000000000006004b00003ae20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b970000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c00003b570000213d000000010020019000003b570000c13d0000004000b0043f000000200030008c00003b550000413d00000000020c0433000017af0020009c00003b550000213d0000000b04000039000000000404041a0000004405b00039000018550600004100000000006504350000002405b0003900000004060000290000000000650435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003b330000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700010000000b001d5eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b1c0000c13d000000000006004b00003b2d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ba30000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c00003b570000213d000000400010043f000000200030008c00003b550000413d00000000020b0433000017af0020009c00003b550000213d000000000002004b00003b5d0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000003b550000613d000000000101043b000000000101041a000017af01100197000000030010006c0000000001000039000000010100603900000002020000290000000502200270000000000201001f000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae0001043000000044021000390000185f030000410000000000320435000000240210003900000018030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900003b840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b740000c13d00003b840000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900003b840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b800000c13d000000000005004b00003b910000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900003b840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b9e0000c13d00003b840000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900003b840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003baa0000c13d00003b840000013d0007000000000002000600000003001d000500000002001d000700000001001d0000000a01000039000000000201041a000000400b00043d000018450100004100000000001b04350000000401b000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00003bc50000c13d0000000103000031000000200030008c0000002004000039000000000403401900003bf10000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003be00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003bdc0000c13d000000000006004b00003bed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043160000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000017b500c0009c0000429c0000213d00000001002001900000429c0000c13d0000004000c0043f0000001f0030008c0000429a0000a13d00000000020b0433000017af0020009c0000429a0000213d0000000b04000039000000000404041a0000004405c00039000018550600004100000000006504350000002405c0003900000006060000290000000000650435000018540500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003c3e0000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003c2b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003c270000c13d000000000006004b00003c380000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043220000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c0000429c0000213d0000004000b0043f000000200030008c0000429a0000413d00000000050c0433000017af0050009c0000429a0000213d0000000401b00039000000000005004b000042a90000613d0000000702000029000017af02200197000000000025004b000042b30000c13d0000000502000029000517af0020019c000042c00000613d0000000a02000039000000000202041a000018450400004100000000004b04350000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000700000005001d00003c5f0000c13d000000200400003900003c8b0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003c7a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003c760000c13d000000000006004b00003c870000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000432e0000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c0000429c0000213d0000004000c0043f000000200030008c0000429a0000413d00000000020b0433000017af0020009c0000429a0000213d0000000b04000039000000000404041a0000004405c00039000018b5060000410000000000650435000018760500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003cd20000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003cbf0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003cbb0000c13d000000000006004b00003ccc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000433a0000613d0000001f01400039000000600110018f0000000001c10019000017b50010009c0000429c0000213d000000400010043f000000200030008c0000429a0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b0000429a0000c13d000000000001004b000042cd0000613d0000001001000039000000000101041a000017af0210019800003d180000613d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b00000007030000290000429a0000613d000000400400043d000000440140003900000006020000290000000000210435000000240140003900000005020000290000000000210435000018ce0100004100000000001404350000000401400039000000000031043500000000010004140000000402000029000000040020008c00003d150000613d000017ac0040009c000017ac0300004100000000030440190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c7000400000004001d5eac5ea20000040f00000004040000290000006003100270000117ac0030019d000300000001035500000001002001900000440a0000613d000017b50040009c0000429c0000213d000000400040043f000018580100004100000000001004430000000001000414000017ac0010009c000017ac01008041000000c00110021000001859011001c70000800b020000395eac5ea70000040f0000000100200190000042a20000613d000000400b00043d0000000402b00039000000000101043b0000185a0010009c000042d10000813d000400000001001d0000000a01000039000000000301041a000018450100004100000000001b04350000184601000041000000000012043500000000010004140000000802300270000017af02200197000000040020008c00003d390000c13d0000000103000031000000200030008c0000002004000039000000000403401900003d650000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700030000000b001d5eac5ea70000040f000000030b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003d540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003d500000c13d000000000006004b00003d610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043460000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c0000429c0000213d00000001002001900000429c0000c13d000000400010043f000000200030008c0000429a0000413d00000000020b0433000017af0020009c0000429a0000213d0000000b01000039000000000101041a000200000001001d000017c2010000410000000000100443000300000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b000000070700002900000003030000290000429a0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000018570200004100000000002104350000002401b0003900000006020000290000000000210435000018490100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d00003db10000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000400000004001d5eac5ea20000040f0000000404000029000000010b00002900000007070000290000006003100270000117ac0030019d00030000000103550000000100200190000043520000613d000017b500b0009c0000429c0000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c00003dc40000c13d0000000103000031000000200030008c0000002004000039000000000403401900003df00000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003dde0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003dda0000c13d000000000006004b00003deb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000435f0000613d00000007070000290000001f01400039000000600110018f000000000cb10019000017b500c0009c0000429c0000213d0000004000c0043f000000200030008c0000429a0000413d00000000020b0433000017af0020009c0000429a0000213d0000000b04000039000000000404041a0000004405c000390000186c060000410000000000650435000018760500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003e380000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003e240000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003e200000c13d000000000006004b00003e310000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000436b0000613d0000001f01400039000000600110018f0000000707000029000000000bc10019000017b500b0009c0000429c0000213d0000004000b0043f000000200030008c0000429a0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b0000429a0000c13d000000000001004b000042e30000c13d0000000801000039000000000101041a0000000802100270000017af0220019800003e880000613d0000000001000411000000000021004b00003e8e0000613d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b00000007070000290000429a0000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000000050200002900000000002104350000002401b000390000000000710435000018a50100004100000000001b04350000000001000411000017af011001970000000402b00039000000000012043500000000010004140000000402000029000000040020008c00003e840000613d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d3011001c700040000000b001d5eac5ea70000040f000000040b00002900000007070000290000006003100270000117ac0030019d00030000000103550000000100200190000044360000613d000017b500b0009c0000429c0000213d0000004000b0043f00003e8e0000013d000000ff0010019000003e8e0000c13d000017bf020000410000000001000411000000000021004b00003e4e0000c13d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00003e9f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003ecc0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003eba0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003eb60000c13d000000000006004b00003ec70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043770000613d00000007070000290000001f01400039000000600110018f000000000cb10019000017b500c0009c0000429c0000213d0000004000c0043f000000200030008c0000429a0000413d00000000020b0433000017af0020009c0000429a0000213d0000000b04000039000000000404041a0000004405c00039000018550600004100000000006504350000002405c0003900000006060000290000000000650435000018540500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003f150000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003f010000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003efd0000c13d000000000006004b00003f0e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043830000613d0000001f01400039000000600110018f00000007070000290000000001c10019000017b50010009c0000429c0000213d000000400010043f000000200030008c0000429a0000413d00000000020c0433000017af0020009c0000429a0000213d000000000002004b000042f30000613d000000000072004b000043030000c13d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000000007030000290000429a0000613d000000000101043b000000000201041a000017ca02200197000000000021041b000000000030043f0000000301000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000429a0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000429a0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000070500002900000001002001900000429a0000613d000000000101043b000000000201041a000017ca022001970000000506000029000000000262019f000000000021041b0000000001000414000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000403000039000018cf0400004100000006070000295eac5ea20000040f000000070400002900000001002001900000429a0000613d0000001101000039000000000101041a000017af0210019800003fb00000613d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b00000007040000290000429a0000613d000000400500043d000000440150003900000006020000290000000000210435000000240150003900000005020000290000000000210435000018ce0100004100000000001504350000000401500039000000000041043500000000010004140000000402000029000000040020008c00003fac0000613d000017ac0050009c000017ac0300004100000000030540190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c7000400000005001d5eac5ea20000040f000000040500002900000007040000290000006003100270000117ac0030019d00030000000103550000000100200190000044170000613d000017b50050009c0000429c0000213d000000400050043f00003fb10000013d000000400500043d0000002001000039000400000001001d00000000011504360000000000410435000017b10050009c0000429c0000213d0000004002500039000000400020043f000017ac0010009c000017ac0100804100000040011002100000000002050433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f00000001002001900000429a0000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00003fdf0000c13d0000000103000031000000200030008c000000200400003900000000040340190000400b0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700030000000c001d5eac5ea70000040f000000030c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003ffa0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003ff60000c13d000000000006004b000040070000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000438f0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c0000429c0000213d00000001002001900000429c0000c13d0000004000b0043f000000200030008c0000429a0000413d00000000020c0433000017af0020009c0000429a0000213d0000000b04000039000000000404041a0000004405b00039000018c50600004100000000006504350000002405b0003900000007060000290000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000040580000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700030000000b001d5eac5ea70000040f000000030b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040450000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000040410000c13d000000000006004b000040520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000439b0000613d0000001f01400039000000600110018f000000000ab10019000017b500a0009c0000429c0000213d0000004000a0043f000000200030008c0000429a0000413d00000000010b0433000300000001001d000000000001004b000042a30000613d0000000a01000039000000000201041a000018450100004100000000001a04350000000401a000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c0000409b0000613d000017ac00a0009c000017ac0300004100000000030a40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000a001d5eac5ea70000040f000000020a0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a00190000408a0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000040860000c13d000000000005004b000040970000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000043a70000613d00000004010000290000001f01100039000000600110018f0000000001a10019000017b50010009c0000429c0000213d000000400010043f000000200030008c0000429a0000413d00000000020a0433000017af0020009c0000429a0000213d0000000b01000039000000000101041a000200000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b00000004030000290000429a0000613d0000000301000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b00039000018c50200004100000000002104350000002401b0003900000007020000290000000000210435000018490100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00030000000b001d000040e20000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f0000000704000029000000030b0000290000006003100270000117ac0030019d00030000000103550000000100200190000043b30000613d000017b500b0009c0000429c0000213d0000000a01000039000000000201041a0000004000b0043f000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c000040f50000c13d0000000103000031000000200030008c00000020040000390000000004034019000041200000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000030b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000410f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000410b0000c13d000000000006004b0000411c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043c00000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000429c0000213d000000400010043f000000200030008c0000429a0000413d00000000020b0433000017af0020009c0000429a0000213d0000000b01000039000000000101041a000400000001001d000017c2010000410000000000100443000700000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b00000007030000290000429a0000613d000000400400043d0000006401400039000000050200002900000000002104350000004401400039000018550200004100000000002104350000002401400039000000060200002900000000002104350000188e0100004100000000021404360000000401400039000000040500002900000000005104350000000001000414000000040030008c000041650000613d000017ac0040009c000600000002001d000017ac0200004100000000020440190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f00000007040000290000006003100270000117ac0030019d000300000001035500000001002001900000000602000029000043cc0000613d000017b50040009c0000429c0000213d000000400040043f0000002001000039000600000001001d000000000014043500000005010000290000000000120435000017b10040009c0000429c0000213d0000004001400039000000400010043f000017ac0020009c000017ac0200804100000040012002100000000002040433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f00000001002001900000429a0000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000041970000c13d0000000103000031000000200030008c00000020040000390000000004034019000041c30000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700050000000c001d5eac5ea70000040f000000050c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000041b20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000041ae0000c13d000000000006004b000041bf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043d90000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c0000429c0000213d00000001002001900000429c0000c13d0000004000b0043f000000200030008c0000429a0000413d00000000020c0433000017af0020009c0000429a0000213d0000000b04000039000000000404041a0000004405b00039000018c50600004100000000006504350000002405b0003900000007060000290000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000042100000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700050000000b001d5eac5ea70000040f000000050b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000041fd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000041f90000c13d000000000006004b0000420a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043e50000613d0000001f01400039000000600110018f000000000ab10019000017b500a0009c0000429c0000213d0000004000a0043f000000200030008c0000429a0000413d00000000010b0433000500010010003e000042a30000613d0000000a01000039000000000201041a000018450100004100000000001a04350000000401a000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000042520000613d000017ac00a0009c000017ac0300004100000000030a40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000a001d5eac5ea70000040f000000040a0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0540018f000600000004001d000000200640019000000000046a0019000042410000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000423d0000c13d000000000005004b0000424e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000043f10000613d00000006010000290000001f01100039000000600110018f0000000001a10019000017b50010009c0000429c0000213d000000400010043f000000200030008c0000429a0000413d00000000020a0433000017af0020009c0000429a0000213d0000000b01000039000000000101041a000400000001001d000017c2010000410000000000100443000600000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000042a20000613d000000000101043b000000000001004b00000006030000290000429a0000613d000000400400043d0000006401400039000000050200002900000000002104350000004401400039000018c5020000410000000000210435000000240140003900000007020000290000000000210435000018490100004100000000001404350000000401400039000000040200002900000000002104350000000001000414000000040030008c000042960000613d000017ac0040009c000017ac0200004100000000020440190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f00000007040000290000006003100270000117ac0030019d00030000000103550000000100200190000043fd0000613d000017b50040009c0000429c0000213d000000400040043f000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae00010430000000000001042f0000189101000041000000000010043f0000001101000039000000040010043f000018470100004100005eae00010430000017cf0200004100000000002b0435000000200200003900000000002104350000004401b000390000185f0200004100000000002104350000002401b000390000001802000039000042ed0000013d000017cf0200004100000000002b0435000000200200003900000000002104350000006401b00039000018cc0200004100000000002104350000004401b00039000018cd0200004100000000002104350000002401b000390000002502000039000042dd0000013d000017cf0200004100000000002b0435000000200200003900000000002104350000006401b00039000018d20200004100000000002104350000004401b00039000018d30200004100000000002104350000002401b000390000002402000039000042dd0000013d000018d101000041000000000010043f0000185e0100004100005eae00010430000017cf0100004100000000001b0435000000200100003900000000001204350000006401b000390000185b0200004100000000002104350000004401b000390000185c0200004100000000002104350000002401b0003900000026020000390000000000210435000017ac00b0009c000017ac0b0080410000004001b00210000017d3011001c700005eae000104300000004401b00039000018d00200004100000000002104350000002401b000390000001b020000390000000000210435000017cf0100004100000000001b04350000000401b0003900000020020000390000000000210435000017ac00b0009c000017ac0b0080410000004001b00210000017d0011001c700005eae0001043000000044021000390000185f030000410000000000320435000000240210003900000018030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae000104300000006402100039000018cc0300004100000000003204350000004402100039000018cd030000410000000000320435000000240210003900000025030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d3011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000431d0000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043290000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043350000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043410000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000434d0000c13d000044420000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000435a0000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043660000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043720000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000437e0000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000438a0000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043960000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043a20000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043ae0000c13d000044420000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043bb0000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043c70000c13d000044420000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043d40000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043e00000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043ec0000c13d000044420000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043f80000c13d000044420000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000044050000c13d000044420000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000044120000c13d000044230000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000441f0000c13d000000000005004b000044300000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae00010430000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000044420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000443e0000c13d000000000005004b0000444f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae00010430000d000000000002000000000b020019000600000001001d00000000a3020434000018b6053001970000001f0430018f000000400100043d000000200210003900000000002a004b000044700000813d000000000005004b0000446b0000613d00000000074a00190000000006420019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000044650000c13d000000000004004b000044860000613d00000000050a001900000000060200190000447c0000013d0000000006520019000000000005004b000044790000613d00000000070a0019000000000802001900000000790704340000000008980436000000000068004b000044750000c13d000000000004004b000044860000613d00000000055a00190000000304400210000000000706043300000000074701cf000000000747022f00000000050504330000010004400089000000000545022f00000000044501cf000000000474019f000000000046043500070000000a001d0000000004320019000000000004043500000000003104350000003f03300039000018b6043001970000000003140019000000000043004b00000000040000390000000104004039000017b50030009c000051e10000213d0000000100400190000051e10000c13d000000400030043f000017ac0020009c000017ac0200804100000040022002100000000001010433000017ac0010009c000017ac010080410000006001100210000000000121019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c7000080100200003900090000000b001d5eac5ea70000040f0000000903000029000000010020019000004f870000613d000000000101043b000a00000001001d00000000010300195eac337f0000040f000000400200043d000000000001004b00004fa00000613d00000009010000290000000003010433000018b6053001970000001f0430018f0000002001200039000000070a00002900000000001a004b000044c90000813d000000000005004b000044c40000613d00000000074a00190000000006410019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000044be0000c13d000000000004004b000044df0000613d00000000050a00190000000006010019000044d50000013d0000000006510019000000000005004b000044d20000613d00000000070a0019000000000801001900000000790704340000000008980436000000000068004b000044ce0000c13d000000000004004b000044df0000613d00000000055a00190000000304400210000000000706043300000000074701cf000000000747022f00000000050504330000010004400089000000000545022f00000000044501cf000000000474019f00000000004604350000000004310019000000000004043500000000003204350000003f03300039000018b6043001970000000003240019000000000043004b00000000040000390000000104004039000017b50030009c000051e10000213d0000000100400190000051e10000c13d000000400030043f000017ac0010009c000017ac0100804100000040011002100000000002020433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f000000010020019000004f870000613d000000400b00043d0000000402b00039000000000101043b0000000a0010006b00004fb00000c13d0000000a01000039000000000301041a000018450100004100000000001b04350000184601000041000000000012043500000000010004140000000802300270000017af02200197000000040020008c000045140000c13d0000000103000031000000200030008c00000020040000390000000004034019000045400000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700080000000b001d5eac5ea70000040f000000080b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000452f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000452b0000c13d000000000006004b0000453c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004fe20000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c000051e10000213d0000000100200190000051e10000c13d000000400010043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000800000001001d000017c2010000410000000000100443000500000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b0000000904000029000000050300002900004f870000613d000000400500043d0000006401500039000000010200003900000000002104350000004401500039000018d502000041000000000021043500000024015000390000000a0200002900000000002104350000186d0100004100000000001504350000000401500039000400000001001d000000080200002900000000002104350000000001000414000000040030008c000800000005001d0000458b0000613d000017ac0050009c000017ac0200004100000000020540190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c700000000020300195eac5ea20000040f000000080500002900000009040000290000006003100270000117ac0030019d0003000000010355000000010020019000004fee0000613d000017b50050009c000051e10000213d000000400050043f00000000010400195eac337f0000040f000000080b0000290000000a01000039000000000201041a000018450100004100000000001b043500001846010000410000000403000029000000000013043500000000010004140000000802200270000017af02200197000000040020008c000045a20000c13d0000000103000031000000200030008c00000020040000390000000004034019000045cd0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000080b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000045bc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045b80000c13d000000000006004b000045c90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ffb0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000800000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b0000000903000029000000040b00002900004f870000613d000000400500043d00000064015000390000008002000039000100000002001d000000000021043500000044015000390000186102000041000000000021043500000024015000390000000a02000029000000000021043500001880010000410000000009150436000000040150003900000008020000290000000000210435000000000103043300000084025000390000000000120435000018b6041001970000001f0310018f000800000005001d000000a402500039000000070a00002900000000002a004b000046170000813d000000000004004b000046130000613d00000000063a00190000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000460d0000c13d000000000003004b0000462d0000613d0000000005020019000046230000013d0000000005420019000000000004004b000046200000613d00000000060a0019000000000702001900000000680604340000000007870436000000000057004b0000461c0000c13d000000000003004b0000462d0000613d000000000a4a00190000000303300210000000000405043300000000043401cf000000000434022f00000000060a04330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000400b0008c000500000009001d0000464a0000613d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac0100804100000060011002100000000803000029000017ac0030009c000017ac030080410000004003300210000000000131019f000017ac0020009c000017ac02008041000000c002200210000000000121019f00000000020b00195eac5ea20000040f00000005090000290000006003100270000117ac0030019d00030000000103550000000100200190000050070000613d0000000801000029000017b50010009c000051e10000213d0000000801000029000000400010043f000d00200000003d000017b40010009c000051e10000213d000000400090043f000000080100002900000000000104350000000a01000039000000000201041a000000400b00043d000018450100004100000000001b04350000000401b000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000046670000c13d0000000103000031000000200030008c00000020040000390000000004034019000046930000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700090000000b001d5eac5ea70000040f000000090b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000046820000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000467e0000c13d000000000006004b0000468f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050140000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000017b500c0009c000051e10000213d0000000100200190000051e10000c13d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c0003900001890060000410000000000650435000018560500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000046df0000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700090000000c001d5eac5ea70000040f000000090c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000046cc0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000046c80000c13d000000000006004b000046d90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050200000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c000051e10000213d0000004000b0043f000000200030008c00004f870000413d00000000010c0433000000000001004b000047fe0000613d000900000001001d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000046f70000c13d0000002004000039000047230000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700070000000b001d5eac5ea70000040f000000070b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000047120000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000470e0000c13d000000000006004b0000471f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051200000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c000051e10000213d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c00039000018ba060000410000000000650435000018560500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000476a0000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700070000000c001d5eac5ea70000040f000000070c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000047570000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000047530000c13d000000000006004b000047640000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000512c0000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c000051e10000213d0000004000b0043f000000200030008c00004f870000413d00000000010c0433000700000001001d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000047800000c13d0000002004000039000047ac0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000479b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000047970000c13d000000000006004b000047a80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051380000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c000051e10000213d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c00039000018bb060000410000000000650435000018560500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000047f30000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000047e00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000047dc0000c13d000000000006004b000047ed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051440000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c000051e10000213d0000004000b0043f000000200030008c00004f870000413d00000000010c0433000000070110006b00004f8a0000413d000000090010006c00004fde0000813d0000000a0000006b00004fba0000613d0000000401b000390000000602000029000917af0020019c00004fbe0000613d0000000a02000039000000000202041a000018450400004100000000004b04350000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000048110000c13d00000020040000390000483d0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700070000000b001d5eac5ea70000040f000000070b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000482c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000048280000c13d000000000006004b000048390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000502c0000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c000051e10000213d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c00039000018550600004100000000006504350000002405c000390000000a060000290000000000650435000018540500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000048850000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700070000000c001d5eac5ea70000040f000000070c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000048720000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000486e0000c13d000000000006004b0000487f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050380000613d0000001f01400039000000600110018f0000000001c10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020c0433000017af0020009c00004f870000213d000000000002004b00004f900000c13d0000001001000039000000000101041a000017af02100198000048c70000613d000017c2010000410000000000100443000700000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b00004f870000613d000000400400043d00000044014000390000000a020000290000000000210435000000240140003900000009020000290000000000210435000018ce0100004100000000001404350000000401400039000000000001043500000000010004140000000702000029000000040020008c000048c40000613d000017ac0040009c000017ac0300004100000000030440190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c7000700000004001d5eac5ea20000040f00000007040000290000006003100270000117ac0030019d00030000000103550000000100200190000051500000613d000017b50040009c000051e10000213d000000400040043f000018580100004100000000001004430000000001000414000017ac0010009c000017ac01008041000000c00110021000001859011001c70000800b020000395eac5ea70000040f000000010020019000004f890000613d000000400b00043d0000000402b00039000000000101043b0000185a0010009c00004fcc0000813d000700000001001d0000000a01000039000000000301041a000018450100004100000000001b04350000184601000041000000000012043500000000010004140000000802300270000017af02200197000000040020008c000048e80000c13d0000000103000031000000200030008c00000020040000390000000004034019000049140000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000049030000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000048ff0000c13d000000000006004b000049100000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050440000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c000051e10000213d0000000100200190000051e10000c13d000000400010043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000300000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b000000040300002900004f870000613d000000400b00043d0000006401b00039000000070200002900000000002104350000004401b00039000018570200004100000000002104350000002401b000390000000a020000290000000000210435000018490100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00020000000b001d0000495e0000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f0000000704000029000000020b0000290000006003100270000117ac0030019d00030000000103550000000100200190000050500000613d000017b500b0009c000051e10000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c000049710000c13d0000000103000031000000200030008c000000200400003900000000040340190000499c0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000498b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000049870000c13d000000000006004b000049980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000505d0000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c000051e10000213d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c000390000186c060000410000000000650435000018760500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000049e30000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700070000000c001d5eac5ea70000040f000000070c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000049d00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000049cc0000c13d000000000006004b000049dd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050690000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c000051e10000213d0000004000b0043f000000200030008c00004f870000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b00004f870000c13d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000049fd0000c13d000000200400003900004a290000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700070000000b001d5eac5ea70000040f000000070b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004a180000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004a140000c13d000000000006004b00004a250000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050750000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c000051e10000213d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c00039000018550600004100000000006504350000002405c000390000000a060000290000000000650435000018540500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00004a710000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700070000000c001d5eac5ea70000040f000000070c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004a5e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004a5a0000c13d000000000006004b00004a6b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050810000613d0000001f01400039000000600110018f0000000001c10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020c0433000017af0020009c00004f870000213d000000000002004b00004f900000c13d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000004f870000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f000000010020019000004f870000613d000000000101043b000000000201041a000017ca022001970000000906000029000000000262019f000000000021041b0000000001000414000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000403000039000018cf0400004100000000050000190000000a070000295eac5ea20000040f000000010020019000004f870000613d0000001101000039000000000101041a000017af0210019800004ae70000613d000017c2010000410000000000100443000700000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b00004f870000613d000000400b00043d0000004401b000390000000a0200002900000000002104350000002401b0003900000009020000290000000000210435000018ce0100004100000000001b04350000000404b00039000000000004043500000000010004140000000702000029000000040020008c00004ae30000613d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c700070000000b001d000400000004001d5eac5ea20000040f0000000404000029000000070b0000290000006003100270000117ac0030019d000300000001035500000001002001900000515d0000613d000017b500b0009c000051e10000213d0000004000b0043f00004ae90000013d000000400b00043d0000000404b000390000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c00004af90000c13d0000000103000031000000200030008c0000002004000039000000000403401900004b250000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700070000000b001d5eac5ea70000040f000000070b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004b140000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004b100000c13d000000000006004b00004b210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000508d0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000017b500c0009c000051e10000213d0000000100200190000051e10000c13d0000004000c0043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405c00039000018ba060000410000000000650435000018560500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00004b710000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700070000000c001d5eac5ea70000040f000000070c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004b5e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004b5a0000c13d000000000006004b00004b6b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050990000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c000051e10000213d0000004000b0043f000000200030008c00004f870000413d00000000010c0433000700010010003e00004f8a0000613d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00004b880000c13d000000200400003900004bb40000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004ba30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004b9f0000c13d000000000006004b00004bb00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050a50000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000300000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b000000040300002900004f870000613d000000400b00043d0000006401b00039000000070200002900000000002104350000004401b00039000018ba020000410000000000210435000018490100004100000000001b04350000000404b00039000000030100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00020000000b001d00004bf80000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f0000000704000029000000020b0000290000006003100270000117ac0030019d00030000000103550000000100200190000050b10000613d000017b500b0009c000051e10000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c00004c0b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004c360000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004c250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004c210000c13d000000000006004b00004c320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050be0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000400000001001d000017c2010000410000000000100443000700000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b000000070300002900004f870000613d000000400400043d00000064014000390000000902000029000000000021043500000044014000390000185502000041000000000021043500000024014000390000000a0200002900000000002104350000188e0100004100000000021404360000000401400039000000040500002900000000005104350000000001000414000000040030008c00004c7b0000613d000017ac0040009c000400000002001d000017ac0200004100000000020440190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f00000007040000290000006003100270000117ac0030019d000300000001035500000001002001900000000402000029000050ca0000613d000017b50040009c000051e10000213d000000400040043f0000002001000039000400000001001d000000000014043500000009010000290000000000120435000017b10040009c000051e10000213d0000004001400039000000400010043f000017ac0020009c000017ac0200804100000040012002100000000002040433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f000000010020019000004f870000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00004cad0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004cd90000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700030000000c001d5eac5ea70000040f000000030c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004cc80000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004cc40000c13d000000000006004b00004cd50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050d70000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c000051e10000213d0000000100200190000051e10000c13d0000004000b0043f000000200030008c00004f870000413d00000000020c0433000017af0020009c00004f870000213d0000000b04000039000000000404041a0000004405b00039000018c50600004100000000006504350000002405b0003900000007060000290000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00004d260000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700030000000b001d5eac5ea70000040f000000030b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004d130000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004d0f0000c13d000000000006004b00004d200000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050e30000613d0000001f01400039000000600110018f000000000ab10019000017b500a0009c000051e10000213d0000004000a0043f000000200030008c00004f870000413d00000000010b0433000300010010003e00004f8a0000613d0000000a01000039000000000201041a000018450100004100000000001a04350000000401a000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00004d680000613d000017ac00a0009c000017ac0300004100000000030a40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000a001d5eac5ea70000040f000000020a0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a001900004d570000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00004d530000c13d000000000005004b00004d640000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000050ef0000613d00000004010000290000001f01100039000000600110018f0000000001a10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020a0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000200000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b000000040300002900004f870000613d000000400400043d0000006401400039000000030200002900000000002104350000004401400039000018c5020000410000000000210435000000240140003900000007020000290000000000210435000018490100004100000000001404350000000401400039000000020200002900000000002104350000000001000414000000040030008c00004dac0000613d000017ac0040009c000017ac0200004100000000020440190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000700000004001d5eac5ea20000040f00000007040000290000006003100270000117ac0030019d00030000000103550000000100200190000050fb0000613d000017b50040009c000051e10000213d000000400040043f0000000001000415000700000001001d000017c2010000410000000000100443000000060100002900000004001004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b000000050900002900004de90000613d000000400b00043d0000006401b00039000000800200003900000000002104350000004401b000390000000a020000290000000000210435000018d80100004100000000001b04350000000401b00039000000000200041100000000002104350000002401b000390000000000010435000000080100002900000000010104330000008402b000390000000000120435000018b6041001970000001f0310018f000000a402b00039000000000029004b00004ded0000813d000000000004004b00004de50000613d00000000063900190000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00004ddf0000c13d000000000003004b00004e030000613d000000000502001900004df90000013d00000000010004150000000701100069000000000100000200004e5e0000013d0000000005420019000000000004004b00004df60000613d0000000006090019000000000702001900000000680604340000000007870436000000000057004b00004df20000c13d000000000003004b00004e030000613d00000000094900190000000303300210000000000405043300000000043401cf000000000434022f00000000060904330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000040004140000000902000029000000040020008c00004e110000c13d00000000050004150000000c0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900004e460000013d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac010080410000006001100210000017ac00b0009c000017ac0300004100000000030b40190000004003300210000000000131019f000017ac0040009c000017ac04008041000000c003400210000000000131019f00090000000b001d5eac5ea20000040f000000090b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004e320000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004e2e0000c13d000000000006004b00004e3f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000b0550008a00000005055002100000000100200190000051780000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c000051e10000213d0000000100200190000051e10000c13d000000400010043f000000200030008c00004f870000413d00000000010b0433000018ad0010019800004f870000c13d0000000502500270000000000201001f000000000200041500000007022000690000000002000002000018da01100197000018d80010009c0000517e0000c13d0000000a01000039000000000201041a000000400d00043d000018450100004100000000001d04350000000401d00039000018460300004100000000003104350000000d0b00002900000000010004140000000802200270000017af02200197000000040020008c00090000000b001d00004e720000c13d000000010300003100000000003b004b000000000403001900000000040b401900004e9e0000013d000017ac00d0009c000017ac0300004100000000030d40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700080000000d001d5eac5ea70000040f000000080d0000290000006003100270000017ac03300197000000090030006c000000090400002900000000040340190000001f0640018f000017ae0740019800000000057d001900004e8d0000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b00004e890000c13d000000000006004b00004e9a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051080000613d0000001f01400039000018b601100197000000000cd1001900000000001c004b00000000020000390000000102004039000017b500c0009c000051e10000213d0000000100200190000051e10000c13d0000004000c0043f000018520040009c00004f870000213d000000200040008c00004f870000413d00000000020d0433000017af0020009c00004f870000213d0000000b05000039000000000505041a0000004406c000390000187f0700004100000000007604350000002406c000390000000a070000290000000000760435000018760600004100000000006c04350000000406c0003900000000005604350000000005000414000000040020008c00004eee0000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0050009c000017ac05008041000000c003500210000000000113019f000017d0011001c700080000000c001d5eac5ea70000040f000000080c0000290000006003100270000017ac03300197000000090030006c000000090a000029000000000a0340190000001f05a0018f000017ae06a0019800000000046c001900004eda0000613d000000000701034f00000000080c0019000000007907043c0000000008980436000000000048004b00004ed60000c13d000000000005004b00004ee70000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000051140000613d0000001f01a00039000017ad0110019700000000040a0019000000000bc1001900000000001b004b00000000010000390000000101004039000017b500b0009c000051e10000213d0000000100100190000051e10000c13d0000004000b0043f000000200040008c00004f870000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b00004f870000c13d000000000001004b00004f030000613d0000000a01000029000000000001042d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c00004f130000c13d000000200030008c0000002004000039000000000403401900004f3f0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700090000000b001d5eac5ea70000040f000000090b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004f2e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004f2a0000c13d000000000006004b00004f3b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000518e0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c000051e10000213d000000400010043f000000200030008c00004f870000413d00000000020b0433000017af0020009c00004f870000213d0000000b01000039000000000101041a000800000001001d000017c2010000410000000000100443000900000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000004f890000613d000000000101043b000000000001004b000000090300002900004f870000613d000000400400043d00000064014000390000000102000039000000000021043500000044014000390000187f02000041000000000021043500000024014000390000000a0200002900000000002104350000186d0100004100000000001404350000000401400039000000080200002900000000002104350000000001000414000000040030008c00004f820000613d000017ac0040009c000017ac0200004100000000020440190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000900000004001d5eac5ea20000040f00000009040000290000006003100270000117ac0030019d000300000001035500000001002001900000519a0000613d000017b50040009c000051e10000213d000000400040043f0000000a01000029000000000001042d000000000100001900005eae00010430000000000001042f0000189101000041000000000010043f0000001101000039000000040010043f000018470100004100005eae000104300000004402100039000018d703000041000000000032043500000024021000390000001c030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae000104300000004401200039000018dd030000410000000000310435000000240120003900000010030000390000000000310435000017cf010000410000000000120435000000040120003900000020030000390000000000310435000017ac0020009c000017ac020080410000004001200210000017d0011001c700005eae00010430000017cf0100004100000000001b0435000000200100003900000000001204350000004401b00039000018d40200004100000000002104350000002401b000390000001c0200003900004fc60000013d000018dc01000041000000000010043f0000185e0100004100005eae00010430000017cf0200004100000000002b0435000000200200003900000000002104350000004401b00039000018db0300004100000000003104350000002401b000390000000000210435000017ac00b0009c000017ac0b0080410000004001b00210000017d0011001c700005eae00010430000017cf0100004100000000001b0435000000200100003900000000001204350000006401b000390000185b0200004100000000002104350000004401b000390000185c0200004100000000002104350000002401b0003900000026020000390000000000210435000017ac00b0009c000017ac0b0080410000004001b00210000017d3011001c700005eae00010430000018d601000041000000000010043f0000185e0100004100005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000051690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004fe90000c13d000051690000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ff60000c13d000051690000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050020000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000500f0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000501b0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050270000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050330000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000503f0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000504b0000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050580000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050640000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050700000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000507c0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050880000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050940000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050a00000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050ac0000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050b90000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050c50000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050d20000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050de0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050ea0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050f60000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051030000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000510f0000c13d000051690000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000511b0000c13d000051690000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051270000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051330000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000513f0000c13d000051a60000013d0000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000514b0000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051580000c13d000051690000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051650000c13d000000000005004b000051760000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000051890000013d000000000003004b000051b90000c13d00000060020000390000000001020433000000000001004b000051e70000c13d000000400200043d000a00000002001d000017cf01000041000000000012043500000004012000395eac5d7f0000040f0000000a020000290000000001210049000017ac0010009c000017ac010080410000006001100210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae000104300000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051950000c13d000051a60000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d0000000004620019000051a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051a20000c13d000000000005004b000051b30000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000001f02300039000017ad022001970000003f02200039000018d904200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000017b50040009c000051e10000213d0000000100500190000051e10000c13d000000400040043f0000001f0430018f0000000006320436000017ae05300198000100000006001d0000000003560019000051d30000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000051cf0000c13d000000000004004b0000517b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000517b0000013d0000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000000102000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac010080410000006001100210000000000121019f00005eae000104300005000000000002000500000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000052040000c13d0000000103000031000000200030008c00000020040000390000000004034019000052300000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000521f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000521b0000c13d000000000006004b0000522c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000059ae0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c0000597f0000213d00000001002001900000597f0000c13d0000004000b0043f0000001f0030008c0000597d0000a13d00000000020c0433000017af0020009c0000597d0000213d0000000b04000039000000000404041a0000004405b00039000018550600004100000000006504350000002405b0003900000005060000290000000000650435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000527d0000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000526a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000052660000c13d000000000006004b000052770000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000059ba0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000030b0433000017af0030009c0000597d0000213d000000000003004b000059860000613d0000001001000039000000000101041a000017af02100198000052c00000613d000400000003001d000017c2010000410000000000100443000300000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000004030000290000597d0000613d000000400400043d000000440140003900000005020000290000000000210435000018ce010000410000000000140435000000040140003900000000003104350000002401400039000000000001043500000000010004140000000302000029000000040020008c000052bd0000613d000017ac0040009c000017ac0300004100000000030440190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c7000400000004001d5eac5ea20000040f00000004040000290000006003100270000117ac0030019d0003000000010355000000010020019000005ae70000613d000017b50040009c0000597f0000213d000000400040043f000018580100004100000000001004430000000001000414000017ac0010009c000017ac01008041000000c00110021000001859011001c70000800b020000395eac5ea70000040f0000000100200190000059850000613d000000400b00043d0000000402b00039000000000101043b0000185a0010009c0000599c0000813d000400000001001d0000000a01000039000000000301041a000018450100004100000000001b04350000184601000041000000000012043500000000010004140000000802300270000017af02200197000000040020008c000052e10000c13d0000000103000031000000200030008c000000200400003900000000040340190000530d0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700030000000b001d5eac5ea70000040f000000030b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000052fc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000052f80000c13d000000000006004b000053090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000059c60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c0000597f0000213d00000001002001900000597f0000c13d000000400010043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000200000001001d000017c2010000410000000000100443000300000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000003030000290000597d0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000018570200004100000000002104350000002401b0003900000005020000290000000000210435000018490100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d000053570000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000400000004001d5eac5ea20000040f0000000404000029000000010b0000290000006003100270000117ac0030019d00030000000103550000000100200190000059d20000613d000017b500b0009c0000597f0000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c0000536a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000053950000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000053840000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000053800000c13d000000000006004b000053910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000059df0000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c0000597f0000213d0000004000c0043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b04000039000000000404041a0000004405c000390000186c060000410000000000650435000018760500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000053dc0000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000053c90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000053c50000c13d000000000006004b000053d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000059eb0000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c0000597f0000213d0000004000b0043f000000200030008c0000597d0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b0000597d0000c13d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000053f60000c13d0000002004000039000054220000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700040000000b001d5eac5ea70000040f000000040b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000054110000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000540d0000c13d000000000006004b0000541e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000059f70000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c0000597f0000213d0000004000c0043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b04000039000000000404041a0000004405c00039000018550600004100000000006504350000002405c0003900000005060000290000000000650435000018540500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000546a0000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000054570000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000054530000c13d000000000006004b000054640000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a030000613d0000001f01400039000000600110018f0000000001c10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000020c0433000400000002001d000017af0020009c0000597d0000213d000000040000006b000059860000613d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000597d0000613d000000000101043b000000000201041a000017ca02200197000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000597d0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000017ac0010009c000017ac01008041000000c001100210000017c0011001c700008010020000395eac5ea70000040f00000001002001900000597d0000613d000000000101043b000000000201041a000017ca02200197000000000021041b0000000001000414000017ac0010009c000017ac01008041000000c001100210000017cb011001c70000800d020000390000000403000039000018cf040000410000000405000029000000000600001900000005070000295eac5ea20000040f00000001002001900000597d0000613d0000001101000039000000000101041a000017af02100198000054ef0000613d000017c2010000410000000000100443000300000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b0000597d0000613d000000400400043d000000440140003900000005020000290000000000210435000018ce0100004100000000001404350000000401400039000000040200002900000000002104350000002401400039000000000001043500000000010004140000000302000029000000040020008c000054eb0000613d000017ac0040009c000017ac0300004100000000030440190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f000017d0011001c7000300000004001d5eac5ea20000040f00000003040000290000006003100270000117ac0030019d0003000000010355000000010020019000005af40000613d000017b50040009c0000597f0000213d000000400040043f000054f00000013d000000400400043d0000002001000039000300000001001d000000000114043600000004020000290000000000210435000017b10040009c0000597f0000213d0000004002400039000000400020043f000017ac0010009c000017ac0100804100000040011002100000000002040433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f00000001002001900000597d0000613d000000000101043b000400000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c0000551f0000c13d0000000103000031000000200030008c000000200400003900000000040340190000554b0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000553a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000055360000c13d000000000006004b000055470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a0f0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c0000597f0000213d00000001002001900000597f0000c13d0000004000b0043f000000200030008c0000597d0000413d00000000020c0433000017af0020009c0000597d0000213d0000000b04000039000000000404041a0000004405b00039000018c50600004100000000006504350000002405b0003900000004060000290000000000650435000018560500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000055980000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000055850000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000055810000c13d000000000006004b000055920000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a1b0000613d0000001f01400039000000600110018f000000000ab10019000017b500a0009c0000597f0000213d0000004000a0043f000000200030008c0000597d0000413d00000000010b0433000200000001001d000000000001004b000059960000613d0000000a01000039000000000201041a000018450100004100000000001a04350000000401a000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000055db0000613d000017ac00a0009c000017ac0300004100000000030a40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700010000000a001d5eac5ea70000040f000000010a0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a0019000055ca0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000055c60000c13d000000000005004b000055d70000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000005a270000613d00000003010000290000001f01100039000000600110018f0000000001a10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000020a0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000100000001001d000017c2010000410000000000100443000300000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000003030000290000597d0000613d0000000201000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b00039000018c50200004100000000002104350000002401b0003900000004020000290000000000210435000018490100004100000000001b04350000000404b00039000000010100002900000000001404350000000001000414000000040030008c00020000000b001d000056220000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000400000004001d5eac5ea20000040f0000000404000029000000020b0000290000006003100270000117ac0030019d0003000000010355000000010020019000005a330000613d000017b500b0009c0000597f0000213d0000000a01000039000000000201041a0000004000b0043f000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c000056350000c13d0000000103000031000000200030008c00000020040000390000000004034019000056600000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000564f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000564b0000c13d000000000006004b0000565c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a400000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000300000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000004030000290000597d0000613d000000400b00043d0000004401b00039000018550200004100000000002104350000002401b00039000000050200002900000000002104350000188e0100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d000056a40000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000400000004001d5eac5ea20000040f0000000404000029000000020b0000290000006003100270000117ac0030019d0003000000010355000000010020019000005a4c0000613d000017b500b0009c0000597f0000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c000056b70000c13d0000000103000031000000200030008c00000020040000390000000004034019000056e20000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000056d10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000056cd0000c13d000000000006004b000056de0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a590000613d0000001f01400039000000600110018f000000000cb10019000017b500c0009c0000597f0000213d0000004000c0043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b04000039000000000404041a0000004405c00039000018bb060000410000000000650435000018560500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000057290000613d000017ac00c0009c000017ac0100004100000000010c40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700040000000c001d5eac5ea70000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000057160000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000057120000c13d000000000006004b000057230000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a650000613d0000001f01400039000000600110018f000000000bc10019000017b500b0009c0000597f0000213d0000004000b0043f000000200030008c0000597d0000413d00000000010c0433000400010010003e000059960000613d0000000a01000039000000000201041a000018450100004100000000001b04350000000401b000390000184604000041000000000041043500000000010004140000000802200270000017af02200197000000040020008c000057400000c13d00000020040000390000576c0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700030000000b001d5eac5ea70000040f000000030b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000575b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000057570000c13d000000000006004b000057680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a710000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000200000001001d000017c2010000410000000000100443000300000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000003030000290000597d0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000018bb020000410000000000210435000018490100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00010000000b001d000057b00000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000400000004001d5eac5ea20000040f0000000404000029000000010b0000290000006003100270000117ac0030019d0003000000010355000000010020019000005a7d0000613d000017b500b0009c0000597f0000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c000057c30000c13d0000000103000031000000200030008c00000020040000390000000004034019000057ee0000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000010b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000057dd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000057d90000c13d000000000006004b000057ea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005a8a0000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000300000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000004030000290000597d0000613d000000400b00043d0000004401b000390000187f0200004100000000002104350000002401b00039000000050200002900000000002104350000186d0100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d000058320000613d000017ac00b0009c000017ac0200004100000000020b40190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c70000000002030019000400000004001d5eac5ea20000040f0000000404000029000000020b0000290000006003100270000117ac0030019d0003000000010355000000010020019000005a960000613d000017b500b0009c0000597f0000213d0000004000b0043f0000000a01000039000000000201041a000018450100004100000000001b04350000184601000041000000000014043500000000010004140000000802200270000017af02200197000000040020008c000058450000c13d0000000103000031000000200030008c00000020040000390000000004034019000058700000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c75eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000585f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000585b0000c13d000000000006004b0000586c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005aa30000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c0000597f0000213d000000400010043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000300000001001d000017c2010000410000000000100443000200000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b00000002030000290000597d0000613d000000400400043d0000004401400039000018d50200004100000000002104350000002401400039000000050200002900000000002104350000186d010000410000000005140436000000040140003900000003020000290000000000210435000000640140003900000000000104350000000001000414000000040030008c000300000004001d000400000005001d000058b40000613d000017ac0040009c000017ac0200004100000000020440190000004002200210000017ac0010009c000017ac01008041000000c001100210000000000121019f000017d3011001c700000000020300195eac5ea20000040f000000030400002900000004050000290000006003100270000117ac0030019d0003000000010355000000010020019000005aaf0000613d000017b50040009c0000597f0000213d000000400040043f000017b40040009c0000597f0000213d000000400050043f00000000000404350000000a01000039000000000201041a000000400b00043d000018450100004100000000001b04350000000401b000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c000058cd0000c13d0000000103000031000000200030008c00000020040000390000000004034019000058f90000013d000017ac00b0009c000017ac0300004100000000030b40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000058e80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000058e40000c13d000000000006004b000058f50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005abc0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000017b50010009c0000597f0000213d00000001002001900000597f0000c13d000000400010043f000000200030008c0000597d0000413d00000000020b0433000017af0020009c0000597d0000213d0000000b01000039000000000101041a000100000001001d000017c2010000410000000000100443000200000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f0000000100200190000059850000613d000000000101043b000000000001004b000000040a0000290000000303000029000000020b0000290000597d0000613d000000400c00043d0000006401c00039000000800200003900000000002104350000004401c00039000018610200004100000000002104350000002401c0003900000005020000290000000000210435000018800100004100000000001c04350000000401c000390000000102000029000000000021043500000000010304330000008402c000390000000000120435000018b6051001970000001f0410018f000000a403c0003900000000003a004b000059460000813d000000000005004b000059420000613d00000000074a00190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c0000593c0000c13d000000000004004b0000595c0000613d0000000006030019000059520000013d0000000006530019000000000005004b0000594f0000613d00000000070a0019000000000803001900000000790704340000000008980436000000000068004b0000594b0000c13d000000000004004b0000595c0000613d000000000a5a00190000000304400210000000000506043300000000054501cf000000000545022f00000000070a04330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000400b0008c000059790000613d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac010080410000006001100210000017ac00c0009c000017ac0200004100000000020c40190000004002200210000000000121019f000017ac0030009c000017ac03008041000000c002300210000000000121019f00000000020b001900050000000c001d5eac5ea20000040f000000050c0000290000006003100270000117ac0030019d0003000000010355000000010020019000005ac80000613d000017b500c0009c0000597f0000213d0000004000c0043f000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae00010430000000000001042f00000044021000390000185f030000410000000000320435000000240210003900000018030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae000104300000189101000041000000000010043f0000001101000039000000040010043f000018470100004100005eae00010430000017cf0100004100000000001b0435000000200100003900000000001204350000006401b000390000185b0200004100000000002104350000004401b000390000185c0200004100000000002104350000002401b0003900000026020000390000000000210435000017ac00b0009c000017ac0b0080410000004001b00210000017d3011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059b50000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059c10000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059cd0000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059da0000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059e60000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059f20000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000059fe0000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a0a0000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a160000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a220000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a2e0000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a3b0000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a470000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a540000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a600000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a6c0000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a780000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a850000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a910000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005a9e0000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005aaa0000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005ab70000c13d00005ad40000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005ac30000c13d00005ad40000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005ad40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005ad00000c13d000000000005004b00005ae10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae00010430000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005b000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005aef0000c13d00005b000000013d000017ac033001970000001f0530018f000017ae06300198000000400200043d000000000462001900005b000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005afc0000c13d000000000005004b00005b0d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae00010430000000400200043d00000020030000390000000003320436000017af011001970000000000130435000018de0020009c00005b300000813d0000004001200039000000400010043f000017ac0030009c000017ac0300804100000040013002100000000002020433000017ac0020009c000017ac020080410000006002200210000000000112019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f000000010020019000005b360000613d000000000101043b000000000001042d0000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae00010430000000000100001900005eae000104300006000000000002000500000003001d000600000001001d000300000002001d0000000043020434000018b6063001970000001f0530018f000000400100043d0000002002100039000000000024004b00005b530000813d000000000006004b00005b4f0000613d00000000085400190000000007520019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00005b490000c13d000000000005004b00005b690000613d000000000702001900005b5f0000013d0000000007620019000000000006004b00005b5c0000613d00000000080400190000000009020019000000008a0804340000000009a90436000000000079004b00005b580000c13d000000000005004b00005b690000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f00000000004704350000000004320019000000060500002900000060055002100000000000540435000000140430003900000000004104350000005303300039000018b6043001970000000003140019000000000043004b00000000040000390000000104004039000017b50030009c00005d2c0000213d000000010040019000005d2c0000c13d000000400030043f000017ac0020009c000017ac0200804100000040022002100000000001010433000017ac0010009c000017ac010080410000006001100210000000000121019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f000000010020019000005d2a0000613d000000000301043b000000400100043d0000002002100039000018c60400004100000000004204350000003c0410003900000000003404350000003c030000390000000000310435000018df0010009c00005d2c0000213d0000006003100039000000400030043f000017ac0020009c000017ac0200804100000040022002100000000001010433000017ac0010009c000017ac010080410000006001100210000000000121019f0000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000017cb011001c700008010020000395eac5ea70000040f000000010020019000005d2a0000613d000000000101043b000400000001001d0000000a01000039000000000201041a000000400c00043d000018450100004100000000001c04350000000401c000390000184603000041000000000031043500000000010004140000000802200270000017af02200197000000040020008c00005bbf0000c13d0000000103000031000000200030008c0000002004000039000000000403401900005beb0000013d000017ac00c0009c000017ac0300004100000000030c40190000004003300210000017ac0010009c000017ac01008041000000c001100210000000000131019f00001847011001c700020000000c001d5eac5ea70000040f000000020c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900005bda0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00005bd60000c13d000000000006004b00005be70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005d490000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000017b500b0009c00005d2c0000213d000000010020019000005d2c0000c13d0000004000b0043f000000200030008c00005d2a0000413d00000000020c0433000017af0020009c00005d2a0000213d0000000b04000039000000000404041a0000004405b000390000188d0600004100000000006504350000002405b00039000018ac060000410000000000650435000018540500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00005c380000613d000017ac00b0009c000017ac0100004100000000010b40190000004001100210000017ac0040009c000017ac04008041000000c003400210000000000113019f000017d0011001c700020000000b001d5eac5ea70000040f000000020b0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900005c250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00005c210000c13d000000000006004b00005c320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000005d550000613d0000001f01400039000000600110018f0000000001b10019000017b50010009c00005d2c0000213d000000400010043f000000200030008c00005d2a0000413d000000000c0b0433000017af00c0009c00005d2a0000213d00000000000c004b00005d390000613d000000050400002900000000d2040434000000410020008c00005c8e0000c13d00000040024000390000000002020433000018c80020009c00005c8e0000213d00020000000c001d0000006003400039000000000303043300010000000d001d00000000040d04330000006005100039000000000025043500000040021000390000000000420435000000f8023002700000002003100039000000000023043500000004020000290000000000210435000000000000043f000017ac0010009c000017ac0100804100000040011002100000000002000414000017ac0020009c000017ac02008041000000c002200210000000000112019f000018c9011001c700000001020000395eac5ea70000040f0000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000005c730000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00005c6f0000c13d000000000005004b000000020c00002900005c810000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000000010d00002900005d610000613d000000000100043d000017af00100198000000000100601900005c8d0000613d0000000001c1013f000017af0010019800005d260000613d000000400100043d0000004402100039000000400400003900000000004204350000002002100039000018ca0400004100000000004204350000002404100039000000040500002900000000005404350000006405100039000000050400002900000000040404330000000000450435000018b6074001970000001f0640018f000000840510003900000000005d004b00005cb00000813d000000000007004b00005cac0000613d00000000096d00190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00005ca60000c13d000000000006004b00005cc60000613d000000000805001900005cbc0000013d0000000008750019000000000007004b00005cb90000613d00000000090d0019000000000a050019000000009b090434000000000aba043600000000008a004b00005cb50000c13d000000000006004b00005cc60000613d000000000d7d00190000000306600210000000000708043300000000076701cf000000000767022f00000000090d04330000010006600089000000000969022f00000000066901cf000000000676019f0000000000680435000000000554001900000000000504350000001f04400039000018b60440019700000064054000390000000000510435000000a304400039000018b6054001970000000004150019000000000054004b00000000050000390000000105004039000017b50040009c00005d2c0000213d000000010050019000005d2c0000c13d000000400040043f000000000401043300000000010004140000000400c0008c00005d080000c13d0000000102000039000000000003004b00005d1c0000613d000017b50030009c00005d2c0000213d0000001f01300039000018b6011001970000003f01100039000018b604100197000000400100043d0000000004410019000000000014004b00000000050000390000000105004039000017b50040009c00005d2c0000213d000000010050019000005d2c0000c13d000000400040043f0000000004310436000018b6053001980000001f0630018f0000000003540019000000030700036700005cfa0000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b00005cf60000c13d000000000006004b00005d1e0000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000053043500005d1e0000013d000017ac0020009c000017ac020080410000004002200210000017ac0040009c000017ac040080410000006003400210000000000223019f000017ac0010009c000017ac01008041000000c001100210000000000112019f00000000020c00195eac5ea70000040f000000010220018f00030000000103550000006001100270000117ac0010019d000017ac03100197000000000003004b00005cde0000c13d00000060010000390000008004000039000000000002004b00005d320000613d0000000001010433000000200010008c00005d320000c13d0000000001040433000018ca0010009c00005d320000c13d000000060100002900000003020000295eac44550000040f000000000001042d000000000100001900005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae00010430000000400100043d0000004402100039000018e00300004100000000003204350000002402100039000000110300003900005d3e0000013d0000004402100039000018cb03000041000000000032043500000024021000390000000e030000390000000000320435000017cf020000410000000000210435000000040210003900000020030000390000000000320435000017ac0010009c000017ac010080410000004001100210000017d0011001c700005eae000104300000001f0530018f000017ae06300198000000400200043d000000000462001900005d6c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005d500000c13d00005d6c0000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005d6c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005d5c0000c13d00005d6c0000013d0000001f0530018f000017ae06300198000000400200043d000000000462001900005d6c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00005d680000c13d000000000005004b00005d790000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000017ac0020009c000017ac020080410000004002200210000000000112019f00005eae000104300000006002100039000018e10300004100000000003204350000004002100039000018e2030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000001004b00005d900000613d000000000001042d000000400200043d000100000002001d000017cf01000041000000000012043500000004012000395eac5d7f0000040f00000001020000290000000001210049000017ac0010009c000017ac010080410000006001100210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae000104300006000000000002000300000004001d000200000003001d000100000001001d000017c2010000410000000000100443000400000002001d00000004002004430000000001000414000017ac0010009c000017ac01008041000000c001100210000017c3011001c700008002020000395eac5ea70000040f000000010020019000005e530000613d000000000101043b000000000001004b00005ddd0000613d000000400c00043d0000006401c00039000000800b0000390000000000b104350000004401c00039000000020200002900000000002104350000000101000029000017af011001970000002402c000390000000000120435000018d80100004100000000001c04350000000401c00039000000000200041100000000002104350000008402c00039000000030100002900000000410104340000000000120435000018b6061001970000001f0510018f000000a402c00039000000000024004b00005ddf0000813d000000000006004b00005dd90000613d00000000085400190000000007520019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00005dd30000c13d000000000005004b00005df50000613d000000000702001900005deb0000013d0000000101000039000000000001042d0000000007620019000000000006004b00005de80000613d00000000080400190000000009020019000000008a0804340000000009a90436000000000079004b00005de40000c13d000000000005004b00005df50000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f00000000004704350000000002210019000000000002043500000000040004140000000402000029000017af02200197000000040020008c00005e040000c13d0000000005000415000000060550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900005e3a0000013d00030000000b001d0000001f01100039000018b601100197000000a401100039000017ac0010009c000017ac010080410000006001100210000017ac00c0009c000017ac0300004100000000030c40190000004003300210000000000131019f000017ac0040009c000017ac04008041000000c003400210000000000131019f00040000000c001d5eac5ea20000040f000000040c0000290000006003100270000017ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900005e260000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00005e220000c13d000000000006004b00005e330000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000050550008a0000000505500210000000010020019000005e540000613d0000001f01400039000000600210018f0000000001c20019000000000021004b00000000020000390000000102004039000017b50010009c00005e920000213d000000010020019000005e920000c13d000000400010043f0000001f0030008c00005e510000a13d00000000010c0433000018ad0010019800005e510000c13d0000000502500270000000000201001f000018da01100197000018d80010009c00000000010000390000000101006039000000000001042d000000000100001900005eae00010430000000000001042f000000000003004b00005e580000c13d000000600200003900005e7f0000013d0000001f02300039000017ad022001970000003f02200039000018d904200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000017b50040009c00005e920000213d000000010050019000005e920000c13d000000400040043f0000001f0430018f0000000006320436000017ae05300198000300000006001d000000000356001900005e720000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b00005e6e0000c13d000000000004004b00005e7f0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00005e980000c13d000000400200043d000400000002001d000017cf01000041000000000012043500000004012000395eac5d7f0000040f00000004020000290000000001210049000017ac0010009c000017ac010080410000006001100210000017ac0020009c000017ac020080410000004002200210000000000121019f00005eae000104300000189101000041000000000010043f0000004101000039000000040010043f000018470100004100005eae000104300000000302000029000017ac0020009c000017ac020080410000004002200210000017ac0010009c000017ac010080410000006001100210000000000121019f00005eae00010430000000000001042f00005ea5002104210000000102000039000000000001042d0000000002000019000000000001042d00005eaa002104230000000102000039000000000001042d0000000002000019000000000001042d00005eac0000043200005ead0001042e00005eae00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4e414d45000000000000000000000000000000000000000000000000000000004e616d6520230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf609addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c93978a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688000000000000000000000000721c002b0059009a671d00ad1700c9748146cd1b0200000000000000000000000000000000000040000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000fb2de5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00b31775265933e5e6f3b2d519a9dcdfa71b65581e94932ab3a3e5108d0bd44c348a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76efffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000002073616c65507269636500000000000000000000000000000000000000000000455243323938313a20726f79616c7479206665652077696c6c206578636565640000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000008245e47100000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000df30e54a00000000000000000000000000000000000000000000000000000000ed022ebc00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f4a0a52800000000000000000000000000000000000000000000000000000000f7eca6d000000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000e7277dd600000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000df30e54b00000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000daca6f7800000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000c03ad0bd00000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c4e41b2200000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bb997f270000000000000000000000000000000000000000000000000000000099d3a88500000000000000000000000000000000000000000000000000000000a7f93ebc00000000000000000000000000000000000000000000000000000000aa1b103e00000000000000000000000000000000000000000000000000000000aa1b103f00000000000000000000000000000000000000000000000000000000b55cd04b00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000a7f93ebd00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000a16ad7d900000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a485b4cf0000000000000000000000000000000000000000000000000000000099d3a886000000000000000000000000000000000000000000000000000000009e05d240000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000009496d2080000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000924ca90700000000000000000000000000000000000000000000000000000000835f396600000000000000000000000000000000000000000000000000000000835f39670000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000005c975aba00000000000000000000000000000000000000000000000000000000715018a5000000000000000000000000000000000000000000000000000000007c0106b8000000000000000000000000000000000000000000000000000000007c0106b9000000000000000000000000000000000000000000000000000000007f797103000000000000000000000000000000000000000000000000000000008129fc1c00000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000006221d13b000000000000000000000000000000000000000000000000000000006221d13c000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca6310000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000055f804b20000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005633a363000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004f558e79000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000002fb0b874000000000000000000000000000000000000000000000000000000003dc165010000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002e1a7d4d00000000000000000000000000000000000000000000000000000000098144d30000000000000000000000000000000000000000000000000000000016c38b3b0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248b71fc00000000000000000000000000000000000000000000000000000000267659e20000000000000000000000000000000000000000000000000000000016c38b3c000000000000000000000000000000000000000000000000000000001a296e02000000000000000000000000000000000000000000000000000000000d705df5000000000000000000000000000000000000000000000000000000000d705df6000000000000000000000000000000000000000000000000000000001328357f0000000000000000000000000000000000000000000000000000000015be71ff00000000000000000000000000000000000000000000000000000000098144d4000000000000000000000000000000000000000000000000000000000ca1c5c90000000000000000000000000000000000000000000000000000000004634d8c0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000004634d8d00000000000000000000000000000000000000000000000000000000046dc166000000000000000000000000000000000000000000000000000000000146354500000000000000000000000000000000000000000000000000000000014635460000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000001049d9000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000020000000000000000000000000c36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08000000000000000000000000000000000000004400000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000000000000000000000000ecd9e25c81c684765cec4b6e84c99a71427b6f86b89fb7723e47f99327ee5729b29de69000000000000000000000000000000000000000000000000000000000161a64a000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000100000000322062697473000000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e2033401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004552433732313a20696e76616c696420746f6b656e204944000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bdf2c071ca00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6fbfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe032483afb00000000000000000000000000000000000000000000000000000000651689700000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000000000000000000000000000000000000000006400000080000000000000000007b920aa00000000000000000000000000000000000000000000000000000000ffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff000000000000000000000100000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000006787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc93c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068e95c048700000000000000000000000000000000000000000000000000000000fdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378000000000000000000000000000000000000000000000000ffffffffffffff7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb535c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a2070617573656400000000000000000000000000000000fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967614e616d654e46540000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d7e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b71000000000000000000000000000000000000000000000000000000004661696c656420746f2072657475726e20657863657373204554480000000000496e73756666696369656e74207061796d656e740000000000000000000000004d696e74207072696365206e6f742073657400000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000ff0000000000000000000000000000000000000000007f5b076c952c0ec86e5425963c1326dd0f03a3595c19f81d765e8ff559a6e33c455243323938313a20496e76616c696420706172616d657465727300000000006b656e0000000000000000000000000000000000000000000000000000000000596f7520617265206e6f7420746865206f776e6572206f66207468697320746f000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe05472616e73666572206661696c656400000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c0000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000caee23ea0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000008000000000000000006b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e656c8d7f768a6bb4aafe85e8a2f5a9680355239c7e14646ed62b044e39de15451200000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffa07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c00000000000000000000000000000000000000000000000000000000e88a3f57000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002dd6753d7447d2bb3cd72464154a7bc06c4a5d5747f9553d5247b4dc12c2e777ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000100000000000000007ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde72206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65ff000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000061000000000000000000000000000000000000000000000000000000000000002fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7a000000000000000000000000000000000000000000000000000000000000013900000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a09119457468657265756d205369676e6564204d6573736167653a0a333200000000000000000000000000000000000000000000000000000000ffffffffffffffa07fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a000000000000000000000000000000000000000800000000000000000000000001626ba7e000000000000000000000000000000000000000000000000000000005369676e6572206e6f74207365740000000000000000000000000000000000006f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f7272656374208ce516da00000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef47616d654e46543a20546f6b656e20697320736f756c626f756e640000000000d62312720000000000000000000000000000000000000000000000000000000072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f20616464546f6b656e20494420646f6573206e6f74206d61746368206e616d650000000063ac7816ab4b51b8cb61e859320ae60dc12ad0776bab962064f8e54268723ba2c30436e9000000000000000000000000000000000000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e74656400000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0ffffffff000000000000000000000000000000000000000000000000000000004552433732313a206d696e7420746f20746865207a65726f20616464726573733f6cc76800000000000000000000000000000000000000000000000000000000496e76616c696420757365726e616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff9f496e76616c6964207369676e617475726500000000000000000000000000000063656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000000fc80e01ab58c0bde3a72d19d1c7577d720cfc91d0179ef357ae35d6337ec577e
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] : royaltyRecipient (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.