Overview
TokenID
1433
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
ToadsInTheTrenches
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.28;import {ERC721A} from "erc721a/contracts/ERC721A.sol";import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol";import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol";import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol";import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";error MaxSupplyExceeded();error PublicSaleClosed();error TransfersLocked();error NotAllowedByRegistry();error RegistryNotSet();error WrongWeiSent();error MaxFeeExceeded();error InputLengthsMismatch();error InvalidMerkleProof();error InvalidLaunchpadFee();error InvalidLaunchpadFeeAddress();error TransferFailed();interface IRegistry {function isAllowedOperator(address operator) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// 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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/BitMaps.sol)pragma solidity ^0.8.0;/*** @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.* Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].*/library BitMaps {struct BitMap {mapping(uint256 => uint256) _data;}/*** @dev Returns whether the bit at `index` is set.*/function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {uint256 bucket = index >> 8;uint256 mask = 1 << (index & 0xff);return bitmap._data[bucket] & mask != 0;}/*** @dev Sets the bit at `index` to the boolean `value`.*/function setTo(BitMap storage bitmap, uint256 index, bool value) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Optimized and flexible operator filterer to abide to OpenSea's/// mandatory on-chain royalty enforcement in order for new collections to/// receive royalties./// For more information, see:/// See: https://github.com/ProjectOpenSea/operator-filter-registryabstract contract OperatorFilterer {/// @dev The default OpenSea operator blocklist subscription.address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;/// @dev The OpenSea operator filter registry.address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;/// @dev Registers the current contract to OpenSea's operator filter,/// and subscribe to the default OpenSea operator blocklist./// Note: Will not revert nor update existing settings for repeated registration.function _registerForOperatorFiltering() internal virtual {_registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);}/// @dev Registers the current contract to OpenSea's operator filter./// Note: Will not revert nor update existing settings for repeated registration.function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)internal
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Tree proofs.** The tree and the proofs can be generated using our* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].* You will find a quickstart guide in the readme.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.* OpenZeppelin's JavaScript library generates merkle trees that are safe* against this attack out of the box.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/*** @dev Interface of ERC721A.*/interface IERC721A {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** Cannot query the balance for the zero address.*/error BalanceQueryForZeroAddress();/**
123456789101112131415161718192021222324// 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;}}
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526// 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) {
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526{"viaIR": false,"codegen": "yul","remappings": ["@rari-capital/solmate/=lib/solmate/","ds-test/=lib/ds-test/src/","forge-std/=lib/forge-std/src/","murky/=lib/murky/src/","@openzeppelin/=lib/openzeppelin-contracts/","solarray/=lib/solarray/src/","solady/=lib/solady/","seaport-sol/=lib/seaport-sol/","seaport-types/=lib/seaport-types/","seaport-core/=lib/seaport-core/","seaport/=contracts/","closedsea/=lib/closedsea/","erc721a/=lib/closedsea/lib/erc721a/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","erc721a-upgradeable/=lib/closedsea/lib/erc721a-upgradeable/contracts/","openzeppelin-contracts-upgradeable/=lib/closedsea/lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/","operator-filter-registry/=lib/closedsea/lib/operator-filter-registry/","solmate/=lib/solmate/src/"],"evmVersion": "cancun","outputSelection": {
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InputLengthsMismatch","type":"error"},{"inputs":[],"name":"InvalidLaunchpadFee","type":"error"},{"inputs":[],"name":"InvalidLaunchpadFeeAddress","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MaxFeeExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowedByRegistry","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PublicSaleClosed","type":"error"},{"inputs":[],"name":"RegistryNotSet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransfersLocked","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WrongWeiSent","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":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":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"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTimePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTransferLockOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRegistryActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchpadFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchpadFeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase3","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase4","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase4","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"sendLaunchpadFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTimePhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRegistryActive","type":"bool"}],"name":"setIsRegistryActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registryAddress","type":"address"}],"name":"setRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase4","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":[],"name":"startTimePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase4","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007b5827f4a6664bf57690023ddbdcc14dd8e12f1d5298f0862063dd5099200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000a0000000000020000006004100270000006bb0340019700030000003103550002000000010355000006bb0040019d0000008004000039000000400040043f0000000100200190000000250000c13d000900000004001d000000040030008c00000e580000413d000000000201043b000000e002200270000006e90020009c0000004b0000213d0000072b0020009c0000006e0000a13d0000072c0020009c000001100000a13d0000072d0020009c0000013f0000a13d0000072e0020009c000002f60000a13d0000072f0020009c0000054f0000213d000007320020009c000005780000613d000007330020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000160100003900000da00000013d0000000001000416000000000001004b00000e580000c13d0000001201000039000000800010043f000006bc01000041000000a00010043f0000010001000039000000400010043f0000000303000039000000c00030043f000006bd01000041000000e00010043f0000000006000411000000000100041a000006be02100197000000000262019f000000000020041b0000000002000414000006bf05100197000006bb0020009c000006bb02008041000000c001200210000006c0011001c70000800d02000039000006c1040000411ae91adf0000040f000000010020019000000e580000613d000000800100043d000006c20010009c0000005e0000413d0000078c01000041000000000010043f0000004101000039000000040010043f000006dd0100004100001aeb00010430000006ea0020009c0000009d0000a13d000006eb0020009c0000011f0000a13d000006ec0020009c000001850000a13d000006ed0020009c000003070000a13d000006ee0020009c0000055e0000213d000006f10020009c000005880000613d000006f20020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000290100003900000da00000013d0000000507000039000000000207041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000000c00000613d0000078c01000041000000000010043f0000002201000039000000040010043f000006dd0100004100001aeb000104300000074d0020009c000000d80000213d0000075d0020009c000001920000213d000007650020009c000003120000213d000007690020009c000009cc0000613d0000076a0020009c000007740000613d0000076b0020009c00000e580000c13d000000440030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000202043b000a00000002001d000006bf0020009c00000e580000213d0000002401100370000000000101043b000900000001001d000007900010009c00000e580000213d000000000100041a000006bf011001970000000002000411000000000021004b00000bb00000c13d0000000901000029000003e90010008c00000b860000813d0000000a0000006b000010bb0000c13d000006e701000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000006e601000041000000c40010043f000007920100004100001aeb000104300000070c0020009c000000e70000213d0000071c0020009c000001a60000213d000007240020009c0000033f0000213d000007280020009c000009d80000613d000007290020009c0000078e0000613d0000072a0020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000000100041a000006bf021001970000000005000411000000000052004b00000bb00000c13d000006be01100197000000000010041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000303000039000006c10400004100000000060000191ae91adf0000040f000000010020019000000e580000613d000011130000013d000000200030008c000000d00000413d0000001f021000390000000502200270000006c30220009a000000200010008c000006c4020040410000001f033000390000000503300270000006c30330009a000000000032004b000000d00000813d000000000002041b0000000102200039000000000032004b000000cc0000413d0000001f0010008c000001340000a13d000000000070043f000007ac04100198000002820000c13d0000002003000039000006c4020000410000028e0000013d0000074e0020009c000002480000213d000007560020009c000003500000213d0000075a0020009c000009e30000613d0000075b0020009c0000079d0000613d0000075c0020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000002b0100003900000da00000013d0000070d0020009c0000025b0000213d000007150020009c000003610000213d000007190020009c000009ee0000613d0000071a0020009c000008b70000613d0000071b0020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000000603000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000680000c13d000000800010043f000000000004004b00000ed40000613d000000000030043f000000000001004b000000000200001900000ed90000613d00000785030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001080000413d00000ed90000013d0000073e0020009c000002680000213d000007460020009c0000036c0000213d0000074a0020009c000009f60000613d0000074b0020009c000009fb0000613d0000074c0020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000110100003900000da00000013d000006fd0020009c000002750000213d000007050020009c0000038b0000213d000007090020009c00000a000000613d0000070a0020009c00000a150000613d0000070b0020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000110100003900000d930000013d000000000001004b0000000002000019000001380000613d000000a00200043d0000000303100210000007ad0330027f000007ad03300167000000000232016f0000000101100210000000000112019f0000029a0000013d000007370020009c000002de0000213d0000073b0020009c00000a200000613d0000073c0020009c000008bc0000613d0000073d0020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000402043b000006c60040009c00000e580000213d0000002302400039000000000032004b00000e580000813d0000000405400039000000000251034f000000000202043b000006c60020009c00000e580000213d00000024044000390000000006420019000000000036004b00000e580000213d000000000300041a000006bf033001970000000006000411000000000063004b00000bb00000c13d0000000f03000039000000000703041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000000680000c13d000000200060008c0000017d0000413d000000000030043f0000001f072000390000000507700270000006cc0770009a000000200020008c000006cb070040410000001f066000390000000506600270000006cc0660009a000000000067004b0000017d0000813d000000000007041b0000000107700039000000000067004b000001790000413d0000001f0020008c0000114b0000a13d000000000030043f000007ac062001980000117c0000c13d000006cb050000410000000007000019000011860000013d000006f60020009c000002e90000213d000006fa0020009c00000a250000613d000006fb0020009c000008c70000613d000006fc0020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000150100003900000da00000013d0000075e0020009c000004e20000213d000007620020009c00000a300000613d000007630020009c000008d20000613d000007640020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000006bf0010009c00000e580000213d000000000010043f0000001f0100003900000d840000013d0000071d0020009c000004f40000213d000007210020009c00000aa70000613d000007220020009c000008dd0000613d000007230020009c00000e580000c13d000000440030008c00000e580000413d0000000402100370000000000202043b000006c60020009c00000e580000213d0000002304200039000000000034004b00000e580000813d0000000404200039000000000441034f000000000404043b000a00000004001d000006c60040009c00000e580000213d00000024022000390000000a040000290000000504400210000600000002001d000900000004001d000700000024001d000000070030006b00000e580000213d0000002401100370000000000101043b000500000001001d0000001001000039000000000101041a000800000001001d000000000001004b00000ff80000c13d0000001101000039000000000101041a000800000001001d000000000001004b000001e00000613d000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000080010006c00000f0d0000213d0000000d01000039000000000101041a000000000001004b0000000504000029000001f00000613d0000000402000039000000000202041a000007ad022001670000000303000039000000000303041a0000000002230019000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000001201000039000000000101041a000000000001004b000001fb0000613d0000001302000039000000000202041a000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000001401000039000000000201041a0000000b03000039000000000303041a000400000003001d000000000023001a000015300000413d000000040320002a00000000024300a9000002080000613d00000000033200d9000000000043004b000015300000c13d0000000003000416000000000023004b00000faf0000c13d0000001602000039000000000202041a000300000002001d000000000002004b000012180000c13d0000001501000039000000000101041a000a00000001001d000000000001004b0000022b0000613d0000000001000411000006bf01100197000000000010043f0000001701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a0000000502000029000000000021001a000015300000413d00000000012100190000000a0010006c00000d610000213d000000040000006b000002310000613d0000000c01000039000000000101041a000006bf04100198000014910000c13d0000000001000411000006bf01100197000000000010043f0000001701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000301041a0000000502000029000000000023001a000015300000413d0000000003230019000000000031041b000000130100003900000c870000013d0000074f0020009c000004ff0000213d000007530020009c00000ab20000613d000007540020009c000008e20000613d000007550020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000001c0100003900000d930000013d0000070e0020009c000005220000213d000007120020009c00000af10000613d000007130020009c000008e80000613d000007140020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000260100003900000da00000013d0000073f0020009c000005330000213d000007430020009c00000afc0000613d000007440020009c00000b1f0000613d000007450020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000180100003900000da00000013d000006fe0020009c0000053e0000213d000007020020009c00000b2a0000613d000007030020009c00000b350000613d000007040020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000250100003900000da00000013d000006c4020000410000002003000039000000010540008a0000000505500270000006c50550009a00000080063000390000000006060433000000000062041b00000020033000390000000102200039000000000052004b000002870000c13d000000000014004b000002980000813d0000000304100210000000f80440018f000007ad0440027f000007ad0440016700000080033000390000000003030433000000000343016f000000000032041b000000010110021000000001011001bf000000000017041b000000c00400043d000006c60040009c000000450000213d0000000603000039000000000103041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000000680000c13d000000200050008c000002ca0000413d000900000005001d000a00000004001d000000000030043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c7011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000a040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000005070000390000000603000039000002ca0000813d000000000002041b0000000102200039000000000012004b000002c60000413d000000200040008c0000056d0000413d000a00000004001d000000000030043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c7011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000a06000029000007ac02600198000000000101043b00000dac0000c13d0000002003000039000000050700003900000db90000013d000007380020009c00000b700000613d000007390020009c000009460000613d0000073a0020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000001b0100003900000da00000013d000006f70020009c00000b8a0000613d000006f80020009c0000094b0000613d000006f90020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000000e01000039000000000101041a0000001801100270000009f20000013d000007340020009c00000b8f0000613d000007350020009c000009660000613d000007360020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000280100003900000d930000013d000006f30020009c00000b940000613d000006f40020009c0000096b0000613d000006f50020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000002a0100003900000da00000013d000007660020009c00000bb90000613d000007670020009c000009700000613d000007680020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000201043b000000000002004b00000da40000613d0000000301000039000000000101041a000000000021004b00000da40000a13d000a00000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a00000774001001980000000a0100002900000da40000c13d000000000010043f0000000901000039000000200010043f000000400200003900000000010000191ae91aca0000040f000000000101041a000005800000013d000007250020009c00000bd80000613d000007260020009c000009750000613d000007270020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000002d0100003900000d930000013d000007570020009c00000be30000613d000007580020009c000009990000613d000007590020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000002c0100003900000d930000013d000007160020009c00000bee0000613d000007170020009c0000099e0000613d000007180020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000002c0100003900000da00000013d000007470020009c00000c8b0000613d000007480020009c00000d110000613d000007490020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000e580000c13d000000000200041a000006bf022001970000000003000411000000000032004b00000bb00000c13d0000000e02000039000000000302041a000007820030019800000f7e0000c13d0000079501000041000000000010043f0000077b0100004100001aeb00010430000007060020009c00000d1c0000613d000007070020009c00000d260000613d000007080020009c00000e580000c13d000000840030008c00000e580000413d0000000402100370000000000202043b000900000002001d000006bf0020009c00000e580000213d0000002402100370000000000202043b000800000002001d000006bf0020009c00000e580000213d0000004402100370000000000202043b000700000002001d0000006402100370000000000402043b000006c60040009c00000e580000213d0000002302400039000000000032004b00000e580000813d0000000405400039000000000251034f000000000202043b000006c60020009c000000450000213d0000001f07200039000007ac077001970000003f07700039000007ac077001970000077c0070009c000000450000213d0000008007700039000000400070043f000000800020043f00000000042400190000002404400039000000000034004b00000e580000213d0000002003500039000000000331034f000007ac042001980000001f0520018f000000a001400039000003c50000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000003c10000c13d000000000005004b000003d20000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000002000411000000090020006b000003db0000613d0000000e01000039000000000101041a000000ff00100190000013400000c13d000000070000006b000010730000613d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a0000077400200198000010730000c13d0000000001020019000000000002004b000004090000c13d0000000301000039000000000101041a000000070010006c000010730000a13d000a00070000002d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b000003f60000613d000a00000001001d000006bf01100197000000090010006c000011470000c13d0000000701000029000000000010043f0000000901000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000400000001001d000000000101041a000500000001001d0000000001000411000006bf02100197000600000002001d000000090020006c000004440000613d0000000602000029000000050020006c000004440000613d0000000901000029000000000010043f0000000a01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000ff0010019000000d0d0000613d0000000801000029000306bf0010019c0000140f0000613d0000000e01000039000000000101041a000000090000006b0000044d0000613d0000ff0000100190000014740000c13d000006db001001980000174a0000c13d000000050000006b000004530000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000301000029000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a0000000102200039000000000021041b000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000600000001001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000602000029000000a00220021000000003022001af0000077f022001c7000000000101043b000000000021041b0000000a010000290000077f00100198000004bf0000c13d00000007010000290000000101100039000600000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b000004bf0000c13d0000000301000039000000000101041a000000060010006b000004bf0000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a02000029000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e4040000410000000905000029000000030600002900000007070000291ae91adf0000040f000000010020019000000e580000613d00000780010000410000000000100443000000080100002900000004001004430000000001000414000006bb0010009c000006bb01008041000000c00110021000000781011001c700008002020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000000001004b000011130000613d0000008004000039000000090100002900000008020000290000000703000029000015ce0000013d0000075f0020009c00000d3b0000613d000007600020009c000009a90000613d000007610020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000000401000039000000000101041a000007ad011001670000000302000039000000000202041a0000000001120019000000800010043f0000076c0100004100001aea0001042e0000071e0020009c00000d650000613d0000071f0020009c000009b00000613d000007200020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d0000000b0100003900000da00000013d000007500020009c00000d6a0000613d000007510020009c000009bb0000613d000007520020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000000100041a000006bf011001970000000002000411000000000021004b00000bb00000c13d00000787010000410000000000100443000000000100041000000004001004430000000001000414000006bb0010009c000006bb01008041000000c00110021000000781011001c70000800a020000391ae91ae40000040f0000000100200190000015d50000613d000000000301043b00000000010004140000000004000411000000040040008c00000f830000c13d000000010200003900000001010000310000107f0000013d0000070f0020009c00000d6f0000613d000007100020009c000009c70000613d000007110020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000180100003900000d930000013d000007400020009c00000d790000613d000007410020009c00000d890000613d000007420020009c00000e580000c13d0000000001000416000000000001004b00000e580000c13d000000200100003900000da00000013d000006ff0020009c00000d970000613d000007000020009c00000d9c0000613d000007010020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000190100003900000d930000013d000007300020009c000006220000613d000007310020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000210100003900000d930000013d000006ef0020009c0000076d0000613d000006f00020009c00000e580000c13d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000002e0100003900000d930000013d000000000004004b000000000100001900000dc60000613d0000000301400210000007ad0110027f000007ad01100167000000e00200043d000000000112016f0000000102400210000000000121019f00000dc60000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b1ae919b80000040f000006bf01100197000000400200043d0000000000120435000006bb0020009c000006bb02008041000000400120021000000773011001c700001aea0001042e000000440030008c00000e580000413d0000000402100370000000000202043b000006c60020009c00000e580000213d0000002304200039000000000034004b00000e580000813d0000000404200039000000000441034f000000000404043b000a00000004001d000006c60040009c00000e580000213d00000024022000390000000a040000290000000504400210000600000002001d000900000004001d000700000024001d000000070030006b00000e580000213d0000002401100370000000000101043b000500000001001d0000002001000039000000000101041a000800000001001d000000000001004b000010070000c13d0000002101000039000000000101041a000800000001001d000000000001004b000005ba0000613d000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000080010006c00000f0d0000213d0000000d01000039000000000101041a000000000001004b0000000504000029000005ca0000613d0000000402000039000000000202041a000007ad022001670000000303000039000000000303041a0000000002230019000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000002201000039000000000101041a000000000001004b000005d50000613d0000002302000039000000000202041a000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000002401000039000000000101041a0000000b02000039000000000202041a000400000002001d000000000012001a000015300000413d000000040210002a00000000014200a9000005e20000613d00000000022100d9000000000042004b000015300000c13d0000000002000416000000000012004b00000faf0000c13d0000002601000039000000000101041a000300000001001d000000000001004b000012790000c13d0000002501000039000000000101041a000a00000001001d000000000001004b000006050000613d0000000001000411000006bf01100197000000000010043f0000002701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a0000000502000029000000000021001a000015300000413d00000000012100190000000a0010006c00000d610000213d000000040000006b0000060b0000613d0000000c01000039000000000101041a000006bf04100198000014c60000c13d0000000001000411000006bf01100197000000000010043f0000002701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000301041a0000000502000029000000000023001a000015300000413d0000000003230019000000000031041b000000230100003900000c870000013d000000440030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000202043b000006c60020009c00000e580000213d0000002304200039000000000034004b00000e580000813d0000000404200039000000000441034f000000000504043b000006c60050009c000000450000213d00000005045002100000003f064000390000076d066001970000077c0060009c000000450000213d0000008006600039000000400060043f000000800050043f00000024022000390000000004240019000000000034004b00000e580000213d000000000005004b0000064a0000613d000000a005000039000000000621034f000000000606043b000006bf0060009c00000e580000213d00000000056504360000002002200039000000000042004b000006420000413d0000002402100370000000000202043b000006c60020009c00000e580000213d0000002304200039000000000034004b000000000500001900000789050080410000078904400197000000000004004b00000000060000190000078906004041000007890040009c000000000605c019000000000006004b00000e580000c13d0000000404200039000000000441034f000000000404043b000006c60040009c000000450000213d00000005054002100000003f065000390000076d06600197000000400700043d0000000006670019000400000007001d000000000076004b00000000070000390000000107004039000006c60060009c000000450000213d0000000100700190000000450000c13d000000400060043f00000004060000290000000006460436000500000006001d00000024022000390000000005250019000000000035004b00000e580000213d000000000004004b0000067e0000613d0000000403000029000000000421034f000000000404043b000000200330003900000000004304350000002002200039000000000052004b000006770000413d000000000100041a000006bf011001970000000002000411000000000021004b000014630000c13d00000004010000290000000002010433000000800100043d000000000021004b000015360000c13d000000000001004b000011130000613d000700000000001d000000040100002900000000010104330000000d02000039000000000302041a000000000003004b000006a30000613d0000000706000029000000000061004b0000175b0000a13d0000000402000039000000000202041a000007ad022001670000000304000039000000000404041a0000000004240019000000050260021000000005052000290000000005050433000000000054001a000015300000413d0000000004540019000000000034004b000006a50000a13d00000d610000013d00000007060000290000000502600210000000000061004b0000175b0000a13d00000005012000290000000001010433000800000001001d000000000001004b000017a20000613d000000a00120003900000000030104330000000301000039000000000101041a000a00000001001d0000000e01000039000000000201041a000006db00200198000007070000613d000900000003001d000000400a00043d000006dc0100004100000000001a04350000000401a000390000000003000411000000000031043500000000010004140000001802200270000006bf02200197000000040020008c000006c60000c13d0000000103000031000000200030008c00000020040000390000000004034019000006f10000013d000006bb00a0009c000006bb0300004100000000030a40190000004003300210000006bb0010009c000006bb01008041000000c001100210000000000131019f000006dd011001c700060000000a001d1ae91ae40000040f000000060a0000290000006003100270000006bb03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000006e00000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000006dc0000c13d0000001f07400190000006ed0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017b60000613d0000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000006c60010009c000000450000213d0000000100200190000000450000c13d000000400010043f000000200030008c00000e580000413d00000000010a0433000000000001004b0000000002000039000000010200c039000000000021004b00000e580000c13d000000000001004b000000090300002900000ff40000613d000006bf01300197000900000001001d000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d00000008020000290000078d022000d1000000000101043b000000000301041a0000000002230019000000000021041b000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000600000001001d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000602000029000000a0022002100000000803000029000000010030008c00000000030000190000077f03006041000000000223019f0000000906000029000000000262019f000000000101043b000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e40400004100000000050000190000000a070000291ae91adf0000040f000000010020019000000e580000613d0000000a02000029000800080020002d0000000a070000290000000107700039000000080070006c000007620000613d0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e40400004100000000050000190000000906000029000a00000007001d1ae91adf0000040f00000001002001900000074f0000c13d00000e580000013d000000090000006b000017a60000613d00000003010000390000000802000029000000000021041b0000000702000029000700010020003d000000800100043d000000070010006b0000068b0000413d000011130000013d0000000001000416000000000001004b00000e580000c13d0000000e01000039000000000101041a000000ff0010019000000a1b0000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000201043b000007a70020019800000e580000c13d0000000101000039000006d802200197000007a80020009c0000078a0000613d000007a90020009c0000078a0000613d000007aa0020009c0000078a0000613d000007a80020009c00000000010000390000000101006039000007ab0020009c00000001011061bf000000010110018f000000800010043f0000076c0100004100001aea0001042e000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000006bf0010009c00000e580000213d000000000001004b00000f110000c13d0000078801000041000000000010043f0000077b0100004100001aeb00010430000000640030008c00000e580000413d0000000402100370000000000202043b000900000002001d000006bf0020009c00000e580000213d0000002402100370000000000202043b000800000002001d000006bf0020009c00000e580000213d0000004401100370000000000201043b0000000003000411000000090030006b000007c60000613d0000000e01000039000000000101041a000000ff00100190000007c60000613d000700000002001d0000077d01000041000000000010043f00000000010004100000001a0010043f0000003a0030043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d00030000000103550000000100200190000010c60000613d0000003a0000043f0000000702000029000000000002004b000010730000613d000700000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a0000077400200198000010730000c13d0000000001020019000000000002004b000007f50000c13d0000000301000039000000000101041a0000000702000029000000000021004b000010730000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b000007e20000613d000a00000001001d000006bf01100197000000090010006c000011470000c13d0000000701000029000000000010043f0000000901000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000400000001001d000000000101041a000500000001001d0000000001000411000006bf02100197000600000002001d000000090020006c000008300000613d0000000602000029000000050020006c000008300000613d0000000901000029000000000010043f0000000a01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000ff0010019000000d0d0000613d0000000801000029000806bf0010019c0000140f0000613d0000000e01000039000000000101041a000000090000006b000008390000613d0000ff0000100190000014740000c13d000006db00100198000015ef0000c13d000000050000006b0000083f0000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000801000029000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a0000000102200039000000000021041b000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000600000001001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000602000029000000a00220021000000008022001af0000077f022001c7000000000101043b000000000021041b0000000a010000290000077f00100198000008ab0000c13d00000007010000290000000101100039000600000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b000008ab0000c13d0000000301000039000000000101041a000000060010006b000008ab0000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a02000029000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e404000041000000090500002900000008060000290000000707000029000000bc0000013d0000000001000416000000000001004b00000e580000c13d000000230100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000160100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000002a0100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000220100003900000d930000013d0000000001000416000000000001004b00000e580000c13d000000190100003900000da00000013d0000000001000416000000000001004b00000e580000c13d0000000c01000039000000000101041a000009f20000013d000000440030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000202043b000a00000002001d000006bf0020009c00000e580000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b00000e580000c13d0000000e01000039000000000101041a000000ff00100190000009130000613d0000077d01000041000000000010043f00000000010004100000001a0010043f0000000a010000290000003a0010043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d00030000000103550000000100200190000010160000613d0000003a0000043f0000000e01000039000000000101041a0000ff0000100190000014740000c13d0000000001000411000000000010043f0000000a01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a000007ae022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000006bb0010009c000006bb0100804100000040011002100000000002000414000006bb0020009c000006bb02008041000000c002200210000000000112019f000006c7011001c70000800d020000390000000303000039000007840400004100000000050004110000000a06000029000000bc0000013d0000000001000416000000000001004b00000e580000c13d0000001d0100003900000da00000013d000000440030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000202043b000006bf0020009c00000e580000213d0000002401100370000000000101043b000a00000001001d000006bf0010009c00000e580000213d000000000020043f0000000a01000039000000200010043f000000400200003900000000010000191ae91aca0000040f0000000a020000291ae917c20000040f000000000101041a000000ff001001900000000001000039000000010100c039000005810000013d0000000001000416000000000001004b00000e580000c13d0000001c0100003900000da00000013d0000000001000416000000000001004b00000e580000c13d0000001e0100003900000da00000013d0000000001000416000000000001004b00000e580000c13d000000120100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d000006bf0010009c00000e580000213d000000000100041a000006bf011001970000000002000411000000000021004b00000bb00000c13d00000787010000410000000000100443000000000100041000000004001004430000000001000414000006bb0010009c000006bb01008041000000c00110021000000781011001c70000800a020000391ae91ae40000040f0000000100200190000015d50000613d000000000301043b00000000010004140000000a04000029000000040040008c0000102f0000c13d00000001020000390000000101000031000010e70000013d0000000001000416000000000001004b00000e580000c13d0000002d0100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000001e0100003900000d930000013d0000000001000416000000000001004b00000e580000c13d0000000e01000039000000000101041a0000ff000010019000000a1b0000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000120100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000006bf0010009c00000e580000213d000000000010043f000000170100003900000d840000013d0000000001000416000000000001004b00000e580000c13d000000100100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000006bf0010009c00000e580000213d000000000010043f000000270100003900000d840000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000000d0100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000200100003900000d930000013d0000000001000416000000000001004b00000e580000c13d000000000100041a000006bf01100197000000800010043f0000076c0100004100001aea0001042e0000000001000416000000000001004b00000e580000c13d000000240100003900000da00000013d0000000001000416000000000001004b00000e580000c13d000000280100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d000006bf0010009c00000e580000213d1ae918ae0000040f0000000a01000029000000180110021000000782011001970000000e02000039000000000302041a0000078303300197000000000113019f000000000012041b000000000100001900001aea0001042e0000000001000416000000000001004b00000e580000c13d0000000e01000039000000000101041a000006db001001980000000001000039000000010100c039000000800010043f0000076c0100004100001aea0001042e0000000001000416000000000001004b00000e580000c13d000000130100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000140100003900000d930000013d000000440030008c00000e580000413d0000000402100370000000000202043b000900000002001d000006bf0020009c00000e580000213d0000002401100370000000000201043b0000000e01000039000000000101041a000000ff0010019000000a540000613d000800000002001d0000077d01000041000000000010043f00000000010004100000001a0010043f00000009010000290000003a0010043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d0003000000010355000000010020019000000f8a0000613d0000003a0000043f0000000e01000039000000000101041a00000008020000290000ff0000100190000014740000c13d000000000002004b000010730000613d000800000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a0000077400100198000010730000c13d000000000001004b00000a840000c13d0000000301000039000000000101041a0000000802000029000000000021004b000010730000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b00000a710000613d000a06bf0010019b00000000020004110000000a0020006c000011ed0000c13d0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000902000029000006bf06200197000000000101043b000000000201041a000006be02200197000000000262019f000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000007a3040000410000000a050000290000000807000029000000bc0000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000250100003900000d930000013d000000440030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000002402100370000000000202043b000a00000002001d0000000401100370000000000101043b000000000010043f0000000201000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000400400043d000006d90040009c000000450000213d000000000101043b0000004002400039000000400020043f000000000101041a0000002003400039000000a0021002700000000000230435000006bf01100198000000000014043500000ae10000c13d000000400400043d000006d90040009c000000450000213d0000004001400039000000400010043f0000000101000039000000000101041a0000002003400039000000a0021002700000000000230435000006bf011001970000000000140435000900000004001d0000000a010000291ae918250000040f00000009020000290000000002020433000027100110011a000000400300043d00000020043000390000000000140435000006bf012001970000000000130435000006bb0030009c000006bb03008041000000400130021000000797011001c700001aea0001042e000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000260100003900000d930000013d000000440030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000302043b000006bf0030009c00000e580000213d0000002401100370000000000201043b000000000100041a000006bf011001970000000004000411000000000041004b00000bb00000c13d0000000d01000039000000000101041a000000000001004b00000b1b0000613d0000000404000039000000000404041a000007ad044001670000000305000039000000000505041a0000000004450019000000000024001a000015300000413d0000000004240019000000000014004b00000d610000213d00000000010300191ae918c40000040f000000000100001900001aea0001042e000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000150100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000001a0100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000201043b000000000002004b00000da80000613d0000000301000039000000000101041a000000000021004b00000da80000a13d000a00000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000007740010019800000da80000c13d0000000f03000039000000000203041a000000010620019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000680000c13d000000400500043d0000000004150436000000000006004b000011570000613d000000000030043f000000000001004b00000000020000190000115c0000613d000006cb0300004100000000020000190000000006240019000000000703041a000000000076043500000001033000390000002002200039000000000012004b00000b680000413d0000115c0000013d000000640030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000402100370000000000202043b0000002403100370000000000303043b000006bf0030009c00000e580000213d0000004401100370000000000101043b000007900010009c00000e580000213d000000000400041a000006bf044001970000000005000411000000000054004b00000bb00000c13d000003e80010008c000010360000a13d000007a601000041000000000010043f0000077b0100004100001aeb000104300000000001000416000000000001004b00000e580000c13d000000140100003900000da00000013d0000000001000416000000000001004b00000e580000c13d0000002e0100003900000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000601043b000006bf0060009c00000e580000213d000000000100041a000006bf021001970000000005000411000000000052004b00000bb00000c13d000000000006004b00000fa30000c13d000006e701000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000077001000041000000c40010043f0000077101000041000000e40010043f000007720100004100001aeb00010430000006e701000041000000800010043f0000002001000039000000840010043f000000a40010043f0000078a01000041000000c40010043f000007920100004100001aeb000104300000000001000416000000000001004b00000e580000c13d0000000503000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000680000c13d000000800010043f000000000004004b00000ed40000613d000000000030043f000000000001004b000000000200001900000ed90000613d000006c4030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000bd00000413d00000ed90000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000240100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f000000100100003900000d930000013d000000440030008c00000e580000413d0000000402100370000000000202043b000006c60020009c00000e580000213d0000002304200039000000000034004b00000e580000813d0000000404200039000000000441034f000000000404043b000a00000004001d000006c60040009c00000e580000213d00000024022000390000000a040000290000000504400210000600000002001d000900000004001d000700000024001d000000070030006b00000e580000213d0000002401100370000000000101043b000500000001001d0000001801000039000000000101041a000800000001001d000000000001004b000010420000c13d0000001901000039000000000101041a000800000001001d000000000001004b00000c200000613d000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000080010006c00000f0d0000213d0000000d01000039000000000101041a000000000001004b000000050400002900000c300000613d0000000402000039000000000202041a000007ad022001670000000303000039000000000303041a0000000002230019000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000001a01000039000000000101041a000000000001004b00000c3b0000613d0000001b02000039000000000202041a000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000001c01000039000000000101041a0000000b02000039000000000202041a000400000002001d000000000012001a000015300000413d000000040210002a00000000014200a900000c480000613d00000000022100d9000000000042004b000015300000c13d0000000002000416000000000012004b00000faf0000c13d0000001e01000039000000000101041a000300000001001d000000000001004b000012db0000c13d0000001d01000039000000000101041a000a00000001001d000000000001004b00000c6b0000613d0000000001000411000006bf01100197000000000010043f0000001f01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a0000000502000029000000000021001a000015300000413d00000000012100190000000a0010006c00000d610000213d000000040000006b00000c710000613d0000000c01000039000000000101041a000006bf04100198000014fb0000c13d0000000001000411000006bf01100197000000000010043f0000001f01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000301041a0000000502000029000000000023001a000015300000413d0000000003230019000000000031041b0000001b01000039000000000301041a000000000023001a000015300000413d00000f680000013d000000640030008c00000e580000413d0000000402100370000000000202043b000800000002001d000006bf0020009c00000e580000213d0000002402100370000000000202043b000700000002001d000006bf0020009c00000e580000213d0000004401100370000000000201043b0000000003000411000000080030006b00000ca00000613d0000000e01000039000000000101041a000000ff00100190000010510000c13d000000a001000039000000400010043f000000800000043f000000000002004b000010730000613d000600000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a0000077400200198000010730000c13d0000000001020019000000000002004b00000cd20000c13d0000000301000039000000000101041a0000000602000029000000000021004b000010730000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b00000cbf0000613d000a00000001001d000006bf01100197000000080010006c000011470000c13d0000000601000029000000000010043f0000000901000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000300000001001d000000000101041a000400000001001d0000000001000411000006bf02100197000500000002001d000000080020006c0000140c0000613d0000000502000029000000040020006c0000140c0000613d0000000801000029000000000010043f0000000a01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000ff001001900000140c0000c13d0000079901000041000000000010043f0000077b0100004100001aeb00010430000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f0000001d0100003900000d930000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b1ae918330000040f000000000100001900001aea0001042e000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b00000e580000c13d1ae918ae0000040f0000000e01000039000000000201041a000007ae022001970000000a022001af000000000021041b000000000100001900001aea0001042e000000240030008c00000e580000413d0000000401100370000000000401043b0000002801000039000000000101041a000000000001004b00000eea0000c13d0000002901000039000000000101041a000000000001004b00000efc0000c13d0000000d01000039000000000101041a000000000001004b00000d560000613d0000000402000039000000000202041a000007ad022001670000000303000039000000000303041a0000000002230019000000000042001a000015300000413d0000000002420019000000000012004b00000d610000213d0000002a01000039000000000101041a000000000001004b00000f1c0000613d0000002b02000039000000000202041a000000000042001a000015300000413d0000000002420019000000000012004b00000f1c0000a13d0000079e01000041000000000010043f0000077b0100004100001aeb000104300000000001000416000000000001004b00000e580000c13d000000220100003900000da00000013d0000000001000416000000000001004b00000e580000c13d0000001a0100003900000da00000013d0000000001000416000000000001004b00000e580000c13d1ae918ae0000040f0000000e01000039000000000201041a000007af02200197000000000021041b000000000100001900001aea0001042e000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000006bf0010009c00000e580000213d000000000010043f0000002f01000039000000200010043f000000400200003900000000010000191ae91aca0000040f00000da00000013d000000240030008c00000e580000413d0000000002000416000000000002004b00000e580000c13d0000000401100370000000000101043b000a00000001001d1ae918ae0000040f00000029010000390000000a02000029000000000021041b000000000100001900001aea0001042e0000000001000416000000000001004b00000e580000c13d000000210100003900000da00000013d0000000001000416000000000001004b00000e580000c13d0000000d01000039000000000101041a000000800010043f0000076c0100004100001aea0001042e000007a501000041000000000010043f0000077b0100004100001aeb000104300000077a01000041000000000010043f0000077b0100004100001aeb00010430000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000507000039000000c0053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000db20000c13d000000000062004b00000dc30000813d0000000302600210000000f80220018f000007ad0220027f000007ad02200167000000c0033000390000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000603000039000000000013041b00000001020000390000000301000039000000000021041b000006c8010000410000000b02000039000000000012041b0000000c01000039000000000201041a000006be02200197000006c9022001c7000000000021041b00000d05010000390000000d02000039000000000012041b0000000e02000039000000000102041a000006ca0110019700000101011001bf000000000012041b0000000f01000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000680000c13d000000200020008c00000def0000413d000006cb030000410000001f022000390000000502200270000006cc0220009a000000000003041b0000000103300039000000000023004b00000deb0000413d000000000001041b000006cd010000410000001002000039000000000012041b000006ce010000410000001102000039000000000012041b0000001202000039000000000002041b0000001402000039000000000002041b00000015020000390000000303000039000000000032041b000006cf020000410000001603000039000000000023041b0000001802000039000000000012041b000006d0010000410000001902000039000000000012041b0000001a02000039000000000002041b0000001c02000039000000000002041b00000002020000390000001d03000039000000000023041b000006d1030000410000001e04000039000000000034041b0000002004000039000000000014041b000006d2010000410000002104000039000000000014041b0000002204000039000000000004041b0000002404000039000000000004041b0000002504000039000000000024041b0000002602000039000000000032041b0000002802000039000000000012041b000006d3010000410000002902000039000000000012041b0000002a01000039000000000001041b0000002c01000039000000000001041b0000002d01000039000000000071041b0000002e01000039000000000001041b000006d401000041000000000010043f0000000001000410000000040010043f000006d501000041000000240010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006d6011001c7000006d7020000411ae91adf0000040f0000006003100270000006bb03300197000000040030008c00000004040000390000000004034019000000000000004b00000e430000613d000000000501034f0000000006000019000000005705043c0000000000760435000000200660003a00000e3f0000c13d000000000004004b00000e500000613d0000000304400210000000000500043d00000000054501cf000000000545022f00000100044000890000000006100370000000000606043b000000000646022f00000000044601cf000000000454019f000000000040043f000100000003001f0003000000010355000000010020019000000e5a0000c13d000000000100043d000006d801100197000006d40010009c00000e5a0000c13d000000000100001900001aeb00010430000000240000043f000000400100043d000000000200041a000006bf0220019800000e6f0000c13d0000004402100039000006e6030000410000000000320435000000240210003900000019030000390000000000320435000006e7020000410000000000210435000000040210003900000020030000390000000000320435000006bb0010009c000006bb010080410000004001100210000006e8011001c700001aeb00010430000006d90010009c000000450000213d0000004004100039000000400040043f0000002004100039000001f40500003900000000005404350000000000210435000006da012001c70000000102000039000000000012041b0000000301000039000000000401041a0000000e01000039000000000201041a000006db00200198000a00000004001d00000f6e0000c13d000006df01000041000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a000006e10220009a000000000021041b000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000900000001001d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000902000029000000a002200210000006df022001c7000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e4040000410000000005000019000006df060000410000000a070000291ae91adf0000040f000000010020019000000e580000613d0000000a010000290009015e0010003d0000000a070000290000000107700039000000090070006c000012100000613d0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e4040000410000000005000019000006df06000041000a00000007001d1ae91adf0000040f000000010020019000000ec10000c13d00000e580000013d000007ae02200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000391ae918070000040f000000400100043d000a00000001001d00000080020000391ae917d20000040f0000000a020000290000000001210049000006bb0010009c000006bb010080410000006001100210000006bb0020009c000006bb020080410000004002200210000000000121019f00001aea0001042e000900000001001d000a00000004001d000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000090010006c0000000a0400002900000d430000813d00000f0d0000013d000900000001001d000a00000004001d000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000090010006c0000000a0400002900000d470000a13d0000079c01000041000000000010043f0000077b0100004100001aeb00010430000000000010043f0000000801000039000000200010043f000000400200003900000000010000191ae91aca0000040f000000000101041a000006c601100197000000800010043f0000076c0100004100001aea0001042e0000002c01000039000000000101041a0000000b02000039000000000302041a000000000013001a000015300000413d000000000213001a00000000014200a900000f280000613d00000000022100d9000000000042004b000015300000c13d0000000002000416000000000012004b00000faf0000c13d0000002d01000039000000000101041a000900000001001d000000000001004b000a00000004001d00000f490000613d000800000003001d0000000001000411000006bf01100197000000000010043f0000002f01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a0000000a04000029000000000041001a0000000803000029000015300000413d0000000001410019000000090010006c00000d610000213d000000000003004b00000f4f0000613d0000000c01000039000000000101041a000006bf04100198000011710000c13d0000000001000411000006bf01100197000000000010043f0000002f01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000301041a0000000a02000029000000000023001a000015300000413d0000000003230019000000000031041b0000002b01000039000000000301041a000000000023001a000015300000413d0000000003230019000000000031041b00000000010004111ae918c40000040f000000000100001900001aea0001042e000000400b00043d000006dc0100004100000000001b04350000000001000411000006bf011001970000000404b00039000000000014043500000000010004140000001802200270000006bf02200197000000040020008c00000fb30000c13d000000200030008c0000002004000039000000000403401900000fdf0000013d000000000001004b0000000001000019000007930100c041000007940330019700000a110000013d000006bb0010009c000006bb01008041000000c001100210000000000003004b000010770000c13d00000000020400190000107a0000013d000006bb023001970000001f0420018f000006de0320019800000f940000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000f900000c13d000000000004004b00000fa10000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000006be01100197000000000161019f000000000010041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000303000039000006c104000041000000bc0000013d0000079d01000041000000000010043f0000077b0100004100001aeb00010430000006bb00b0009c000006bb0300004100000000030b40190000004003300210000006bb0010009c000006bb01008041000000c001100210000000000131019f000006dd011001c700090000000b001d1ae91ae40000040f0000006003100270000006bb03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b000029000000090570002900000fce0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000fca0000c13d000000000006004b00000fdb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000109d0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006c60010009c000000450000213d0000000100200190000000450000c13d000000400010043f000000200030008c00000e580000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00000e580000c13d000000000001004b00000e810000c13d0000079a01000041000000000010043f0000077b0100004100001aeb00010430000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000080010006c000001cd0000813d00000f0d0000013d000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000080010006c000005a70000813d00000f0d0000013d000006bb023001970000001f0420018f000006de03200198000010200000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b0000101c0000c13d000000000004004b0000102d0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000006bb0010009c000006bb01008041000000c001100210000000000003004b000010df0000c13d0000000002040019000010e20000013d000000000003004b000011150000c13d000006e701000041000000800010043f0000002001000039000000840010043f0000001b01000039000000a40010043f0000079101000041000000c40010043f000007920100004100001aeb00010430000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000080010006c00000c0d0000813d00000f0d0000013d000600000002001d0000077d01000041000000000010043f00000000010004100000001a0010043f0000003a0030043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d000300000001035500000001002001900000112e0000613d0000003a0000043f000000400100043d000900000001001d000007790010009c000000450000213d0000000e01000039000000000101041a00000009030000290000002002300039000000400020043f0000000000030435000000ff00100190000011970000c13d0000000602000029000000000002004b00000ca50000c13d000007a401000041000000000010043f0000077b0100004100001aeb00010430000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006001100270000106bb0010019d000006bb01100197000000000001004b000011110000613d000006c60010009c000000450000213d0000001f04100039000007ac044001970000003f04400039000007ac05400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000006c60050009c000000450000213d0000000100600190000000450000c13d000000400050043f0000000006140436000007ac031001980000001f0410018f00000000013600190000000305000367000011040000613d000000000705034f000000007807043c0000000006860436000000000016004b000010980000c13d000011040000013d0000001f0530018f000006de06300198000000400200043d0000000004620019000010a80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010a40000c13d000000000005004b000010b50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006bb0020009c000006bb020080410000004002200210000000000112019f00001aeb000104301ae918190000040f0000000a02000029000000000121043600000009030000290000000000310435000000a001300210000000000121019f0000000102000039000000000012041b000000000100001900001aea0001042e000006bb023001970000001f0420018f000006de03200198000010d00000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000010cc0000c13d000000000004004b000010dd0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006001100270000106bb0010019d000006bb01100197000000000001004b000011110000613d000006c60010009c000000450000213d0000001f04100039000007ac044001970000003f04400039000007ac05400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000006c60050009c000000450000213d0000000100600190000000450000c13d000000400050043f0000000006140436000007ac031001980000001f0410018f00000000013600190000000305000367000011040000613d000000000705034f000000007807043c0000000006860436000000000016004b000011000000c13d000000000004004b000011110000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000001002001900000145f0000613d000000000100001900001aea0001042e000000c004000039000000400040043f000000800030043f000000a00010043f000000000020043f0000000201000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000800200043d000006bf02200197000000a00300043d000000a003300210000000000223019f000000000101043b000000000021041b000000000100001900001aea0001042e000006bb023001970000001f0420018f000006de03200198000011380000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000011340000c13d000000000004004b000011450000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb000104300000079801000041000000000010043f0000077b0100004100001aeb00010430000000000002004b0000000004000019000011510000613d0000002004500039000000000141034f000000000401043b0000000301200210000007ad0110027f000007ad01100167000000000414016f0000000101200210000011930000013d000007ae022001970000000000240435000000000001004b000000200200003900000000020060390000003f02200039000007ac032001970000000002530019000000000032004b00000000030000390000000103004039000006c60020009c000000450000213d0000000100300190000000450000c13d000000400020043f0000000003050433000000000003004b000011c20000c13d000007790020009c000000450000213d0000002001200039000000400010043f0000000000020435000000400300043d000013db0000013d00000000050300190000000a033000b900000000015300d90000000a0010006c000015300000c13d000000000003004b000013de0000c13d000007a001000041000000000010043f0000077b0100004100001aeb00010430000006cb0500004100000000070000190000000008470019000000000881034f000000000808043b000000000085041b00000001055000390000002007700039000000000067004b0000117e0000413d000000000026004b000011910000813d0000000306200210000000f80660018f000007ad0660027f000007ad066001670000000004470019000000000141034f000000000101043b000000000161016f000000000015041b00000001010000390000000104200210000000000114019f000000000013041b000000000100001900001aea0001042e0000077d01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d000300000001035500000001002001900000136b0000613d0000003a0000043f0000000e01000039000000000101041a000000ff00100190000010700000613d0000077d01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d00030000000103550000000100200190000014780000613d0000003a0000043f000010700000013d000000a003200039000000400030043f000000800320003900000000000304350000000a090000290000000006030019000000090090008c0000000a3990011a000000f807300210000000010360008a00000000080304330000077508800197000000000787019f00000776077001c70000000000730435000011c70000213d00000000026200490000008102200039000000210660008a00000000002604350000000005050433000007ac095001970000001f0850018f000000400200043d0000002007200039000000000074004b000013840000813d000000000009004b000011e90000613d000000000b840019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000011e30000c13d000000000008004b0000139a0000613d000000000a070019000013900000013d0000000a01000029000000000010043f0000000a01000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000002000411000006bf02200197000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000ff0010019000000a880000c13d000007a201000041000000000010043f0000077b0100004100001aeb0001043000000003010000390000000902000029000000000021041b000000200100003900000100001004430000012000000443000006e50100004100001aea0001042e000000400200043d0000000001120436000000000300041100000060033002100000000000310435000006d90020009c000000450000213d0000004003200039000000400030043f000006bb0010009c000006bb0100804100000040011002100000000002020433000006bb0020009c000006bb020080410000006002200210000000000112019f0000000002000414000006bb0020009c000006bb02008041000000c002200210000000000112019f000006c0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b00000009020000290000003f022000390000076d02200197000000400300043d0000000002230019000900000003001d000000000032004b00000000030000390000000103004039000006c60020009c000000450000213d0000000100300190000000450000c13d000000400020043f0000000a0200002900000009040000290000000002240436000800000002001d0000000702000029000000000020007c00000e580000213d0000000a0000006b000012760000613d00000006050000290000000202500367000000090300002900000007060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b0000124f0000413d00000009020000290000000002020433000000000002004b000012760000613d0000000003000019000a00000003001d000000050230021000000008022000290000000002020433000000000021004b000012640000813d000000000010043f000000200020043f0000000001000414000012670000013d000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a03000029000000010330003900000009020000290000000002020433000000000023004b0000125a0000413d000000030010006c000002100000613d0000133c0000013d000000400100043d00000014020000390000000002210436000000000300041100000060033002100000000000320435000006d90010009c000000450000213d0000004003100039000000400030043f000006bb0020009c000006bb0200804100000040022002100000000001010433000006bb0010009c000006bb010080410000006001100210000000000121019f0000000002000414000006bb0020009c000006bb02008041000000c002200210000000000112019f000006c0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b00000009020000290000003f022000390000076d02200197000000400300043d0000000002230019000900000003001d000000000032004b00000000030000390000000103004039000006c60020009c000000450000213d0000000100300190000000450000c13d000000400020043f0000000a0200002900000009040000290000000002240436000800000002001d0000000702000029000000000020007c00000e580000213d0000000a0000006b000012d80000613d00000006050000290000000202500367000000090300002900000007060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000012b10000413d00000009020000290000000002020433000000000002004b000012d80000613d0000000003000019000a00000003001d000000050230021000000008022000290000000002020433000000000021004b000012c60000813d000000000010043f000000200020043f0000000001000414000012c90000013d000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a03000029000000010330003900000009020000290000000002020433000000000023004b000012bc0000413d000000030010006c000005ea0000613d0000133c0000013d000000400100043d00000014020000390000000002210436000000000300041100000060033002100000000000320435000006d90010009c000000450000213d0000004003100039000000400030043f000006bb0020009c000006bb0200804100000040022002100000000001010433000006bb0010009c000006bb010080410000006001100210000000000121019f0000000002000414000006bb0020009c000006bb02008041000000c002200210000000000112019f000006c0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b00000009020000290000003f022000390000076d02200197000000400300043d0000000002230019000900000003001d000000000032004b00000000030000390000000103004039000006c60020009c000000450000213d0000000100300190000000450000c13d000000400020043f0000000a0200002900000009040000290000000002240436000800000002001d0000000702000029000000000020007c00000e580000213d0000000a0000006b0000133a0000613d00000006050000290000000202500367000000090300002900000007060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000013130000413d00000009020000290000000002020433000000000002004b0000133a0000613d0000000003000019000a00000003001d000000050230021000000008022000290000000002020433000000000021004b000013280000813d000000000010043f000000200020043f00000000010004140000132b0000013d000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a03000029000000010330003900000009020000290000000002020433000000000023004b0000131e0000413d000000030010006c00000c500000613d0000078601000041000000000010043f0000077b0100004100001aeb000104300000077d01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d00030000000103550000000100200190000014130000613d0000003a0000043f0000000e01000039000000000101041a000000ff00100190000003db0000613d0000077d01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000006bb0010009c000006bb01008041000000c0011002100000077e011001c7000006d7020000411ae91ae40000040f0000006003100270000106bb0030019d00030000000103550000000100200190000015d60000613d0000003a0000043f000003db0000013d000006bb023001970000001f0420018f000006de03200198000013750000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000013710000c13d000000000004004b000013820000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000000000a970019000000000009004b0000138d0000613d000000000b040019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000013890000c13d000000000008004b0000139a0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a04350000000005750019000007770400004100000000004504350000000004060433000007ac074001970000001f0640018f0000000105500039000000000053004b000013b30000813d000000000007004b000013af0000613d00000000096300190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000013a90000c13d000000000006004b000013c90000613d0000000008050019000013bf0000013d0000000008750019000000000007004b000013bc0000613d0000000009030019000000000a050019000000009b090434000000000aba043600000000008a004b000013b80000c13d000000000006004b000013c90000613d00000000037300190000000306600210000000000708043300000000076701cf000000000767022f00000000030304330000010006600089000000000363022f00000000036301cf000000000373019f000000000038043500000000035400190000077804000041000000000043043500000000032300490000001b0430008a00000000004204350000002403300039000007ac013001970000000004210019000000000014004b00000000010000390000000101004039000006c60040009c000000450000213d0000000100100190000000450000c13d0000000003040019000000400040043f0000000001030019000a00000003001d00000edf0000013d0000000001000414000000040040008c0000142c0000c13d000000010100003200000f4f0000613d000006c60010009c000000450000213d0000001f03100039000007ac033001970000003f03300039000007ac04300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000006c60040009c000000450000213d0000000100500190000000450000c13d000000400040043f0000000005130436000007ac021001980000001f0310018f00000000012500190000000304000367000013fe0000613d000000000604034f000000006706043c0000000005750436000000000015004b000013fa0000c13d000000000003004b00000f4f0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000f4f0000013d0000000701000029000206bf0010019c0000146e0000c13d0000079b01000041000000000010043f0000077b0100004100001aeb00010430000006bb023001970000001f0420018f000006de032001980000141d0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000014190000c13d000000000004004b0000142a0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000006bb0010009c000006bb01008041000000c001100210000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006003100270000106bb0030019d000006bb033001980000145d0000613d0000001f043000390000076e044001970000003f044000390000076f04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006c60040009c000000450000213d0000000100600190000000450000c13d000000400040043f0000001f0430018f0000000006350436000006de053001980000000003560019000014500000613d000000000701034f000000007807043c0000000006860436000000000036004b0000144c0000c13d000000000004004b0000145d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000f4f0000c13d0000079f01000041000000000010043f0000077b0100004100001aeb00010430000000400100043d00000044021000390000078a030000410000000000320435000006e7020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000e690000013d0000000e01000039000000000101041a000000080000006b0000153a0000613d0000ff00001001900000153a0000613d000007a101000041000000000010043f0000077b0100004100001aeb00010430000006bb023001970000001f0420018f000006de03200198000014820000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b0000147e0000c13d000000000004004b0000148f0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000000040100002900000005031000b900000000011300d9000000050010006c000015300000c13d000000000003004b000011780000613d0000000001000414000000040040008c000016930000c13d0000000101000032000002310000613d000006c60010009c000000450000213d0000001f03100039000007ac033001970000003f03300039000007ac04300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000006c60040009c000000450000213d0000000100500190000000450000c13d000000400040043f0000000005130436000007ac021001980000001f0310018f00000000012500190000000304000367000014b80000613d000000000604034f000000006706043c0000000005750436000000000015004b000014b40000c13d000000000003004b000002310000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000002310000013d000000040100002900000005031000b900000000011300d9000000050010006c000015300000c13d000000000003004b000011780000613d0000000001000414000000040040008c000016a20000c13d00000001010000320000060b0000613d000006c60010009c000000450000213d0000001f03100039000007ac033001970000003f03300039000007ac04300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000006c60040009c000000450000213d0000000100500190000000450000c13d000000400040043f0000000005130436000007ac021001980000001f0310018f00000000012500190000000304000367000014ed0000613d000000000604034f000000006706043c0000000005750436000000000015004b000014e90000c13d000000000003004b0000060b0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000060b0000013d000000040100002900000005031000b900000000011300d9000000050010006c000015300000c13d000000000003004b000011780000613d0000000001000414000000040040008c000016b10000c13d000000010100003200000c710000613d000006c60010009c000000450000213d0000001f03100039000007ac033001970000003f03300039000007ac04300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000006c60040009c000000450000213d0000000100500190000000450000c13d000000400040043f0000000005130436000007ac021001980000001f0310018f00000000012500190000000304000367000015220000613d000000000604034f000000006706043c0000000005750436000000000015004b0000151e0000c13d000000000003004b00000c710000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000c710000013d0000078c01000041000000000010043f0000001101000039000000040010043f000006dd0100004100001aeb000104300000078b01000041000000000010043f0000077b0100004100001aeb00010430000006db00100198000016000000c13d000000040000006b000015400000613d0000000301000029000000000001041b0000000801000029000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000201000029000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000201041a0000000102200039000000000021041b000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000500000001001d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d0000000502000029000000a00220021000000002022001af0000077f022001c7000000000101043b000000000021041b0000000a010000290000077f00100198000015ac0000c13d00000006010000290000000101100039000500000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b000000000101041a000000000001004b000015ac0000c13d0000000301000039000000000101041a000000050010006b000015ac0000613d0000000501000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f000000010020019000000e580000613d000000000101043b0000000a02000029000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e4040000410000000805000029000000020600002900000006070000291ae91adf0000040f000000010020019000000e580000613d00000780010000410000000000100443000000070100002900000004001004430000000001000414000006bb0010009c000006bb01008041000000c00110021000000781011001c700008002020000391ae91ae40000040f0000000100200190000015d50000613d000000000101043b000000000001004b000011130000613d00000008010000290000000702000029000000060300002900000009040000291ae919ed0000040f000000000001004b000011130000c13d0000079601000041000000000010043f0000077b0100004100001aeb00010430000000000001042f000006bb023001970000001f0420018f000006de03200198000015e00000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000015dc0000c13d000000000004004b000015ed0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001aeb00010430000000400300043d000006dc020000410000000000230435000300000003001d00000004023000390000000603000029000000000032043500000000030004140000001801100270000006bf02100197000000040020008c000016110000c13d0000000103000031000000200030008c000000200400003900000000040340190000163b0000013d000000400300043d000006dc020000410000000000230435000100000003001d00000004023000390000000503000029000000000032043500000000030004140000001801100270000006bf02100197000000040020008c000016520000c13d0000000103000031000000200030008c000000200400003900000000040340190000167c0000013d0000000301000029000006bb0010009c000006bb010080410000004001100210000006bb0030009c000006bb03008041000000c003300210000000000113019f000006dd011001c71ae91ae40000040f0000006003100270000006bb03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000003057000290000162a0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b000016260000c13d000000000006004b000016370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016c00000613d0000001f01400039000000600210018f0000000301200029000000000021004b00000000020000390000000102004039000006c60010009c000000450000213d0000000100200190000000450000c13d000000400010043f000000200030008c00000e580000413d00000003010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000e580000c13d000000000001004b0000083b0000c13d00000ff40000013d0000000101000029000006bb0010009c000006bb010080410000004001100210000006bb0030009c000006bb03008041000000c003300210000000000113019f000006dd011001c71ae91ae40000040f0000006003100270000006bb03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000001057000290000166b0000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000016670000c13d000000000006004b000016780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016cc0000613d0000001f01400039000000600210018f0000000101200029000000000021004b00000000020000390000000102004039000006c60010009c000000450000213d0000000100200190000000450000c13d000000400010043f000000200030008c00000e580000413d00000001010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000e580000c13d000000000001004b00000ff40000613d0000153c0000013d000006bb0010009c000006bb01008041000000c001100210000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006003100270000106bb0030019d000006bb03300198000016d80000c13d0000000100200190000002310000c13d0000145f0000013d000006bb0010009c000006bb01008041000000c001100210000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006003100270000106bb0030019d000006bb03300198000016fe0000c13d00000001002001900000060b0000c13d0000145f0000013d000006bb0010009c000006bb01008041000000c001100210000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006003100270000106bb0030019d000006bb03300198000017240000c13d000000010020019000000c710000c13d0000145f0000013d0000001f0530018f000006de06300198000000400200043d0000000004620019000010a80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016c70000c13d000010a80000013d0000001f0530018f000006de06300198000000400200043d0000000004620019000010a80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016d30000c13d000010a80000013d0000001f043000390000076e044001970000003f044000390000076f04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006c60040009c000000450000213d0000000100600190000000450000c13d000000400040043f0000001f0430018f0000000006350436000006de053001980000000003560019000016f00000613d000000000701034f000000007807043c0000000006860436000000000036004b000016ec0000c13d000000000004004b0000169f0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000169f0000013d0000001f043000390000076e044001970000003f044000390000076f04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006c60040009c000000450000213d0000000100600190000000450000c13d000000400040043f0000001f0430018f0000000006350436000006de053001980000000003560019000017160000613d000000000701034f000000007807043c0000000006860436000000000036004b000017120000c13d000000000004004b000016ae0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000016ae0000013d0000001f043000390000076e044001970000003f044000390000076f04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006c60040009c000000450000213d0000000100600190000000450000c13d000000400040043f0000001f0430018f0000000006350436000006de0530019800000000035600190000173c0000613d000000000701034f000000007807043c0000000006860436000000000036004b000017380000c13d000000000004004b000016bd0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000016bd0000013d000000400300043d000006dc020000410000000000230435000200000003001d00000004023000390000000603000029000000000032043500000000030004140000001801100270000006bf02100197000000040020008c000017610000c13d0000000103000031000000200030008c000000200400003900000000040340190000178b0000013d0000078c01000041000000000010043f0000003201000039000000040010043f000006dd0100004100001aeb000104300000000201000029000006bb0010009c000006bb010080410000004001100210000006bb0030009c000006bb03008041000000c003300210000000000113019f000006dd011001c71ae91ae40000040f0000006003100270000006bb03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000002057000290000177a0000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000017760000c13d000000000006004b000017870000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017aa0000613d0000001f01400039000000600210018f0000000201200029000000000021004b00000000020000390000000102004039000006c60010009c000000450000213d0000000100200190000000450000c13d000000400010043f000000200030008c00000e580000413d00000002010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000e580000c13d000000000001004b0000044f0000c13d00000ff40000013d0000078f01000041000000000010043f0000077b0100004100001aeb000104300000078e01000041000000000010043f0000077b0100004100001aeb000104300000001f0530018f000006de06300198000000400200043d0000000004620019000010a80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017b10000c13d000010a80000013d0000001f0530018f000006de06300198000000400200043d0000000004620019000010a80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017bd0000c13d000010a80000013d000006bf02200197000000000020043f000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f0000000100200190000017d00000613d000000000101043b000000000001042d000000000100001900001aeb000104300000002003000039000000000331043600000000420204340000000000230435000007ac062001970000001f0520018f0000004001100039000000000014004b000017eb0000813d000000000006004b000017e70000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000017e10000c13d000000000005004b000018010000613d0000000007010019000017f70000013d0000000007610019000000000006004b000017f40000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000017f00000c13d000000000005004b000018010000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f02200039000007ac022001970000000001120019000000000001042d0000001f02200039000007ac022001970000000001120019000000000021004b00000000020000390000000102004039000006c60010009c000018130000213d0000000100200190000018130000c13d000000400010043f000000000001042d0000078c01000041000000000010043f0000004101000039000000040010043f000006dd0100004100001aeb00010430000000400100043d000007b00010009c0000181f0000813d0000004002100039000000400020043f000000000001042d0000078c01000041000000000010043f0000004101000039000000040010043f000006dd0100004100001aeb00010430000000000301001900000000011200a9000000000003004b0000182c0000613d00000000033100d9000000000023004b0000182d0000c13d000000000001042d0000078c01000041000000000010043f0000001101000039000000040010043f000006dd0100004100001aeb00010430000000000001004b0000189c0000613d00000000030100190000000c01000039000000000101041a000006bf04100198000018a00000613d0000000001000414000000040040008c000018680000c13d00000001010000320000189b0000613d000006c60010009c000018a40000213d0000001f03100039000007ac033001970000003f03300039000007ac04300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000006c60040009c000018a40000213d0000000100500190000018a40000c13d000000400040043f0000000005130436000007ac021001980000001f0310018f000000000125001900000003040003670000185a0000613d000000000604034f000000006706043c0000000005750436000000000015004b000018560000c13d000000000003004b0000189b0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000000001042d000006bb0010009c000006bb01008041000000c001100210000006c0011001c7000080090200003900000000050000191ae91adf0000040f00030000000103550000006003100270000106bb0030019d000006bb03300198000018990000613d0000001f043000390000076e044001970000003f044000390000076f04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006c60040009c000018a40000213d0000000100600190000018a40000c13d000000400040043f0000001f0430018f0000000006350436000006de0530019800000000035600190000188c0000613d000000000701034f000000007807043c0000000006860436000000000036004b000018880000c13d000000000004004b000018990000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000018aa0000613d000000000001042d000007a001000041000000000010043f0000077b0100004100001aeb00010430000007b101000041000000000010043f0000077b0100004100001aeb000104300000078c01000041000000000010043f0000004101000039000000040010043f000006dd0100004100001aeb000104300000079f01000041000000000010043f0000077b0100004100001aeb00010430000000000100041a000006bf011001970000000002000411000000000021004b000018b40000c13d000000000001042d000000400100043d00000044021000390000078a030000410000000000320435000006e702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000006bb0010009c000006bb010080410000004001100210000006e8011001c700001aeb000104300004000000000002000200000002001d000000000002004b000019870000613d00000000050100190000000301000039000000000101041a000400000001001d0000000e01000039000000000101041a000006db00100198000019240000613d000000400b00043d000006dc0200004100000000002b04350000000002000411000006bf022001970000000403b00039000000000023043500000000030004140000001801100270000006bf02100197000000040020008c000018e10000c13d0000000103000031000000200030008c000000200400003900000000040340190000190f0000013d000100000005001d000006bb00b0009c000006bb0100004100000000010b40190000004001100210000006bb0030009c000006bb03008041000000c003300210000000000113019f000006dd011001c700030000000b001d1ae91ae40000040f000000030b0000290000006003100270000006bb03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000018fd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018f90000c13d000000000006004b0000190a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000199a0000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006c60010009c000019900000213d0000000100200190000019900000c13d000000400010043f0000001f0030008c0000197f0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000197f0000c13d000000000001004b000019960000613d000006bf01500197000300000001001d000000000010043f0000000801000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f00000001002001900000197f0000613d00000002020000290000078d022000d1000000000101043b000000000301041a0000000002230019000000000021041b000006e20100004100000000001004430000000001000414000006bb0010009c000006bb01008041000000c001100210000006e3011001c70000800b020000391ae91ae40000040f00000001002001900000198b0000613d000000000101043b000100000001001d0000000401000029000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f00000001002001900000197f0000613d0000000102000029000000a0022002100000000203000029000000010030008c00000000030000190000077f03006041000000000223019f0000000306000029000000000262019f000000000101043b000000000021041b0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e404000041000000000500001900000004070000291ae91adf0000040f000000040700002900000001002001900000197f0000613d000200020070002d0000000107700039000000020070006c000019810000613d0000000001000414000006bb0010009c000006bb01008041000000c001100210000006c0011001c70000800d020000390000000403000039000006e40400004100000000050000190000000306000029000400000007001d00000004070000291ae91adf0000040f000000040700002900000001002001900000196c0000c13d000000000100001900001aeb00010430000000030000006b0000198c0000613d00000003010000390000000202000029000000000021041b000000000001042d0000078f01000041000000000010043f0000077b0100004100001aeb00010430000000000001042f0000078e01000041000000000010043f0000077b0100004100001aeb000104300000078c01000041000000000010043f0000004101000039000000040010043f000006dd0100004100001aeb000104300000079a01000041000000000010043f0000077b0100004100001aeb000104300000001f0530018f000006de06300198000000400200043d0000000004620019000019a50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019a10000c13d000000000005004b000019b20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006bb0020009c000006bb020080410000004002200210000000000112019f00001aeb000104300001000000000002000000000001004b000019e90000613d000100000001001d000000000010043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f0000000100200190000019e70000613d000000000101043b000000000101041a00000774001001980000000102000029000019e90000c13d000000000001004b000019e60000c13d0000000301000039000000000101041a000000000021004b000019e90000a13d000000010220008a000100000002001d000000000020043f0000000701000039000000200010043f0000000001000414000006bb0010009c000006bb01008041000000c001100210000006e0011001c700008010020000391ae91ae40000040f0000000100200190000019e70000613d000000000101043b000000000101041a000000000001004b0000000102000029000019d30000613d000000000001042d000000000100001900001aeb00010430000007a401000041000000000010043f0000077b0100004100001aeb000104300004000000000002000000400d00043d0000006405d00039000000800c0000390000000000c504350000004405d000390000000000350435000006bf011001970000002403d000390000000000130435000007b20100004100000000001d04350000000001000411000006bf011001970000000403d0003900000000001304350000008403d0003900000000510404340000000000130435000007ac071001970000001f0610018f000000a404d00039000000000045004b00001a150000813d000000000007004b00001a110000613d00000000096500190000000008640019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001a0b0000c13d000000000006004b00001a2b0000613d000000000804001900001a210000013d0000000008740019000000000007004b00001a1e0000613d0000000009050019000000000a040019000000009b090434000000000aba043600000000008a004b00001a1a0000c13d000000000006004b00001a2b0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000441001900000000000404350000000004000414000006bf02200197000000040020008c00001a390000c13d0000000005000415000000040550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001a6f0000013d00010000000c001d0000001f01100039000007ac01100197000000a401100039000006bb0010009c000006bb010080410000006001100210000006bb00d0009c000006bb0300004100000000030d40190000004003300210000000000131019f000006bb0040009c000006bb04008041000000c003400210000000000131019f00020000000d001d1ae91adf0000040f000000020d0000290000006003100270000006bb03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d001900001a5b0000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b00001a570000c13d000000000006004b00001a680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000030550008a0000000505500210000000010020019000001a880000613d0000001f01400039000000600210018f0000000001d20019000000000021004b00000000020000390000000102004039000006c60010009c00001aba0000213d000000010020019000001aba0000c13d000000400010043f0000001f0030008c00001a860000a13d00000000010d0433000007a70010019800001a860000c13d0000000502500270000000000201001f000006d801100197000007b20010009c00000000010000390000000101006039000000000001042d000000000100001900001aeb00010430000000000003004b00001a8c0000c13d000000600200003900001ab30000013d0000001f023000390000076e022001970000003f022000390000076f04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006c60040009c00001aba0000213d000000010050019000001aba0000c13d000000400040043f0000001f0430018f0000000006320436000006de05300198000100000006001d000000000356001900001aa60000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b00001aa20000c13d000000000004004b00001ab30000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00001ac00000c13d0000079601000041000000000010043f0000077b0100004100001aeb000104300000078c01000041000000000010043f0000004101000039000000040010043f000006dd0100004100001aeb000104300000000102000029000006bb0020009c000006bb020080410000004002200210000006bb0010009c000006bb010080410000006001100210000000000121019f00001aeb00010430000000000001042f000006bb0010009c000006bb010080410000004001100210000006bb0020009c000006bb020080410000006002200210000000000112019f0000000002000414000006bb0020009c000006bb02008041000000c002200210000000000112019f000006c0011001c700008010020000391ae91ae40000040f000000010020019000001add0000613d000000000101043b000000000001042d000000000100001900001aeb0001043000001ae2002104210000000102000039000000000001042d0000000002000019000000000001042d00001ae7002104230000000102000039000000000001042d0000000002000019000000000001042d00001ae90000043200001aea0001042e00001aeb0001043000000000000000000000000000000000000000000000000000000000ffffffff546f616473496e5468655472656e636865730000000000000000000000000000544e540000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000000000000000000000000000010000000000000000fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c24f000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000015083569120000000000000000000000000002dcc7c4ab800bf67380e2553be1e6891a36f18e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00008d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80272eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537fe0000000000000000000000000000000000000000000000000000000067a247900000000000000000000000000000000000000000000000000000000067a255a0b84c78161c34e0f3149d835f77d390462f27e6a8e5346985f8703ac88f0204610000000000000000000000000000000000000000000000000000000067a271c07d280ae2377d7556e7905b1995a8f24cf0887e18f4f1c70b75ccfe33fb5201560000000000000000000000000000000000000000000000000000000067a27fd00000000000000000000000000000000000000000000000000000000067a28de07d3e3dbe000000000000000000000000000000000000000000000000000000000000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb60000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000aaeb6d7670e522a718067333cd4effffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf0000000000000000000001f400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ff0000e18bc08a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000b1d6db878321accf2a8bf482750b3a4efd9c5cd40200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffea1fffffffffffffea2796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000006f8b44af00000000000000000000000000000000000000000000000000000000ab7b499200000000000000000000000000000000000000000000000000000000e1136b3c00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f695963a00000000000000000000000000000000000000000000000000000000fb796e6b00000000000000000000000000000000000000000000000000000000fb796e6c00000000000000000000000000000000000000000000000000000000fea87d2200000000000000000000000000000000000000000000000000000000f695963b00000000000000000000000000000000000000000000000000000000fb65ba9800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f3f119f100000000000000000000000000000000000000000000000000000000f432ca6700000000000000000000000000000000000000000000000000000000e5e2a0f500000000000000000000000000000000000000000000000000000000e5e2a0f600000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed9aab5100000000000000000000000000000000000000000000000000000000e1136b3d00000000000000000000000000000000000000000000000000000000e23edee500000000000000000000000000000000000000000000000000000000e56e9ac000000000000000000000000000000000000000000000000000000000c3d923a500000000000000000000000000000000000000000000000000000000d1c026c800000000000000000000000000000000000000000000000000000000d1c026c900000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000e079e46100000000000000000000000000000000000000000000000000000000c3d923a600000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000cafd705f00000000000000000000000000000000000000000000000000000000b6d1fc6500000000000000000000000000000000000000000000000000000000b6d1fc6600000000000000000000000000000000000000000000000000000000b7c0b8e800000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000ab7b499300000000000000000000000000000000000000000000000000000000abd017ea00000000000000000000000000000000000000000000000000000000ac19701b000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000009e5f94a600000000000000000000000000000000000000000000000000000000a70138c000000000000000000000000000000000000000000000000000000000a70138c100000000000000000000000000000000000000000000000000000000aa0678ff00000000000000000000000000000000000000000000000000000000aa60bdd0000000000000000000000000000000000000000000000000000000009e5f94a700000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a42c05ba0000000000000000000000000000000000000000000000000000000096ce3bf90000000000000000000000000000000000000000000000000000000096ce3bfa0000000000000000000000000000000000000000000000000000000096db3e890000000000000000000000000000000000000000000000000000000097e4007e000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008e9a85f30000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000076ee0152000000000000000000000000000000000000000000000000000000007f371a9f000000000000000000000000000000000000000000000000000000007f371aa000000000000000000000000000000000000000000000000000000000858633f200000000000000000000000000000000000000000000000000000000871215d40000000000000000000000000000000000000000000000000000000076ee01530000000000000000000000000000000000000000000000000000000079544c86000000000000000000000000000000000000000000000000000000007d4b5a210000000000000000000000000000000000000000000000000000000071be5e130000000000000000000000000000000000000000000000000000000071be5e140000000000000000000000000000000000000000000000000000000072b0d90c000000000000000000000000000000000000000000000000000000007537c803000000000000000000000000000000000000000000000000000000006f8b44b00000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000406466a600000000000000000000000000000000000000000000000000000000545b70b1000000000000000000000000000000000000000000000000000000005d0e956d000000000000000000000000000000000000000000000000000000006352211d0000000000000000000000000000000000000000000000000000000065216a400000000000000000000000000000000000000000000000000000000065216a4100000000000000000000000000000000000000000000000000000000691ce970000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000064f52a1f000000000000000000000000000000000000000000000000000000005d0e956e000000000000000000000000000000000000000000000000000000005d99a0cf000000000000000000000000000000000000000000000000000000005e5dddec000000000000000000000000000000000000000000000000000000005944c752000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000059a2f3bd000000000000000000000000000000000000000000000000000000005c1afecb00000000000000000000000000000000000000000000000000000000545b70b20000000000000000000000000000000000000000000000000000000055f5f0660000000000000000000000000000000000000000000000000000000055f804b300000000000000000000000000000000000000000000000000000000484b973b0000000000000000000000000000000000000000000000000000000052476eca0000000000000000000000000000000000000000000000000000000052476ecb0000000000000000000000000000000000000000000000000000000053f6d3c6000000000000000000000000000000000000000000000000000000005438943700000000000000000000000000000000000000000000000000000000484b973c000000000000000000000000000000000000000000000000000000004b21839e000000000000000000000000000000000000000000000000000000004f115db10000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000462fed140000000000000000000000000000000000000000000000000000000046fff98d00000000000000000000000000000000000000000000000000000000406466a70000000000000000000000000000000000000000000000000000000040eefc470000000000000000000000000000000000000000000000000000000041d94c980000000000000000000000000000000000000000000000000000000021b8acd6000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000003bf30393000000000000000000000000000000000000000000000000000000003bf30394000000000000000000000000000000000000000000000000000000003c6d5762000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000002a55205a0000000000000000000000000000000000000000000000000000000030a089650000000000000000000000000000000000000000000000000000000030db1d5b00000000000000000000000000000000000000000000000000000000251c21eb00000000000000000000000000000000000000000000000000000000251c21ec0000000000000000000000000000000000000000000000000000000025816cc5000000000000000000000000000000000000000000000000000000002761948e0000000000000000000000000000000000000000000000000000000021b8acd70000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000023cca1af00000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000010d2f7160000000000000000000000000000000000000000000000000000000010d2f7170000000000000000000000000000000000000000000000000000000012b365100000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000c92b631000000000000000000000000000000000000000000000000000000000d4c18280000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000759f2d800000000000000000000000000000000000000000000000000000000081812fc000000000000000000000000000000000000000000000000000000000141a4490000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000004634d8d00000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe04f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000000000c6171134001122334455000000000000000000000000000000000000004400000016000000000000000000000002000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffff0000000000000000000000000000000000000000ffffff17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3fb05e92fa000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f398f4eb6040000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572fc4c6036000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000012e07630000000000000000000000000000000000000000000000000000000000b562e8dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff455243323938313a20496e76616c696420706172616d6574657273000000000000000000000000000000000000000000000000640000008000000000000000000000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffe048e71000000000000000000000000000000000000000000000000000000000d1a57ed6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000004c80d8be00000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000dd4e010600000000000000000000000000000000000000000000000000000000327c6a56000000000000000000000000000000000000000000000000000000008a164f630000000000000000000000000000000000000000000000000000000090b8ec18000000000000000000000000000000000000000000000000000000005e2a89dd00000000000000000000000000000000000000000000000000000000db89e3f400000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e400000000000000000000000000000000000000000000000000000000f4df6ae50000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0cd0081c200000000000000000000000000000000000000000000000000000000150b7a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000059bb9c8b959d75e85525e0ad65e4eadbaced5ba1b3aa8310ea34591c44d340ca
[ 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.