ETH Price: $2,743.03 (+1.36%)

Token

GigaRomNFT (ROM)

Overview

Max Total Supply

9,966 ROM

Holders

4,379

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
2 ROM
0x1e0d8199da550e21b377429e7e9dc4ccd4a3c1eb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
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:
GigaRomNFT

Compiler Version
v0.8.28+commit.7893614a

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
cancun EvmVersion
File 1 of 43 : GigaRomNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import {GameNFT} from "../gamenft/GameNFT.sol";
import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol";
import {IGigaRomNFT, ID } from "./IGigaRomNFT.sol";

/** @title GigaRom NFTs on L2 */
contract GigaRomNFT is GameNFT, IGigaRomNFT {

    uint256 public immutable MAX_SUPPLY;

    /** SETUP */
    constructor(uint256 maxSupply, address gameRegistryAddress, address royaltyRecipient, uint96 feeNumerator) GameNFT(maxSupply, "GIGA-ROM", "ROM", "GIGA-ROM #", gameRegistryAddress, ID, royaltyRecipient, feeNumerator) {
        MAX_SUPPLY = maxSupply;
    }

    function initialize() external override onlyRole(DEPLOYER_ROLE) {
        initializeTable("GigaRomNFT", ID);
        _initialize();
    }

    /** Initializes traits for the given tokenId */
    function _initializeTraits(uint256 tokenId) internal override {
        super._initializeTraits(tokenId);
    }

    /**
     * Mints multiple ERC721 tokens
     *
     * @param to        Recipient of the tokens
     * @param quantity  Number of tokens to mint
     * @return tokenIds Array of minted token IDs
     */
    function mint(
        address to,
        uint256 quantity
    ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256[] memory tokenIds) {
        tokenIds = new uint256[](quantity);
        for (uint256 i = 0; i < quantity; i++) {
            tokenIds[i] = _confirmMint(to);
        }
        return tokenIds;
    }

    function batchAirDrop(
        address[] memory to,
        uint256[] memory quantities
    ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256[] memory tokenIds) {
        tokenIds = new uint256[](to.length);
        for (uint256 i = 0; i < to.length; i++) {
            for (uint256 j = 0; j < quantities[i]; j++) {
                tokenIds[i] = _confirmMint(to[i]);
            }
        }
        return tokenIds;
    }

    function _confirmMint(address to) internal returns (uint256) {
        require(1 + getTotalSupply() <= MAX_SUPPLY, "Exceeds max supply");
        uint256 nextTokenId = _getAndIncrementAutoIncId();
        _safeMint(to, nextTokenId);
        return nextTokenId;
    }

    /**
     * @return The total number of tokens minted
     */
    function totalSupply() external view returns (uint256) {
        return super.getTotalSupply();
    }

    /**
     * @dev Burn a token by the game contract
     * @param id        Id of the token to burn
     */
    function burnByGameContract(
        uint256 id
    ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused {
        _burn(id);
    }

    function _cleanupAfterBurn(uint256 tokenId) override internal {
        super._cleanupAfterBurn(tokenId);
    }

    function totalMinted() public view returns (uint256) {
        return super.getTotalMinted();
    }

    function getMaxSupply() external view returns (uint256) {
        return MAX_SUPPLY;
    }
}

File 2 of 43 : GameNFT.sol
// 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 _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);
    }

}

File 3 of 43 : RoleConstants.sol
// 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");

File 4 of 43 : IGigaRomNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import {IGameNFT} from "../gamenft/IGameNFT.sol";
import {IMintableERC721} from "../../mint/interfaces/IMintableERC721.sol";
uint256 constant ID = uint256(keccak256("game.gigaverse.gigaromnft.v3"));

interface IGigaRomNFT is IGameNFT, IMintableERC721 {
    function totalMinted() external view returns (uint256);
    function getMaxSupply() external view returns (uint256);
}

File 5 of 43 : SafeCast.sol
// 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);
    }
}

File 6 of 43 : Strings.sol
// 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);
    }
}

File 7 of 43 : IGameNFT.sol
// 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);
}

File 8 of 43 : ColumnConstants.sol
// 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"));

File 9 of 43 : DataTable.sol
// 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));
    }
}

File 10 of 43 : IERC721UpdateHandler.sol
// 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;
}

File 11 of 43 : IERC721.sol
// 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);
}

File 12 of 43 : IERC165.sol
// 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);
}

File 13 of 43 : ERC721C.sol
// 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);
    }
}

File 14 of 43 : ERC721.sol
// 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;
    }
}

File 15 of 43 : BasicRoyalties.sol
// 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 {}

File 16 of 43 : ERC721OpenZeppelin.sol
// 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_);
    }
}

File 17 of 43 : OwnableBasic.sol
// 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();
    }
}

File 18 of 43 : Ownable.sol
// 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);
    }
}

File 19 of 43 : ERC2981.sol
// 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];
    }
}

File 20 of 43 : IMintableERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IMintableERC721 is IERC721 {
    function mint(address to, uint256 quantity) external returns (uint256[] memory tokenIds);

    function totalSupply() external view returns (uint256);
}

File 21 of 43 : Math.sol
// 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);
        }
    }
}

File 22 of 43 : DataStore.sol
// 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(""));
    }
}

File 23 of 43 : GameRegistryConsumer.sol
// 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;
    }

}

File 24 of 43 : AutomaticValidatorTransferApproval.sol
// 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);
    }
}

File 25 of 43 : CreatorTokenBase.sol
// 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);
    }
}

File 26 of 43 : ITransferValidatorSetTokenType.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface ITransferValidatorSetTokenType {
    function setTokenTypeOfCollection(address collection, uint16 tokenType) external;
}

File 27 of 43 : Constants.sol
// 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;

File 28 of 43 : IERC721Receiver.sol
// 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);
}

File 29 of 43 : IERC721Metadata.sol
// 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);
}

File 30 of 43 : Address.sol
// 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);
        }
    }
}

File 31 of 43 : Context.sol
// 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;
    }
}

File 32 of 43 : ERC165.sol
// 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;
    }
}

File 33 of 43 : OwnablePermissions.sol
// 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;
}

File 34 of 43 : IERC2981.sol
// 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);
}

File 35 of 43 : DataTypes.sol
// 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;
    }
}

File 36 of 43 : IDataStore.sol
// 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);
}

File 37 of 43 : ReentrancyGuard.sol
// 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;
    }
}

File 38 of 43 : ISystem.sol
// 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;
}

File 39 of 43 : IGameRegistry.sol
// 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);
}

File 40 of 43 : ICreatorToken.sol
// 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);
}

File 41 of 43 : ICreatorTokenLegacy.sol
// 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;
}

File 42 of 43 : ITransferValidator.sol
// 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;
}

File 43 of 43 : TransferValidation.sol
// 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 {}
}

Settings
{
  "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

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchAirDrop","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","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":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerDocId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","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":[],"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":"bool","name":"shouldPause","type":"bool"}],"name":"setPaused","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":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010016831669f46adbb0a8534c2c0ac92a3e5ebf97eda6bee138ecc0128d7a7000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000271000000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4

Deployed Bytecode

0x0004000000000002000e000000000002000000000401034f0000006001100270000015620010019d0000156203100197000300000034035500020000000403550000000100200190000000220000c13d0000008001000039000000400010043f000000040030008c0000004e0000413d000000000134034f000000000204043b000000e0022002700000158b0020009c000000500000213d000015c00020009c0000007b0000a13d000015c10020009c000000dd0000a13d000015c20020009c000001020000213d000015c90020009c000003800000a13d000015ca0020009c000005d70000613d000015cb0020009c000007ba0000613d000015cc0020009c0000040d0000613d0000004e0000013d000000a002000039000000400020043f0000000001000416000000000001004b0000004e0000c13d0000001f013000390000156301100197000000a001100039000000400010043f0000001f0530018f0000156406300198000000a001600039000000340000613d000000000704034f000000007807043c0000000002820436000000000012004b000000300000c13d000000000005004b000000410000613d000000000264034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000800030008c0000004e0000413d000000c00200043d000015650020009c0000004e0000213d000000e00100043d000e00000001001d000015650010009c0000004e0000213d000001000100043d000d00000001001d000015660010009c000001440000a13d000000000100001900005584000104300000158c0020009c0000008e0000a13d0000158d0020009c000000f30000a13d0000158e0020009c0000011f0000213d000015950020009c000003aa0000a13d000015960020009c000005fd0000613d000015970020009c000007c20000613d000015980020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000002401400370000000000101043b000c00000001001d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c000012670000c13d0000000103000031000000200030008c000000200400003900000000040340190000128c0000013d000015db0020009c000000af0000213d000015e80020009c000001ae0000a13d000015e90020009c000003070000a13d000015ea0020009c0000053e0000613d000015eb0020009c000006c50000613d000015ec0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d55822bfd0000040f000000800010043f000015f801000041000055830001042e000015a70020009c000000ce0000213d000015b40020009c000001cf0000a13d000015b50020009c0000031e0000a13d000015b60020009c000005470000613d000015b70020009c000006e10000613d000015b80020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000000701000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f000000010040019000000c140000613d0000164301000041000000000010043f0000002201000039000000040010043f00001602010000410000558400010430000015dc0020009c000001f00000a13d000015dd0020009c000003270000a13d000015de0020009c000005710000613d000015df0020009c000006e90000613d000015e00020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000d230000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d480000013d000015a80020009c000001ff0000a13d000015a90020009c0000032c0000a13d000015aa0020009c000005830000613d000015ab0020009c000006fb0000613d000015ac0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d55822cde0000040f000007fc0000013d000015cf0020009c000002290000a13d000015d00020009c000003450000a13d000015d10020009c000005aa0000613d000015d20020009c000002e70000613d000015d30020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b55822ea30000040f00001565001001980000000001000039000000010100c039000007fc0000013d0000159b0020009c000002420000a13d0000159c0020009c000003670000a13d0000159d0020009c000005bc0000613d0000159e0020009c000007250000613d0000159f0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d55822db50000040f000007fc0000013d000015c30020009c000003cf0000a13d000015c40020009c000006700000613d000015c50020009c000007da0000613d000015c60020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000de00000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e050000013d0000158f0020009c000003e70000a13d000015900020009c0000067c0000613d000015910020009c000007f30000613d000015920020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000601043b000015650060009c0000004e0000213d0000000f01000039000000000201041a00001565032001970000000005000411000000000053004b000008030000c13d000000000006004b000015000000c13d0000158601000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000015f401000041000000c40010043f000015f501000041000000e40010043f000015f6010000410000558400010430000b00000002001d000000400100043d000c00000001001d000015670010009c00001de30000213d000000a00100043d000800000001001d0000000c020000290000004001200039000000400010043f000000080100003900000000021204360000156801000041000900000002001d0000000000120435000000400100043d000a00000001001d000015670010009c00001de30000213d0000000a020000290000004001200039000000400010043f000000030100003900000000021204360000156901000041000600000002001d0000000000120435000000400100043d000700000001001d000015670010009c00001de30000213d00000007020000290000004001200039000000400010043f0000000a0100003900000000021204360000156a01000041000400000002001d0000000000120435000000400100043d000500000001001d0000156b0010009c00001de30000213d00000005020000290000002001200039000000400010043f0000000000020435000000400200043d000300000002001d0000156b0020009c00001de30000213d00000003020000290000002003200039000100000003001d000000400030043f000000000002043500000005020000290000000002020433000200000002001d0000156c0020009c00001de30000213d000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000000a90000c13d000000200030008c00000002040000290000019c0000413d0000001f0240003900000005022002700000156d0220009a000000200040008c0000156e02004041000000000000043f0000001f0330003900000005033002700000156d0330009a000000000032004b0000019c0000813d000000000002041b0000000102200039000000000032004b000001980000413d0000001f0040008c00001a5a0000a13d000000000000043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000200200008a0000000202200180000000000101043b00001dc20000c13d000000200300003900001dcf0000013d000015ef0020009c000002730000213d000015f20020009c000004150000613d000015f30020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c0000080c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000008310000013d000015bb0020009c000002970000213d000015be0020009c000004360000613d000015bf0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c0000087f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000008a40000013d000015e30020009c000002b20000213d000015e60020009c000003fa0000613d000015e70020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000165301000041000000800010043f0000000101000039000000a00010043f0000165401000041000055830001042e000015af0020009c000002c00000213d000015b20020009c0000044b0000613d000015b30020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d0000000f02000039000000000202041a00001565022001970000000003000411000000000032004b000008030000c13d0000000802000039000000000302041a0000163003300197000000000001004b0000000004000019000016310400c041000000000343019f000000000032041b000000800010043f0000000001000414000015620010009c0000156201008041000000c00110021000001632011001c70000800d0200003900000001030000390000163304000041000007ee0000013d000015d60020009c000002e30000213d000015d90020009c000004c30000613d000015da0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000903000039000000000203041a000000020020008c00000a310000c13d0000158601000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000164d01000041000000c40010043f0000162e010000410000558400010430000015a20020009c000002e80000213d000015a50020009c000005030000613d000015a60020009c0000004e0000c13d000000840030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000002401400370000000000101043b000d00000001001d000015650010009c0000004e0000213d0000006401400370000000000101043b0000156c0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d0000000402100039000000000224034f000000000202043b0000004404400370000000000404043b000c00000004001d000000240110003955822ada0000040f000b00000001001d00000000010004110000000c02000029558233540000040f55822e8c0000040f0000000e010000290000000d020000290000000c030000295582352c0000040f0000000e010000290000000d020000290000000c03000029000003620000013d000015f00020009c000004770000613d000015f10020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b0000165a002001980000004e0000c13d00000001010000390000165b0020009c000002930000613d0000165c0020009c000002930000613d0000165d0020009c000002930000613d0000165e0020009c000000000300003900000001030060390000165f0020009c00000000040000390000000104006039000016600020009c00000000050000390000000105006039000016610020009c000000000134c19f000000000115c19f000000010110018f000000800010043f000015f801000041000055830001042e000015bc0020009c0000047e0000613d000015bd0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a0000161b01000041000000800010043f0000163a01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000008c30000c13d0000000103000031000000200030008c00000020040000390000000004034019000008e80000013d000015e40020009c000004930000613d000015e50020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000015650010009c0000004e0000213d000007a40000013d000015b00020009c000004a80000613d000015b10020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b0000004e0000c13d00000000020004110000000e0020006c000013520000c13d0000158601000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000162d01000041000000c40010043f0000162e010000410000558400010430000015d70020009c0000051e0000613d000015d80020009c0000004e0000c13d55822aaa0000040f000015a30020009c000005390000613d000015a40020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c00000a470000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a6c0000013d000015ed0020009c000006830000613d000015ee0020009c0000004e0000c13d0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000b6e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b930000013d000015b90020009c0000040d0000613d000015ba0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000000f01000039000007290000013d000015e10020009c000006a60000613d000015e20020009c000003ff0000613d0000004e0000013d000015ad0020009c000003fa0000613d000015ae0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c00000cd60000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cfb0000013d000015d40020009c000007040000613d000015d50020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d000000000103001955822a890000040f000d00000001001d000c00000002001d000e00000003001d000000400100043d000b00000001001d000000200200003955822ac80000040f0000000b01000029000000000001043500000000010004110000000e02000029558233540000040f55822e8c0000040f0000000d010000290000000c020000290000000e030000295582352c0000040f0000000d010000290000000c020000290000000e030000290000000b04000029558254580000040f558254440000040f0000000001000019000055830001042e000015a00020009c000003ff0000613d000015a10020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d55822ea30000040f000015650010019800000dcb0000c13d000000400100043d00000064021000390000162703000041000000000032043500000044021000390000162803000041000000000032043500000024021000390000002f03000039000011620000013d000015cd0020009c0000072e0000613d000015ce0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156501100197000c00000001001d000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000014bd0000c13d0000000103000031000000200030008c00000020040000390000000004034019000014e20000013d000015990020009c0000077e0000613d0000159a0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000e00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156503100197000000a40030043f000000000100041400000008022002700000156502200197000000040020008c000d00000003001d000011de0000c13d0000000103000031000000200030008c00000020040000390000000004034019000012030000013d000015c70020009c0000079c0000613d000015c80020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b55822ea30000040f000e15650010019c0000000001000039000000010100c03955822ff60000040f000000400100043d0000000e020000290000000000210435000015620010009c00001562010080410000004001100210000015f7011001c7000055830001042e000015930020009c000007a70000613d000015940020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000015650010009c0000004e0000213d0000002402400370000000000202043b000015650020009c0000004e0000213d558232980000040f000007be0000013d0000000001000416000000000001004b0000004e0000c13d55822c070000040f000007fc0000013d0000000001000416000000000001004b0000004e0000c13d55822c070000040f000e00000001001d55822cde0000040f0000000e0110006b000007fc0000813d0000164301000041000000000010043f0000001101000039000000040010043f000016020100004100005584000104300000000001000416000000000001004b0000004e0000c13d0000000b01000039000000000101041a000000800010043f000015f801000041000055830001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000e00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156501100197000d00000001001d000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000010340000c13d0000000103000031000000200030008c00000020040000390000000004034019000010590000013d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a0000161b01000041000000800010043f0000163b01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000008fe0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009230000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b0000156c0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d0000000402100039000000000224034f000000000202043b000a00000002001d0000156c0020009c0000004e0000213d0000000a020000290000000502200210000900240010003d0000000901200029000000000031004b0000004e0000213d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156501100197000e00000001001d000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000017900000c13d0000000103000031000000200030008c00000020040000390000000004034019000017b50000013d0000000001000416000000000001004b0000004e0000c13d0000157601000041000000800010043f000015f801000041000055830001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c0000093a0000c13d0000000103000031000000200030008c000000200400003900000000040340190000095f0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c0000097e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009a30000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c000009c30000c13d0000000103000031000000200030008c00000020040000390000000004034019000009e80000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000e00000001001d0000000401400370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000400300043d000015670030009c00001de30000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a002100270000000000024043500001565011001980000000000130435000004f20000c13d000000400300043d000015670030009c00001de30000213d0000004001300039000000400010043f0000000d01000039000000000101041a0000002004300039000000a0021002700000000000240435000015650110019700000000001304350000000e0400002900000000034200a9000000000004004b000004f90000613d00000000044300d9000000000042004b000004070000c13d000027100230011a000000400300043d000000200430003900000000002404350000000000130435000015620030009c000015620300804100000040013002100000164e011001c7000055830001042e000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402400370000000000202043b000d00000002001d0000000402400370000000000202043b000e00000002001d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000a8a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000aaf0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a000015f901000041000000800010043f000015fa01000041000000840010043f000000000100041400000008022002700000156502200197000000040020008c00000b280000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b4d0000013d0000000001000416000000000001004b0000004e0000c13d0000001001000039000007290000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b55822b120000040f000007fc0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b0000156c0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d000d00040010003d0000000d02400360000000000202043b000e00000002001d0000156c0020009c0000004e0000213d0000000e01100029000c00240010003d0000000c0030006b0000004e0000213d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156501100197000b00000001001d000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000018550000c13d0000000103000031000000200030008c000000200400003900000000040340190000187a0000013d0000000001000416000000000001004b0000004e0000c13d000000000103001955822a890000040f000e00000001001d000d00000002001d0000000002030019000c00000003001d0000000001000411558233540000040f55822e8c0000040f0000000e010000290000000d020000290000000c030000295582352c0000040f0000000001000019000055830001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000000f01000039000000000101041a00001565011001970000000002000411000000000021004b000008030000c13d000015790100004100000000001004430000000e0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d0000000e04000029000000000004004b000016c60000613d000000000101043b000000000001004b000016c60000c13d0000162a01000041000000000010043f0000160b010000410000558400010430000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d55822ea30000040f000015650110019800000dcf0000613d0000000002000411000000000021004b000011590000c13d0000000e0100002955824c6a0000040f0000000001000019000055830001042e000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402400370000000000202043b000d00000002001d0000000402400370000000000202043b000e00000002001d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000c2f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c540000013d000000640030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000d00000001001d0000002401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000004401400370000000000101043b000c00000001001d000015660010009c0000004e0000213d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156503100197000000a40030043f000000000100041400000008022002700000156502200197000000040020008c000b00000003001d000013a80000c13d0000000103000031000000200030008c00000020040000390000000004034019000013cd0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b0000156c0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d0000000402100039000000000224034f000000000502043b0000156c0050009c00001de30000213d00000005025002100000003f0620003900001619066001970000161a0060009c00001de30000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002210019000000000032004b0000004e0000213d000000000005004b000006250000613d000000a005000039000000000614034f000000000606043b000015650060009c0000004e0000213d00000000056504360000002001100039000000000021004b0000061d0000413d0000002401400370000000000101043b0000156c0010009c0000004e0000213d0000002302100039000000000032004b0000000005000019000015ff05004041000015ff02200197000000000002004b0000000006000019000015ff06002041000015ff0020009c000000000605c019000000000006004b0000004e0000613d0000000402100039000000000224034f000000000202043b0000156c0020009c00001de30000213d00000005052002100000003f065000390000161906600197000000400700043d0000000006670019000c00000007001d000000000076004b000000000700003900000001070040390000156c0060009c00001de30000213d000000010070019000001de30000c13d000000400060043f0000000c060000290000000006260436000700000006001d00000024011000390000000005510019000000000035004b0000004e0000213d000000000002004b000006580000613d0000000702000029000000000314034f000000000303043b00000000023204360000002001100039000000000051004b000006520000413d0000000a01000039000000000201041a000000400400043d0000161b01000041000000000014043500000004014000390000161c03000041000000000031043500000000010004110000156503100197000e00000004001d0000002401400039000b00000003001d0000000000310435000000000100041400000008022002700000156502200197000000040020008c000020650000c13d0000000103000031000000200030008c000000200400003900000000040340190000208f0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000015650010009c0000004e0000213d558254120000040f5582300a0000040f000007fc0000013d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000101041a00000008011002700000072a0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000002401400370000000000101043b000d00000001001d000015660010009c0000004e0000213d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156503100197000000a40030043f000000000100041400000008022002700000156502200197000000040020008c000c00000003001d000013f30000c13d0000000103000031000000200030008c00000020040000390000000004034019000014180000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000e00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a0000161b01000041000000800010043f0000164f01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000156502200197000000040020008c000011910000c13d0000000103000031000000200030008c00000020040000390000000004034019000011b60000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000002401400370000000000101043b000d00000001001d55822ea30000040f000015650110019800000dcf0000613d0000000e0010006b0000143b0000c13d000000400100043d00000064021000390000165803000041000000000032043500000044021000390000165903000041000000000032043500000024021000390000002103000039000011620000013d0000000001000416000000000001004b0000004e0000c13d558231bc0000040f000000000001004b00000000010000390000000101006039000007fc0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000015650010009c0000004e0000213d0000008001000039000000200200003955822ac80000040f000000800000043f000000400100043d000e00000001001d000000800200003955822a9b0000040f00000c250000013d0000000001000416000000000001004b0000004e0000c13d0000000001000411558232cd0000040f0000000d01000039000000000001041b0000000001000019000055830001042e000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000d00000001001d000015650010009c0000004e0000213d0000002401400370000000000101043b000c00000001001d0000000a01000039000000000201041a0000161b01000041000000800010043f0000161c01000041000000840010043f00000000010004110000156503100197000000a40030043f000000000100041400000008022002700000156502200197000000040020008c000e00000003001d000012d30000c13d0000000103000031000000200030008c00000020040000390000000004034019000012f80000013d0000000001000416000000000001004b0000004e0000c13d0000001101000039000000000101041a0000156501100197000000800010043f000015f801000041000055830001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b0000156c0020009c0000004e0000213d0000002301200039000000000031004b0000004e0000813d0000000405200039000000000154034f000000000101043b0000156c0010009c00001de30000213d0000001f0610003900001663066001970000003f0660003900001663066001970000161a0060009c00001de30000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004e0000213d0000002002500039000000000324034f00001663041001980000001f0510018f000000a002400039000007580000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000007540000c13d000000000005004b000007650000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000a01000039000000000201041a000000400500043d0000161b010000410000000000150435000000040150003900001620030000410000000000310435000000000100041100001565031001970000002401500039000d00000003001d0000000000310435000000000100041400000008022002700000156502200197000000040020008c00001a7d0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001aaa0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000015650010009c0000004e0000213d0000000a01000039000000000201041a0000161b01000041000000800010043f0000162001000041000000840010043f00000000010004110000156503100197000000a40030043f000000000100041400000008022002700000156502200197000000040020008c000d00000003001d0000130f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000013340000013d0000000001000416000000000001004b0000004e0000c13d0000000801000039000000000101041a00001645001001980000000001000039000000010100c039000000800010043f000015f801000041000055830001042e0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000e810000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ea60000013d0000000001000416000000000001004b0000004e0000c13d55822f7e0000040f000000000001004b0000000001000039000000010100c039000007fc0000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402400370000000000202043b000e00000002001d0000000a02000039000000000202041a000015f903000041000000800030043f000015fa03000041000000840030043f000000000300041400000008022002700000156502200197000000040020008c00000f2a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f4f0000013d0000000001000416000000000001004b0000004e0000c13d0000000f01000039000000000201041a00001565032001970000000005000411000000000053004b000008030000c13d0000158102200197000000000021041b0000000001000414000015620010009c0000156201008041000000c00110021000001582011001c70000800d02000039000000030300003900001583040000410000000006000019558255780000040f00000001002001900000004e0000613d0000000001000019000055830001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b558230e30000040f0000156201100197000000400200043d0000000000120435000015620020009c00001562020080410000004001200210000015f7011001c7000055830001042e0000158601000041000000800010043f0000002001000039000000840010043f000000a40010043f0000164401000041000000c40010043f0000162e010000410000558400010430000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008200000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000081c0000c13d000000000006004b0000082d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010040000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a0000162b040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c00000a860000613d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000c0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000008620000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000085e0000c13d000000000006004b0000086f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000a2a0000c13d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000087a0000c13d000022c00000013d000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008930000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000088f0000c13d000000000006004b000008a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010100000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a00001603040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c000015300000c13d0000000001150019000000400010043f0000000c02000029000000000202043300000d1f0000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008d70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008d30000c13d000000000006004b000008e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000101c0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b0000155f0000c13d0000161f01000041000000000010043f0000000001000411000000040010043f0000163a01000041000000240010043f0000157c010000410000558400010430000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009120000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000090e0000c13d000000000006004b0000091f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010280000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b000015660000c13d0000161f01000041000000000010043f0000000001000411000000040010043f0000163b01000041000000240010043f0000157c010000410000558400010430000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000094e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000094a0000c13d000000000006004b0000095b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010bd0000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a00001600040000410000000e05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000016090000c13d0000000001150019000000400010043f0000000e0200002900000b6a0000013d000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009920000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000098e0000c13d000000000006004b0000099f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010c90000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a00001603040000410000000e05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000016390000c13d0000000001150019000000400010043f0000000e02000029000000000202043300000d1f0000013d000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009d70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009d30000c13d000000000006004b000009e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010d50000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a0000162f040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c00000a860000613d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000c0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000a190000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000a150000c13d000000000006004b00000a260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019130000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a880000813d0000004e0000013d0000000202000039000000000023041b0000000a02000039000000000202041a0000161b03000041000000800030043f0000162003000041000000840030043f00000000030004110000156504300197000000a40040043f000000000300041400000008022002700000156502200197000000040020008c000e00000004001d000010e10000c13d0000000104000031000000200040008c00000020030000390000000003044019000011060000013d000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a5b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a570000c13d000000000006004b00000a680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011180000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a0000160d040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c000016680000c13d0000000001150019000000400010043f0000000c0200002900000d190000013d000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a9e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a9a0000c13d000000000006004b00000aab0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011240000613d0000001f02400039000000600420018f00000080024001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a00001629060000410000000c0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000d060000290000000000650435000000a4044000390000000e0500002900000000005404350000000004000414000000040020008c00000ad70000613d0000004001a00210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c75582557d0000040f0000006003100270000115620030019d0000156203300197000300000001035500000001002001900000194e0000613d0000000c0a00002900001663053001980000001f0630018f00000000045a001900000ae10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000add0000c13d000000000006004b00000aee0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663011001970000000002a10019000000000012004b000000000100003900000001010040390000156c0020009c00001de30000213d000000010010019000001de30000c13d000000400020043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000c0100002900000000010104330000156c0010009c0000004e0000213d0000000c033000290000000c011000290000001f04100039000000000034004b0000000005000019000015ff05008041000015ff04400197000015ff06300197000000000764013f000000000064004b0000000004000019000015ff04004041000015ff0070009c000000000405c019000000000004004b0000004e0000c13d00000000150104340000156c0050009c00001de30000213d00000005045002100000003f06400039000016190660019700000000062600190000156c0060009c00001de30000213d000000400060043f00000000005204350000000004140019000000000034004b0000004e0000213d000000000005004b00000e7e0000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000b220000413d00000e7e0000013d000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b3c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b380000c13d000000000006004b00000b490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011300000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a00001600040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c000016970000c13d0000000001150019000000400010043f0000000c020000290000000002020433000015650020009c0000004e0000213d00000d1f0000013d000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b820000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b7e0000c13d000000000006004b00000b8f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000113c0000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a000015fc060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000160e060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000bba0000613d0000004001a00210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c75582557d0000040f0000006003100270000115620030019d000015620330019700030000000103550000000100200190000019660000613d0000000e0a00002900001663053001980000001f0630018f00000000045a001900000bc40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000bc00000c13d000000000006004b00000bd10000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663041001970000000001a40019000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e0400002900000000040404330000156c0040009c0000004e0000213d0000000e063000290000000e034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000430304340000156c0030009c00001de30000213d0000001f0530003900001663055001970000003f05500039000016630550019700000000051500190000156c0050009c00001de30000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d00001663063001970000001f0230018f000000000054004b0000214c0000813d000000000006004b00000f260000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000c0d0000c13d00000f260000013d000000800050043f000000000003004b000011480000c13d0000166401600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a000000800100003955822ac80000040f0000002001000039000000400200043d000e00000002001d0000000002120436000000800100003955822a570000040f0000000e020000290000000001210049000015620010009c00001562010080410000006001100210000015620020009c00001562020080410000004002200210000000000121019f000055830001042e000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c430000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c3f0000c13d000000000006004b00000c500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000116d0000613d0000001f02400039000000600420018f00000080024001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a000015fc060000410000000c0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000d060000290000000000650435000000a4044000390000000e0500002900000000005404350000000004000414000000040020008c00000c7c0000613d0000004001a00210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c75582557d0000040f0000006003100270000115620030019d000015620330019700030000000103550000000100200190000019720000613d0000000c0a00002900001663053001980000001f0630018f00000000045a001900000c860000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000c820000c13d000000000006004b00000c930000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663041001970000000001a40019000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000c0400002900000000040404330000156c0040009c0000004e0000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000430304340000156c0030009c00001de30000213d0000001f0530003900001663055001970000003f05500039000016630550019700000000051500190000156c0050009c00001de30000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d00001663063001970000001f0230018f000000000054004b000021560000813d000000000006004b00000f260000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000ccf0000c13d00000f260000013d000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000cea0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ce60000c13d000000000006004b00000cf70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011790000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a0000162b040000410000000e05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000017310000c13d0000000001150019000000400010043f0000000e020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004e0000c13d00000000002104350000004001100210000015f7011001c7000055830001042e000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d370000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d330000c13d000000000006004b00000d440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011850000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a000015fc060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000d710000613d0000004001a00210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c75582557d0000040f0000006003100270000115620030019d0000156203300197000300000001035500000001002001900000197e0000613d0000000e0a00002900001663053001980000001f0630018f00000000045a001900000d7b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000d770000c13d000000000006004b00000d880000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663041001970000000001a40019000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e0400002900000000040404330000156c0040009c0000004e0000213d0000000e063000290000000e034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000430304340000156c0030009c00001de30000213d0000001f0530003900001663055001970000003f05500039000016630550019700000000051500190000156c0050009c00001de30000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d00001663063001970000001f0230018f000000000054004b000021600000813d000000000006004b00000f260000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000dc40000c13d00000f260000013d0000000e0100002955822ea30000040f0000156500100198000011cc0000c13d000000400100043d00000044021000390000160c03000041000000000032043500000024021000390000001803000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c70000558400010430000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000df40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000df00000c13d000000000006004b00000e010000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012bb0000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a00001629060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000e2e0000613d0000004001a00210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c75582557d0000040f0000006003100270000115620030019d000015620330019700030000000103550000000100200190000019ad0000613d0000000e0a00002900001663053001980000001f0630018f00000000045a001900000e380000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000e340000c13d000000000006004b00000e450000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663011001970000000002a10019000000000012004b000000000100003900000001010040390000156c0020009c00001de30000213d000000010010019000001de30000c13d000000400020043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e0100002900000000010104330000156c0010009c0000004e0000213d0000000e033000290000000e011000290000001f04100039000000000034004b0000000005000019000015ff05008041000015ff04400197000015ff06300197000000000764013f000000000064004b0000000004000019000015ff04004041000015ff0070009c000000000405c019000000000004004b0000004e0000c13d00000000150104340000156c0050009c00001de30000213d00000005045002100000003f06400039000016190660019700000000062600190000156c0060009c00001de30000213d000000400060043f00000000005204350000000004140019000000000034004b0000004e0000213d000000000005004b00000e7e0000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000e790000413d000000400100043d000e00000001001d000006f90000013d000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f000000800a00003900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e950000613d000000000801034f000000008908043c000000000a9a043600000000005a004b00000e910000c13d000000000006004b00000ea20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012c70000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a000015fc060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000c405400039000015fd060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000ecd0000613d0000004001a00210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c75582557d0000040f0000006003100270000115620030019d000015620330019700030000000103550000000100200190000019e80000613d0000000e0a00002900001663053001980000001f0630018f00000000045a001900000ed70000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000ed30000c13d000000000006004b00000ee40000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663041001970000000001a40019000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e0400002900000000040404330000156c0040009c0000004e0000213d0000000e063000290000000e034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000430304340000156c0030009c00001de30000213d0000001f0530003900001663055001970000003f05500039000016630550019700000000051500190000156c0050009c00001de30000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d00001663063001970000001f0230018f000000000054004b0000216a0000813d000000000006004b00000f260000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000f200000c13d000000000002004b000021800000613d0000000007050019000021760000013d000015620030009c0000156203008041000000c001300210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f3e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f3a0000c13d000000000006004b00000f4b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013460000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b05000039000000000505041a0000160d060000410000000d07000029000000000067043500000084064001bf0000000000560435000000c4054000390000160e060000410000000000650435000000a4054000390000000e0600002900000000006504350000000005000414000000040020008c000017600000c13d0000000002470019000c00000002001d000000400020043f0000000d020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b0000004e0000c13d0000000a02000039000000000202041a000015f9060000410000000c07000029000000000067043500000004067001bf000015fa07000041000000000076043500000008022002700000156502200197000000000005004b00001ad00000c13d0000000005000414000000040020008c00001c000000c13d0000000c02400029000d00000002001d000000400020043f0000000c020000290000000002020433000015650020009c0000004e0000213d0000000b04000039000000000404041a0000000d0700002900000044057000390000160f060000410000000000650435000015fc05000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c00000fa60000613d0000000d010000290000004001100210000015620040009c0000156204008041000000c003400210000000000131019f00001587011001c75582557d0000040f0000006003100270000115620030019d00001562033001970003000000010355000000010020019000001ec90000613d000000200200008a00000000052301700000001f0630018f0000000d0450002900000fb10000613d000000000701034f0000000d08000029000000007907043c0000000008980436000000000048004b00000fad0000c13d000000000006004b00000fbe0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000d01400029000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000d0400002900000000040404330000156c0040009c0000004e0000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000540304340000156c0040009c00001de30000213d0000001f03400039000000000323016f0000003f03300039000000000323016f00000000031300190000156c0030009c00001de30000213d000000400030043f00000000034104360000000007540019000000000067004b0000004e0000213d000000000724016f0000001f0640018f000000000035004b000024ed0000813d000000000007004b000010000000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000ffa0000c13d000000000006004b000025030000613d0000000008030019000024f90000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000100b0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010170000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010230000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000102f0000c13d000022c00000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010480000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010440000c13d000000000006004b000010550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013820000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b000013420000613d0000000a02000039000000000202041a000015f9040000410000000c05000029000000000045043500000084011001bf000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00001b550000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000c010000290000000001010433000d00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000c00000001001d000015790100004100000000001004430000000d0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d0000000e0000006b00000000010000390000000101006039000000400300043d000000640230003900000000001204350000004401300039000016620200004100000000002104350000162301000041000000000013043500000004013000390000000c020000290000000000210435000e00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c000010b80000613d0000000e02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000d02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000020b80000613d0000000e01000029000000000200001955822ac80000040f0000000001000019000055830001042e0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010c40000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010d00000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010dc0000c13d000022c00000013d000015620030009c0000156203008041000000c00130021000001621011001c75582557d0000040f00000060031002700000156204300197000000200040008c000000200300003900000000030440190000001f0630018f000000200730019000000080057001bf000010f50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010f10000c13d000000000006004b000011020000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000138e0000613d0000001f02300039000000600220018f00000080052001bf000000400050043f000000200040008c0000004e0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004e0000c13d000000000002004b0000191f0000c13d0000161f01000041000000000010043f0000000e010000290000188c0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000111f0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000112b0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011370000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011430000c13d000022c00000013d000e00000006001d000d00000005001d000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d0000000e02000029000000020020008c000018910000813d000000a00100003900000c1c0000013d000000400100043d00000064021000390000164803000041000000000032043500000044021000390000164903000041000000000032043500000024021000390000002303000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c000015620100804100000040011002100000158a011001c700005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011740000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011800000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000118c0000c13d000022c00000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011a50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011a10000c13d000000000006004b000011b20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014620000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004e0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004e0000c13d000000000003004b000019960000c13d0000161f01000041000000000010043f0000000001000411000000040010043f0000164f01000041000000240010043f0000157c0100004100005584000104300000000a01000039000000000201041a000000400b00043d000015f90100004100000000001b04350000000401b00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c0000146e0000c13d0000000103000031000000200030008c000000200400003900000000040340190000149a0000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011f20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011ee0000c13d000000000006004b000011ff0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014f40000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b000013420000613d0000000a02000039000000000202041a000015f9040000410000000c05000029000000000045043500000084011001bf000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00001bab0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000c010000290000000001010433000d00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000c00000001001d000015790100004100000000001004430000000d0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d00000064013000390000000e0200002900000000002104350000004401300039000016220200004100000000002104350000162301000041000000000013043500000004013000390000000c020000290000000000210435000e00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c000012600000613d0000000e02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000d02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000020c50000613d0000000e010000290000156c0010009c00001de30000213d0000000e01000029000000400010043f0000000001000019000055830001042e000015620010009c0000156201008041000000c001100210000015fb011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000127b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012770000c13d000000000006004b000012880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000150c0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000015650020009c0000004e0000213d0000000b03000039000000000303041a00001600040000410000000d05000029000000000045043500000084041001bf0000000000340435000000c40310003900001601040000410000000000430435000000a4031000390000000c0400002900000000004304350000000003000414000000040020008c000019b90000c13d0000000001150019000b00000001001d000000400010043f0000000d010000290000000001010433000015650010009c0000004e0000213d000000000001004b00001bfa0000c13d00001586010000410000000b03000029000000000013043500000004013001bf0000002002000039000000000021043500000044013000390000160c0200004100000000002104350000002401300039000000180200003900001ec20000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012c20000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012ce0000c13d000022c00000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012e70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012e30000c13d000000000006004b000012f40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015180000613d0000001f01400039000000600110018f00000080011001bf000a00000001001d000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000019f40000c13d0000161f01000041000000000010043f0000000e01000029000000040010043f0000161c01000041000000240010043f0000157c010000410000558400010430000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013230000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000131f0000c13d000000000006004b000013300000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015240000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b00001a400000c13d0000161f01000041000000000010043f0000000d010000290000188c0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000134d0000c13d000022c00000013d000000000020043f0000000501000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000000101043b0000000e02000029000000000020043f000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00001664022001970000000d03000029000000000232019f000000000021041b000000400100043d0000000000310435000015620010009c000015620100804100000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000156f011001c70000800d0200003900000003030000390000162c0400004100000000050004110000000e06000029000007ee0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013890000c13d000022c00000013d0000001f0540018f0000156406400198000000400200043d0000000003620019000013990000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000013950000c13d000000000005004b000013a60000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001304350000006001400210000022ce0000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013bc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000013b80000c13d000000000006004b000013c90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000189e0000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004e0000c13d000000000002004b000018890000613d0000000c020000290000156602200197000c00000002001d000027110020008c00001cfa0000413d00001586020000410000000a04000029000000000024043500000084021001bf00000020030000390000000000320435000000e40210003900001588030000410000000000320435000000c40210003900001589030000410000000000320435000000a4011000390000002a02000039000000000021043500000040014002100000158a011001c70000558400010430000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000014070000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000014030000c13d000000000006004b000014140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018aa0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004e0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004e0000c13d000000000003004b000014f00000613d0000000d030000290000156603300197000027110030008c00001d0b0000413d0000158603000041000000000031043500000084032001bf00000020040000390000000000430435000000e40320003900001588040000410000000000430435000000c40320003900001589040000410000000000430435000000a4022000390000002a03000039000000000032043500000040011002100000158a011001c700005584000104300000000002000411000000000012004b000018b60000c13d0000000d01000029000000000010043f0000000401000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000000101043b000000000201041a00001581022001970000000e022001af000000000021041b0000000d0100002955822ea30000040f000015650510019800000dcf0000613d0000000001000414000015620010009c0000156201008041000000c00110021000001582011001c70000800d02000039000000040300003900001657040000410000000e060000290000000d07000029558255780000040f00000001002001900000004e0000613d000007f10000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014690000c13d000022c00000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c7000d0000000b001d5582557d0000040f0000000d0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014890000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014850000c13d000000000006004b000014960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018eb0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000d00000002001d0000156c0020009c00001de30000213d000000010010019000001de30000c13d0000000d01000029000000400010043f000000200030008c0000004e0000413d00000000020b0433000015650020009c0000004e0000213d0000000b01000039000000000101041a0000000d06000029000000440460003900001626050000410000000000540435000015fc04000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c00001d180000c13d000000030100036700001d280000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000014d10000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000014cd0000c13d000000000006004b000014de0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018f70000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b00001bd90000c13d0000161f01000041000000000010043f0000000c010000290000188c0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014fb0000c13d000022c00000013d0000158102200197000000000262019f000000000021041b0000000001000414000015620010009c0000156201008041000000c00110021000001582011001c70000800d0200003900000003030000390000158304000041000007ee0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015130000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000151f0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000152b0000c13d000022c00000013d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000c0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015470000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015430000c13d000000000006004b000015540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019030000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000008c00000813d0000004e0000013d55823dd20000040f00000004010000390000000201100367000000000101043b55824c6a0000040f0000000001000019000055830001042e000000c002100039000000400020043f0000000a040000390000000e020000290000000000420435000000a0051000390000163c0200004100000000002504350000000c02000039000000000202041a000000ff002001900000190f0000c13d000d00000005001d000000000204041a000000400b00043d000015f90400004100000000004b04350000000404b00039000015fa050000410000000000540435000000000400041400000008022002700000156502200197000000040020008c000015ad0000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001602011001c7000c0000000b001d5582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0b0000290000000c057000290000159a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015960000c13d000000000006004b000015a70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c620000613d0000001f01400039000000600110018f0000000002b10019000000000012004b000000000100003900000001010040390000156c0020009c00001de30000213d000000010010019000001de30000c13d000000400020043f000000200030008c0000004e0000413d00000000010b0433000c00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d000015790100004100000000001004430000000c0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d00000064013000390000000002000410000000000021043500000044013000390000163e0200004100000000002104350000163f0100004100000000001304350000000401300039000900000001001d0000000b020000290000000000210435000a00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c000015f30000613d0000000a02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000c02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000022000000613d0000000a010000290000156c0010009c00001de30000213d0000000a03000029000000400030043f0000000a01000039000000000201041a000015f9010000410000000000130435000015fa0100004100000009030000290000000000130435000000000100041400000008022002700000156502200197000000040020008c0000221a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000022440000013d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000e0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000161c0000c13d000000000006004b0000162d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000192a0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004e0000413d0000000e0200002900000b6a0000013d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000e0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016500000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000164c0000c13d000000000006004b0000165d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019360000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004e0000413d000009c00000013d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000c0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000167f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000167b0000c13d000000000006004b0000168c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019420000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a880000813d0000004e0000013d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000c0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016ae0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016aa0000c13d000000000006004b000016bb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000195a0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004e0000413d00000b690000013d0000000801000039000000000201041a00000008012002700000156501100198000016ce0000c13d000000ff0020019000000000010000190000157601006041000000400200043d000000200320003900000000004304350000000000120435000015620020009c000015620200804100000040012002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001577011001c70000800d0200003900000001030000390000157804000041558255780000040f00000001002001900000004e0000613d0000000804000039000000000104041a0000157d011001970000000e0300002900000008023002100000157e02200197000000000112019f00000001011001bf000000000014041b000000000003004b000007f10000613d000015790100004100000000001004430000000e0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b000007f10000613d000015790100004100000000001004430000000e0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000002401300039000002d10200003900000000002104350000157b010000410000000000130435000d00000003001d00000004013000390000000002000410000000000021043500000000010004140000000e02000029000000040020008c0000172a0000613d0000000d02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000157c011001c70000000e02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000007f10000613d0000000d010000290000156c0010009c00001de30000213d0000000d01000029000000400010043f0000000001000019000055830001042e000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f0000000e0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000017480000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017440000c13d000000000006004b000017550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000198a0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d180000813d0000004e0000013d000015620050009c0000156205008041000000c0015002100000004003700210000000000131019f00001587011001c75582557d0000040f0000000d0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000017770000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017730000c13d000000000006004b000017840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a4e0000613d0000001f02400039000000600420018f0000000002b40019000c00000002001d000000400020043f000000200030008c00000f6c0000813d0000004e0000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000017a40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000017a00000c13d000000000006004b000017b10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a650000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000011140000613d0000000a0000006b000007f10000613d000000000a040019000e00000000001d0000000e01000029000000050110021000000009011000290000000201100367000000000101043b000c00000001001d0000000a01000039000000000201041a000015f90100004100000000001a04350000000401a00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000017de0000c13d0000000103000031000000200030008c00000020040000390000000004034019000018090000013d0000156200a0009c000015620300004100000000030a40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c7000d0000000a001d5582557d0000040f0000000d0a00002900000060031002700000156203300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000017f80000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000017f40000c13d0000001f07400190000018050000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021870000613d0000001f01400039000000600110018f0000000001a100190000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d00000000020a0433000015650020009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d00001579010000410000000000100443000d00000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000000d030000290000004e0000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a00039000016340200004100000000002104350000002401a000390000000c020000290000000000210435000016230100004100000000001a04350000000401a000390000000b0200002900000000002104350000000001000414000000040030008c0000184c0000613d0000156200a0009c000015620200004100000000020a40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000d0000000a001d558255780000040f0000000d0a0000290000006003100270000115620030019d00030000000103550000000100200190000021930000613d0000156c00a0009c00001de30000213d0000004000a0043f0000000e020000290000000102200039000e00000002001d0000000a0020006c000017c70000413d000007f10000013d000015620010009c0000156201008041000000c00110021000001621011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000018690000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000018650000c13d000000000006004b000018760000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a710000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b00001cb70000c13d0000161f01000041000000000010043f0000000b01000029000000040010043f0000162001000041000000240010043f0000157c010000410000558400010430000000000101043b00000000030000190000000d050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000018940000413d000000c00120003900000c1c0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018a50000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018b10000c13d000022c00000013d000000000010043f0000000501000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000000101043b00000000020004110000156502200197000c00000002001d000000000020043f000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff001001900000143e0000c13d0000000801000039000000000101041a0000164500100198000018e10000613d00000008021002700000156502200198000018df0000c13d000000ff00100190000000000200001900001576020060410000000c0020006b0000143e0000613d000000400100043d00000064021000390000165503000041000000000032043500000044021000390000165603000041000000000032043500000024021000390000003d03000039000011620000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018f20000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018fe0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000190a0000c13d000022c00000013d0000163d01000041000000000010043f0000160b0100004100005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000191a0000c13d000022c00000013d00000004020000390000000202200367000000000302043b00000000020004140000000006000411000000040060008c00001b830000c13d0000156c0040009c00001de30000213d000000010200003900001c850000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019310000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000193d0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019490000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019550000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019610000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000196d0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019790000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019850000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019910000c13d000022c00000013d0000000a03000039000000000303041a000000ff0430018f0000000e0000006b00001b8a0000c13d000000000004004b00001b9d0000613d00001664023001970000000a03000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000156f011001c70000800d0200003900000001030000390000165104000041000002280000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019b40000c13d000022c00000013d000015620030009c0000156203008041000000c0013002100000004003500210000000000131019f00001587011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000019cf0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000019cb0000c13d000000000006004b000019dc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001be20000613d0000001f01400039000000600110018f0000000d01100029000b00000001001d000000400010043f000000200030008c000012a90000813d0000004e0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019ef0000c13d000022c00000013d0000000a01000039000000000201041a000000ff0020019000001eb70000c13d0000161d010000410000000a040000290000000000140435000000000100041400000008022002700000156502200197000000040020008c00001d860000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000a01100029000b00000001001d000000400010043f0000000a010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b00001eb60000c13d0000000c010000290000156c0010009c00001de30000213d0000000c0100002900000005021002100000003f0120003900001619011001970000000b011000290000156c0010009c00001de30000213d000000400010043f0000000c010000290000000b030000290000000001130436000a00000001001d0000001f0120018f000000000002004b00001a2a0000613d0000000a04000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b00001a260000c13d000000000001004b0000000c0000006b00001a3c0000613d000e00000000001d0000000d0100002955823e5d0000040f0000000b0200002900000000020204330000000e04000029000000000042004b0000277f0000a13d00000005024002100000000a0220002900000000001204350000000104400039000e00000004001d0000000c0040006c00001a2e0000413d000000400100043d000e00000001001d0000000b02000029000006f90000013d0000000e0300002900000008013002100000157e011001970000000a04000039000000000204041a0000162402200197000000000112019f000000000014041b000000000003004b000007f10000c13d0000162501000041000000000010043f0000160b0100004100005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a550000c13d000022c00000013d000000000004004b000000000200001900001a5e0000613d00000000020104330000000301400210000016650110027f0000166501100167000000000112016f0000000102400210000000000121019f00001ddd0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a6c0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a780000c13d000022c00000013d000015620050009c000015620300004100000000030540190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000157c011001c7000e00000005001d5582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0b0000290000000e0570002900001a980000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001a940000c13d000000000006004b00001aa50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001bee0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000e00000002001d0000156c0020009c00001de30000213d000000010010019000001de30000c13d0000000e01000029000000400010043f000000200030008c0000004e0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000013420000613d0000000a01000039000000000201041a000015f9010000410000000e0400002900000000001404350000000401400039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00001f7c0000c13d000000200400003900001fa60000013d0000000005000414000000040020008c00001c310000c13d0000000c02400029000d00000002001d000000400020043f0000000c020000290000000002020433000015650020009c0000004e0000213d0000000b04000039000000000404041a0000000d0700002900000044057000390000160e06000041000000000065043500000024057000390000000e060000290000000000650435000015fc050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001af80000613d0000000d010000290000004001100210000015620040009c0000156204008041000000c003400210000000000131019f00001587011001c75582557d0000040f0000006003100270000115620030019d00001562033001970003000000010355000000010020019000001ed50000613d00001663053001980000001f0630018f0000000d0450002900001b020000613d000000000701034f0000000d08000029000000007907043c0000000008980436000000000048004b00001afe0000c13d000000000006004b00001b0f0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001663041001970000000d01400029000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000d0400002900000000040404330000156c0040009c0000004e0000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000430304340000156c0030009c00001de30000213d0000001f0530003900001663055001970000003f05500039000016630550019700000000051500190000156c0050009c00001de30000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d00001663063001970000001f0230018f000000000054004b0000250c0000813d000000000006004b00001b510000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001b4b0000c13d000000000002004b000025220000613d0000000007050019000025180000013d000015620010009c0000156201008041000000c0011002100000004003500210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001b6b0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001b670000c13d000000000006004b00001b780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c6e0000613d0000001f01400039000000600110018f0000000c01100029000000400010043f000000200030008c0000004e0000413d0000107b0000013d000015620020009c0000156202008041000000c001200210000000000003004b00001c7a0000c13d000000000200041100001c7e0000013d000000000004004b00001b9d0000c13d000016640230019700000001022001bf0000000a03000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000156f011001c70000800d0200003900000001030000390000165004000041000002280000013d0000158603000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900001652040000410000000000430435000000a40220003900000014030000390000000000320435000000400110021000001587011001c70000558400010430000015620010009c0000156201008041000000c0011002100000004003500210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001bc10000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001bbd0000c13d000000000006004b00001bce0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001db60000613d0000001f01400039000000600110018f0000000c01100029000000400010043f000000200030008c000012250000813d0000004e0000013d0000000d0000006b0000001101006039000000100100c039000000000201041a00001581022001970000000e022001af000000000021041b0000000001000019000055830001042e0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001be90000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bf50000c13d000022c00000013d0000000e0000006b00001e1b0000c13d0000160a01000041000000000010043f0000160b010000410000558400010430000015620050009c0000156205008041000000c0015002100000000c03000029000c00000003001d0000004003300210000000000113019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001c180000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001c140000c13d000000000006004b00001c250000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e2f0000613d0000001f02400039000000600220018f0000000c02200029000d00000002001d000000400020043f000000200030008c00000f850000813d0000004e0000013d000015620050009c0000156205008041000000c0015002100000000c03000029000c00000003001d0000004003300210000000000113019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001c490000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001c450000c13d000000000006004b00001c560000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e3b0000613d0000001f02400039000000600220018f0000000c02200029000d00000002001d000000400020043f000000200030008c00001ad60000813d0000004e0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c690000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c750000c13d000022c00000013d00001582011001c7000080090200003900000000040004110000000005000019558255780000040f00030000000103550000006003100270000115620030019d000015620430019800001ca90000613d000000400500043d0000001f034000390000164a033001970000003f033000390000164b063001970000000003560019000000000063004b000000000600003900000001060040390000156c0030009c00001de30000213d000000010060019000001de30000c13d000000400030043f000000000645043600001663054001980000001f0440018f000000000356001900001c9c0000613d000000000701034f000000007807043c0000000006860436000000000036004b00001c980000c13d000000000004004b00001ca90000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000001cb00000613d00000001010000390000000902000039000000000012041b0000000001000019000055830001042e000000400100043d00000044021000390000164c03000041000000000032043500000024021000390000000f0300003900000dd50000013d0000000e020000290000001f022000390000166302200197000b00000002001d0000003f0220003900001663022001970000000a022000290000156c0020009c00001de30000213d000000400020043f0000000e020000290000000a0500002900000000002504350000000c02000029000000000020007c0000004e0000213d0000000e0200002900001663042001980009001f00200193000000a001100039000800000004001d000c00000001001d00000000014100190000000d020000290000002002200039000700000002001d000000020220036700001cd90000613d000000000402034f0000000c05000029000000004604043c0000000005650436000000000015004b00001cd50000c13d000000090000006b00001ce70000613d000000080220036000000009040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000c020000290000000e0120002900000000000104350000000a01000039000000000201041a000000400400043d000015f9010000410000000000140435000d00000004001d0000000401400039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00001fed0000c13d0000002004000039000020170000013d0000000e0000006b00001e540000c13d00001586020000410000000a04000029000000000024043500000084021001bf00000020030000390000000000320435000000c40210003900001647030000410000000000320435000000a4011000390000001b020000390000000000210435000000400140021000001587011001c700005584000104300000000e0000006b00001e840000c13d0000158603000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900001585040000410000000000430435000000a402200039000000190300003900001ba70000013d0000000d03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c75582557d0000040f0000006003100270000115620030019d00001562033001970003000000010355000000010020019000001e9e0000613d000000200200008a00000000052301700000001f0630018f0000000d0450002900001d330000613d000000000701034f0000000d08000029000000007907043c0000000008980436000000000048004b00001d2f0000c13d000000000006004b00001d400000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000d01400029000000000041004b000000000400003900000001040040390000156c0010009c00001de30000213d000000010040019000001de30000c13d000000400010043f000015fe0030009c0000004e0000213d000000200030008c0000004e0000413d0000000d0400002900000000040404330000156c0040009c0000004e0000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000015ff05008041000015ff04400197000015ff07600197000000000874013f000000000074004b0000000004000019000015ff04004041000015ff0080009c000000000405c019000000000004004b0000004e0000c13d00000000540304340000156c0040009c00001de30000213d0000001f03400039000000000323016f0000003f03300039000000000323016f00000000031300190000156c0030009c00001de30000213d000000400030043f00000000034104360000000007540019000000000067004b0000004e0000213d000000000724016f0000001f0640018f000000000035004b000022d30000813d000000000007004b00001d820000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001d7c0000c13d000000000006004b000022e90000613d0000000008030019000022df0000013d000015620010009c0000156201008041000000c0011002100000000a030000290000004003300210000000000131019f0000160b011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001d9d0000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001d990000c13d000000000006004b00001daa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001eaa0000613d0000001f01400039000000600110018f0000000a01100029000b00000001001d000000400010043f000000200030008c00001a070000813d0000004e0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dbd0000c13d000022c00000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001dc80000c13d000000020020006c00001dda0000813d00000002020000290000000302200210000000f80220018f000016650220027f000016650220016700000005033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf000000000010041b00000003010000290000000001010433000500000001001d0000156c0010009c00001de90000a13d0000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000000101000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000a90000c13d000000200010008c00001e070000413d0000000102000039000000000020043f00000005030000290000001f023000390000000502200270000015700220009a000000200030008c00001571020040410000001f011000390000000501100270000015700110009a000000000012004b00001e070000813d000000000002041b0000000102200039000000000012004b00001e030000413d00000005010000290000001f0010008c00001e470000a13d0000000101000039000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000200200008a0000000502200180000000000101043b00001f280000c13d000000200300003900001f350000013d0000000e0010006c00001ec60000c13d0000000a01000039000000000201041a000015f9010000410000000b030000290000000001130436000e00000001001d00000004013001bf000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00001ee10000c13d00000020010000390000000e02000029000000400020043f00001f110000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e360000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e420000c13d000022c00000013d000000050000006b000000000100001900001e4c0000613d0000000101000029000000000101043300000005040000290000000302400210000016650220027f0000166502200167000000000121016f0000000102400210000000000121019f00001f430000013d000000c002100039000000400020043f0000000e020000290000000a030000290000000000230435000000a0021000390000000c01000029000b00000002001d00000000001204350000000d01000029000000000010043f0000000e01000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f00000001002001900000004e0000613d0000000a02000029000000000202043300001565022001970000000b030000290000000003030433000000a003300210000000000223019f000000000101043b000000000021041b000000400100043d0000000c020000290000000000210435000015620010009c000015620100804100000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000156f011001c70000800d02000039000000030300003900001646040000410000000d05000029000013800000013d000000c004200039000000400040043f0000000e050000290000000000510435000000a00120003900000000003104350000000d01000029000000a001100210000000000151019f0000000d02000039000000000012041b000000400100043d0000000000310435000015620010009c000015620100804100000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000156f011001c70000800d0200003900000002030000390000158004000041000007ee0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea50000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eb10000c13d000022c00000013d000a000b0000002d0000000a0300002900000044013000390000161e02000041000000000021043500000024013000390000001002000039000000000021043500001586010000410000000000130435000000040130003900000020020000390000000000210435000000400130021000001587011001c7000055840001043000000000010000190000000b02000029000007fd0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ed00000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001edc0000c13d000022c00000013d000015620010009c0000156201008041000000c0011002100000000b03000029000b00000003001d0000004003300210000000000113019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001ef90000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001ef50000c13d000000000006004b00001f060000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020d20000613d0000001f01400039000000600110018f0000000b02100029000e00000002001d000000400020043f000000200030008c0000004e0000413d0000000b020000290000000002020433000015650020009c0000004e0000213d0000000b03000039000000000303041a00001603040000410000000e05000029000000000045043500000004045001bf000000000034043500000044035000390000160404000041000000000043043500000024035000390000000c0400002900000000004304350000000003000414000000040020008c000021020000c13d0000000e01100029000000400010043f000021310000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001f2e0000c13d000000050020006c00001f400000813d00000005020000290000000302200210000000f80220018f000016650220027f000016650220016700000003033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000102000039000000000012041b0000000c010000290000000001010433000500000001001d0000156c0010009c00001de30000213d0000000601000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000a90000c13d000000200010008c00001f680000413d0000000602000039000000000020043f00000005030000290000001f023000390000000502200270000015720220009a000000200030008c00001573020040410000001f011000390000000501100270000015720110009a000000000012004b00001f680000813d000000000002041b0000000102200039000000000012004b00001f640000413d00000005010000290000001f0010008c000020ab0000a13d0000000601000039000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000200200008a0000000502200180000000000101043b000021a00000c13d0000002003000039000021ad0000013d0000000e03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0570002900001f950000613d000000000801034f0000000e09000029000000008a08043c0000000009a90436000000000059004b00001f910000c13d000000000006004b00001fa20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020de0000613d0000001f01400039000000600110018f0000000e011000290000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d0000000e010000290000000001010433000e00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000d00000001001d000015790100004100000000001004430000000e0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000016260200004100000000002104350000163501000041000000000015043500000004015000390000000d020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500001663041001970000001f0310018f000d00000005001d000000a402500039000000a10020008c0000238d0000413d000000000004004b00001fe80000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001fe20000c13d000000000003004b000023a30000613d000000a0040000390000000005020019000023990000013d0000000d03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000020060000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000020020000c13d000000000006004b000020130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020ea0000613d0000001f01400039000000600210018f0000000d01200029000000000021004b000000000200003900000001020040390000156c0010009c00001de30000213d000000010020019000001de30000c13d000000400010043f000000200030008c0000004e0000413d0000000d010000290000000001010433000d00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000600000001001d000015790100004100000000001004430000000d0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000015fd02000041000000000021043500001635010000410000000001150436000500000001001d000000040150003900000006020000290000000000210435000000240150003900000000000104350000000a0100002900000000010104330000008402500039000000000012043500001663041001970000001f0310018f000a00000005001d000000a4025000390000000c0020006b000023cc0000813d000000000004004b000020610000613d0000000c063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000205b0000c13d000000000003004b000023e30000613d0000000005020019000023d80000013d0000000e03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000157c011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e057000290000207e0000613d000000000801034f0000000e09000029000000008a08043c0000000009a90436000000000059004b0000207a0000c13d000000000006004b0000208b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020f60000613d0000001f01400039000000600110018f0000000e02100029000000000012004b00000000010000390000000101004039000d00000002001d0000156c0020009c00001de30000213d000000010010019000001de30000c13d0000000d01000029000000400010043f000000200030008c0000004e0000413d0000000e010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000022a70000c13d0000161f01000041000000000010043f0000000b010000290000130a0000013d000000050000006b0000000001000019000020b00000613d0000000901000029000000000101043300000005040000290000000302400210000016650220027f0000166502200167000000000121016f0000000102400210000000000121019f000021bb0000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020c00000c13d000022c00000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020cd0000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020d90000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020e50000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020f10000c13d000022c00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020fd0000c13d000022c00000013d000015620030009c0000156203008041000000c0013002100000000e03000029000e00000003001d0000004003300210000000000113019f00001587011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e057000290000211a0000613d000000000801034f0000000e09000029000000008a08043c0000000009a90436000000000059004b000021160000c13d000000000006004b000021270000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021f40000613d0000001f01400039000000600110018f0000000e01100029000000400010043f000000200030008c0000004e0000413d0000000e010000290000000001010433000e00000001001d000016050100004100000000001004430000000001000414000015620010009c0000156201008041000000c00110021000001606011001c70000800b020000395582557d0000040f000000010020019000002a060000613d000000000101043b000016070010009c0000229e0000413d000000400100043d00000064021000390000160803000041000000000032043500000044021000390000160903000041000000000032043500000024021000390000002603000039000011620000013d0000000007650019000000000006004b000021730000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000021510000c13d000021730000013d0000000007650019000000000006004b000021730000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b0000215b0000c13d000021730000013d0000000007650019000000000006004b000021730000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000021650000c13d000021730000013d0000000007650019000000000006004b000021730000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b0000216f0000c13d000000000002004b000021800000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000e00000003001d000000000223043600000c240000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000218e0000c13d000022c00000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000219b0000c13d000022c00000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000c0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000021a60000c13d000000050020006c000021b80000813d00000005020000290000000302200210000000f80220018f000016650220027f00001665022001670000000c033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000602000039000000000012041b0000000a010000290000000001010433000c00000001001d0000156c0010009c00001de30000213d0000000701000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000a90000c13d000000200010008c000021e00000413d0000000702000039000000000020043f0000000c030000290000001f023000390000000502200270000015740220009a000000200030008c00001575020040410000001f011000390000000501100270000015740110009a000000000012004b000021e00000813d000000000002041b0000000102200039000000000012004b000021dc0000413d0000000c010000290000001f0010008c0000220d0000a13d0000000701000039000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000200200008a0000000c02200180000000000101043b000022fc0000c13d0000002003000039000023090000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021fb0000c13d000022c00000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022080000c13d000022c00000013d0000000c0000006b0000000001000019000022120000613d000000060100002900000000010104330000000c040000290000000302400210000016650220027f0000166502200167000000000121016f0000000102400210000000000121019f000023170000013d0000000a03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000022330000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b0000222f0000c13d000000000006004b000022400000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000022b50000613d0000001f01400039000000600110018f0000000a011000290000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d0000000a010000290000000001010433000c00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d000015790100004100000000001004430000000c0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000016010200004100000000002104350000163f0100004100000000001304350000000401300039000900000001001d0000000b020000290000000000210435000a00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c000022880000613d0000000a02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000c02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000026c30000613d0000000a010000290000156c0010009c00001de30000213d0000000a03000029000000400030043f0000000a01000039000000000201041a000015f9010000410000000000130435000015fa0100004100000009030000290000000000130435000000000100041400000008022002700000156502200197000000040020008c000026d00000c13d0000000103000031000000200030008c00000020040000390000000004034019000026fa0000013d0000000e0200002900001562022001970000000001210049000015620010009c000004070000213d000000400200043d000b00000002001d0000000b02000029000007fd0000013d0000000a01000039000000000201041a000000ff00200190000026b20000c13d0000161d010000410000000d040000290000000000140435000000000100041400000008022002700000156502200197000000040020008c000024900000c13d0000002004000039000024ba0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022bc0000c13d000000000005004b000022cd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000000008730019000000000007004b000022dc0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000022d80000c13d000000000006004b000022e90000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b000022f50000c13d000000400100043d0000156b0010009c00001de30000213d0000002002100039000000400020043f0000000000010435000025240000013d0000000e04000029000016100040009c000024380000413d00000040060000390000000e04000029000016100440012a000024410000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000a0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000023020000c13d0000000c0020006c000023140000813d0000000c020000290000000302200210000000f80220018f000016650220027f00001665022001670000000a033000290000000003030433000000000223016f000000000021041b0000000c01000029000000010110021000000001011001bf0000000702000039000000000012041b000000400100043d0000002002100039000015760300004100000000003204350000000000010435000015620010009c000015620100804100000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001577011001c70000800d0200003900000001030000390000157804000041558255780000040f00000001002001900000004e0000613d00001579010000410000000000100443000015760100004100000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000235c0000c13d00000009010000390000000102000039000000000021041b0000000b03000029000015650030019800001a4a0000613d0000000d0100002900001566021001970000000a04000039000000000104041a0000157d0110019700000008033002100000157e03300197000000000113019f00000001011001bf000000000014041b0000157f010000410000000b03000039000000000013041b000000400100043d000027110020008c000025dc0000413d00000064021000390000158803000041000000000032043500000044021000390000158903000041000000000032043500000024021000390000002a03000039000011620000013d00001579010000410000000000100443000015760100004100000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000002401300039000002d10200003900000000002104350000157b010000410000000000130435000000040130003900000000020004100000000000210435000015620030009c000c00000003001d0000156201000041000000000103401900000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000157c011001c70000157602000041558255780000040f0000006003100270000115620030019d000300000001035500000001002001900000233d0000613d0000000c010000290000156c0010009c00001de30000213d0000000c01000029000000400010043f0000233d0000013d0000000005420019000000000004004b000023960000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000023920000c13d000000000003004b000023a30000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000e03000029000000040030008c0000172a0000613d0000001f011000390000166301100197000000a401100039000015620010009c000015620100804100000060011002100000000d03000029000015620030009c00001562030080410000004003300210000000000131019f000015620020009c0000156202008041000000c002200210000000000121019f0000000e02000029558255780000040f0000006003100270000115620030019d000300000001035500000001002001900000172a0000c13d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023c70000c13d000022c00000013d0000000005420019000000000004004b000023d50000613d0000000c06000029000000000702001900000000680604340000000007870436000000000057004b000023d10000c13d000000000003004b000023e30000613d000c000c0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000c0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000d03000029000000040030008c000023ff0000613d0000001f011000390000166301100197000000a401100039000015620010009c000015620100804100000060011002100000000a03000029000015620030009c00001562030080410000004003300210000000000131019f000015620020009c0000156202008041000000c002200210000000000112019f0000000d02000029558255780000040f0000006003100270000115620030019d000300000001035500000001002001900000257e0000613d0000000a010000290000156c0010009c00001de30000213d0000000a02000029000000400020043f0000000e0100002900000005030000290000000000130435000000200100003900000000001204350000004001200039000000080210002900000007030000290000000203300367000000080000006b000024150000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000024110000c13d000000090000006b000024230000613d000000080330036000000009040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000e0110002900000000000104350000000b020000290000006001200210000016360110009a000016370020009c00001638010080410000000a02000029000015620020009c00001562020080410000004002200210000000000121019f0000000002000414000015620020009c0000156202008041000000c00220021000000000012100190000800d0200003900000001030000390000163904000041000002280000013d0000000e04000029000016120040009c000016110440212a00000000060000390000002006002039000016130040009c00000010066081bf0000161404408197000016130440812a000016150040009c00000008066080390000156c04408197000016150440812a000027100040008c00000004066080390000156204408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b000000000800003900000001080040390000156c0040009c00001de30000213d000000010080019000001de30000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f0000246a0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000024660000c13d000000000007004b000000000665001900000021066000390000000e09000029000000090090008c0000000a7990011a0000000307700210000000010660008a00000000080604330000161608800197000016170770021f0000161807700197000000000787019f00000000007604350000246e0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b0000258b0000813d000000000009004b0000248c0000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000024860000c13d000000000008004b000025a10000613d000000000a070019000025970000013d0000000d03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000160b011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000024a90000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000024a50000c13d000000000006004b000024b60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025b80000613d0000001f01400039000000600110018f0000000d01100029000800000001001d0000156c0010009c00001de30000213d0000000801000029000000400010043f000000200030008c0000004e0000413d0000000d010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000026b10000c13d000000800100043d0000156c0010009c00001de30000213d00000005021002100000003f03200039000016190330019700000008033000290000156c0030009c00001de30000213d000000400030043f00000008030000290000000001130436000600000001001d0000001f0120018f000000000002004b000024e50000613d0000000604000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b000024e10000c13d000000000001004b000000800200043d000000000002004b0000274f0000c13d000000400100043d000e00000001001d0000000802000029000006f90000013d0000000008730019000000000007004b000024f60000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000024f20000c13d000000000006004b000025030000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000e04000029000016100040009c000025260000413d00000040060000390000000e04000029000016100440012a0000252f0000013d0000000007650019000000000006004b000025150000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000025110000c13d000000000002004b000025220000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d000026390000013d0000000e04000029000016120040009c000016110440212a00000000060000390000002006002039000016130040009c00000010066081bf0000161404408197000016130440812a000016150040009c00000008066080390000156c04408197000016150440812a000027100040008c00000004066080390000156204408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b000000000800003900000001080040390000156c0040009c00001de30000213d000000010080019000001de30000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f000025580000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000025540000c13d000000000007004b000000000665001900000021066000390000000e09000029000000090090008c0000000a7990011a0000000307700210000000010660008a00000000080604330000161608800197000016170770021f0000161807700197000000000787019f00000000007604350000255c0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b000025e50000813d000000000009004b0000257a0000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000025740000c13d000000000008004b000025fb0000613d000000000a070019000025f10000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025860000c13d000022c00000013d000000000a970019000000000009004b000025940000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000025900000c13d000000000008004b000025a10000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000025c40000813d000000000007004b000025b40000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000025ae0000c13d000000000006004b000025da0000613d0000000008030019000025d00000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025bf0000c13d000022c00000013d0000000008730019000000000007004b000025cd0000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000025c90000c13d000000000006004b000025da0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003530019000026290000013d0000000e0300002900001565053001980000263b0000c13d0000004402100039000015850300004100000000003204350000002402100039000000190300003900000dd50000013d000000000a970019000000000009004b000025ee0000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000025ea0000c13d000000000008004b000025fb0000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000026120000813d000000000007004b0000260e0000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000026080000c13d000000000006004b000026280000613d00000000080300190000261e0000013d0000000008730019000000000007004b0000261b0000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000026170000c13d000000000006004b000026280000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b000000000200003900000001020040390000156c0040009c00001de30000213d000000010020019000001de30000c13d0000000003040019000000400040043f0000002002000039000021840000013d000015670010009c00001de30000213d0000004003100039000000400030043f0000002003100039000000000023043500000000005104350000000d01000029000000a001100210000000000151019f0000000d03000039000000000013041b000000400100043d0000000000210435000015620010009c000015620100804100000040011002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f0000156f011001c70000800d0200003900000002030000390000158004000041558255780000040f00000001002001900000004e0000613d0000000f01000039000000000201041a00001581032001970000000006000411000000000363019f000000000031041b00000000010004140000156505200197000015620010009c0000156201008041000000c00110021000001582011001c70000800d0200003900000003030000390000158304000041558255780000040f00000001002001900000004e0000613d00000012010000390000000802000029000000000021041b00000007010000290000000001010433000e00000001001d0000156c0010009c00001de30000213d0000001301000039000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000a90000c13d0000000d01000029000000200010008c0000269d0000413d0000001301000039000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d0000000e030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000d010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000269d0000813d000000000002041b0000000102200039000000000012004b000026990000413d0000000e010000290000001f0010008c000027850000a13d0000001301000039000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d000000200200008a0000000e02200180000000000101043b000027e70000c13d0000002003000039000027f30000013d000d00080000002d0000000d0300002900000044013000390000161e02000041000000000021043500000024013000390000001002000039000000000021043500001586010000410000000000130435000000040130003900000020020000390000000000210435000015620030009c0000156203008041000000400130021000001587011001c7000055840001043000001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026cb0000c13d000022c00000013d0000000a03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000026e90000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000026e50000c13d000000000006004b000026f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000027430000613d0000001f01400039000000600110018f0000000a011000290000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d0000000a010000290000000001010433000c00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d000015790100004100000000001004430000000c0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000160e020000410000000000210435000016350100004100000000001504350000000401500039000900000001001d0000000b020000290000000000210435000000240150003900000000000104350000000e0100002900000000010104330000008402500039000000000012043500001663041001970000001f0310018f000a00000005001d000000a4025000390000000d0020006b000027910000813d000000000004004b0000273f0000613d0000000d063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000027390000c13d000000000003004b000027a80000613d00000000050200190000279d0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000274a0000c13d000022c00000013d0000000c010000290000000001010433000d00000000001d000027570000013d0000000d03000029000d00010030003d0000000d0020006b000024e90000813d0000000d03000029000000000031004b0000277f0000a13d00000005033002100000000704300029000b00000004001d0000000004040433000000000004004b000027530000613d000900060030002d000a00a00030003d00000000040000190000000d03000029000e00000004001d000000800100043d000000000031004b0000277f0000a13d0000000a010000290000000001010433000015650110019755823e5d0000040f0000000d0300002900000008020000290000000002020433000000000032004b0000277f0000a13d000000090200002900000000001204350000000c010000290000000001010433000000000031004b0000277f0000a13d0000000e0400002900000001044000390000000b020000290000000002020433000000000024004b000027640000413d000000800200043d000027530000013d0000164301000041000000000010043f0000003201000039000000040010043f000016020100004100005584000104300000000e0000006b00000000010000190000278a0000613d000000040100002900000000010104330000000e040000290000000302400210000016650220027f0000166502200167000000000121016f0000000102400210000028010000013d0000000005420019000000000004004b0000279a0000613d0000000d06000029000000000702001900000000680604340000000007870436000000000057004b000027960000c13d000000000003004b000027a80000613d000d000d0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000d0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000c03000029000000040030008c000027c40000613d0000001f011000390000166301100197000000a401100039000015620010009c000015620100804100000060011002100000000a03000029000015620030009c00001562030080410000004003300210000000000131019f000015620020009c0000156202008041000000c002200210000000000112019f0000000c02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000027da0000613d0000000a010000290000156c0010009c00001de30000213d0000000a03000029000000400030043f0000000a01000039000000000201041a000015f9010000410000000000130435000015fa0100004100000009030000290000000000130435000000000100041400000008022002700000156502200197000000040020008c0000280e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000028380000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027e20000c13d000022c00000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000027ec0000c13d0000000e0020006c000027fe0000813d0000000e020000290000000302200210000000f80220018f000016650220027f000016650220016700000007033000290000000003030433000000000223016f000000000021041b0000000e0100002900000001011002100000000102000039000000000121019f0000001302000039000000000012041b0000000801000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000158401000041000055830001042e0000000a03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000028270000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000028230000c13d000000000006004b000028340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000289a0000613d0000001f01400039000000600110018f0000000a011000290000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d0000000a010000290000000001010433000e00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000d00000001001d000015790100004100000000001004430000000e0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d00000064013000390000157f020000410000000000210435000000440130003900001640020000410000000000210435000016410100004100000000001304350000000401300039000b00000001001d0000000d020000290000000000210435000c00000003001d0000002401300039000000000001043500000000010004140000000e02000029000000040020008c0000287c0000613d0000000c02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000e02000029558255780000040f0000006003100270000115620030019d00030000000103550000000100200190000028a60000613d0000000c010000290000156c0010009c00001de30000213d0000000c04000029000000400040043f0000000c02000039000000000102041a000016640110019700000001011001bf000000000012041b0000001201000039000000000101041a000e00000001001d0000000a01000039000000000201041a000015f9010000410000000000140435000015fa010000410000000b030000290000000000130435000000000100041400000008022002700000156502200197000000040020008c000028b30000c13d0000000103000031000000200030008c00000020040000390000000004034019000028dd0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028a10000c13d000022c00000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028ae0000c13d000022c00000013d0000000c03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c05700029000028cc0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b000028c80000c13d000000000006004b000028d90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029410000613d0000001f01400039000000600110018f0000000c011000290000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d0000000c010000290000000001010433000d00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d000015790100004100000000001004430000000d0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400300043d00000064013000390000000e02000029000000000021043500000044013000390000164202000041000000000021043500001641010000410000000001130436000c00000001001d00000004013000390000000b020000290000000000210435000e00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c000029210000613d0000000e02000029000015620020009c00001562020080410000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000d02000029558255780000040f0000006003100270000115620030019d000300000001035500000001002001900000294d0000613d0000000e010000290000156c0010009c00001de30000213d0000000e01000029000000400010043f0000001301000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000d00000004001d0000001f0040008c00000000040000390000000104002039000b00000005001d000000000445013f0000000100400190000000a90000c13d0000000e040000290000000d050000290000000000540435000000000003004b0000295a0000c13d000001000100008a0000000b0110017f0000000c030000290000000000130435000000000002004b0000000001030019000000200110c039000029750000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029480000c13d000022c00000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029550000c13d000022c00000013d000000000010043f0000000001000414000015620010009c0000156201008041000000c0011002100000156f011001c700008010020000395582557d0000040f00000001002001900000004e0000613d0000000b02000029000000020020008c000029690000813d0000002001000039000029740000013d000000000101043b0000000002000019000000000302001900000020022000390000000e04200029000000000501041a000000000054043500000001011000390000000d0020006c0000296b0000413d00000040013000390000000e011000290000000e0110006a0000001f0110003900001663011001970000000e02100029000000000012004b00000000010000390000000101004039000d00000002001d0000156c0020009c00001de30000213d000000010010019000001de30000c13d0000000d03000029000000400030043f0000000a01000039000000000201041a000015f90100004100000000001304350000000401300039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000029940000c13d0000000103000031000000200030008c00000020040000390000000004034019000029be0000013d0000000d03000029000015620030009c00001562030080410000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f00000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000029ad0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000029a90000c13d000000000006004b000029ba0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002a070000613d0000001f01400039000000600110018f0000000d011000290000156c0010009c00001de30000213d000000400010043f000000200030008c0000004e0000413d0000000d010000290000000001010433000d00000001001d000015650010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d000015790100004100000000001004430000000d0100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000002a060000613d000000000101043b000000000001004b0000004e0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000160f0200004100000000002104350000163501000041000000000015043500000004015000390000000b0200002900000000002104350000002401500039000000000001043500000084025000390000000e010000290000000001010433000000000012043500001663041001970000001f0310018f000e00000005001d000000a4025000390000000c0020006b00002a130000813d000000000004004b00002a020000613d0000000c063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000029fc0000c13d000000000003004b00002a2a0000613d000000000502001900002a1f0000013d000000000001042f0000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a0e0000c13d000022c00000013d0000000005420019000000000004004b00002a1c0000613d0000000c06000029000000000702001900000000680604340000000007870436000000000057004b00002a180000c13d000000000003004b00002a2a0000613d000c000c0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000c0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000d03000029000000040030008c00002a460000613d0000001f011000390000166301100197000000a401100039000015620010009c000015620100804100000060011002100000000e03000029000015620030009c00001562030080410000004003300210000000000131019f000015620020009c0000156202008041000000c002200210000000000112019f0000000d02000029558255780000040f0000006003100270000115620030019d0003000000010355000000010020019000002a4a0000613d0000000e010000290000156c0010009c00001de30000213d000012630000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000022c00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a520000c13d000022c00000013d0000000043010434000000000132043600001663063001970000001f0530018f000000000014004b00002a6d0000813d000000000006004b00002a690000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00002a630000c13d000000000005004b00002a830000613d000000000701001900002a790000013d0000000007610019000000000006004b00002a760000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00002a720000c13d000000000005004b00002a830000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900001663023001970000000001210019000000000001042d000015fe0010009c00002a990000213d000000630010008c00002a990000a13d00000002030003670000000401300370000000000101043b000015650010009c00002a990000213d0000002402300370000000000202043b000015650020009c00002a990000213d0000004403300370000000000303043b000000000001042d0000000001000019000055840001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b00002aa90000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b00002aa30000413d000000000001042d00030000000000020000000001000416000000000001004b00002ac60000c13d0000000001000031000015fe0010009c00002ac60000213d000000030010008c00002ac60000a13d000000400100043d000100000001001d0000000001000412000300000001001d000200000000003d000080050100003900000044030000390000000004000415000000030440008a000000050440021000001666020000415582555a0000040f00000001020000290000000000120435000015620020009c00001562020080410000004001200210000015f7011001c7000055830001042e000000000100001900005584000104300000001f0220003900001663022001970000000001120019000000000021004b000000000200003900000001020040390000156c0010009c00002ad40000213d000000010020019000002ad40000c13d000000400010043f000000000001042d0000164301000041000000000010043f0000004101000039000000040010043f00001602010000410000558400010430000016670020009c00002b0a0000813d00000000040100190000001f0120003900001663011001970000003f011000390000166305100197000000400100043d0000000005510019000000000015004b000000000700003900000001070040390000156c0050009c00002b0a0000213d000000010070019000002b0a0000c13d000000400050043f00000000052104360000000007420019000000000037004b00002b100000213d00001663062001980000001f0720018f0000000204400367000000000365001900002afa0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00002af60000c13d000000000007004b00002b070000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000000001000019000055840001043000020000000000020000000a02000039000000000202041a000000400c00043d000015f90300004100000000003c04350000000404c00039000015fa030000410000000000340435000000000400041400000008022002700000156502200197000000040020008c000200000001001d00002b260000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b530000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620040009c0000156204008041000000c001400210000000000131019f00001602011001c700010000000c001d5582557d0000040f000000010c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002b410000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002b3d0000c13d000000000006004b00002b4e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002bd30000613d00000002010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000156c00b0009c00002bbd0000213d000000010020019000002bbd0000c13d0000004000b0043f0000001f0030008c00002bbb0000a13d00000000020c0433000015650020009c00002bbb0000213d0000000b04000039000000000404041a0000004405b00039000016010600004100000000006504350000002405b000390000000000150435000016000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002ba00000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002b8c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002b880000c13d000000000006004b00002b990000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002bdf0000613d0000001f01400039000000600710018f00000002010000290000000004b700190000156c0040009c00002bbd0000213d000000400040043f000000200030008c00002bbb0000413d00000000020b0433000015650020009c00002bbb0000213d000000000002004b00002bc30000613d000000000010043f0000000401000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f000000010020019000002bbb0000613d000000000101043b000000000101041a0000156501100197000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f0000160201000041000055840001043000000044024000390000160c03000041000000000032043500000024024000390000001803000039000000000032043500001586020000410000000000240435000000040240003900000020030000390000000000320435000015620040009c0000156204008041000000400140021000001587011001c700005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002bea0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002bda0000c13d00002bea0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900002bea0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002be60000c13d000000000005004b00002bf70000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000000801000039000000000201041a0000000801200270000015650110019800002c030000613d000000000001042d000000ff0020019000000000010000190000157601006041000000000001042d00010000000000020000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00002c1a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002c460000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000c001d5582557d0000040f000000010c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002c350000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002c310000c13d000000000006004b00002c420000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ca20000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00002c9c0000213d000000010020019000002c9c0000c13d0000004000b0043f0000001f0030008c00002c9a0000a13d00000000020c0433000015650020009c00002c9a0000213d0000000b04000039000000000404041a0000004405b0003900001668060000410000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002c920000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002c7f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002c7b0000c13d000000000006004b00002c8c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002cc00000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00002c9c0000213d000000400010043f000000200030008c00002c9a0000413d00000000010b0433000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002cad0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ca90000c13d000000000005004b00002cba0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002ccb0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002cc70000c13d000000000005004b00002cd80000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f000055840001043000010000000000020000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00002cf10000c13d0000000103000031000000200030008c0000002004000039000000000403401900002d1d0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000c001d5582557d0000040f000000010c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002d0c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002d080000c13d000000000006004b00002d190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d790000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00002d730000213d000000010020019000002d730000c13d0000004000b0043f0000001f0030008c00002d710000a13d00000000020c0433000015650020009c00002d710000213d0000000b04000039000000000404041a0000004405b0003900001669060000410000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002d690000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002d560000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002d520000c13d000000000006004b00002d630000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d970000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00002d730000213d000000400010043f000000200030008c00002d710000413d00000000010b0433000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002d840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d800000c13d000000000005004b00002d910000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002da20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d9e0000c13d000000000005004b00002daf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f000055840001043000010000000000020000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00002dc80000c13d0000000103000031000000200030008c0000002004000039000000000403401900002df40000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000c001d5582557d0000040f000000010c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002de30000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002ddf0000c13d000000000006004b00002df00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e500000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00002e4a0000213d000000010020019000002e4a0000c13d0000004000b0043f0000001f0030008c00002e480000a13d00000000020c0433000015650020009c00002e480000213d0000000b04000039000000000404041a0000004405b0003900001642060000410000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002e400000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e2d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e290000c13d000000000006004b00002e3a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e6e0000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00002e4a0000213d000000400010043f000000200030008c00002e480000413d00000000010b0433000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002e5b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e570000c13d000000000005004b00002e680000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002e790000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e750000c13d000000000005004b00002e860000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f0000558400010430000000000001004b00002e8f0000613d000000000001042d000000400100043d00000064021000390000166a03000041000000000032043500000044021000390000166b03000041000000000032043500000024021000390000002d03000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c000015620100804100000040011002100000158a011001c7000055840001043000020000000000020000000a02000039000000000202041a000000400c00043d000015f90300004100000000003c04350000000404c00039000015fa030000410000000000340435000000000400041400000008022002700000156502200197000000040020008c00002eb60000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ee40000013d000100000001001d0000156200c0009c000015620300004100000000030c40190000004003300210000015620040009c0000156204008041000000c001400210000000000131019f00001602011001c700020000000c001d5582557d0000040f000000020c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002ed20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002ece0000c13d000000000006004b00002edf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f420000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000156c00b0009c00002f3c0000213d000000010020019000002f3c0000c13d0000004000b0043f0000001f0030008c00002f3a0000a13d00000000020c0433000015650020009c00002f3a0000213d0000000b04000039000000000404041a0000004405b00039000016010600004100000000006504350000002405b000390000000000150435000016000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002f300000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f1d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f190000c13d000000000006004b00002f2a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f600000613d0000001f01400039000000600710018f0000000001b700190000156c0010009c00002f3c0000213d000000400010043f000000200030008c00002f3a0000413d00000000010b0433000015650010009c00002f3a0000213d000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002f4d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f490000c13d000000000005004b00002f5a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002f6b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f670000c13d000000000005004b00002f780000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f000055840001043000010000000000020000000a01000039000000000201041a000000ff0120019000002fcf0000c13d000000400b00043d0000161d0100004100000000001b0435000000000100041400000008022002700000156502200197000000040020008c00002f900000c13d0000000103000031000000200030008c0000002004000039000000000403401900002fbc0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000160b011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002fab0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002fa70000c13d000000000006004b00002fb80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002fd80000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c00002fd20000213d000000010020019000002fd20000c13d000000400010043f0000001f0030008c00002fd00000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002fd00000c13d000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900002fe30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fdf0000c13d000000000005004b00002ff00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f0000558400010430000000000001004b00002ff90000613d000000000001042d000000400100043d00000044021000390000160c03000041000000000032043500000024021000390000001803000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c7000055840001043000020000000000020000000a02000039000000000202041a000000400c00043d000015f90300004100000000003c04350000000404c00039000015fa030000410000000000340435000000000400041400000008022002700000156502200197000000040020008c0000301d0000c13d0000000103000031000000200030008c000000200400003900000000040340190000304b0000013d000100000001001d0000156200c0009c000015620300004100000000030c40190000004003300210000015620040009c0000156204008041000000c001400210000000000131019f00001602011001c700020000000c001d5582557d0000040f000000020c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000030390000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000030350000c13d000000000006004b000030460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030a70000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000156c00b0009c000030a10000213d0000000100200190000030a10000c13d0000004000b0043f0000001f0030008c0000309f0000a13d00000000020c0433000015650020009c0000309f0000213d0000000b04000039000000000404041a0000004405b000390000166c0600004100000000006504350000002405b000390000000000150435000016030500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000030970000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030840000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030800000c13d000000000006004b000030910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030c50000613d0000001f01400039000000600710018f0000000001b700190000156c0010009c000030a10000213d000000400010043f000000200030008c0000309f0000413d00000000010b0433000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000030b20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030ae0000c13d000000000005004b000030bf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000030d00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030cc0000c13d000000000005004b000030dd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f000055840001043000020000000000020000000a02000039000000000202041a000000400c00043d000015f90300004100000000003c04350000000404c00039000015fa030000410000000000340435000000000400041400000008022002700000156502200197000000040020008c000030f60000c13d0000000103000031000000200030008c00000020040000390000000004034019000031240000013d000100000001001d0000156200c0009c000015620300004100000000030c40190000004003300210000015620040009c0000156204008041000000c001400210000000000131019f00001602011001c700020000000c001d5582557d0000040f000000020c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031120000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000310e0000c13d000000000006004b0000311f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031800000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000156c00b0009c0000317a0000213d00000001002001900000317a0000c13d0000004000b0043f0000001f0030008c000031780000a13d00000000020c0433000015650020009c000031780000213d0000000b04000039000000000404041a0000004405b00039000016040600004100000000006504350000002405b000390000000000150435000016030500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000031700000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000315d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031590000c13d000000000006004b0000316a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000319e0000613d0000001f01400039000000600710018f0000000001b700190000156c0010009c0000317a0000213d000000400010043f000000200030008c000031780000413d00000000010b0433000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d00000000046200190000318b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031870000c13d000000000005004b000031980000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000031a90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031a50000c13d000000000005004b000031b60000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f000055840001043000010000000000020000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000031cf0000c13d0000000103000031000000200030008c00000020040000390000000004034019000031fb0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000c001d5582557d0000040f000000010c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031ea0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031e60000c13d000000000006004b000031f70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000325c0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c000032560000213d0000000100200190000032560000c13d0000004000b0043f0000001f0030008c000032540000a13d00000000020c0433000015650020009c000032540000213d0000000b04000039000000000404041a0000004405b00039000016620600004100000000006504350000162b0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000032470000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032340000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032300000c13d000000000006004b000032410000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000327a0000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000032560000213d000000400010043f000000200030008c000032540000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000032540000c13d000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000032670000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032630000c13d000000000005004b000032740000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000032850000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032810000c13d000000000005004b000032920000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f00005584000104300001000000000002000100000002001d0000156501100197000000000010043f0000000501000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000032cb0000613d000000000101043b00000001020000290000156502200197000100000002001d000000000020043f000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000032cb0000613d000000000101043b000000000101041a000000ff01100190000032bb0000613d000000000001042d0000000801000039000000000201041a0000164500200198000032c90000613d00000008012002700000156501100198000032c50000c13d000000ff0020019000000000010000190000157601006041000000010010006b00000000010000390000000101006039000000000001042d0000000001000019000000000001042d0000000001000019000055840001043000020000000000020000000a02000039000000000202041a000000400b00043d0000161b0300004100000000003b04350000000403b000390000162004000041000000000043043500001565051001970000002401b000390000000000510435000000000100041400000008022002700000156502200197000000040020008c000032e30000c13d0000000103000031000000200030008c00000020040000390000000004034019000033110000013d000100000005001d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000157c011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032ff0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032fb0000c13d000000000006004b0000330c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033360000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c000033290000213d0000000100200190000033290000c13d000000400010043f0000001f0030008c000033270000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033270000c13d000000000001004b0000332f0000613d000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000161f01000041000000000010043f000000040050043f0000162001000041000000240010043f0000157c0100004100005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000033410000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000333d0000c13d000000000005004b0000334e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300006000000000002000400000002001d000300000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000033690000c13d0000000103000031000000200030008c00000020040000390000000004034019000033950000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700020000000c001d5582557d0000040f000000020c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000033840000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000033800000c13d000000000006004b000033910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034ea0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c000034d40000213d0000000100200190000034d40000c13d0000004000b0043f0000001f0030008c000034d20000a13d00000000020c0433000015650020009c000034d20000213d0000000b04000039000000000404041a0000004405b00039000016010600004100000000006504350000002405b0003900000004060000290000000000650435000016000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000033e20000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033cf0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033cb0000c13d000000000006004b000033dc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034f60000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000034d40000213d000000400010043f000000200030008c000034d20000413d00000000020b0433000015650020009c000034d20000213d000000000002004b000034da0000613d0000000301000029000315650010019b000000030020006b000033f30000c13d0000000101000039000000000001042d000000000020043f0000000501000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000034d20000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000034d20000613d000000000101043b000000000101041a000000ff01100190000034110000613d000000000001042d0000000003000415000000060330008a00000005033002100000000801000039000000000101041a0000164500100198000034240000613d000000080210027000001565022001980000341e0000c13d000000ff00100190000000000200001900001576020060410000000003000415000000050330008a0000000503300210000000030020006b0000000101000039000034100000613d000200000003001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000034370000c13d0000000103000031000000200030008c00000020040000390000000004034019000034630000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000c001d5582557d0000040f000000010c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000034520000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000344e0000c13d000000000006004b0000345f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035140000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c000034d40000213d0000000100200190000034d40000c13d0000004000b0043f000000200030008c000034d20000413d00000000020c0433000015650020009c000034d20000213d0000000b04000039000000000404041a0000004405b00039000016010600004100000000006504350000002405b0003900000004060000290000000000650435000016000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000034b00000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000349d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034990000c13d000000000006004b000034aa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035200000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000034d40000213d000000400010043f000000200030008c000034d20000413d00000000020b0433000015650020009c000034d20000213d000000000002004b000034da0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000034d20000613d000000000101043b000000000101041a0000156501100197000000030010006c0000000001000039000000010100603900000002020000290000000502200270000000000201001f000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f0000160201000041000055840001043000000044021000390000160c03000041000000000032043500000024021000390000001803000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c700005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000035010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034f10000c13d000035010000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000035010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034fd0000c13d000000000005004b0000350e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000035010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000351b0000c13d000035010000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000035010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035270000c13d000035010000013d0007000000000002000600000003001d000500000002001d000700000001001d0000000a01000039000000000201041a000000400b00043d000015f90100004100000000001b04350000000401b00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000035420000c13d0000000103000031000000200030008c000000200400003900000000040340190000356e0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700040000000b001d5582557d0000040f000000040b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000355d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035590000c13d000000000006004b0000356a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c930000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000156c00c0009c00003c190000213d000000010020019000003c190000c13d0000004000c0043f0000001f0030008c00003c170000a13d00000000020b0433000015650020009c00003c170000213d0000000b04000039000000000404041a0000004405c00039000016010600004100000000006504350000002405c0003900000006060000290000000000650435000016000500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000035bb0000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035a80000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035a40000c13d000000000006004b000035b50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c9f0000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00003c190000213d0000004000b0043f000000200030008c00003c170000413d00000000050c0433000015650050009c00003c170000213d0000000401b00039000000000005004b00003c260000613d00000007020000290000156502200197000000000025004b00003c300000c13d0000000502000029000515650020019c00003c3d0000613d0000000a02000039000000000202041a000015f90400004100000000004b0435000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000700000005001d000035dc0000c13d0000002004000039000036080000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700040000000b001d5582557d0000040f000000040b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035f70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035f30000c13d000000000006004b000036040000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cab0000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00003c190000213d0000004000c0043f000000200030008c00003c170000413d00000000020b0433000015650020009c00003c170000213d0000000b04000039000000000404041a0000004405c00039000016620600004100000000006504350000162b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000364f0000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000363c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036380000c13d000000000006004b000036490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cb70000613d0000001f01400039000000600110018f0000000001c100190000156c0010009c00003c190000213d000000400010043f000000200030008c00003c170000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b00003c170000c13d000000000001004b00003c4a0000613d0000001001000039000000000101041a0000156502100198000036950000613d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b000000070300002900003c170000613d000000400400043d0000004401400039000000060200002900000000002104350000002401400039000000050200002900000000002104350000166f0100004100000000001404350000000401400039000000000031043500000000010004140000000402000029000000040020008c000036920000613d000015620040009c000015620300004100000000030440190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c7000400000004001d558255780000040f00000004040000290000006003100270000115620030019d0003000000010355000000010020019000003d870000613d0000156c0040009c00003c190000213d000000400040043f000016050100004100000000001004430000000001000414000015620010009c0000156201008041000000c00110021000001606011001c70000800b020000395582557d0000040f000000010020019000003c1f0000613d000000400b00043d0000000402b00039000000000101043b000016070010009c00003c4e0000813d000400000001001d0000000a01000039000000000301041a000015f90100004100000000001b0435000015fa010000410000000000120435000000000100041400000008023002700000156502200197000000040020008c000036b60000c13d0000000103000031000000200030008c00000020040000390000000004034019000036e20000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700030000000b001d5582557d0000040f000000030b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036d10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036cd0000c13d000000000006004b000036de0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cc30000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c00003c190000213d000000010020019000003c190000c13d000000400010043f000000200030008c00003c170000413d00000000020b0433000015650020009c00003c170000213d0000000b01000039000000000101041a000200000001001d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b0000000707000029000000030300002900003c170000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000016040200004100000000002104350000002401b0003900000006020000290000000000210435000016410100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d0000372e0000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000400000004001d558255780000040f0000000404000029000000010b00002900000007070000290000006003100270000115620030019d0003000000010355000000010020019000003ccf0000613d0000156c00b0009c00003c190000213d0000004000b0043f0000000a01000039000000000201041a000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c000037410000c13d0000000103000031000000200030008c000000200400003900000000040340190000376d0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000375b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037570000c13d000000000006004b000037680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cdc0000613d00000007070000290000001f01400039000000600110018f000000000cb100190000156c00c0009c00003c190000213d0000004000c0043f000000200030008c00003c170000413d00000000020b0433000015650020009c00003c170000213d0000000b04000039000000000404041a0000004405c00039000016220600004100000000006504350000162b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000037b50000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000037a10000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000379d0000c13d000000000006004b000037ae0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ce80000613d0000001f01400039000000600110018f0000000707000029000000000bc100190000156c00b0009c00003c190000213d0000004000b0043f000000200030008c00003c170000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b00003c170000c13d000000000001004b00003c600000c13d0000000801000039000000000101041a00000008021002700000156502200198000038050000613d0000000001000411000000000021004b0000380b0000613d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b000000070700002900003c170000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000000050200002900000000002104350000002401b000390000000000710435000016530100004100000000001b0435000000000100041100001565011001970000000402b00039000000000012043500000000010004140000000402000029000000040020008c000038010000613d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000158a011001c700040000000b001d5582557d0000040f000000040b00002900000007070000290000006003100270000115620030019d0003000000010355000000010020019000003db30000613d0000156c00b0009c00003c190000213d0000004000b0043f0000380b0000013d000000ff001001900000380b0000c13d00001576020000410000000001000411000000000021004b000037cb0000c13d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c0000381c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000038490000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700040000000b001d5582557d0000040f000000040b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000038370000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038330000c13d000000000006004b000038440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cf40000613d00000007070000290000001f01400039000000600110018f000000000cb100190000156c00c0009c00003c190000213d0000004000c0043f000000200030008c00003c170000413d00000000020b0433000015650020009c00003c170000213d0000000b04000039000000000404041a0000004405c00039000016010600004100000000006504350000002405c0003900000006060000290000000000650435000016000500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000038920000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000387e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000387a0000c13d000000000006004b0000388b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d000000613d0000001f01400039000000600110018f00000007070000290000000001c100190000156c0010009c00003c190000213d000000400010043f000000200030008c00003c170000413d00000000020c0433000015650020009c00003c170000213d000000000002004b00003c700000613d000000000072004b00003c800000c13d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000000070300002900003c170000613d000000000101043b000000000201041a0000158102200197000000000021041b000000000030043f0000000301000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f000000010020019000003c170000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f000000010020019000003c170000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000705000029000000010020019000003c170000613d000000000101043b000000000201041a00001581022001970000000506000029000000000262019f000000000021041b0000000001000414000015620010009c0000156201008041000000c00110021000001582011001c70000800d02000039000000040300003900001670040000410000000607000029558255780000040f0000000704000029000000010020019000003c170000613d0000001101000039000000000101041a00001565021001980000392d0000613d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b000000070400002900003c170000613d000000400500043d0000004401500039000000060200002900000000002104350000002401500039000000050200002900000000002104350000166f0100004100000000001504350000000401500039000000000041043500000000010004140000000402000029000000040020008c000039290000613d000015620050009c000015620300004100000000030540190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c7000400000005001d558255780000040f000000040500002900000007040000290000006003100270000115620030019d0003000000010355000000010020019000003d940000613d0000156c0050009c00003c190000213d000000400050043f0000392e0000013d000000400500043d0000002001000039000400000001001d00000000011504360000000000410435000015670050009c00003c190000213d0000004002500039000000400020043f000015620010009c000015620100804100000040011002100000000002050433000015620020009c00001562020080410000006002200210000000000112019f0000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001582011001c700008010020000395582557d0000040f000000010020019000003c170000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c0000395c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000039880000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700030000000c001d5582557d0000040f000000030c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000039770000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000039730000c13d000000000006004b000039840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d0c0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00003c190000213d000000010020019000003c190000c13d0000004000b0043f000000200030008c00003c170000413d00000000020c0433000015650020009c00003c170000213d0000000b04000039000000000404041a0000004405b000390000166c0600004100000000006504350000002405b0003900000007060000290000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000039d50000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700030000000b001d5582557d0000040f000000030b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000039c20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000039be0000c13d000000000006004b000039cf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d180000613d0000001f01400039000000600110018f000000000ab100190000156c00a0009c00003c190000213d0000004000a0043f000000200030008c00003c170000413d00000000010b0433000300000001001d000000000001004b00003c200000613d0000000a01000039000000000201041a000015f90100004100000000001a04350000000401a00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00003a180000613d0000156200a0009c000015620300004100000000030a40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700020000000a001d5582557d0000040f000000020a00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a001900003a070000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003a030000c13d000000000005004b00003a140000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003d240000613d00000004010000290000001f01100039000000600110018f0000000001a100190000156c0010009c00003c190000213d000000400010043f000000200030008c00003c170000413d00000000020a0433000015650020009c00003c170000213d0000000b01000039000000000101041a000200000001001d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b000000040300002900003c170000613d0000000301000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000166c0200004100000000002104350000002401b0003900000007020000290000000000210435000016410100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00030000000b001d00003a5f0000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000700000004001d558255780000040f0000000704000029000000030b0000290000006003100270000115620030019d0003000000010355000000010020019000003d300000613d0000156c00b0009c00003c190000213d0000000a01000039000000000201041a0000004000b0043f000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c00003a720000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a9d0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000030b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003a8c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003a880000c13d000000000006004b00003a990000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d3d0000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00003c190000213d000000400010043f000000200030008c00003c170000413d00000000020b0433000015650020009c00003c170000213d0000000b01000039000000000101041a000400000001001d00001579010000410000000000100443000700000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b000000070300002900003c170000613d000000400400043d0000006401400039000000050200002900000000002104350000004401400039000016010200004100000000002104350000002401400039000000060200002900000000002104350000163f0100004100000000021404360000000401400039000000040500002900000000005104350000000001000414000000040030008c00003ae20000613d000015620040009c000600000002001d000015620200004100000000020440190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000700000004001d558255780000040f00000007040000290000006003100270000115620030019d00030000000103550000000100200190000000060200002900003d490000613d0000156c0040009c00003c190000213d000000400040043f0000002001000039000600000001001d000000000014043500000005010000290000000000120435000015670040009c00003c190000213d0000004001400039000000400010043f000015620020009c000015620200804100000040012002100000000002040433000015620020009c00001562020080410000006002200210000000000112019f0000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001582011001c700008010020000395582557d0000040f000000010020019000003c170000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00003b140000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b400000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700050000000c001d5582557d0000040f000000050c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003b2f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003b2b0000c13d000000000006004b00003b3c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d560000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00003c190000213d000000010020019000003c190000c13d0000004000b0043f000000200030008c00003c170000413d00000000020c0433000015650020009c00003c170000213d0000000b04000039000000000404041a0000004405b000390000166c0600004100000000006504350000002405b0003900000007060000290000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003b8d0000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700050000000b001d5582557d0000040f000000050b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b7a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b760000c13d000000000006004b00003b870000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d620000613d0000001f01400039000000600110018f000000000ab100190000156c00a0009c00003c190000213d0000004000a0043f000000200030008c00003c170000413d00000000010b0433000500010010003e00003c200000613d0000000a01000039000000000201041a000015f90100004100000000001a04350000000401a00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00003bcf0000613d0000156200a0009c000015620300004100000000030a40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700040000000a001d5582557d0000040f000000040a00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0540018f000600000004001d000000200640019000000000046a001900003bbe0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003bba0000c13d000000000005004b00003bcb0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003d6e0000613d00000006010000290000001f01100039000000600110018f0000000001a100190000156c0010009c00003c190000213d000000400010043f000000200030008c00003c170000413d00000000020a0433000015650020009c00003c170000213d0000000b01000039000000000101041a000400000001001d00001579010000410000000000100443000600000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f000000010020019000003c1f0000613d000000000101043b000000000001004b000000060300002900003c170000613d000000400400043d00000064014000390000000502000029000000000021043500000044014000390000166c020000410000000000210435000000240140003900000007020000290000000000210435000016410100004100000000001404350000000401400039000000040200002900000000002104350000000001000414000000040030008c00003c130000613d000015620040009c000015620200004100000000020440190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000700000004001d558255780000040f00000007040000290000006003100270000115620030019d0003000000010355000000010020019000003d7a0000613d0000156c0040009c00003c190000213d000000400040043f000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f00001602010000410000558400010430000000000001042f0000164301000041000000000010043f0000001101000039000000040010043f00001602010000410000558400010430000015860200004100000000002b0435000000200200003900000000002104350000004401b000390000160c0200004100000000002104350000002401b00039000000180200003900003c6a0000013d000015860200004100000000002b0435000000200200003900000000002104350000006401b000390000166d0200004100000000002104350000004401b000390000166e0200004100000000002104350000002401b00039000000250200003900003c5a0000013d000015860200004100000000002b0435000000200200003900000000002104350000006401b00039000016730200004100000000002104350000004401b00039000016740200004100000000002104350000002401b00039000000240200003900003c5a0000013d0000167201000041000000000010043f0000160b010000410000558400010430000015860100004100000000001b0435000000200100003900000000001204350000006401b00039000016080200004100000000002104350000004401b00039000016090200004100000000002104350000002401b00039000000260200003900000000002104350000156200b0009c000015620b0080410000004001b002100000158a011001c700005584000104300000004401b00039000016710200004100000000002104350000002401b000390000001b020000390000000000210435000015860100004100000000001b04350000000401b00039000000200200003900000000002104350000156200b0009c000015620b0080410000004001b0021000001587011001c7000055840001043000000044021000390000160c03000041000000000032043500000024021000390000001803000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c7000055840001043000000064021000390000166d03000041000000000032043500000044021000390000166e03000041000000000032043500000024021000390000002503000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c000015620100804100000040011002100000158a011001c700005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c9a0000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ca60000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cb20000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cbe0000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cca0000c13d00003dbf0000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cd70000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ce30000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cef0000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cfb0000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d070000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d130000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d1f0000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d2b0000c13d00003dbf0000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d380000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003da00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d440000c13d00003da00000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003da00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d510000c13d00003da00000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d5d0000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d690000c13d00003dbf0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d750000c13d00003dbf0000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d820000c13d00003dbf0000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003da00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d8f0000c13d00003da00000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003da00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d9c0000c13d000000000005004b00003dad0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f000055840001043000001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900003dbf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003dbb0000c13d000000000005004b00003dcc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300001000000000002000000400b00043d0000000a01000039000000000201041a000000ff0020019000003e280000c13d0000161d0100004100000000001b0435000000000100041400000008022002700000156502200197000000040020008c00003de40000c13d0000000103000031000000200030008c0000002004000039000000000403401900003e100000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f0000160b011001c700010000000b001d5582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003dff0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003dfb0000c13d000000000006004b00003e0c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003e3f0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c00003e390000213d000000010020019000003e390000c13d000000400010043f0000001f0030008c00003e260000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b00003e260000c13d000000000002004b00003e290000c13d000000000001042d0000000001000019000055840001043000000000010b001900000044021000390000161e03000041000000000032043500000024021000390000001003000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c700005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900003e4a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e460000c13d000000000005004b00003e570000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f0000558400010430000d000000000002000700000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00003e710000c13d0000000103000031000000200030008c0000002004000039000000000403401900003e9d0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c7000a0000000c001d5582557d0000040f0000000a0c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003e8c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003e880000c13d000000000006004b00003e990000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a2d0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00004c5b0000213d000000010020019000004c5b0000c13d0000004000b0043f0000001f0030008c000049e60000a13d00000000020c0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405b0003900001668060000410000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00003ee90000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c7000a0000000b001d5582557d0000040f0000000a0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003ed60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003ed20000c13d000000000006004b00003ee30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a390000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00004c5b0000213d0000004000c0043f000000200030008c000049e60000413d00000000010b0433000a00000001001d0000000a01000039000000000201041a000015f90100004100000000001c04350000000401c00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00003eff0000c13d000000200400003900003f2b0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700090000000c001d5582557d0000040f000000090c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003f1a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003f160000c13d000000000006004b00003f270000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a450000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000020c0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405b0003900001669060000410000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00003f720000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700090000000b001d5582557d0000040f000000090b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003f5f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003f5b0000c13d000000000006004b00003f6c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a510000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000010b04330000000a0110006b000049e90000413d000000010010003a000049e90000413d000a00000001001d000016660100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000015620010009c0000156201008041000000c00110021000001675011001c700008005020000395582557d0000040f0000000100200190000049e80000613d0000000a020000290000000103200039000000400b00043d0000000402b00039000000000101043b000000000013004b000049ff0000213d0000000a01000039000000000301041a000015f90100004100000000001b0435000015fa010000410000000000120435000000000100041400000008023002700000156502200197000000040020008c00003fa30000c13d0000000103000031000000200030008c0000002004000039000000000403401900003fcf0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c7000a0000000b001d5582557d0000040f0000000a0b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003fbe0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003fba0000c13d000000000006004b00003fcb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a5d0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000156c00c0009c00004c5b0000213d000000010020019000004c5b0000c13d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c0003900001676060000410000000000650435000016030500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000401b0000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c7000a0000000c001d5582557d0000040f0000000a0c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000040080000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000040040000c13d000000000006004b000040150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a690000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000020c0433000a00000002001d000000010020003a000049e90000413d0000000a02000039000000000202041a000015f90400004100000000004b04350000000404b00039000015fa050000410000000000540435000000000400041400000008022002700000156502200197000000040020008c0000405f0000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001602011001c700090000000b001d5582557d0000040f000000090b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000404c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000040480000c13d000000000006004b000040590000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a750000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b01000039000000000101041a000800000001001d00001579010000410000000000100443000900000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000905000029000049e60000613d0000000a010000290000000102100039000000400300043d0000006401300039000a00000002001d0000000000210435000000440130003900001676020000410000000000210435000000000203001900001641010000410000000004130436000000040130003900000008030000290000000000310435000000240120003900000000000104350000000001000414000000040050008c000400000004001d000800000002001d000040a40000613d000015620020009c000015620200004100000008020040290000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002050019558255780000040f00000004040000290000006003100270000115620030019d00030000000103550000000100200190000000080200002900004a810000613d0000156c0020009c00004c5b0000213d0000000801000029000000400010043f000d00200000003d0000156b0010009c00004c5b0000213d000000400040043f000000080100002900000000000104350000000a01000039000000000201041a000000400b00043d000015f90100004100000000001b04350000000401b00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000040c00000c13d0000000103000031000000200030008c00000020040000390000000004034019000040ec0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700090000000b001d5582557d0000040f000000090b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040db0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000040d70000c13d000000000006004b000040e80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a8e0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000156c00c0009c00004c5b0000213d000000010020019000004c5b0000c13d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c0003900001642060000410000000000650435000016030500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000041380000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700090000000c001d5582557d0000040f000000090c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000041250000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000041210000c13d000000000006004b000041320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a9a0000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000010c0433000000000001004b000042570000613d000900000001001d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000041500000c13d00000020040000390000417c0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700060000000b001d5582557d0000040f000000060b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000416b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000041670000c13d000000000006004b000041780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b9a0000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00004c5b0000213d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c0003900001668060000410000000000650435000016030500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000041c30000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700060000000c001d5582557d0000040f000000060c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000041b00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000041ac0000c13d000000000006004b000041bd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ba60000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000010c0433000600000001001d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000041d90000c13d0000002004000039000042050000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700050000000b001d5582557d0000040f000000050b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000041f40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000041f00000c13d000000000006004b000042010000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bb20000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00004c5b0000213d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c0003900001669060000410000000000650435000016030500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000424c0000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700050000000c001d5582557d0000040f000000050c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000042390000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000042350000c13d000000000006004b000042460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bbe0000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000010c0433000000060110006b000049e90000413d000000090010006c00004a290000813d0000000401b000390000000702000029000915650020019c00004a090000613d0000000a02000039000000000202041a000015f90400004100000000004b0435000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000042680000c13d0000002004000039000042940000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700060000000b001d5582557d0000040f000000060b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000042830000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000427f0000c13d000000000006004b000042900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004aa60000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00004c5b0000213d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c00039000016010600004100000000006504350000002405c000390000000a060000290000000000650435000016000500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000042dc0000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700060000000c001d5582557d0000040f000000060c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000042c90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000042c50000c13d000000000006004b000042d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ab20000613d0000001f01400039000000600110018f0000000001c100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000020c0433000015650020009c000049e60000213d000000000002004b000049ef0000c13d0000001001000039000000000101041a00001565021001980000431e0000613d00001579010000410000000000100443000600000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b000049e60000613d000000400400043d00000044014000390000000a0200002900000000002104350000002401400039000000090200002900000000002104350000166f0100004100000000001404350000000401400039000000000001043500000000010004140000000602000029000000040020008c0000431b0000613d000015620040009c000015620300004100000000030440190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c7000600000004001d558255780000040f00000006040000290000006003100270000115620030019d0003000000010355000000010020019000004bca0000613d0000156c0040009c00004c5b0000213d000000400040043f000016050100004100000000001004430000000001000414000015620010009c0000156201008041000000c00110021000001606011001c70000800b020000395582557d0000040f0000000100200190000049e80000613d000000400b00043d0000000402b00039000000000101043b000016070010009c00004a170000813d000600000001001d0000000a01000039000000000301041a000015f90100004100000000001b0435000015fa010000410000000000120435000000000100041400000008023002700000156502200197000000040020008c0000433f0000c13d0000000103000031000000200030008c000000200400003900000000040340190000436b0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700050000000b001d5582557d0000040f000000050b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000435a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000043560000c13d000000000006004b000043670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004abe0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c00004c5b0000213d000000010020019000004c5b0000c13d000000400010043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b01000039000000000101041a000300000001001d00001579010000410000000000100443000500000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000503000029000049e60000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000016040200004100000000002104350000002401b000390000000a020000290000000000210435000016410100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00020000000b001d000043b50000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000600000004001d558255780000040f0000000604000029000000020b0000290000006003100270000115620030019d0003000000010355000000010020019000004aca0000613d0000156c00b0009c00004c5b0000213d0000004000b0043f0000000a01000039000000000201041a000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c000043c80000c13d0000000103000031000000200030008c00000020040000390000000004034019000043f30000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000043e20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000043de0000c13d000000000006004b000043ef0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ad70000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00004c5b0000213d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c00039000016220600004100000000006504350000162b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000443a0000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700060000000c001d5582557d0000040f000000060c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000044270000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000044230000c13d000000000006004b000044340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ae30000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b000049e60000c13d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000044540000c13d0000002004000039000044800000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700060000000b001d5582557d0000040f000000060b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000446f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000446b0000c13d000000000006004b0000447c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004aef0000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c00004c5b0000213d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c00039000016010600004100000000006504350000002405c000390000000a060000290000000000650435000016000500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000044c80000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700060000000c001d5582557d0000040f000000060c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000044b50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000044b10000c13d000000000006004b000044c20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004afb0000613d0000001f01400039000000600110018f0000000001c100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000020c0433000015650020009c000049e60000213d000000000002004b000049ef0000c13d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000049e60000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000049e60000613d000000000101043b000000000201041a00001581022001970000000906000029000000000262019f000000000021041b0000000001000414000015620010009c0000156201008041000000c00110021000001582011001c70000800d020000390000000403000039000016700400004100000000050000190000000a07000029558255780000040f0000000100200190000049e60000613d0000001101000039000000000101041a00001565021001980000453e0000613d00001579010000410000000000100443000600000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b000049e60000613d000000400b00043d0000004401b000390000000a0200002900000000002104350000002401b00039000000090200002900000000002104350000166f0100004100000000001b04350000000404b00039000000000004043500000000010004140000000602000029000000040020008c0000453a0000613d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c700060000000b001d000500000004001d558255780000040f0000000504000029000000060b0000290000006003100270000115620030019d0003000000010355000000010020019000004bd70000613d0000156c00b0009c00004c5b0000213d0000004000b0043f000045400000013d000000400b00043d0000000404b000390000000a01000039000000000201041a000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c000045500000c13d0000000103000031000000200030008c000000200400003900000000040340190000457c0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700060000000b001d5582557d0000040f000000060b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000456b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045670000c13d000000000006004b000045780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b070000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000156c00c0009c00004c5b0000213d000000010020019000004c5b0000c13d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405c0003900001668060000410000000000650435000016030500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000045c80000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700060000000c001d5582557d0000040f000000060c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000045b50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000045b10000c13d000000000006004b000045c20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b130000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c00004c5b0000213d0000004000b0043f000000200030008c000049e60000413d00000000010c0433000600010010003e000049e90000613d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000045df0000c13d00000020040000390000460b0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700050000000b001d5582557d0000040f000000050b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000045fa0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045f60000c13d000000000006004b000046070000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b1f0000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b01000039000000000101041a000300000001001d00001579010000410000000000100443000500000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000503000029000049e60000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b0003900001668020000410000000000210435000016410100004100000000001b04350000000404b00039000000030100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00020000000b001d0000464f0000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000600000004001d558255780000040f0000000604000029000000020b0000290000006003100270000115620030019d0003000000010355000000010020019000004b2b0000613d0000156c00b0009c00004c5b0000213d0000004000b0043f0000000a01000039000000000201041a000015f90100004100000000001b0435000015fa0100004100000000001404350000000d03000029000000000100041400000008022002700000156502200197000000040020008c000600000003001d000046630000c13d000000010030007c000000010400003100000000040340190000468e0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000020b00002900000060031002700000156203300197000000060030006c000000060400002900000000040340190000001f0640018f000015640740019800000000057b00190000467d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000046790000c13d000000000006004b0000468a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b380000613d0000001f0140003900001663021001970000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c00004c5b0000213d000000010020019000004c5b0000c13d000000400010043f000015fe0040009c000049e60000213d000000200040008c000049e60000413d00000000020b0433000015650020009c000049e60000213d0000000b01000039000000000101041a000300000001001d00001579010000410000000000100443000500000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000503000029000049e60000613d000000400400043d00000064014000390000000902000029000000000021043500000044014000390000160102000041000000000021043500000024014000390000000a0200002900000000002104350000163f0100004100000000021404360000000401400039000000030500002900000000005104350000000001000414000000040030008c000046da0000613d000015620040009c000300000002001d000015620200004100000000020440190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000500000004001d558255780000040f00000005040000290000006003100270000115620030019d00030000000103550000000100200190000000030200002900004b440000613d0000156c0040009c00004c5b0000213d000000400040043f0000002001000039000300000001001d000000000014043500000009010000290000000000120435000015670040009c00004c5b0000213d0000004001400039000000400010043f000015620020009c000015620200804100000040012002100000000002040433000015620020009c00001562020080410000006002200210000000000112019f0000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001582011001c700008010020000395582557d0000040f0000000100200190000049e60000613d000000000101043b000500000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c0000470c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000047380000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700020000000c001d5582557d0000040f000000020c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000047270000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000047230000c13d000000000006004b000047340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b510000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00004c5b0000213d000000010020019000004c5b0000c13d0000004000b0043f000000200030008c000049e60000413d00000000020c0433000015650020009c000049e60000213d0000000b04000039000000000404041a0000004405b000390000166c0600004100000000006504350000002405b0003900000005060000290000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000047850000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000047720000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000476e0000c13d000000000006004b0000477f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b5d0000613d0000001f01400039000000600110018f000000000ab100190000156c00a0009c00004c5b0000213d0000004000a0043f000000200030008c000049e60000413d00000000010b0433000200010010003e000049e90000613d0000000a01000039000000000201041a000015f90100004100000000001a04350000000401a00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000047c70000613d0000156200a0009c000015620300004100000000030a40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000a001d5582557d0000040f000000010a00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a0019000047b60000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000047b20000c13d000000000005004b000047c30000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000004b690000613d00000003010000290000001f01100039000000600110018f0000000001a100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000020a0433000015650020009c000049e60000213d0000000b01000039000000000101041a000100000001001d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000303000029000049e60000613d000000400400043d00000064014000390000000202000029000000000021043500000044014000390000166c020000410000000000210435000000240140003900000005020000290000000000210435000016410100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c0000480b0000613d000015620040009c000015620200004100000000020440190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000500000004001d558255780000040f00000005040000290000006003100270000115620030019d0003000000010355000000010020019000004b750000613d0000156c0040009c00004c5b0000213d000000400040043f0000000001000415000500000001001d00001579010000410000000000100443000000070100002900000004001004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000409000029000048480000613d000000400b00043d0000006401b00039000000800a0000390000000000a104350000004401b000390000000a020000290000000000210435000016790100004100000000001b04350000000401b00039000000000200041100000000002104350000002401b000390000000000010435000000080100002900000000010104330000008402b00039000000000012043500001663041001970000001f0310018f000000a402b00039000000000029004b0000484c0000813d000000000004004b000048440000613d00000000063900190000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000483e0000c13d000000000003004b000048620000613d0000000005020019000048580000013d000000000100041500000005011000690000000001000002000048be0000013d0000000005420019000000000004004b000048550000613d0000000006090019000000000702001900000000680604340000000007870436000000000057004b000048510000c13d000000000003004b000048620000613d00000000094900190000000303300210000000000405043300000000043401cf000000000434022f00000000060904330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000040004140000000902000029000000040020008c000048700000c13d00000000050004150000000c0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000048a60000013d00080000000a001d0000001f011000390000166301100197000000a401100039000015620010009c000015620100804100000060011002100000156200b0009c000015620300004100000000030b40190000004003300210000000000131019f000015620040009c0000156204008041000000c003400210000000000131019f00090000000b001d558255780000040f000000090b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000048920000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000488e0000c13d000000000006004b0000489f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000b0550008a0000000505500210000000010020019000004bf60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c00004c5b0000213d000000010020019000004c5b0000c13d000000400010043f000000200030008c000049e60000413d00000000010b04330000165a00100198000049e60000c13d0000000502500270000000000201001f0000000002000415000000050220006900000000020000020000167b01100197000016790010009c00004c4f0000c13d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c000048d00000c13d0000000103000031000000060030006b00000000040300190000000604004029000048fc0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700090000000c001d5582557d0000040f000000090c00002900000060031002700000156203300197000000060030006c000000060400002900000000040340190000001f0640018f000015640740019800000000057c0019000048eb0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000048e70000c13d000000000006004b000048f80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b820000613d0000001f014000390000166301100197000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c00004c5b0000213d000000010020019000004c5b0000c13d0000004000b0043f000015fe0040009c000049e60000213d000000200040008c000049e60000413d00000000020c0433000015650020009c000049e60000213d0000000b05000039000000000505041a0000004406b00039000016340700004100000000007604350000002406b000390000000a0700002900000000007604350000162b0600004100000000006b04350000000406b0003900000000005604350000000005000414000000040020008c0000494d0000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620050009c0000156205008041000000c003500210000000000113019f00001587011001c700090000000b001d5582557d0000040f000000090b00002900000060031002700000156203300197000000060030006c000000060400002900000000040340190000001f0540018f000000000a040019000015640640019800000000046b0019000049390000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000048004b000049350000c13d000000000005004b000049460000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000004b8e0000613d00000000040a00190000001f01a000390000156301100197000000000cb1001900000000001c004b000000000100003900000001010040390000156c00c0009c00004c5b0000213d000000010010019000004c5b0000c13d0000004000c0043f000000200040008c000049e60000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000049e60000c13d000000000001004b000049620000613d0000000a01000029000000000001042d0000000a01000039000000000201041a000015f90100004100000000001c04350000000401c00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000049720000c13d000000200030008c000000200400003900000000040340190000499e0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700090000000c001d5582557d0000040f000000090c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000498d0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000049890000c13d000000000006004b0000499a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bfa0000613d0000001f01400039000000600110018f0000000001c100190000156c0010009c00004c5b0000213d000000400010043f000000200030008c000049e60000413d00000000020c0433000015650020009c000049e60000213d0000000b01000039000000000101041a000800000001001d00001579010000410000000000100443000900000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000049e80000613d000000000101043b000000000001004b0000000903000029000049e60000613d000000400400043d00000064014000390000000102000039000000000021043500000044014000390000163402000041000000000021043500000024014000390000000a020000290000000000210435000016230100004100000000001404350000000401400039000000080200002900000000002104350000000001000414000000040030008c000049e10000613d000015620040009c000015620200004100000000020440190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000900000004001d558255780000040f00000009040000290000006003100270000115620030019d0003000000010355000000010020019000004c060000613d0000156c0040009c00004c5b0000213d000000400040043f0000000a01000029000000000001042d00000000010000190000558400010430000000000001042f0000164301000041000000000010043f0000001101000039000000040010043f0000160201000041000055840001043000000044021000390000167803000041000000000032043500000024021000390000001c03000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c70000558400010430000015860100004100000000001b0435000000200100003900000000001204350000004401b000390000167d0200004100000000002104350000002401b00039000000120200003900004a110000013d000015860200004100000000002b0435000000200200003900000000002104350000004401b000390000167c0300004100000000003104350000002401b0003900000000002104350000156200b0009c000015620b0080410000004001b0021000001587011001c70000558400010430000015860100004100000000001b0435000000200100003900000000001204350000006401b00039000016080200004100000000002104350000004401b00039000016090200004100000000002104350000002401b00039000000260200003900000000002104350000156200b0009c000015620b0080410000004001b002100000158a011001c700005584000104300000167701000041000000000010043f0000160b0100004100005584000104300000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a340000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a400000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a4c0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a580000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a640000c13d00004be30000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a700000c13d00004be30000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a7c0000c13d00004be30000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a890000c13d00004be30000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a950000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004aa10000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004aad0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ab90000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ac50000c13d00004c120000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ad20000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ade0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004aea0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004af60000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b020000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b0e0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b1a0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b260000c13d00004c120000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b330000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b3f0000c13d00004be30000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b4c0000c13d00004be30000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b580000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b640000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b700000c13d00004c120000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b7d0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b890000c13d00004be30000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b950000c13d00004be30000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ba10000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bad0000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bb90000c13d00004c120000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bc50000c13d00004c120000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bd20000c13d00004be30000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004be30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bdf0000c13d000000000005004b00004bf00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f0000558400010430000000000003004b00004c250000c13d000000600200003900004c4c0000013d0000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c010000c13d00004c120000013d00001562033001970000001f0530018f0000156406300198000000400200043d000000000462001900004c120000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c0e0000c13d000000000005004b00004c1f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f00005584000104300000001f0230003900001563022001970000003f022000390000167a04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000156c0040009c00004c5b0000213d000000010050019000004c5b0000c13d000000400040043f0000001f0430018f00000000063204360000156405300198000800000006001d000000000356001900004c3f0000613d000000000601034f0000000807000029000000006806043c0000000007870436000000000037004b00004c3b0000c13d000000000004004b00004c4c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00004c610000c13d000000400200043d000a00000002001d000015860100004100000000001204350000000401200039558254370000040f0000000a020000290000000001210049000015620010009c0000156201008041000000600110021000004bf10000013d0000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000000802000029000015620020009c00001562020080410000004002200210000015620010009c00001562010080410000006001100210000000000121019f00005584000104300005000000000002000500000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00004c7e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004caa0000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004c990000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004c950000c13d000000000006004b00004ca60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000052df0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c000052b00000213d0000000100200190000052b00000c13d0000004000b0043f0000001f0030008c000052ae0000a13d00000000020c0433000015650020009c000052ae0000213d0000000b04000039000000000404041a0000004405b00039000016010600004100000000006504350000002405b0003900000005060000290000000000650435000016000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00004cf70000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000b001d5582557d0000040f000000040b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004ce40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004ce00000c13d000000000006004b00004cf10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000052eb0000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000052b00000213d000000400010043f000000200030008c000052ae0000413d00000000030b0433000015650030009c000052ae0000213d000000000003004b000052b70000613d0000001001000039000000000101041a000015650210019800004d3a0000613d000400000003001d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b0000000403000029000052ae0000613d000000400400043d0000004401400039000000050200002900000000002104350000166f010000410000000000140435000000040140003900000000003104350000002401400039000000000001043500000000010004140000000302000029000000040020008c00004d370000613d000015620040009c000015620300004100000000030440190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c7000400000004001d558255780000040f00000004040000290000006003100270000115620030019d00030000000103550000000100200190000053e60000613d0000156c0040009c000052b00000213d000000400040043f000016050100004100000000001004430000000001000414000015620010009c0000156201008041000000c00110021000001606011001c70000800b020000395582557d0000040f0000000100200190000052b60000613d000000400b00043d0000000402b00039000000000101043b000016070010009c000052cd0000813d000400000001001d0000000a01000039000000000301041a000015f90100004100000000001b0435000015fa010000410000000000120435000000000100041400000008023002700000156502200197000000040020008c00004d5b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004d870000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700030000000b001d5582557d0000040f000000030b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004d760000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004d720000c13d000000000006004b00004d830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000052f70000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000156c0010009c000052b00000213d0000000100200190000052b00000c13d000000400010043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b01000039000000000101041a000200000001001d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b0000000303000029000052ae0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000016040200004100000000002104350000002401b0003900000005020000290000000000210435000016410100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d00004dd10000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000400000004001d558255780000040f0000000404000029000000010b0000290000006003100270000115620030019d00030000000103550000000100200190000053030000613d0000156c00b0009c000052b00000213d0000004000b0043f0000000a01000039000000000201041a000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c00004de40000c13d0000000103000031000000200030008c0000002004000039000000000403401900004e0f0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004dfe0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004dfa0000c13d000000000006004b00004e0b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053100000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c000052b00000213d0000004000c0043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b04000039000000000404041a0000004405c00039000016220600004100000000006504350000162b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00004e560000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004e430000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004e3f0000c13d000000000006004b00004e500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000531c0000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c000052b00000213d0000004000b0043f000000200030008c000052ae0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b000052ae0000c13d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c00004e700000c13d000000200400003900004e9c0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700040000000b001d5582557d0000040f000000040b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004e8b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004e870000c13d000000000006004b00004e980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053280000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c000052b00000213d0000004000c0043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b04000039000000000404041a0000004405c00039000016010600004100000000006504350000002405c0003900000005060000290000000000650435000016000500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00004ee40000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004ed10000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004ecd0000c13d000000000006004b00004ede0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053340000613d0000001f01400039000000600110018f0000000001c100190000156c0010009c000052b00000213d000000400010043f000000200030008c000052ae0000413d00000000020c0433000400000002001d000015650020009c000052ae0000213d000000040000006b000052b70000613d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000052ae0000613d000000000101043b000000000201041a0000158102200197000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000052ae0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000015620010009c0000156201008041000000c00110021000001577011001c700008010020000395582557d0000040f0000000100200190000052ae0000613d000000000101043b000000000201041a0000158102200197000000000021041b0000000001000414000015620010009c0000156201008041000000c00110021000001582011001c70000800d0200003900000004030000390000167004000041000000040500002900000000060000190000000507000029558255780000040f0000000100200190000052ae0000613d0000001101000039000000000101041a000015650210019800004f690000613d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b000052ae0000613d000000400400043d0000004401400039000000050200002900000000002104350000166f0100004100000000001404350000000401400039000000040200002900000000002104350000002401400039000000000001043500000000010004140000000302000029000000040020008c00004f650000613d000015620040009c000015620300004100000000030440190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001587011001c7000300000004001d558255780000040f00000003040000290000006003100270000115620030019d00030000000103550000000100200190000053f30000613d0000156c0040009c000052b00000213d000000400040043f00004f6a0000013d000000400400043d0000002001000039000300000001001d000000000114043600000004020000290000000000210435000015670040009c000052b00000213d0000004002400039000000400020043f000015620010009c000015620100804100000040011002100000000002040433000015620020009c00001562020080410000006002200210000000000112019f0000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001582011001c700008010020000395582557d0000040f0000000100200190000052ae0000613d000000000101043b000400000001001d0000000a01000039000000000201041a000000400c00043d000015f90100004100000000001c04350000000401c00039000015fa030000410000000000310435000000000100041400000008022002700000156502200197000000040020008c00004f990000c13d0000000103000031000000200030008c0000002004000039000000000403401900004fc50000013d0000156200c0009c000015620300004100000000030c40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700020000000c001d5582557d0000040f000000020c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004fb40000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004fb00000c13d000000000006004b00004fc10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053400000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000156c00b0009c000052b00000213d0000000100200190000052b00000c13d0000004000b0043f000000200030008c000052ae0000413d00000000020c0433000015650020009c000052ae0000213d0000000b04000039000000000404041a0000004405b000390000166c0600004100000000006504350000002405b0003900000004060000290000000000650435000016030500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000050120000613d0000156200b0009c000015620100004100000000010b40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700020000000b001d5582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004fff0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004ffb0000c13d000000000006004b0000500c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000534c0000613d0000001f01400039000000600110018f000000000ab100190000156c00a0009c000052b00000213d0000004000a0043f000000200030008c000052ae0000413d00000000010b0433000200000001001d000000000001004b000052c70000613d0000000a01000039000000000201041a000015f90100004100000000001a04350000000401a00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000050550000613d0000156200a0009c000015620300004100000000030a40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700010000000a001d5582557d0000040f000000010a00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a0019000050440000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000050400000c13d000000000005004b000050510000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000053580000613d00000003010000290000001f01100039000000600110018f0000000001a100190000156c0010009c000052b00000213d000000400010043f000000200030008c000052ae0000413d00000000020a0433000015650020009c000052ae0000213d0000000b01000039000000000101041a000100000001001d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b0000000303000029000052ae0000613d0000000201000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000166c0200004100000000002104350000002401b0003900000004020000290000000000210435000016410100004100000000001b04350000000404b00039000000010100002900000000001404350000000001000414000000040030008c00020000000b001d0000509c0000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000400000004001d558255780000040f0000000404000029000000020b0000290000006003100270000115620030019d00030000000103550000000100200190000053640000613d0000156c00b0009c000052b00000213d0000000a01000039000000000201041a0000004000b0043f000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c000050af0000c13d0000000103000031000000200030008c00000020040000390000000004034019000050da0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000050c90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000050c50000c13d000000000006004b000050d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053710000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000052b00000213d000000400010043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b01000039000000000101041a000300000001001d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b0000000403000029000052ae0000613d000000400b00043d0000004401b00039000016010200004100000000002104350000002401b00039000000050200002900000000002104350000163f0100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d0000511e0000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000400000004001d558255780000040f0000000404000029000000020b0000290000006003100270000115620030019d000300000001035500000001002001900000537d0000613d0000156c00b0009c000052b00000213d0000004000b0043f0000000a01000039000000000201041a000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c000051310000c13d0000000103000031000000200030008c000000200400003900000000040340190000515c0000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000020b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000514b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000051470000c13d000000000006004b000051580000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000538a0000613d0000001f01400039000000600110018f000000000cb100190000156c00c0009c000052b00000213d0000004000c0043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b04000039000000000404041a0000004405c0003900001669060000410000000000650435000016030500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000051a30000613d0000156200c0009c000015620100004100000000010c40190000004001100210000015620040009c0000156204008041000000c003400210000000000113019f00001587011001c700040000000c001d5582557d0000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000051900000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000518c0000c13d000000000006004b0000519d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053960000613d0000001f01400039000000600110018f000000000bc100190000156c00b0009c000052b00000213d0000004000b0043f000000200030008c000052ae0000413d00000000010c0433000400010010003e000052c70000613d0000000a01000039000000000201041a000015f90100004100000000001b04350000000401b00039000015fa040000410000000000410435000000000100041400000008022002700000156502200197000000040020008c000051ba0000c13d0000002004000039000051e60000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c700030000000b001d5582557d0000040f000000030b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000051d50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000051d10000c13d000000000006004b000051e20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053a20000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000052b00000213d000000400010043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b01000039000000000101041a000200000001001d00001579010000410000000000100443000300000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b0000000303000029000052ae0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b0003900001669020000410000000000210435000016410100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00010000000b001d0000522a0000613d0000156200b0009c000015620200004100000000020b40190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000400000004001d558255780000040f0000000404000029000000010b0000290000006003100270000115620030019d00030000000103550000000100200190000053ae0000613d0000156c00b0009c000052b00000213d0000004000b0043f0000000a01000039000000000201041a000015f90100004100000000001b0435000015fa010000410000000000140435000000000100041400000008022002700000156502200197000000040020008c0000523d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000052680000013d0000156200b0009c000015620300004100000000030b40190000004003300210000015620010009c0000156201008041000000c001100210000000000131019f00001602011001c75582557d0000040f000000010b00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000052570000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000052530000c13d000000000006004b000052640000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000053bb0000613d0000001f01400039000000600110018f0000000001b100190000156c0010009c000052b00000213d000000400010043f000000200030008c000052ae0000413d00000000020b0433000015650020009c000052ae0000213d0000000b01000039000000000101041a000300000001001d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f0000000100200190000052b60000613d000000000101043b000000000001004b0000000403000029000052ae0000613d000000400400043d00000044014000390000163402000041000000000021043500000024014000390000000502000029000000000021043500001623010000410000000000140435000000040140003900000003020000290000000000210435000000640140003900000000000104350000000001000414000000040030008c000052aa0000613d000015620040009c000015620200004100000000020440190000004002200210000015620010009c0000156201008041000000c001100210000000000121019f0000158a011001c70000000002030019000500000004001d558255780000040f00000005040000290000006003100270000115620030019d00030000000103550000000100200190000053c70000613d0000156c0040009c000052b00000213d000000400040043f000000000001042d000000000100001900005584000104300000164301000041000000000010043f0000004101000039000000040010043f00001602010000410000558400010430000000000001042f00000044021000390000160c03000041000000000032043500000024021000390000001803000039000000000032043500001586020000410000000000210435000000040210003900000020030000390000000000320435000015620010009c0000156201008041000000400110021000001587011001c700005584000104300000164301000041000000000010043f0000001101000039000000040010043f00001602010000410000558400010430000015860100004100000000001b0435000000200100003900000000001204350000006401b00039000016080200004100000000002104350000004401b00039000016090200004100000000002104350000002401b00039000000260200003900000000002104350000156200b0009c000015620b0080410000004001b002100000158a011001c700005584000104300000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000052e60000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000052f20000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000052fe0000c13d000053d30000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000530b0000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053170000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053230000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000532f0000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000533b0000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053470000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053530000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000535f0000c13d000053d30000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000536c0000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053ff0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053780000c13d000053ff0000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053ff0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053850000c13d000053ff0000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053910000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000539d0000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053a90000c13d000053d30000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053b60000c13d000053d30000013d0000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053c20000c13d000053d30000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053cf0000c13d000000000005004b000053e00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000112019f000055840001043000001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053ff0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053ee0000c13d000053ff0000013d00001562033001970000001f0530018f0000156406300198000000400200043d0000000004620019000053ff0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000053fb0000c13d000000000005004b0000540c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000015620020009c00001562020080410000004002200210000000000121019f0000558400010430000000400200043d00000020030000390000000003320436000015650110019700000000001304350000167e0020009c0000542f0000813d0000004001200039000000400010043f000015620030009c000015620300804100000040013002100000000002020433000015620020009c00001562020080410000006002200210000000000112019f0000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001582011001c700008010020000395582557d0000040f0000000100200190000054350000613d000000000101043b000000000001042d0000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000000001000019000055840001043000000060021000390000167f030000410000000000320435000000400210003900001680030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000001004b000054480000613d000000000001042d000000400200043d000100000002001d000015860100004100000000001204350000000401200039558254370000040f00000001020000290000000001210049000015620010009c00001562010080410000006001100210000015620020009c00001562020080410000004002200210000000000121019f00005584000104300006000000000002000300000004001d000200000003001d000100000001001d00001579010000410000000000100443000400000002001d00000004002004430000000001000414000015620010009c0000156201008041000000c0011002100000157a011001c700008002020000395582557d0000040f00000001002001900000550b0000613d000000000101043b000000000001004b000054950000613d000000400c00043d0000006401c00039000000800b0000390000000000b104350000004401c0003900000002020000290000000000210435000000010100002900001565011001970000002402c000390000000000120435000016790100004100000000001c04350000000401c00039000000000200041100000000002104350000008402c0003900000003010000290000000041010434000000000012043500001663061001970000001f0510018f000000a402c00039000000000024004b000054970000813d000000000006004b000054910000613d00000000085400190000000007520019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000548b0000c13d000000000005004b000054ad0000613d0000000007020019000054a30000013d0000000101000039000000000001042d0000000007620019000000000006004b000054a00000613d00000000080400190000000009020019000000008a0804340000000009a90436000000000079004b0000549c0000c13d000000000005004b000054ad0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f000000000047043500000000022100190000000000020435000000000400041400000004020000290000156502200197000000040020008c000054bc0000c13d0000000005000415000000060550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000054f20000013d00030000000b001d0000001f011000390000166301100197000000a401100039000015620010009c000015620100804100000060011002100000156200c0009c000015620300004100000000030c40190000004003300210000000000131019f000015620040009c0000156204008041000000c003400210000000000131019f00040000000c001d558255780000040f000000040c00002900000060031002700000156203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000054de0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000054da0000c13d000000000006004b000054eb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000050550008a000000050550021000000001002001900000550c0000613d0000001f01400039000000600210018f0000000001c20019000000000021004b000000000200003900000001020040390000156c0010009c0000554a0000213d00000001002001900000554a0000c13d000000400010043f0000001f0030008c000055090000a13d00000000010c04330000165a00100198000055090000c13d0000000502500270000000000201001f0000167b01100197000016790010009c00000000010000390000000101006039000000000001042d00000000010000190000558400010430000000000001042f000000000003004b000055100000c13d0000006002000039000055370000013d0000001f0230003900001563022001970000003f022000390000167a04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000156c0040009c0000554a0000213d00000001005001900000554a0000c13d000000400040043f0000001f0430018f00000000063204360000156405300198000300000006001d00000000035600190000552a0000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b000055260000c13d000000000004004b000055370000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000055500000c13d000000400200043d000400000002001d000015860100004100000000001204350000000401200039558254370000040f00000004020000290000000001210049000015620010009c00001562010080410000006001100210000015620020009c00001562020080410000004002200210000000000121019f00005584000104300000164301000041000000000010043f0000004101000039000000040010043f000016020100004100005584000104300000000302000029000015620020009c00001562020080410000004002200210000015620010009c00001562010080410000006001100210000000000121019f0000558400010430000000000001042f00000000050100190000000000200443000000050030008c000055680000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000055600000413d000015620030009c000015620300804100000060013002100000000002000414000015620020009c0000156202008041000000c002200210000000000112019f00001681011001c700000000020500195582557d0000040f0000000100200190000055770000613d000000000101043b000000000001042d000000000001042f0000557b002104210000000102000039000000000001042d0000000002000019000000000001042d00005580002104230000000102000039000000000001042d0000000002000019000000000001042d0000558200000432000055830001042e000055840001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf474947412d524f4d000000000000000000000000000000000000000000000000524f4d0000000000000000000000000000000000000000000000000000000000474947412d524f4d202300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf609addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c93978a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688000000000000000000000000721c002b0059009a671d00ad1700c9748146cd1b0200000000000000000000000000000000000040000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000fb2de5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00fbb7e7a6d30e467296fc04fc3842aa0db3255b440cd59cffb359a6d03891dc338a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76efffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000080000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000002073616c65507269636500000000000000000000000000000000000000000000455243323938313a20726f79616c7479206665652077696c6c206578636565640000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000008129fc1b00000000000000000000000000000000000000000000000000000000b76ac0d600000000000000000000000000000000000000000000000000000000dd898b2e00000000000000000000000000000000000000000000000000000000e8a3d48400000000000000000000000000000000000000000000000000000000ed022ebc00000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000e6c35a9000000000000000000000000000000000000000000000000000000000e6c35a9100000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000df30e54b00000000000000000000000000000000000000000000000000000000c4e41b2100000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000c4e41b2200000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000bb997f2600000000000000000000000000000000000000000000000000000000bb997f2700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000099d3a88500000000000000000000000000000000000000000000000000000000a2309ff700000000000000000000000000000000000000000000000000000000a9fc664d00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000aa1b103f00000000000000000000000000000000000000000000000000000000b55cd04b00000000000000000000000000000000000000000000000000000000a2309ff800000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000a16ad7d900000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000099d3a886000000000000000000000000000000000000000000000000000000009e05d2400000000000000000000000000000000000000000000000000000000088e4f1ca00000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000009496d2080000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000082840eec0000000000000000000000000000000000000000000000000000000082840eed00000000000000000000000000000000000000000000000000000000835f3967000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000008245e472000000000000000000000000000000000000000000000000000000002a5520590000000000000000000000000000000000000000000000000000000055f804b2000000000000000000000000000000000000000000000000000000006221d13b0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000006221d13c000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000005944c752000000000000000000000000000000000000000000000000000000005944c753000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca6310000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005633a3630000000000000000000000000000000000000000000000000000000040c10f180000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004c0f38c2000000000000000000000000000000000000000000000000000000004f558e790000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000002fb0b8740000000000000000000000000000000000000000000000000000000032cb6b0c000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002e1a7d4d000000000000000000000000000000000000000000000000000000000ca1c5c80000000000000000000000000000000000000000000000000000000016c38b3b0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248b71fc00000000000000000000000000000000000000000000000000000000267659e20000000000000000000000000000000000000000000000000000000016c38b3c0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001328357e000000000000000000000000000000000000000000000000000000001328357f0000000000000000000000000000000000000000000000000000000015be71ff000000000000000000000000000000000000000000000000000000000ca1c5c9000000000000000000000000000000000000000000000000000000000d705df60000000000000000000000000000000000000000000000000000000004634d8c00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000098144d40000000000000000000000000000000000000000000000000000000004634d8d0000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000146354500000000000000000000000000000000000000000000000000000000014635460000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000001049d9000000000000000000000000000000000000000000000000000000000035a9ae4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c00000000000000000000000000000000000000024000000000000000000000000a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000100000000322062697473000000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e2033401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004552433732313a20696e76616c696420746f6b656e204944000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7fc36dd7ea000000000000000000000000000000000000000000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a65c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a20706175736564000000000000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0800000000000000000000000000000000000000440000008000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bdf2c071ca00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6fbfa2ccd20000000000000000000000000000000000000000000000000000000032483afb00000000000000000000000000000000000000000000000000000000651689700000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000000000000000000000000000000000000000006400000080000000000000000007b920aa00000000000000000000000000000000000000000000000000000000ffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff000000000000000000000100000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000006787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc93c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068e95c048700000000000000000000000000000000000000000000000000000000fdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb53fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c47696761526f6d4e4654000000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b71000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000ff0000000000000000000000000000000000000000007f5b076c952c0ec86e5425963c1326dd0f03a3595c19f81d765e8ff559a6e33c455243323938313a20496e76616c696420706172616d657465727300000000006b656e0000000000000000000000000000000000000000000000000000000000596f7520617265206e6f7420746865206f776e6572206f66207468697320746f000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe05472616e73666572206661696c656400000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00000000000000000000000000000000000000004000000000000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000caee23ea0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000008000000000000000006b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e6500000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffa07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c00000000000000000000000000000000000000000000000000000000e88a3f57000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002dd6753d7447d2bb3cd72464154a7bc06c4a5d5747f9553d5247b4dc12c2e777ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e00000000000000000000000000000000000000000000000100000000000000007ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde72206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a0916f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f7272656374208ce516da00000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef47616d654e46543a20546f6b656e20697320736f756c626f756e640000000000d62312720000000000000000000000000000000000000000000000000000000072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164640200000200000000000000000000000000000044000000000000000000000000a2a9f6940e96680af2fe721eb59341cde71d9b7ae61dc834d205d6c59360268ec30436e9000000000000000000000000000000000000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e74656400000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0ffffffff000000000000000000000000000000000000000000000000000000004552433732313a206d696e7420746f20746865207a65726f206164647265737345786365656473206d617820737570706c790000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc063656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e204552433732315265020000020000000000000000000000000000000000000000000000000000000012145eeef8ae3cd48ca4bc2231179ac95338edf07786f435b065fb2d7a88e0e1

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000271000000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4

-----Decoded View---------------
Arg [0] : maxSupply (uint256): 10000
Arg [1] : gameRegistryAddress (address): 0x74eb92b33f2400EB14F6D6725B14F76078d5E731
Arg [2] : royaltyRecipient (address): 0xF62DcedDd3A9Aa9239f068A6DCD7a08C95D903D0
Arg [3] : feeNumerator (uint96): 500

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731
Arg [2] : 000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d0
Arg [3] : 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.