More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 156,953 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 56189347 | 63 days ago | IN | 0 ETH | 0.00000597 | ||||
Set Approval For... | 51596294 | 125 days ago | IN | 0 ETH | 0.00000514 | ||||
Set Approval For... | 50125288 | 144 days ago | IN | 0 ETH | 0.00000506 | ||||
Send From | 47721798 | 175 days ago | IN | 0.00001048 ETH | 0.00001934 | ||||
Mint | 47721739 | 175 days ago | IN | 0.00023 ETH | 0.0000089 | ||||
Set Approval For... | 39504028 | 277 days ago | IN | 0 ETH | 0.00000429 | ||||
Set Approval For... | 39504023 | 277 days ago | IN | 0 ETH | 0.00000492 | ||||
Set Approval For... | 39503296 | 277 days ago | IN | 0 ETH | 0.00000427 | ||||
Set Approval For... | 39503291 | 277 days ago | IN | 0 ETH | 0.0000049 | ||||
Set Approval For... | 39250355 | 280 days ago | IN | 0 ETH | 0.00000427 | ||||
Set Approval For... | 39250351 | 280 days ago | IN | 0 ETH | 0.0000049 | ||||
Set Approval For... | 39247309 | 280 days ago | IN | 0 ETH | 0.00000572 | ||||
Set Approval For... | 38977377 | 284 days ago | IN | 0 ETH | 0.00000484 | ||||
Set Approval For... | 37891042 | 296 days ago | IN | 0 ETH | 0.00000262 | ||||
Set Approval For... | 37128395 | 305 days ago | IN | 0 ETH | 0.00000271 | ||||
Mint | 36796016 | 309 days ago | IN | 0.00023 ETH | 0.0000049 | ||||
Send From | 36795949 | 309 days ago | IN | 0.00033528 ETH | 0.0000113 | ||||
Mint | 36795910 | 309 days ago | IN | 0.00023 ETH | 0.00000527 | ||||
Mint | 36765317 | 310 days ago | IN | 0.00023 ETH | 0.0000042 | ||||
Send From | 36511076 | 313 days ago | IN | 0.00003285 ETH | 0.00000608 | ||||
Mint | 36511045 | 313 days ago | IN | 0.00023 ETH | 0.00000491 | ||||
Withdraw | 36390088 | 314 days ago | IN | 0 ETH | 0.0000042 | ||||
Set Approval For... | 36248668 | 316 days ago | IN | 0 ETH | 0.00000256 | ||||
Set Approval For... | 36248578 | 316 days ago | IN | 0 ETH | 0.00000256 | ||||
Set Approval For... | 36248377 | 316 days ago | IN | 0 ETH | 0.0000029 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
47721798 | 175 days ago | 0.00001048 ETH | ||||
47721798 | 175 days ago | 0.00001048 ETH | ||||
47721739 | 175 days ago | 0.00023 ETH | ||||
36796016 | 309 days ago | 0.00023 ETH | ||||
36795949 | 309 days ago | 0.00033528 ETH | ||||
36795949 | 309 days ago | 0.00033528 ETH | ||||
36795910 | 309 days ago | 0.00023 ETH | ||||
36765317 | 310 days ago | 0.00023 ETH | ||||
36511076 | 313 days ago | 0.00003285 ETH | ||||
36511076 | 313 days ago | 0.00003285 ETH | ||||
36511045 | 313 days ago | 0.00023 ETH | ||||
36390088 | 314 days ago | 0.17894 ETH | ||||
36233366 | 316 days ago | 0.00010142 ETH | ||||
36233366 | 316 days ago | 0.00010142 ETH | ||||
36233275 | 316 days ago | 0.00023 ETH | ||||
36229133 | 316 days ago | 0.00023 ETH | ||||
36188046 | 317 days ago | 0.00023 ETH | ||||
36187492 | 317 days ago | 0.00000829 ETH | ||||
36187492 | 317 days ago | 0.00000829 ETH | ||||
36187433 | 317 days ago | 0.00023 ETH | ||||
36187232 | 317 days ago | 0.00023 ETH | ||||
36186929 | 317 days ago | 0.00002951 ETH | ||||
36186929 | 317 days ago | 0.00002951 ETH | ||||
36186902 | 317 days ago | 0.00023 ETH | ||||
36186421 | 317 days ago | 0.00023 ETH |
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 Name:
LayerZeroMultichainPowerXLV2
Compiler Version
v0.8.18+commit.87f61d96
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: contracts/lz-contracts/util/ExcessivelySafeCall.sol pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } } // File: contracts/lz-contracts/util/BytesLib.sol /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } } // File: contracts/lz-contracts/interfaces/ILayerZeroUserApplicationConfig.sol pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File: contracts/lz-contracts/interfaces/ILayerZeroEndpoint.sol pragma solidity >=0.5.0; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File: contracts/lz-contracts/interfaces/ILayerZeroReceiver.sol pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/lz-contracts/lzApp/LzApp.sol pragma solidity ^0.8.0; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override { // lzReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract"); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_remoteChainId] = _path; emit SetTrustedRemote(_remoteChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner { require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } } // File: contracts/lz-contracts/lzApp/NonblockingLzApp.sol pragma solidity ^0.8.0; /* * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingLzApp is LzApp { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)); // try-catch all errors/exceptions if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp"); _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } // File: contracts/lz-contracts/token/onft/IONFT721Core.sol pragma solidity >=0.5.0; /** * @dev Interface of the ONFT Core standard */ interface IONFT721Core is IERC165 { /** * @dev Emitted when `_tokenIds[]` are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce from */ event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes indexed _toAddress, uint[] _tokenIds); event ReceiveFromChain(uint16 indexed _srcChainId, bytes indexed _srcAddress, address indexed _toAddress, uint[] _tokenIds); event SetMinGasToTransferAndStore(uint256 _minGasToTransferAndStore); event SetDstChainIdToTransferGas(uint16 _dstChainId, uint256 _dstChainIdToTransferGas); event SetDstChainIdToBatchLimit(uint16 _dstChainId, uint256 _dstChainIdToBatchLimit); /** * @dev Emitted when `_payload` was received from lz, but not enough gas to deliver all tokenIds */ event CreditStored(bytes32 _hashedPayload, bytes _payload); /** * @dev Emitted when `_hashedPayload` has been completely delivered */ event CreditCleared(bytes32 _hashedPayload); /** * @dev send token `_tokenId` to (`_dstChainId`, `_toAddress`) from `_from` * `_toAddress` can be any size depending on the `dstChainId`. * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _tokenId, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; /** * @dev send tokens `_tokenIds[]` to (`_dstChainId`, `_toAddress`) from `_from` * `_toAddress` can be any size depending on the `dstChainId`. * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendBatchFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint[] calldata _tokenIds, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _tokenId - token Id to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParams - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _tokenId, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _tokenIds[] - token Ids to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParams - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendBatchFee(uint16 _dstChainId, bytes calldata _toAddress, uint[] calldata _tokenIds, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); } // File: contracts/lz-contracts/token/onft/ONFT721Core.sol pragma solidity ^0.8.0; abstract contract ONFT721Core is NonblockingLzApp, ERC165, ReentrancyGuard, IONFT721Core { uint16 public constant FUNCTION_TYPE_SEND = 1; struct StoredCredit { uint16 srcChainId; address toAddress; uint256 index; // which index of the tokenIds remain bool creditsRemain; } uint256 public minGasToTransferAndStore; // min amount of gas required to transfer, and also store the payload mapping(uint16 => uint256) public dstChainIdToBatchLimit; mapping(uint16 => uint256) public dstChainIdToTransferGas; // per transfer amount of gas required to mint/transfer on the dst mapping(bytes32 => StoredCredit) public storedCredits; constructor(uint256 _minGasToTransferAndStore, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) { require(_minGasToTransferAndStore > 0, "minGasToTransferAndStore must be > 0"); minGasToTransferAndStore = _minGasToTransferAndStore; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IONFT721Core).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee(uint16 _dstChainId, bytes memory _toAddress, uint _tokenId, bool _useZro, bytes memory _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) { return estimateSendBatchFee(_dstChainId, _toAddress, _toSingletonArray(_tokenId), _useZro, _adapterParams); } function estimateSendBatchFee(uint16 _dstChainId, bytes memory _toAddress, uint[] memory _tokenIds, bool _useZro, bytes memory _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) { bytes memory payload = abi.encode(_toAddress, _tokenIds); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function sendFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _tokenId, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) public payable virtual override { _send(_from, _dstChainId, _toAddress, _toSingletonArray(_tokenId), _refundAddress, _zroPaymentAddress, _adapterParams); } function sendBatchFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint[] memory _tokenIds, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) public payable virtual override { _send(_from, _dstChainId, _toAddress, _tokenIds, _refundAddress, _zroPaymentAddress, _adapterParams); } function _send(address _from, uint16 _dstChainId, bytes memory _toAddress, uint[] memory _tokenIds, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual { // allow 1 by default require(_tokenIds.length > 0, "tokenIds[] is empty"); require(_tokenIds.length == 1 || _tokenIds.length <= dstChainIdToBatchLimit[_dstChainId], "batch size exceeds dst batch limit"); for (uint i = 0; i < _tokenIds.length; i++) { _debitFrom(_from, _dstChainId, _toAddress, _tokenIds[i]); } bytes memory payload = abi.encode(_toAddress, _tokenIds); _checkGasLimit(_dstChainId, FUNCTION_TYPE_SEND, _adapterParams, dstChainIdToTransferGas[_dstChainId] * _tokenIds.length); _lzSend(_dstChainId, payload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, _tokenIds); } function _nonblockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64, /*_nonce*/ bytes memory _payload ) internal virtual override { // decode and load the toAddress (bytes memory toAddressBytes, uint[] memory tokenIds) = abi.decode(_payload, (bytes, uint[])); address toAddress; assembly { toAddress := mload(add(toAddressBytes, 20)) } uint nextIndex = _creditTill(_srcChainId, toAddress, 0, tokenIds); if (nextIndex < tokenIds.length) { // not enough gas to complete transfers, store to be cleared in another tx bytes32 hashedPayload = keccak256(_payload); storedCredits[hashedPayload] = StoredCredit(_srcChainId, toAddress, nextIndex, true); emit CreditStored(hashedPayload, _payload); } emit ReceiveFromChain(_srcChainId, _srcAddress, toAddress, tokenIds); } // Public function for anyone to clear and deliver the remaining batch sent tokenIds function clearCredits(bytes memory _payload) external virtual nonReentrant { bytes32 hashedPayload = keccak256(_payload); require(storedCredits[hashedPayload].creditsRemain, "no credits stored"); (, uint[] memory tokenIds) = abi.decode(_payload, (bytes, uint[])); uint nextIndex = _creditTill(storedCredits[hashedPayload].srcChainId, storedCredits[hashedPayload].toAddress, storedCredits[hashedPayload].index, tokenIds); require(nextIndex > storedCredits[hashedPayload].index, "not enough gas to process credit transfer"); if (nextIndex == tokenIds.length) { // cleared the credits, delete the element delete storedCredits[hashedPayload]; emit CreditCleared(hashedPayload); } else { // store the next index to mint storedCredits[hashedPayload] = StoredCredit(storedCredits[hashedPayload].srcChainId, storedCredits[hashedPayload].toAddress, nextIndex, true); } } // When a srcChain has the ability to transfer more chainIds in a single tx than the dst can do. // Needs the ability to iterate and stop if the minGasToTransferAndStore is not met function _creditTill(uint16 _srcChainId, address _toAddress, uint _startIndex, uint[] memory _tokenIds) internal returns (uint256){ uint i = _startIndex; while (i < _tokenIds.length) { // if not enough gas to process, store this index for next loop if (gasleft() < minGasToTransferAndStore) break; _creditTo(_srcChainId, _toAddress, _tokenIds[i]); i++; } // indicates the next index to send of tokenIds, // if i == tokenIds.length, we are finished return i; } function setMinGasToTransferAndStore(uint256 _minGasToTransferAndStore) external onlyOwner { require(_minGasToTransferAndStore > 0, "minGasToTransferAndStore must be > 0"); minGasToTransferAndStore = _minGasToTransferAndStore; emit SetMinGasToTransferAndStore(_minGasToTransferAndStore); } // ensures enough gas in adapter params to handle batch transfer gas amounts on the dst function setDstChainIdToTransferGas(uint16 _dstChainId, uint256 _dstChainIdToTransferGas) external onlyOwner { require(_dstChainIdToTransferGas > 0, "dstChainIdToTransferGas must be > 0"); dstChainIdToTransferGas[_dstChainId] = _dstChainIdToTransferGas; emit SetDstChainIdToTransferGas(_dstChainId, _dstChainIdToTransferGas); } // limit on src the amount of tokens to batch send function setDstChainIdToBatchLimit(uint16 _dstChainId, uint256 _dstChainIdToBatchLimit) external onlyOwner { require(_dstChainIdToBatchLimit > 0, "dstChainIdToBatchLimit must be > 0"); dstChainIdToBatchLimit[_dstChainId] = _dstChainIdToBatchLimit; emit SetDstChainIdToBatchLimit(_dstChainId, _dstChainIdToBatchLimit); } function _debitFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _tokenId) internal virtual; function _creditTo(uint16 _srcChainId, address _toAddress, uint _tokenId) internal virtual; function _toSingletonArray(uint element) internal pure returns (uint[] memory) { uint[] memory array = new uint[](1); array[0] = element; return array; } } // File: contracts/lz-contracts/token/onft/IONFT721.sol pragma solidity >=0.5.0; /** * @dev Interface of the ONFT standard */ interface IONFT721 is IONFT721Core, IERC721 { } // File: contracts/lz-contracts/token/onft/ONFT721.sol pragma solidity ^0.8.0; // NOTE: this ONFT contract has no public minting logic. // must implement your own minting logic in child classes contract ONFT721 is ONFT721Core, ERC721, IONFT721 { constructor(string memory _name, string memory _symbol, uint256 _minGasToTransfer, address _lzEndpoint) ERC721(_name, _symbol) ONFT721Core(_minGasToTransfer, _lzEndpoint) {} function supportsInterface(bytes4 interfaceId) public view virtual override(ONFT721Core, ERC721, IERC165) returns (bool) { return interfaceId == type(IONFT721).interfaceId || super.supportsInterface(interfaceId); } function _debitFrom(address _from, uint16, bytes memory, uint _tokenId) internal virtual override { require(_isApprovedOrOwner(_msgSender(), _tokenId), "ONFT721: send caller is not owner nor approved"); require(ERC721.ownerOf(_tokenId) == _from, "ONFT721: send from incorrect owner"); _transfer(_from, address(this), _tokenId); } function _creditTo(uint16, address _toAddress, uint _tokenId) internal virtual override { require(!_exists(_tokenId) || (_exists(_tokenId) && ERC721.ownerOf(_tokenId) == address(this))); if (!_exists(_tokenId)) { _safeMint(_toAddress, _tokenId); } else { _transfer(address(this), _toAddress, _tokenId); } } } // File: contracts/lz-contracts/token/onft/extension/UniversalONFT721.sol pragma solidity ^0.8.0; /// @title Interface of the UniversalONFT standard contract UniversalONFT721 is ONFT721 { uint public nextMintId; uint public maxMintId; uint256 public cost = 0.00023 ether; /// @notice Constructor for the UniversalONFT /// @param _name the name of the token /// @param _symbol the token symbol /// @param _layerZeroEndpoint handles message transmission across chains /// @param _startMintId the starting mint number on this chain /// @param _endMintId the max number of mints on this chain constructor(string memory _name, string memory _symbol, uint256 _minGasToTransfer, address _layerZeroEndpoint, uint _startMintId, uint _endMintId) ONFT721(_name, _symbol, _minGasToTransfer, _layerZeroEndpoint) { nextMintId = _startMintId; maxMintId = _endMintId; } /// @notice Mint your ONFT function mint() external payable { require(nextMintId <= maxMintId, "UniversalONFT721: max mint limit reached"); require(msg.value >= cost, "Insufficient funds"); uint newId = nextMintId; nextMintId++; _safeMint(msg.sender, newId); } } // File: contracts/lz-contracts/examples/ExampleUniversalONFT721.sol pragma solidity ^0.8.0; // __ __ _ _ _ _ _ // | \/ | | | | (_) | | (_) // | \ / |_ _| | |_ _ ___| |__ __ _ _ _ __ // | |\/| | | | | | __| |/ __| '_ \ / _` | | '_ \ // | | | | |_| | | |_| | (__| | | | (_| | | | | | // |_|__|_|\__,_|_|\__|_|\___|_| |_|\__,_|_|_| |_| // | __ \ // | |__) |____ _____ _ __ // | ___/ _ \ \ /\ / / _ \ '__| // | | | (_) \ V V / __/ | // |_| \___/ \_/\_/ \___|_| // /// @title A LayerZero UniversalONFT example /// @notice You can use this to mint ONFT and send nftIds across chain. /// Each contract deployed to a chain should carefully set a `_startMintIndex` and a `_maxMint` /// value to set a range of allowed mintable nftIds (so that no two chains can mint the same id!) contract LayerZeroMultichainPowerXLV2 is UniversalONFT721 { string public baseTokenURI; constructor( string memory _baseTokenURI, uint256 _minGasToStore, address _layerZeroEndpoint, uint _startMintId, uint _endMintId ) UniversalONFT721("LayerZero Multichain Power XL V2", "LZPOWERXLV2", _minGasToStore, _layerZeroEndpoint, _startMintId, _endMintId) { setBaseURI(_baseTokenURI); } /// @notice Set the baseTokenURI /// @param _baseTokenURI to set function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } /// @notice Get the base URI function _baseURI() internal view override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 _nftId) public view override(ERC721) returns (string memory) { require(_exists(_nftId), "Not exist"); string memory currentBaseURI = _baseURI(); return currentBaseURI; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os, "Failed to send Ether"); } }
{ "compilerPath": "C:\\Users\\Nikandr\\AppData\\Local\\hardhat-nodejs\\Cache\\compilers-v2\\zksolc\\zksolc-v1.3.13", "experimental": {}, "optimizer": { "enabled": true, "mode": "3", "runs": 200 } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_minGasToStore","type":"uint256"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_startMintId","type":"uint256"},{"internalType":"uint256","name":"_endMintId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_hashedPayload","type":"bytes32"}],"name":"CreditCleared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_hashedPayload","type":"bytes32"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"CreditStored","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","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":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":true,"internalType":"address","name":"_toAddress","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_dstChainIdToBatchLimit","type":"uint256"}],"name":"SetDstChainIdToBatchLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_dstChainIdToTransferGas","type":"uint256"}],"name":"SetDstChainIdToTransferGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_minGasToTransferAndStore","type":"uint256"}],"name":"SetMinGasToTransferAndStore","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","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":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUNCTION_TYPE_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"clearCredits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"dstChainIdToBatchLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"dstChainIdToTransferGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendBatchFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minGasToTransferAndStore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextMintId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendBatchFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_dstChainIdToBatchLimit","type":"uint256"}],"name":"setDstChainIdToBatchLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_dstChainIdToTransferGas","type":"uint256"}],"name":"setDstChainIdToTransferGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minGasToTransferAndStore","type":"uint256"}],"name":"setMinGasToTransferAndStore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"storedCredits","outputs":[{"internalType":"uint16","name":"srcChainId","type":"uint16"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bool","name":"creditsRemain","type":"bool"}],"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":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000d976df2474c274ef49669089711e046015feef3a3bae1bc913d927c539e0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000088b80000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da00000000000000000000000000000000000000000000000000000000003d090100000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d656146614d52563774346e3743337975394b594370716657384466433271684d53636e4351565961516a696f0000000000000000000000
Deployed Bytecode
0x0004000000000002000f0000000000020000000003010019000000600330027000000cb8043001970003000000410355000200000001035500000cb80030019d000100000000001f0000000101200190000000220000c13d0000008001000039000000400010043f0000000002000031000000040120008c00000a2b0000413d0000000203000367000000000103043b000000e00110027000000cc90410009c000000790000213d00000cf30410009c000000a00000a13d00000cf40410009c000000ee0000a13d00000cf50410009c0000015d0000213d00000cfb0410009c000002a10000213d00000cfe0410009c000004dc0000613d00000cff0110009c00000a2b0000c13d32da106d0000040f000000a001000039000000400010043f0000000001000416000000000101004b00000a2b0000c13d00000000020000310000001f01200039000000200a00008a0000000004a1016f000000400100043d0000000003140019000000000443004b0000000004000019000000010400403900000cb90530009c000000730000213d0000000104400190000000730000c13d000000400030043f0000001f0320018f00000002040003670000000505200272000000420000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000003a0000413d000000000603004b000000510000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000cba03000041000000a00420008c0000000004000019000000000403401900000cba05200197000000000605004b000000000300a01900000cba0550009c000000000304c019000000000303004b00000a2b0000c13d000000003401043400000cb90540009c00000a2b0000213d000000000521001900000000021400190000001f0420003900000cba06000041000000000754004b0000000007000019000000000706801900000cba0440019700000cba08500197000000000984004b0000000006008019000000000484013f00000cba0440009c00000000040700190000000004066019000000000404004b00000a2b0000c13d000000000402043300000cb90640009c000004630000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc0001043000000cca0210009c000000c80000a13d00000ccb0210009c000000f70000a13d00000ccc0210009c0000017e0000213d00000cd20210009c000002c30000213d00000cd50210009c000005560000613d00000cd60110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000001201000039000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000d090310009c000001000000213d00000d130210009c000001b60000a13d00000d140210009c000002c80000213d00000d170210009c000005570000613d00000d180110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b32da25d40000040f00000cbb01100197000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000ce00210009c0000013b0000213d00000cea0210009c000001ec0000a13d00000ceb0210009c000002fc0000213d00000cee0210009c000005580000613d00000cef0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000000401000039000000000101041a00000cbb01100197000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000d000210009c0000020d0000a13d00000d010210009c000003010000213d00000d040210009c000005590000613d00000d050110009c00000a2b0000c13d32da0f800000040f00000cd70210009c000002380000a13d00000cd80210009c0000032a0000213d00000cdb0210009c0000056c0000613d00000cdc0110009c00000a2b0000c13d32da1c630000040f00000d0a0310009c000002750000a13d00000d0b0210009c000003570000213d00000d0e0210009c0000056d0000613d00000d0f0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b00000000001004350000000a01000039000000200010043f0000004002000039000000000100001932da0a570000040f0000000202100039000000000202041a000000000301041a0000000101100039000000000101041a000000400400043d00000040054000390000000000150435000000100130027000000cbb0110019700000020054000390000000000150435000000ff012001900000000001000019000000010100c039000000600240003900000000001204350000ffff0130018f000000000014043500000cb80100004100000cb80240009c0000000001044019000000400110021000000d2a011001c7000032db0001042e00000ce10210009c0000029a0000a13d00000ce20210009c000003e10000213d00000ce50210009c000005880000613d00000ce60110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d000000400100043d0000000102000039000000000021043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d1c011001c7000032db0001042e00000cf60210009c000004100000213d00000cf90210009c000005890000613d00000cfa0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000001101000039000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000ccd0210009c0000043a0000213d00000cd00210009c0000058a0000613d00000cd10110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000601043b00000cbb0160009c00000a2b0000213d000000000100041a00000cbb021001970000000005000411000000000252004b00000a2d0000c13d000000000206004b000008bb0000c13d000000400100043d000000640210003900000d1d030000410000000000320435000000440210003900000d1e03000041000000000032043500000024021000390000002603000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000d190210009c0000058b0000613d00000d1a0210009c0000058c0000613d00000d1b0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000000b04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000007930000c13d000000400100043d0000000002710436000000000505004b000008490000613d0000000000400435000000000307004b00000000030000190000084f0000613d00000d310400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000001e40000413d0000084f0000013d00000cf00210009c000005ba0000613d00000cf10210009c000005ee0000613d00000cf20110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d000000000100041a00000cbb01100197000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000d060210009c0000061a0000613d00000d070210009c0000061b0000613d00000d080110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c00000a2b0000213d00000000001004350000000301000039000000200010043f0000004002000039000000000100001932da0a570000040f000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000cdd0210009c000006460000613d00000cde0210009c000006780000613d00000cdf0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b00000000001004350000000d01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000000a2b0000613d000000400300043d000000000101043b000000000101041a00000cbb01100198000008610000c13d000000440130003900000d2002000041000000000021043500000024013000390000000902000039000000000021043500000cc701000041000000000013043500000004013000390000002002000039000000000021043500000cb80100004100000cb80230009c0000000001034019000000400110021000000d21011001c7000032dc0001043000000d100310009c000006920000613d00000d110310009c000006b90000613d00000d120110009c00000a2b0000c13d000000040120008a00000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000001101000039000000000201041a0000001203000039000000000403041a000000000442004b000008190000a13d00000cc701000041000000800010043f0000002001000039000000840010043f0000002801000039000000a40010043f00000d2c01000041000000c40010043f00000d2d01000041000000e40010043f00000d2e01000041000032dc0001043000000ce70210009c000006ba0000613d00000ce80210009c000006bb0000613d00000ce90110009c00000a2b0000c13d32da19520000040f00000cfc0210009c000006bc0000613d00000cfd0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b32da25960000040f00000cbb01100197000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000cd30210009c000007450000613d00000cd40110009c00000a2b0000c13d32da20f70000040f00000d150210009c000007740000613d00000d160110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b000000000200041a00000cbb022001970000000003000411000000000232004b00000a2d0000c13d000000000201004b000008790000c13d000000400100043d000000640210003900000cc5030000410000000000320435000000440210003900000cc603000041000000000032043500000024021000390000002403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000cec0210009c000007750000613d00000ced0110009c00000a2b0000c13d32da17cc0000040f00000d020210009c000007990000613d00000d030110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c00000a2b0000213d00000000001004350000000801000039000000200010043f0000004002000039000000000100001932da0a570000040f000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e00000cd90210009c000007b40000613d00000cda0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d000000400100043d000f00000001001d32da13750000040f0000000f030000290000000002310049000000000103001932da0e000000040f0000002001000039000000400200043d000e00000002001d00000000021204360000000f0100002932da0bed0000040f0000000e04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e00000d0c0210009c000007b50000613d00000d0d0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d0000000001000031000000040210008a00000cba03000041000000a00420008c0000000004000019000000000403401900000cba02200197000000000502004b000000000300a01900000cba0220009c00000000020400190000000002036019000000000202004b00000a2b0000c13d00000002020003670000000403200370000000000303043b000f00000003001d0000ffff0330008c00000a2b0000213d0000002403200370000000000303043b00000cb90430009c00000a2b0000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00000a2b0000c13d0000000404300039000000000242034f000000000202043b00000cb90420009c000000730000213d0000003f04200039000000200500008a000000000454016f000000400700043d0000000004470019000000000574004b0000000005000019000000010500403900000cb90640009c000000730000213d0000000105500190000000730000c13d0000002405300039000000400040043f000e00000007001d00000000032704360000000004520019000000000114004b00000a2b0000213d0000001f0120018f00000002045003670000000505200272000003aa0000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000003a20000413d000000000601004b000003b90000613d0000000505500210000000000454034f00000000055300190000000301100210000000000605043300000000061601cf000000000616022f000000000404043b0000010001100089000000000414022f00000000011401cf000000000161019f00000000001504350000000001230019000000000001043500000002010003670000006402100370000000000302043b000000000203004b0000000002000019000000010200c039000d00000003001d000000000223004b00000a2b0000c13d0000008401100370000000000101043b00000cb90210009c00000a2b0000213d0000000002000031000000040110003932da0e4e0000040f00000044020000390000000202200367000000000202043b000c00000001001d000000000102001932da32030000040f00000000030100190000000f010000290000000e020000290000000d040000290000000c0500002932da2af00000040f000000400300043d00000020043000390000000000240435000000000013043500000cb80100004100000cb80230009c0000000001034019000000400110021000000d27011001c7000032db0001042e00000ce30210009c000007c70000613d00000ce40110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d0000000002000031000000040120008a00000cba03000041000000800410008c0000000004000019000000000403401900000cba01100197000000000501004b000000000300a01900000cba0110009c00000000010400190000000001036019000000000101004b00000a2b0000c13d00000002010003670000000403100370000000000303043b000f00000003001d00000cbb0330009c00000a2b0000213d0000002403100370000000000303043b000e00000003001d00000cbb0330009c00000a2b0000213d0000006401100370000000000101043b00000cb90310009c00000a2b0000213d000000040110003932da0e4e0000040f00000044020000390000000202200367000000000302043b00000000040100190000000f010000290000000e0200002932da26250000040f0000000001000019000032db0001042e00000cf70210009c000007eb0000613d00000cf80110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d000000000100041a00000cbb021001970000000005000411000000000252004b00000a2d0000c13d00000cbf01100197000000000010041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000030300003900000cc104000041000000000600001932da32d00000040f0000000101200190000008ca0000c13d00000a2b0000013d00000cce0210009c000008180000613d00000ccf0110009c00000a2b0000c13d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c00000a2b0000213d00000000001004350000000901000039000000200010043f0000004002000039000000000100001932da0a570000040f000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e0000003f064000390000000006a6016f000000400900043d0000000006690019000000000796004b0000000007000019000000010700403900000cb90860009c000000730000213d0000000107700190000000730000c13d000000400060043f000f00000009001d0000000006490436000e00000006001d00000020064000390000000007260019000000000557004b00000a2b0000213d000000000504004b0000000f09000029000004810000613d000000000500001900000020055000390000000007950019000000000825001900000000080804330000000000870435000000000745004b0000047a0000413d000000000296001900000000000204350000000002030433000d00000002001d0000004002100039000000000202043300000cbb03200197000c00000003001d00000cbb0220009c00000a2b0000213d0000008002100039000000000302043300000060011000390000000004010433000000400600043d00000cbc0160009c000000730000213d0000004001600039000000400010043f0000002002000039000000000726043600000cbd010000410000000000170435000000400500043d00000cbc0150009c000000730000213d000600000007001d000b00000006001d000400000004001d000500000003001d000100000002001d0000004001500039000000400010043f0000000b01000039000800000005001d000900000001001d000000000215043600000cbe01000041000200000002001d0000000000120435000000000100041a00000cbf021001970000000006000411000000000262019f000000000020041b00000cb802000041000000400300043d000a00000003001d000000000300041400000cb80430009c0000000002034019000000c00220021000000cbb0510019700000cc0012001c70000800d02000039000000030300003900000cc104000041000300000006001d00070000000a001d32da32d00000040f000000010120019000000a2b0000613d0000000c01000029000000800010043f00000001020000390000000601000039000000000021041b0000000d03000029000000000103004b000008cc0000c13d0000000a03000029000000640130003900000cc5020000410000000000210435000000440130003900000cc602000041000000000021043500000024013000390000002402000039000000000021043500000cc701000041000000000013043500000004013000390000002002000039000000000021043500000cb80100004100000cb80230009c0000000001034019000000400110021000000cc8011001c7000032dc00010430000000040120008a00000cba04000041000000e00510008c0000000005000019000000000504401900000cba01100197000000000601004b000000000400a01900000cba0110009c00000000010500190000000001046019000000000101004b00000a2b0000c13d0000000401300370000000000101043b000f00000001001d00000cbb0110009c00000a2b0000213d0000002401300370000000000101043b000e00000001001d0000ffff0110008c00000a2b0000213d0000004401300370000000000401043b00000cb90140009c00000a2b0000213d000000230140003900000cba05000041000000000621004b0000000006000019000000000605801900000cba0720019700000cba01100197000000000871004b0000000005008019000000000171013f00000cba0110009c00000000010600190000000001056019000000000101004b00000a2b0000c13d0000000401400039000000000113034f000000000101043b00000cb90310009c000000730000213d000000bf03100039000000200500008a000000000553016f00000cb90350009c000000730000213d0000002403400039000000400050043f000000800010043f0000000004310019000000000224004b00000a2b0000213d0000001f0210018f00000002033003670000000504100272000005230000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b0000051b0000413d000000000502004b000005320000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000a001100039000000000001043500000002010003670000008402100370000000000202043b000d00000002001d00000cbb0220009c00000a2b0000213d000000a402100370000000000202043b000c00000002001d00000cbb0220009c00000a2b0000213d000000c401100370000000000101043b00000cb90210009c00000a2b0000213d0000000002000031000000040110003932da0e4e0000040f00000064020000390000000202200367000000000202043b000b00000001001d000000000102001932da32030000040f000000000401001900000080030000390000000f010000290000000e020000290000000d050000290000000c060000290000000b0700002932da2bf20000040f0000000001000019000032db0001042e32da20730000040f32da0c160000040f32da13dd0000040f0000000001000416000000000101004b00000a2b0000c13d000000000100003132da0dda0000040f000f00000001001d000e00000002001d000d00000003001d000000400100043d000c00000001001d32da0df50000040f0000000c0400002900000000000404350000000f010000290000000e020000290000000d0300002932da26250000040f0000000001000019000032db0001042e32da1b690000040f0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000001301000039000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e32da1aab0000040f32da114b0000040f32da22050000040f32da0a7e0000040f0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b00000d3202100197000000000212004b00000a2b0000c13d000000010200003900000d330310009c000005b10000613d000000000301004b000005b10000613d00000d340310009c000005b10000613d00000d350210009c0000000002000019000000010200603900000d360110009c00000000010000190000000101006039000000000221019f000000010120018f000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c00000a2b0000213d00000000001004350000000101000039000000200010043f0000004002000039000000000100001932da0a570000040f000000400200043d000f00000002001d32da13a00000040f0000000f030000290000000002310049000000000103001932da0e000000040f0000002001000039000000400200043d000e00000002001d00000000021204360000000f0100002932da0bed0000040f0000000e04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000002020003670000000401200370000000000101043b0000ffff0310008c00000a2b0000213d0000002402200370000000000202043b000f00000002001d0000ffff0220008c00000a2b0000213d00000000001004350000000201000039000000200010043f0000004002000039000000000100001932da0a570000040f0000000f0200002932da0f6f0000040f000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e32da0e9b0000040f0000000001000416000000000101004b00000a2b0000c13d000000000100003132da0f3d0000040f000e00000002001d000d00000003001d0000ffff0110018f00000000001004350000000101000039000000200010043f0000004002000039000000000100001932da0a570000040f000000400200043d000f00000002001d32da13a00000040f0000000f030000290000000002310049000000000103001932da0e000000040f0000000f01000029000000001201043432da0a570000040f000f00000001001d00000000030000310000000e010000290000000d0200002932da0e130000040f000000001201043432da0a570000040f0000000f02000029000000000112004b00000000010000190000000101006039000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004020000390000000201200367000000000101043b00000cbb0310009c00000a2b0000213d000000000300041a00000cbb033001970000000004000411000000000343004b00000a2d0000c13d000000000302041a00000cbf03300197000000000313019f000000000032041b000000400200043d000000000012043500000cb801000041000000000300041400000cb80430009c000000000301801900000cb80420009c00000000010240190000004001100210000000c002300210000000000112019f00000cc2011001c70000800d02000039000000010300003900000d220400004132da32d00000040f0000000101200190000008ca0000c13d00000a2b0000013d0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d000000400100043d0000271002000039000000000021043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d1c011001c7000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b000f00000001001d0000ffff0110008c00000a2b0000213d32da23bc0000040f0000000f0100002900000000001004350000000301000039000000200010043f00000024010000390000000201100367000000000101043b000f00000001001d0000004002000039000000000100001932da0a570000040f0000000f02000029000000000021041b0000000001000019000032db0001042e32da0d390000040f32da183d0000040f32da18e20000040f0000000001000416000000000101004b00000a2b0000c13d0000000002000031000000040120008a00000cba03000041000000600410008c0000000004000019000000000403401900000cba01100197000000000501004b000000000300a01900000cba0110009c00000000010400190000000001036019000000000101004b00000a2b0000c13d00000002030003670000000401300370000000000101043b0000ffff0410008c00000a2b0000213d0000002404300370000000000404043b00000cb90540009c00000a2b0000213d000000230540003900000cba06000041000000000725004b0000000007000019000000000706801900000cba0820019700000cba05500197000000000985004b0000000006008019000000000585013f00000cba0550009c00000000050700190000000005066019000000000505004b00000a2b0000c13d0000000405400039000000000353034f000000000303043b00000cb90530009c000000730000213d0000003f05300039000000200600008a000000000565016f000000400800043d0000000005580019000000000685004b0000000006000019000000010600403900000cb90750009c000000730000213d0000000106600190000000730000c13d0000002404400039000000400050043f000e00000008001d0000000005380436000f00000005001d0000000005430019000000000225004b00000a2b0000213d0000001f0230018f000000020440036700000005053002720000000f090000290000070c0000613d000000000600001900000005076002100000000008790019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000007040000413d000000000602004b0000071c0000613d0000000505500210000000000454034f0000000f0600002900000000055600190000000302200210000000000605043300000000062601cf000000000626022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000262019f00000000002504350000000f020000290000000002320019000000000002043500000044020000390000000202200367000000000202043b000d00000002001d00000cb90220009c00000a2b0000213d00000000001004350000000501000039000000200010043f0000004002000039000000000100001932da0a570000040f0000000e020000290000000003020433000b00000003001d000e00000001001d000000400200043d000c00000002001d0000000f0100002932da0be00000040f0000000b020000290000000c0100002900000000041200190000000e030000290000000000340435000000200220003932da0a570000040f0000000d0200002932da113a0000040f000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000002020003670000000401200370000000000101043b00000cbb0310009c00000a2b0000213d0000002402200370000000000202043b000f00000002001d00000cbb0220009c00000a2b0000213d00000000001004350000001001000039000000200010043f0000004002000039000000000100001932da0a570000040f0000000f0200002932da25850000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e32da0cb70000040f0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000000c04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f00000001022001900000082f0000613d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc000104300000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d0000000701000039000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e32da1cd40000040f0000000001000416000000000101004b00000a2b0000c13d000000000100003132da0dda0000040f000f00000001001d000e00000002001d0000000002030019000d00000002001d000000000100041132da27880000040f32da260d0000040f0000000f010000290000000e020000290000000d0300002932da27fe0000040f0000000001000019000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000000301004b0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d000000400100043d000f00000001001d00000d230100004100000000001004390000000001000412000000040010044300000024000004430000800501000039000000440200003932da0a6d0000040f00000cbb011001970000000f03000029000000000013043500000cb80100004100000cb80230009c0000000001034019000000400110021000000d1c011001c7000032db0001042e0000000001000416000000000101004b00000a2b0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000a2b0000c13d00000004010000390000000201100367000000000101043b00000cbb0210009c00000a2b0000213d000000000201004b0000088e0000c13d000000400100043d000000640210003900000d25030000410000000000320435000000440210003900000d2603000041000000000032043500000024021000390000002903000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043032da22c50000040f0000001304000039000000000404041a0000000005000416000000000445004b000008410000813d000000400100043d000000440210003900000d2b0400004100000000004204350000002402100039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d0000000002710436000000000505004b0000089d0000613d0000000000400435000000000307004b0000000003000019000008a30000613d00000d240400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000008390000413d000008a30000013d000000010300008a000000000332004b000008b50000c13d00000d28020000410000000000200435000000040010043f00000d2901000041000032dc00010430000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000f00000001001d32da0e000000040f000000400100043d000e00000001001d0000000f0200002932da0c000000040f0000000e04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e0000000001030019000f00000003001d32da13750000040f0000000f030000290000000002310049000000000103001932da0e000000040f0000002001000039000000400200043d000e00000002001d00000000021204360000000f0100002932da0bed0000040f0000000e04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e0000000702000039000000000012041b000000400200043d000000000012043500000cb801000041000000000300041400000cb80430009c000000000301801900000cb80420009c00000000010240190000004001100210000000c002300210000000000112019f00000cc2011001c70000800d02000039000000010300003900000d300400004132da32d00000040f000000010120019000000a2b0000613d000008ca0000013d00000000001004350000000e01000039000000200010043f0000004002000039000000000100001932da0a570000040f000000000101041a000000400200043d000000000012043500000cb80100004100000cb80320009c0000000001024019000000400110021000000d1c011001c7000032db0001042e000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000f00000001001d32da0e000000040f000000400100043d000e00000001001d0000000f0200002932da0c000000040f0000000e04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e0000000103200039000000000031041b000000000100041132da32260000040f0000000001000019000032db0001042e00000cbf01100197000000000161019f000000000010041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000030300003900000cc10400004132da32d00000040f000000010120019000000a2b0000613d0000000001000019000032db0001042e000c00000002001d0000000701000039000000000031041b0000000b010000290000000001010433000d00000001001d00000cb90110009c000000730000213d0000000901000029000000000101041a000000010210019000000001011002700000007f0310018f0000000001036019000a00000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b000007930000c13d0000000a01000029000000200110008c000009010000413d0000000901000029000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f000000010220019000000a2b0000613d0000000d030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000009010000813d000000000002041b0000000102200039000000000312004b000008fd0000413d0000000d010000290000001f0110008c000009330000a13d0000000901000029000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f0000000102200190000000070200002900000a2b0000613d0000000d0300002900000000032301700000002002000039000000000101043b0000000b06000029000009210000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000009190000413d0000000d04000029000000000343004b0000092f0000813d0000000d030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000b0400002900000000024200190000000002020433000000000232016f000000000021041b0000000d01000029000000010110021000000001011001bf000009410000013d0000000d01000029000000000101004b0000000001000019000009390000613d000000060100002900000000010104330000000d040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000902000029000000000012041b00000008010000290000000001010433000d00000001001d00000cb90110009c000000730000213d0000000c01000039000b00000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000a00000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000007930000c13d0000000a01000029000000200110008c000009760000413d0000000b01000029000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f000000010220019000000a2b0000613d0000000d030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000009760000813d000000000002041b0000000102200039000000000312004b000009720000413d0000000d010000290000001f0110008c000009a80000a13d0000000b01000029000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f0000000102200190000000070200002900000a2b0000613d0000000d0300002900000000032301700000002002000039000000000101043b0000000806000029000009960000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000098e0000413d0000000d04000029000000000343004b000009a40000813d0000000d030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000080400002900000000024200190000000002020433000000000232016f000000000021041b0000000d01000029000000010110021000000001011001bf000009b60000013d0000000d01000029000000000101004b0000000001000019000009ae0000613d000000020100002900000000010104330000000d040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000b02000029000000000012041b00000cc3010000410000001302000039000000000012041b00000011010000390000000402000029000000000021041b00000012010000390000000502000029000000000021041b000000000100041a00000cbb011001970000000302000029000000000121004b00000a2d0000c13d0000000f010000290000000001010433000d00000001001d00000cb90110009c000000730000213d0000001401000039000b00000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000a00000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000007930000c13d0000000a01000029000000200110008c000009f90000413d0000000b01000029000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f000000010220019000000a2b0000613d0000000d030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000009f90000813d000000000002041b0000000102200039000000000312004b000009f50000413d0000000d010000290000001f0110008c00000a3e0000a13d0000000b01000029000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f0000000102200190000000070200002900000a2b0000613d0000000d030000290000000003230170000000000101043b00000001020000290000000f0600002900000a190000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b00000a110000413d0000000d04000029000000000343004b00000a270000813d0000000d030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000f0400002900000000024200190000000002020433000000000232016f000000000021041b0000000d0100002900000001011002100000000c0200002900000a4b0000013d0000000001000019000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300000000d01000029000000000101004b000000000100001900000a440000613d0000000e0100002900000000010104330000000d040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000b02000029000000000012041b000000800100043d00000140000004430000016000100443000000010100002900000100001004430000000c01000029000001200010044300000cc401000041000032db0001042e00000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f000000010220019000000a6b0000613d000000000101043b000000000001042d0000000001000019000032dc00010430000000000301001900000cb801000041000000000400041400000cb80540009c0000000001044019000000c0011002100000006002200210000000000112001900000d3701100041000000000203001932da32d50000040f000000010220019000000a7c0000613d000000000101043b000000000001042d0000000001000019000032dc00010430000a0000000000020000000001000416000000000101004b00000a950000c13d0000000001000031000000040210008a00000cba03000041000000800420008c0000000004000019000000000403401900000cba02200197000000000502004b000000000300a01900000cba0220009c00000000020400190000000002036019000000000202004b00000a950000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000a970000a13d0000000001000019000032dc000104300000002403200370000000000303043b00000cb90430009c00000a950000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00000a950000c13d0000000404300039000000000442034f000000000b04043b00000cb904b0009c00000a950000213d000000240c300039000000000dcb001900000000031d004b00000a950000213d0000004403200370000000000a03043b00000cb903a0009c00000a950000213d0000006403200370000000000303043b00000cb90430009c00000a950000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00000a950000c13d0000000404300039000000000242034f000000000402043b00000cb90240009c00000a950000213d0000002402300039000a00000002001d0000000002240019000000000112004b00000a950000213d00000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d38011001c70000800502000039000900000009001d00060000000a001d00080000000b001d00070000000c001d000500000004001d00040000000d001d32da32d50000040f0000000903000029000000010220019000000a950000613d000000000101043b00000cbb011001970000000002000411000000000112004b00000b0e0000c13d00000000003004350000000101000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000000a950000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b00000b200000613d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d3903000041000000000032043500000024021000390000001e03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400400043d000200000004001d000100000005001d0000000004540436000300000004001d000000000303004b00000b380000613d000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f000000010220019000000a950000613d0000000102000029000000000202004b00000bd40000c13d0000000001000019000000030500002900000b400000013d000001000100008a000000000112016f000000030500002900000000001504350000000101000029000000000101004b000000200100003900000000010060190000000204000029000300000005001d000000000245004900000000011200190000001f01100039000000200200008a000000000321016f0000000001430019000000000331004b0000000003000019000000010300403900000cb90410009c00000bce0000213d000000010330019000000bce0000c13d000000400010043f000000020300002900000000030304330000000804000029000000000334004b000000000300001900000bbc0000c13d0000000803000029000000000303004b000000000300001900000bbc0000613d00000008030000290000003f03300039000000000223016f0000000002210019000000000312004b0000000003000019000000010300403900000cb90420009c00000bce0000213d000000010330019000000bce0000c13d0000000003000031000000400020043f000000080500002900000000025104360000000404000029000000000334004b000000070400002900000a950000213d0000001f0350018f0000000204400367000000050550027200000b7a0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000b720000413d000000000603004b00000b890000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000008030000290000000003320019000000000003043500000cb80300004100000cb80420009c00000000020380190000004002200210000000000101043300000cb80410009c00000000010380190000006001100210000000000121019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f000000010220019000000a950000613d00000cb802000041000000030400002900000cb80340009c0000000003020019000000000304401900000040033002100000000204000029000000000404043300000cb80540009c00000000040280190000006004400210000000000334019f000000000101043b000400000001001d000000000100041400000cb80410009c0000000001028019000000c001100210000000000131019f00000cc0011001c7000080100200003932da32d50000040f000000010220019000000a950000613d000000000101043b0000000402000029000000000112004b00000000030000190000000103006039000000010130018f32da23d30000040f00000000030000310000000701000029000000080200002932da0e130000040f000800000001001d00000000030000310000000a01000029000000050200002932da0e130000040f000000000401001900000009010000290000000802000029000000060300002932da24220000040f0000000001000019000032db0001042e00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000000201043b0000000001000019000000030500002900000001060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00000bd80000413d00000b400000013d000000000403004b00000bea0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b00000be30000413d00000000012300190000000000010435000000000001042d00000000030104330000000002320436000000000403004b00000bf90000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b00000bf20000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b00000c0f0000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000c080000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d00020000000000020000000001000416000000000101004b00000c2d0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000c2d0000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000c2f0000a13d0000000001000019000032dc00010430000000000100041a00000cbb011001970000000002000411000000000121004b00000c7d0000c13d00000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb8010000410000000002000414000200000003001d00000cb80320009c0000000001024019000000c00110021000000d38011001c7000080050200003932da32d50000040f000000010220019000000c2d0000613d000000000101043b00000d3a02000041000000000020043900000cbb01100197000100000001001d000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f0000000203000029000000010220019000000c2d0000613d000000000101043b000000000101004b00000c2d0000613d000000400500043d00000d3c0100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000c750000613d00000cb80400004100000cb80310009c000000000104801900000cb80350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000d29011001c7000200000005001d32da32d00000040f00000002050000290000000003010019000000600330027000010cb80030019d00000cb8043001970003000000010355000000010220019000000c910000613d00000d3d0150009c00000c8e0000413d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400050043f0000000001000019000032db0001042e000000400200043d0000001f0340018f000000050440027200000c9e0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000c960000413d000000000503004b00000cad0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc0001043000030000000000020000000001000416000000000101004b00000d370000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000d370000c13d00000002010003670000000402100370000000000202043b000300000002001d00000cbb0220009c00000d370000213d0000002401100370000000000101043b000200000001001d00000000001004350000000d01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000000d370000613d000000000101043b000000000101041a00000cbb0210019800000cf50000c13d000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300000000301000029000000000121004b00000d0d0000c13d000000400100043d000000640210003900000d3e030000410000000000320435000000440210003900000d3f03000041000000000032043500000024021000390000002103000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000001010000390000000004000411000000000324004b00000d310000613d000100000004001d00000000002004350000001001000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000000d370000613d000000000101043b000000010200002900000cbb022001970000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000000d370000613d000000000101043b000000000101041a000000ff0110018f32da25bc0000040f0000000301000029000000020200002932da28ca0000040f0000000001000019000032db0001042e0000000001000019000032dc0001043000020000000000020000000001000416000000000101004b00000d500000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00000d500000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000d520000a13d0000000001000019000032dc00010430000000000100041a00000cbb011001970000000002000411000000000121004b00000da00000c13d00000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb8010000410000000002000414000200000003001d00000cb80320009c0000000001024019000000c00110021000000d38011001c7000080050200003932da32d50000040f000000010220019000000d500000613d000000000101043b00000d3a02000041000000000020043900000cbb01100197000100000001001d000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f0000000203000029000000010220019000000d500000613d000000000101043b000000000101004b00000d500000613d000000400500043d00000d410100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000d980000613d00000cb80400004100000cb80310009c000000000104801900000cb80350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000d29011001c7000200000005001d32da32d00000040f00000002050000290000000003010019000000600330027000010cb80030019d00000cb8043001970003000000010355000000010220019000000db40000613d00000d3d0150009c00000db10000413d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400050043f0000000001000019000032db0001042e000000400200043d0000001f0340018f000000050440027200000dc10000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000db90000413d000000000503004b00000dd00000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc00010430000000040110008a00000cba020000410000005f0310008c0000000003000019000000000302201900000cba01100197000000000401004b000000000200801900000cba0110009c00000000010300190000000001026019000000000101004b00000df30000613d00000002030003670000000401300370000000000101043b00000cbb0210009c00000df30000213d0000002402300370000000000202043b00000cbb0420009c00000df30000213d0000004403300370000000000303043b000000000001042d0000000001000019000032dc0001043000000d420210009c00000dfa0000813d0000002001100039000000400010043f000000000001042d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b0000000002000019000000010200403900000cb90310009c00000e0d0000213d000000010220019000000e0d0000c13d000000400010043f000000000001042d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000000401001900000d3d0120009c00000e460000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b0000000006000019000000010600403900000cb90750009c00000e460000213d000000010660019000000e460000c13d000000400050043f00000000052104360000000006420019000000000336004b00000e4c0000213d0000001f0320018f0000000204400367000000050620027200000e340000613d000000000700001900000005087002100000000009850019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b00000e2c0000413d000000000703004b00000e430000613d0000000506600210000000000464034f00000000066500190000000303300210000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f000000000036043500000000022500190000000000020435000000000001042d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000000001000019000032dc0001043000000000030100190000001f0130003900000cba04000041000000000521004b0000000005000019000000000504401900000cba0620019700000cba01100197000000000761004b000000000400a019000000000161013f00000cba0110009c00000000010500190000000001046019000000000101004b00000e990000613d0000000201300367000000000401043b00000d3d0140009c00000e930000813d0000003f01400039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b0000000006000019000000010600403900000cb90750009c00000e930000213d000000010660019000000e930000c13d0000002006300039000000400050043f00000000034104360000000005640019000000000225004b00000e990000213d0000001f0240018f0000000205600367000000050640027200000e810000613d000000000700001900000005087002100000000009830019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00000e790000413d000000000702004b00000e900000613d0000000506600210000000000565034f00000000066300190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f000000000026043500000000024300190000000000020435000000000001042d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000000001000019000032dc000104300001000000000002000000040100008a0000000001100031000000010200008a00000cba03000041000000000221004b0000000002000019000000000203201900000cba0110019700000cba0410009c000000000300801900000cba0110016700000cba0110009c00000000010200190000000001036019000000000101004b00000ec80000613d000000000100041a00000cbb021001970000000001000411000000000112004b00000eca0000c13d000100000002001d00000d430100004100000000001004390000000001000410000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c70000800a0200003932da32d50000040f000000010220019000000ec80000613d000000000301043b00000000010004140000000105000029000000040250008c00000edb0000c13d0000000102000039000000010100003100000ef10000013d0000000001000019000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc0001043000000cb80200004100000cb80410009c0000000001028019000000c001100210000000000203004b00000ee80000c13d000000000205001932da32d00000040f0003000000010355000000600110027000010cb80010019d00000cb80110019700000ef10000013d00000cc0011001c700008009020000390000000004050019000000000500001932da32d00000040f0003000000010355000000600110027000010cb80010019d00000cb801100197000000000301004b00000ef70000c13d000000010120019000000f2b0000613d0000000001000019000032db0001042e00000d3d0310009c00000f250000813d0000003f03100039000000200400008a000000000443016f000000400300043d0000000004430019000000000534004b0000000005000019000000010500403900000cb90640009c00000f250000213d000000010550019000000f250000c13d000000400040043f0000000001130436000000030300036700000001050000310000001f0450018f000000050550027200000f150000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00000f0d0000413d000000000604004b00000ef30000613d0000000505500210000000000353034f00000000015100190000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000ef30000013d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d4403000041000000000032043500000024021000390000001403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000040210008a00000cba030000410000003f0420008c0000000004000019000000000403201900000cba02200197000000000502004b000000000300801900000cba0220009c00000000020400190000000002036019000000000202004b00000f6d0000613d00000002020003670000000403200370000000000403043b0000ffff0340008c00000f6d0000213d0000002403200370000000000503043b00000cb90350009c00000f6d0000213d000000230350003900000cba06000041000000000713004b0000000007000019000000000706801900000cba0810019700000cba03300197000000000983004b0000000006008019000000000383013f00000cba0330009c00000000030700190000000003066019000000000303004b00000f6d0000c13d0000000403500039000000000232034f000000000302043b00000cb90230009c00000f6d0000213d00000024025000390000000005230019000000000115004b00000f6d0000213d0000000001040019000000000001042d0000000001000019000032dc000104300000ffff0220018f0000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000000f7e0000613d000000000101043b000000000001042d0000000001000019000032dc0001043000040000000000020000000001000416000000000101004b00000fb30000c13d0000000001000031000000040210008a00000cba03000041000000400420008c0000000004000019000000000403401900000cba02200197000000000502004b000000000300a01900000cba0220009c00000000020400190000000002036019000000000202004b00000fb30000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000fb30000213d0000002403200370000000000303043b00000cb90430009c00000fb30000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00000fb30000c13d0000000404300039000000000242034f000000000402043b00000cb90240009c00000fb30000213d00000024053000390000000002540019000000000112004b00000fb50000a13d0000000001000019000032dc00010430000000000100041a00000cbb011001970000000002000411000000000121004b000010330000c13d00000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d38011001c70000800502000039000400000004001d000300000009001d000200000005001d32da32d50000040f000000010220019000000fb30000613d000000000101043b00000d3a02000041000000000020043900000cbb01100197000100000001001d000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f000000020400002900000003030000290000000408000029000000010220019000000fb30000613d000000000101043b000000000101004b00000fb30000613d000000400900043d00000024019000390000004002000039000000000021043500000d4501000041000000000019043500000004019000390000000000310435000000440190003900000000008104350000001f0280018f00000064019000390000000203400367000000050480027200000ffa0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000ff20000413d000000000502004b000010090000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c0000102b0000613d0000001f04800039000000200300008a000000000534016f00000d460300004100000d460450009c000000000503801900000cb80300004100000cb80490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f00000cb80410009c0000000001038019000000c001100210000000000115019f00000d2101100041000400000009001d32da32d00000040f00000004090000290000000003010019000000600330027000010cb80030019d00000cb80430019700030000000103550000000102200190000010470000613d00000d3d0190009c000010440000413d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400090043f0000000001000019000032db0001042e000000400200043d0000001f0340018f0000000504400272000010540000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000104c0000413d000000000503004b000010630000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc000104300000000001000416000000000101004b000010a90000c13d0000000004000031000000040140008a00000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000501004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b000010a90000c13d00000002010003670000000402100370000000000502043b00000cb90250009c000010a90000213d000000230250003900000cba03000041000000000642004b0000000006000019000000000603801900000cba0740019700000cba02200197000000000872004b0000000003008019000000000272013f00000cba0220009c00000000020600190000000002036019000000000202004b000010a90000c13d0000000402500039000000000121034f000000000201043b00000d3d0120009c000010d10000813d0000003f01200039000000200300008a000000000631016f000000400100043d0000000006610019000000000716004b0000000007000019000000010700403900000cb90860009c000010d10000213d0000000107700190000010d10000c13d0000002407500039000000400060043f00000000052104360000000006720019000000000446004b000010ab0000a13d0000000001000019000032dc000104300000001f0420018f00000002067003670000000507200272000010b80000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b000010b00000413d000000000804004b000010c70000613d0000000507700210000000000676034f00000000077500190000000304400210000000000807043300000000084801cf000000000848022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000484019f000000000047043500000000022500190000000000020435000000000200041a00000cbb022001970000000004000411000000000242004b000010d70000c13d000000000401043300000cb90240009c000010e80000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300000001402000039000000000602041a000000010760019000000001066002700000007f0860018f00000000060860190000001f0860008c00000000080000190000000108002039000000010880018f000000000787004b000010fa0000613d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc00010430000000200760008c0000110c0000413d0000001f07400039000000050770027000000d470770004100000d4708000041000000200940008c000000000708401900000000002004350000001f06600039000000050660027000000d4706600041000000000867004b0000110c0000813d000000000007041b0000000107700039000000000867004b000011080000413d0000001f0640008c0000112c0000a13d00000000002004350000000006340170000000200500003900000d47030000410000111e0000613d00000d47030000410000002005000039000000000700001900000000081500190000000008080433000000000083041b000000200550003900000001033000390000002007700039000000000867004b000011160000413d000000000646004b000011290000813d0000000306400210000000f80660018f000000010700008a000000000667022f000000000676013f00000000011500190000000001010433000000000161016f000000000013041b00000001010000390000000103400210000011360000013d000000000104004b0000000001000019000011300000613d00000000010504330000000303400210000000010500008a000000000335022f000000000353013f000000000331016f0000000101400210000000000113019f000000000012041b0000000001000019000032db0001042e00000cb9022001970000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000011490000613d000000000101043b000000000001042d0000000001000019000032dc00010430000b0000000000020000000001000416000000000101004b000011620000c13d0000000004000031000000040140008a00000cba02000041000000800310008c0000000003000019000000000302401900000cba01100197000000000501004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b000011620000c13d00000002010003670000000402100370000000000c02043b0000ffff02c0008c000011640000a13d0000000001000019000032dc000104300000002402100370000000000302043b00000cb90230009c000011620000213d000000230230003900000cba05000041000000000642004b0000000006000019000000000605801900000cba0740019700000cba02200197000000000872004b0000000005008019000000000272013f00000cba0220009c00000000020600190000000002056019000000000202004b000011620000c13d0000000402300039000000000221034f000000000202043b00000cb90520009c000011620000213d00000024063000390000000003620019000000000343004b000011620000213d0000004403100370000000000303043b00000cb90330009c000011620000213d0000006403100370000000000303043b00000cb90530009c000011620000213d000000230530003900000cba07000041000000000845004b0000000008000019000000000807801900000cba0940019700000cba05500197000000000a95004b0000000007008019000000000595013f00000cba0550009c00000000050800190000000005076019000000000505004b000011620000c13d0000000405300039000000000151034f000000000101043b00000cb90510009c000011620000213d00000024033000390000000005310019000000000445004b000011620000213d00000000040004100000000007000411000000000447004b000012a70000c13d0000003f04200039000000200e00008a0000000004e4016f000000400d00043d00000000044d00190000000007d4004b0000000007000019000000010700403900000cb90840009c000012a10000213d0000000107700190000012a10000c13d000000400040043f0000001f0720018f00000000042d043600000002066003670000000508200272000011bf0000613d0000000009000019000000050a900210000000000ba40019000000000aa6034f000000000a0a043b0000000000ab04350000000109900039000000000a89004b000011b70000413d000000000907004b000011ce0000613d0000000508800210000000000686034f00000000088400190000000307700210000000000908043300000000097901cf000000000979022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000696019f0000000000680435000000000224001900000000000204350000003f021000390000000002e2016f000000400700043d0000000002270019000000000472004b0000000004000019000000010400403900000cb90620009c000012a10000213d0000000104400190000012a10000c13d0000000004000031000000400020043f0000000009170436000000000245004b000011620000213d000b00000007001d000a0000000e001d00090000000d001d00080000000c001d0000001f0210018f00000002033003670000000504100272000011f10000613d000000000500001900000005065002100000000007690019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000011e90000413d000000000502004b000012000000613d0000000504400210000000000343034f00000000044900190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000000119001900000000000104350000000b01000029000000000101043300000cba02000041000000400310008c0000000003000019000000000302401900000cba04100197000000000504004b000000000200a01900000cba0440009c000000000203c019000000000202004b0000000a08000029000011620000c13d000000000209043300000cb90320009c000011620000213d000000000119001900000000029200190000001f0320003900000cba04000041000000000513004b0000000005000019000000000504801900000cba0330019700000cba06100197000000000763004b0000000004008019000000000363013f00000cba0330009c00000000030500190000000003046019000000000303004b000011620000c13d000700000009001d000000004302043400000cb90230009c000012a10000213d0000003f02300039000000000582016f000000400200043d0000000005520019000000000625004b0000000006000019000000010600403900000cb90750009c000012a10000213d0000000106600190000012a10000c13d000000400050043f00000000053204360000000006430019000000000616004b000011620000213d000000000603004b000012420000613d000000000600001900000000075600190000000008460019000000000808043300000000008704350000002006600039000000000736004b0000123b0000413d000000000335001900000000000304350000000b030000290000004003300039000000000303043300000cb90430009c0000000a090000290000000704000029000011620000213d00000000034300190000001f0430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0440019700000cba07100197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b000011620000c13d000000003403043400000cb90540009c000012a10000213d00000005054002100000003f06500039000000000696016f000000400700043d0000000006670019000600000007001d000000000776004b0000000007000019000000010700403900000cb90860009c000012a10000213d0000000107700190000012a10000c13d000000400060043f000000060600002900000000004604350000000004350019000000000114004b000011620000213d000000000143004b000012790000813d0000000601000029000000200110003900000000350304340000000000510435000000000543004b000012740000413d00000014012000390000000001010433000500000001001d000000060200002932da30200000040f00000006020000290000000002020433000400000001001d000000000121004b00000009060000290000000b030000290000000704000029000013290000813d00000cb80100004100000cb80240009c000000000201001900000000020440190000004002200210000000000303043300000cb80430009c00000000030180190000006003300210000000000223019f000000000300041400000cb80430009c0000000001034019000000c001100210000000000121019f00000cc0011001c7000080100200003932da32d50000040f00000008030000290000000102200190000011620000613d000000000101043b000700000001001d000000400100043d000300000001001d00000d4a0110009c000012bc0000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000640210003900000d48030000410000000000320435000000440210003900000d4903000041000000000032043500000024021000390000002603000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000003040000290000008001400039000000400010043f00000060024000390000000101000039000200000002001d000000000012043500000040024000390000000401000029000100000002001d00000000001204350000ffff0130018f0000000002140436000000050100002900000cbb01100197000400000002001d0000000000120435000000070100002900000000001004350000000a01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000b070000290000000102200190000011620000613d000000030200002900000000020204330000ffff0220018f000000000101043b000000000301041a00000d4b04300197000000000424019f000000000041041b00000d4c03300197000000000223019f00000004030000290000000003030433000000100330021000000d4d03300197000000000232019f000000000021041b000000010200002900000000020204330000000103100039000000000023041b0000000201100039000001000200008a000000000301041a000000000223016f00000002030000290000000003030433000000000303004b0000000003000019000000010300c039000000000232019f000000000021041b0000004002000039000000400100043d00000020031000390000000000230435000000070200002900000000002104350000000002070433000000400310003900000000002304350000006003100039000000000402004b0000130f0000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000013080000413d000000000332001900000000000304350000007f022000390000000a03000029000000000232016f00000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c70000800d02000039000000010300003900000d4e0400004132da32d00000040f00000001012001900000000906000029000011620000613d000000400200043d0000000001060433000000000301004b000013350000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b0000132e0000413d0000000003210019000000000003043500000cb80300004100000cb80420009c0000000002038019000000400220021000000cb80410009c00000000010380190000006001100210000000000121019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f00000001022001900000000804000029000011620000613d000000000601043b000000400100043d0000002002000039000000000221043600000006090000290000000003090433000000000032043500000040021000390000ffff0540018f000000050400002900000cbb07400197000000000403004b0000135e0000613d00000000040000190000002009900039000000000809043300000000028204360000000104400039000000000834004b000013580000413d000000000212004900000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000121019f00000cc0011001c70000800d02000039000000040300003900000d4f0400004132da32d00000040f0000000101200190000011620000613d0000000001000019000032db0001042e0000001404000039000000000304041a000000010530019000000001023002700000007f0620018f00000000020660190000001f0620008c00000000060000190000000106002039000000010660018f000000000665004b0000139a0000c13d0000000001210436000000000505004b000013920000613d0000000000400435000000000302004b0000000003000019000013980000613d00000d470400004100000000030000190000000005310019000000000604041a000000000065043500000001044000390000002003300039000000000523004b0000138a0000413d000013980000013d000001000400008a000000000343016f0000000000310435000000000202004b000000200300003900000000030060190000000001310019000000000001042d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc000104300002000000000002000000000301041a000000010430019000000001053002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000010550018f000000000554004b000013d50000c13d0000000005620436000000000204004b000013ca0000613d000200000006001d000100000005001d000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f0000000102200190000013db0000613d0000000206000029000000000206004b000013d10000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000013c20000413d000013d30000013d000001000100008a000000000113016f0000000000150435000000000106004b00000020010000390000000001006019000013d30000013d000000000100001900000001050000290000000001150019000000000001042d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc000104300000000001000019000032dc00010430000d0000000000020000000001000416000000000101004b000013ef0000c13d0000000002000031000000040120008a00000cba03000041000000200410008c0000000004000019000000000403401900000cba01100197000000000501004b000000000300a01900000cba0110009c00000000010400190000000001036019000000000101004b000013f10000613d0000000001000019000032dc0001043000000002010003670000000403100370000000000303043b00000cb90430009c000013ef0000213d000000230430003900000cba05000041000000000624004b0000000006000019000000000605801900000cba0720019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b000013ef0000c13d0000000404300039000000000141034f000000000101043b00000d3d0410009c000014b70000813d0000003f04100039000000200800008a000000000484016f000000400900043d0000000004490019000000000594004b0000000005000019000000010500403900000cb90640009c000014b70000213d0000000105500190000014b70000c13d0000002403300039000000400040043f000000000a1904360000000004310019000000000224004b000013ef0000213d0000001f0210018f00000002033003670000000504100272000014290000613d0000000005000019000000050650021000000000076a0019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000014210000413d000000000502004b000014380000613d0000000504400210000000000343034f00000000044a00190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000000011a001900000000000104350000000602000039000000000102041a000000020110008c000014500000c13d000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300000000201000039000a00000002001d000000000012041b00000cb80100004100000cb802a0009c000000000201001900000000020a40190000004002200210000000000309043300000cb80430009c00000000030180190000006003300210000000000223019f000000000300041400000cb80430009c0000000001034019000000c001100210000000000121019f00000cc0011001c70000801002000039000d00000008001d000c00000009001d000b0000000a001d32da32d50000040f0000000102200190000013ef0000613d000000000101043b000800000001001d00000000001004350000000a01000039000700000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000b060000290000000c030000290000000d080000290000000102200190000013ef0000613d000000000101043b0000000201100039000000000101041a000000ff01100190000014940000c13d000000400100043d000000440210003900000d5b03000041000000000032043500000024021000390000001103000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000000103043300000cba02000041000000400310008c0000000003000019000000000302401900000cba04100197000000000504004b000000000200a01900000cba0440009c000000000203c019000000000202004b000013ef0000c13d000000000206043300000cb90320009c000013ef0000213d000000000116001900000000026200190000001f0320003900000cba04000041000000000513004b0000000005000019000000000504801900000cba0330019700000cba06100197000000000763004b0000000004008019000000000363013f00000cba0330009c00000000030500190000000003046019000000000303004b000013ef0000c13d000000003202043400000cb90420009c000014bd0000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000003f04200039000000000584016f000000400400043d0000000005540019000000000645004b0000000006000019000000010600403900000cb90750009c000014b70000213d0000000106600190000014b70000c13d000000400050043f00000000042404360000000005320019000000000515004b000013ef0000213d000000000502004b000014d70000613d000000000500001900000000064500190000000007350019000000000707043300000000007604350000002005500039000000000625004b000014d00000413d000000000224001900000000000204350000000c020000290000004002200039000000000202043300000cb90320009c0000000d080000290000000b03000029000013ef0000213d00000000023200190000001f0320003900000cba04000041000000000513004b0000000005000019000000000504801900000cba0330019700000cba06100197000000000763004b0000000004008019000000000363013f00000cba0330009c00000000030500190000000003046019000000000303004b000013ef0000c13d000000002302043400000cb90430009c000014b70000213d00000005043002100000003f05400039000000000585016f000000400600043d0000000005560019000600000006001d000000000665004b0000000006000019000000010600403900000cb90750009c000014b70000213d0000000106600190000014b70000c13d000000400050043f00000006050000290000000003350436000200000003001d0000000003240019000000000113004b000013ef0000213d000000000132004b0000150f0000813d0000000601000029000000200110003900000000240204340000000000410435000000000432004b0000150a0000413d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000101200190000013ef0000613d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a000d00000001001d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000d03000029000000100330027000000cbb03300197000b00000003001d0000000102200190000013ef0000613d000000000101043b0000000101100039000000000301041a00000006010000290000000001010433000000000131004b000016b10000a13d0000000701000039000100000001001d0000000d01000039000c00000001001d0000801001000039000400000001001d000015540000013d0000000503000029000000010330003900000006010000290000000001010433000000000113004b000016b10000813d00000000010004140000000102000029000000000202041a000000000121004b000016b10000413d00000006010000290000000001010433000000000131004b0000178e0000a13d000500000003001d0000000501300210000000020200002900000000011200190000000001010433000d00000001001d00000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000000040200002932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb011001980000000001000410000900000001001d0000159d0000613d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb01100198000013ef0000613d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb01100198000017670000613d0000000902000029000000000121004b000013ef0000c13d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000000040200002932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb01100198000016380000613d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb02100198000017670000613d000000090100002900000cbb01100197000000000112004b000017790000c13d000900000002001d0000000b01000029000000000101004b000017a60000613d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb011001980000000902000029000017670000613d000000000121004b000017790000c13d0000000d0100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000201041a00000cbf02200197000000000021041b000000090100002900000000001004350000000e01000039000300000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000b0100002900000000001004350000000301000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000201041a00000cbf022001970000000b06000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d520400004100000009050000290000000d0700002932da32d00000040f00000001012001900000154e0000c13d000013ef0000013d000000400200043d00000d550120009c000014b70000213d0000002001200039000000400010043f000900000002001d00000000000204350000000b01000029000000000101004b000017bb0000613d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb01100198000017940000c13d0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000101041a00000cbb01100198000017940000c13d0000000b0100002900000000001004350000000e01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000d0100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b000000000201041a00000cbf022001970000000b06000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d520400004100000000050000190000000d0700002932da32d00000040f0000000101200190000013ef0000613d0000000b010000290000000d02000029000000090300002932da29170000040f000000000101004b0000154e0000c13d000000400200043d000d00000002001d00000cc7010000410000000000120435000000040120003932da277b0000040f0000000d04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032dc00010430000500000003001d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000000101043b0000000101100039000000000101041a0000000502000029000000000112004b000016f50000a13d00000006010000290000000001010433000d00000001001d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000005030000290000000d04000029000000000343004b0000170a0000c13d0000000102200190000013ef0000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000201100039000000000001041b000000400100043d0000000802000029000000000021043500000cb802000041000000000300041400000cb80430009c000000000302801900000cb80410009c00000000010280190000004001100210000000c002300210000000000112019f00000cc2011001c70000800d02000039000000010300003900000d5a0400004132da32d00000040f0000000101200190000017620000c13d000013ef0000013d000000400100043d000000640210003900000d58030000410000000000320435000000440210003900000d5903000041000000000032043500000024021000390000002903000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc000104300000000102200190000013ef0000613d000000000101043b000000000101041a000d00000001001d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d000000400200043d000c00000002001d00000d4a0220009c000014b70000213d0000000d020000290000ffff0220018f000000000101043b000000000101041a0000000c050000290000008003500039000000400030043f00000060045000390000000103000039000d00000004001d000000000034043500000040045000390000000503000029000b00000004001d00000000003404350000000002250436000000100110027000000cbb01100197000900000002001d0000000000120435000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000013ef0000613d0000000c0200002900000000020204330000ffff0220018f000000000101043b000000000301041a00000d4b04300197000000000424019f000000000041041b00000d4c03300197000000000223019f00000009030000290000000003030433000000100330021000000d4d03300197000000000232019f000000000021041b0000000b0200002900000000020204330000000103100039000000000023041b0000000201100039000001000200008a000000000301041a000000000223016f0000000d030000290000000003030433000000000303004b0000000003000019000000010300c039000000000232019f000000000021041b00000001010000390000000a02000029000000000012041b0000000001000019000032db0001042e000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d50030000410000000000320435000000440210003900000d5103000041000000000032043500000024021000390000002503000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000d280100004100000000001004350000003201000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001c03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d53030000410000000000320435000000440210003900000d5403000041000000000032043500000024021000390000002403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000440210003900000d5703000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc0001043000020000000000020000000001000416000000000101004b000017e30000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b000017e30000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c000017e50000a13d0000000001000019000032dc000104300000002401100370000000000401043b000000000100041a00000cbb011001970000000002000411000000000121004b000018030000c13d000000000104004b000018140000c13d000000400100043d000000640210003900000d5e030000410000000000320435000000440210003900000d5f03000041000000000032043500000024021000390000002203000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000100000004001d00000000003004350000000801000039000000200010043f00000cb8010000410000000002000414000200000003001d00000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000002030000290000000102200190000017e30000613d000000000101043b0000000104000029000000000041041b000000400100043d00000020021000390000000000420435000000000031043500000cb802000041000000000300041400000cb80430009c000000000302801900000cb80410009c00000000010280190000004001100210000000c002300210000000000112019f00000d1f011001c70000800d02000039000000010300003900000d5d0400004132da32d00000040f0000000101200190000017e30000613d0000000001000019000032db0001042e00030000000000020000000001000416000000000101004b0000188c0000c13d000000040100008a000000000110003100000cba02000041000000200310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b0000188c0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c0000188c0000213d00000000001004350000000101000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000188c0000613d000000000601043b000000000206041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000018730000613d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc00010430000000400100043d0000000007510436000000000303004b0000188e0000613d000300000005001d000100000007001d000200000001001d000000000060043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f00000001022001900000188c0000613d0000000306000029000000000206004b000018c50000c13d000000000500001900000002010000290000000107000029000018940000013d0000000001000019000032dc00010430000001000300008a000000000232016f0000000000270435000000000205004b00000020050000390000000005006019000000000217004900000000025200190000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b0000000002000019000000010200403900000cb90340009c000018b70000213d0000000102200190000018b70000c13d000000400040043f0000000002010433000000000302004b000018bd0000c13d000000440240003900000d6003000041000000000032043500000024024000390000001d03000039000000000032043500000cc702000041000000000024043500000004024000390000002003000039000000000032043500000cb80200004100000cb80340009c00000000010200190000000001044019000000400110021000000d21011001c7000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000130320008c000018d10000213d00000d280100004100000000001004350000001101000039000000040010043f00000d2901000041000032dc00010430000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000365004b000018c90000413d000018940000013d000000140220008a32da23eb0000040f0000000002010019000000400100043d000300000001001d32da0c000000040f0000000304000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e00030000000000020000000001000416000000000101004b000019500000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b000019500000c13d00000002010003670000000402100370000000000402043b00000cbb0240009c000019500000213d0000002401100370000000000501043b000000000105004b0000000001000019000000010100c039000000000115004b000019500000c13d0000000002000411000000000142004b000019150000c13d000000400100043d000000440210003900000d6203000041000000000032043500000024021000390000001903000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000100000002001d00000000002004350000001001000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c70000801002000039000300000004001d000200000005001d32da32d50000040f00000003030000290000000102200190000019500000613d000000000101043b0000000000300435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000020400002900000003060000290000000102200190000019500000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000242019f000000000021041b000000400100043d000000000041043500000cb802000041000000000300041400000cb80430009c000000000302801900000cb80410009c00000000010280190000004001100210000000c002300210000000000112019f00000cc2011001c70000800d02000039000000030300003900000d6104000041000000010500002932da32d00000040f0000000101200190000019500000613d0000000001000019000032db0001042e0000000001000019000032dc00010430000b0000000000020000000001000416000000000101004b000019690000c13d0000000001000031000000040210008a00000cba03000041000000400420008c0000000004000019000000000403401900000cba02200197000000000502004b000000000300a01900000cba0220009c00000000020400190000000002036019000000000202004b000019690000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c0000196b0000a13d0000000001000019000032dc000104300000002403200370000000000303043b00000cb90430009c000019690000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b000019690000c13d0000000404300039000000000442034f000000000504043b00000cb90450009c000019690000213d00000024083000390000000003850019000000000113004b000019690000213d000000400a00043d000000000100041a00000cbb011001970000000003000411000000000131004b000019e30000c13d000000000182034f0000001f0650018f000000200ba0003900000005075002720000199b0000613d0000000002000019000000050320021000000000043b0019000000000331034f000000000303043b00000000003404350000000102200039000000000372004b000019930000413d000000000206004b000019aa0000613d0000000502700210000000000121034f00000000022b00190000000303600210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000000015b0019000000000200041000000060022002100000000000210435000000140150003900000000001a04350000005301500039000000200400008a000000000141016f00000000011a00190000000002a1004b0000000002000019000000010200403900000cb90310009c000019dd0000213d0000000102200190000019dd0000c13d00050000000b001d00040000000a001d000800000004001d000600000007001d000700000006001d000000400010043f00000000009004350000000101000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c70000801002000039000b00000005001d000a00000009001d000900000008001d32da32d50000040f00000009050000290000000a040000290000000b070000290000000102200190000019690000613d000000000601043b0000000401000029000000000c01043300000cb901c0009c00000007080000290000000609000029000000080a000029000000050b000029000019f30000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000004401a0003900000d2f02000041000000000021043500000cc70100004100000000001a04350000002401a00039000000200200003900000000002104350000000401a00039000000000021043500000cb80100004100000cb802a0009c00000000010a4019000000400110021000000d21011001c7000032dc00010430000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b00001a040000613d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc00010430000000200130008c00001a2d0000413d000100000003001d00020000000c001d000300000006001d000000000060043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f00000009050000290000000a040000290000000b070000290000000102200190000019690000613d000000020c0000290000001f02c0003900000005022002700000002003c0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000007080000290000000609000029000000080a0000290000000306000029000000050b00002900001a2d0000813d000000000002041b0000000102200039000000000312004b00001a290000413d0000001f01c0008c00001a620000a13d00020000000c001d000300000006001d000000000060043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f0000000102200190000019690000613d0000000802000029000000020700002900000000032701700000002002000039000000000101043b000000040600002900001a4d0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b00001a450000413d000000000373004b00001a580000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000b070000290000000a04000029000000070800002900000006090000290000000905000029000000080a000029000000030600002900001a6d0000013d00000000010c004b000000000100001900001a660000613d00000000010b04330000000302c00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102c00210000000000121019f000000000016041b000000400100043d00000020021000390000004003000039000000000032043500000000004104350000004002100039000000000072043500000060021000390000000203500367000000000409004b00001a820000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b00001a7a0000413d000000000408004b00001a910000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f00000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c70000800d02000039000000010300003900000d630400004132da32d00000040f0000000101200190000019690000613d0000000001000019000032db0001042e00060000000000020000000002000031000000040120008a00000cba03000041000000df0410008c0000000004000019000000000403201900000cba01100197000000000501004b000000000300801900000cba0110009c00000000010400190000000001036019000000000101004b00001b4f0000613d00000002010003670000000403100370000000000a03043b00000cbb03a0009c00001b4f0000213d0000002403100370000000000b03043b0000ffff03b0008c00001b4f0000213d0000004403100370000000000403043b00000cb90340009c00001b4f0000213d000000230340003900000cba05000041000000000623004b0000000006000019000000000605801900000cba0720019700000cba03300197000000000873004b0000000005008019000000000373013f00000cba0330009c00000000030600190000000003056019000000000303004b00001b4f0000c13d0000000403400039000000000131034f000000000301043b00000d3d0130009c00001b510000813d0000003f05300039000000200100008a000000000515016f000000400c00043d00000000055c00190000000006c5004b0000000006000019000000010600403900000cb90750009c00001b510000213d000000010660019000001b510000c13d0000002406400039000000400050043f00000000043c04360000000005630019000000000225004b00001b4f0000213d0000001f0230018f0000000205600367000000050630027200001afa0000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00001af20000413d000000000702004b00001b090000613d0000000506600210000000000565034f00000000066400190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f00000000002604350000000002340019000000000002043500000002040003670000006402400370000000000202043b00000cb90320009c00001b4f0000213d0000002305200039000000000300003100000cba06000041000000000735004b0000000007000019000000000706801900000cba0550019700000cba08300197000000000985004b0000000006008019000000000585013f00000cba0550009c00000000050700190000000005066019000000000505004b00001b4f0000c13d0000000405200039000000000454034f000000000404043b00000cb90540009c00001b510000213d00000005054002100000003f06500039000000000116016f000000400800043d0000000001180019000000000681004b0000000006000019000000010600403900000cb90710009c00001b510000213d000000010660019000001b510000c13d000000400010043f000000000048043500000024012000390000000002150019000000000332004b00001b4f0000213d000000000304004b00001b410000613d00000000030800190000000204100367000000000404043b000000200330003900000000004304350000002001100039000000000421004b00001b3a0000413d00000002010003670000008402100370000000000302043b00000cbb0230009c00001b4f0000213d000000a402100370000000000202043b000600000002001d00000cbb0220009c00001b4f0000213d000000c401100370000000000101043b00000cb90210009c00001b570000a13d0000000001000019000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000000002000031000000040110003900010000000a001d00020000000b001d00030000000c001d000400000008001d000500000003001d32da0e4e0000040f000000000701001900000001010000290000000202000029000000030300002900000004040000290000000505000029000000060600002932da2bf20000040f0000000001000019000032db0001042e00050000000000020000000001000416000000000101004b00001ba00000c13d0000000001000031000000040210008a00000cba03000041000000800420008c0000000004000019000000000403401900000cba02200197000000000502004b000000000300a01900000cba0220009c00000000020400190000000002036019000000000202004b00001ba00000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00001ba00000213d0000002403200370000000000a03043b0000ffff03a0008c00001ba00000213d0000006403200370000000000303043b00000cb90430009c00001ba00000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00001ba00000c13d0000000404300039000000000242034f000000000402043b00000cb90240009c00001ba00000213d00000024053000390000000002540019000000000112004b00001ba20000a13d0000000001000019000032dc00010430000000000100041a00000cbb011001970000000002000411000000000121004b00001c290000c13d00000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d38011001c70000800502000039000500000004001d000400000009001d00030000000a001d000200000005001d32da32d50000040f000000010220019000001ba00000613d000000000101043b00000d3a02000041000000000020043900000cbb01100197000100000001001d000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f0000000205000029000000030400002900000004030000290000000508000029000000010220019000001ba00000613d000000000101043b000000000101004b00001ba00000613d000000400900043d0000002401900039000000000041043500000d640100004100000000001904350000000401900039000000000031043500000044010000390000000201100367000000000101043b00000064029000390000008003000039000000000032043500000044029000390000000000120435000000840190003900000000008104350000001f0280018f000000a4019000390000000203500367000000050480027200001bf00000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00001be80000413d000000000502004b00001bff0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00001c210000613d0000001f04800039000000200300008a000000000534016f00000d650300004100000d650450009c000000000503801900000cb80300004100000cb80490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f00000cb80410009c0000000001038019000000c001100210000000000115019f00000d6601100041000500000009001d32da32d00000040f00000005090000290000000003010019000000600330027000010cb80030019d00000cb8043001970003000000010355000000010220019000001c3d0000613d00000d3d0190009c00001c3a0000413d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400090043f0000000001000019000032db0001042e000000400200043d0000001f0340018f000000050440027200001c4a0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001c420000413d000000000503004b00001c590000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc0001043000020000000000020000000001000416000000000101004b00001c7a0000c13d000000040100008a000000000110003100000cba02000041000000400310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b00001c7a0000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c00001c7c0000a13d0000000001000019000032dc000104300000002401100370000000000401043b000000000100041a00000cbb011001970000000002000411000000000121004b00001c9a0000c13d000000000104004b00001cab0000c13d000000400100043d000000640210003900000d68030000410000000000320435000000440210003900000d6903000041000000000032043500000024021000390000002303000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000100000004001d00000000003004350000000901000039000000200010043f00000cb8010000410000000002000414000200000003001d00000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000203000029000000010220019000001c7a0000613d000000000101043b0000000104000029000000000041041b000000400100043d00000020021000390000000000420435000000000031043500000cb802000041000000000300041400000cb80430009c000000000302801900000cb80410009c00000000010280190000004001100210000000c002300210000000000112019f00000d1f011001c70000800d02000039000000010300003900000d670400004132da32d00000040f000000010120019000001c7a0000613d0000000001000019000032db0001042e00110000000000020000000001000031000000040210008a00000cba030000410000007f0420008c0000000004000019000000000403201900000cba02200197000000000502004b000000000300801900000cba0220009c00000000020400190000000002036019000000000202004b00001ce80000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c00001cea0000a13d0000000001000019000032dc000104300000002403200370000000000303043b00000cb90430009c00001ce80000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00001ce80000c13d0000000404300039000000000442034f000000000904043b00000cb90490009c00001ce80000213d000000240c300039000000000dc9001900000000031d004b00001ce80000213d0000004403200370000000000a03043b00000cb903a0009c00001ce80000213d0000006403200370000000000303043b00000cb90430009c00001ce80000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00001ce80000c13d0000000404300039000000000242034f000000000402043b00000cb90240009c00001ce80000213d0000002402300039001000000002001d0000000002240019001100000002001d000000000112004b00001ce80000213d0000000000b004350000000501000039000a00000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c70000801002000039000e00000009001d000d0000000a001d000b0000000b001d000f0000000c001d000c00000004001d00090000000d001d32da32d50000040f0000000f030000290000000e07000029000000010220019000001ce80000613d000000400200043d0000001f0870018f0000000203300367000000000101043b000000050970027200001d4d0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b00001d450000413d000000000408004b00001d5c0000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000800000009001d000700000008001d0000000003720019000000000013043500000d6a0100004100000d6a0370009c000000000107401900000cb803000041000000000400041400000cb80540009c000000000403801900000cb80520009c00000000020380190000004002200210000000600110021000000d1c01100041000600000001001d000000000112019f000000c002400210000000000112019f00000cc0011001c7000080100200003932da32d50000040f00000001022001900000000d0200002900001ce80000613d000000000101043b0000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000c06000029000000010220019000001ce80000613d000000000101043b000000000201041a000000000102004b00001d9d0000c13d000000400100043d000000640210003900000d6e030000410000000000320435000000440210003900000d6f03000041000000000032043500000024021000390000002303000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000500000002001d0000003f01600039000000200500008a000000000251016f000000400100043d000400000002001d0000000002210019000000000312004b0000000003000019000000010300403900000cb90420009c00001eda0000213d000000010330019000001eda0000c13d000200000005001d0000000003000031000000400020043f00000000026104360000001104000029000000000334004b00001ce80000213d0000001f0360018f000300000003001d00000010030000290000000203300367000000050760027200001dc10000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001db90000413d000100000007001d0000000304000029000000000404004b00001dd40000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c030000290000000003320019000000000003043500000cb80300004100000cb80420009c00000000020380190000004002200210000000000101043300000cb80410009c00000000010380190000006001100210000000000121019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f000000010220019000001ce80000613d000000000101043b0000000502000029000000000121004b00001ee00000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000000f0300002900001ce80000613d000000400200043d0000000203300367000000000101043b0000000807000029000000000407004b00001e0c0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001e040000413d0000000704000029000000000404004b00001e1e0000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000003320019000000000013043500000cb80100004100000cb80320009c000000000201801900000040022002100000000603000029000000000232019f000000000300041400000cb80430009c0000000001034019000000c001100210000000000121019f00000cc0011001c7000080100200003932da32d50000040f00000001022001900000000d0200002900001ce80000613d000000000101043b0000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000009060000290000000f050000290000000e04000029000000010220019000001ce80000613d000000000101043b000000000001041b0000003f014000390000000202000029000000000121016f000000400200043d0000000001120019000a00000002001d000000000221004b0000000002000019000000010200403900000cb90310009c00001eda0000213d000000010220019000001eda0000c13d0000000002000031000000400010043f0000000a010000290000000001410436000000000226004b00001ce80000213d00000002025003670000000806000029000000000306004b00001e640000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b00001e5c0000413d0000000703000029000000000303004b00001e760000613d00000008030000290000000503300210000000000232034f000000000331001900000007040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000e0200002900000000012100190000000000010435000000400200043d00000004010000290000000001120019000900000002001d000000000221004b0000000002000019000000010200403900000cb90310009c0000000c0300002900001eda0000213d000000010220019000001eda0000c13d0000000002000031000000400010043f00000009010000290000000001310436000600000001001d0000001101000029000000000121004b00001ce80000213d000000100100002900000002011003670000000105000029000000000205004b000000060600002900001e9c0000613d000000000200001900000005032002100000000004360019000000000331034f000000000303043b00000000003404350000000102200039000000000352004b00001e940000413d0000000302000029000000000202004b00001eaf0000613d00000001020000290000000502200210000000000121034f0000000603000029000000000223001900000003030000290000000303300210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001204350000000c010000290000000602000029000000000112001900000000000104350000000901000029000000000101043300000cba02000041000000400310008c0000000003000019000000000302401900000cba04100197000000000504004b000000000200a01900000cba0440009c000000000203c019000000000202004b00001ce80000c13d0000000602000029000000000202043300000cb90320009c00001ce80000213d0000000603000029000000000131001900000000023200190000001f0320003900000cba04000041000000000513004b0000000005000019000000000504801900000cba0330019700000cba06100197000000000763004b0000000004008019000000000363013f00000cba0330009c00000000030500190000000003046019000000000303004b00001ce80000c13d000000004302043400000cb90230009c000000020500002900001ef50000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000640210003900000d6b030000410000000000320435000000440210003900000d6c03000041000000000032043500000024021000390000002103000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc000104300000003f02300039000000000552016f000000400200043d0000000005520019000000000625004b0000000006000019000000010600403900000cb90750009c00001eda0000213d000000010660019000001eda0000c13d000000400050043f00000000053204360000000006430019000000000616004b00001ce80000213d000000000603004b00001f0f0000613d000000000600001900000000075600190000000008460019000000000808043300000000008704350000002006600039000000000736004b00001f080000413d0000000003350019000000000003043500000009030000290000004003300039000000000303043300000cb90430009c00001ce80000213d000000060400002900000000034300190000001f0430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0440019700000cba07100197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b00001ce80000c13d000000003403043400000cb90540009c000000020700002900001eda0000213d00000005054002100000003f06500039000000000676016f000000400700043d0000000006670019001100000007001d000000000776004b0000000007000019000000010700403900000cb90860009c00001eda0000213d000000010770019000001eda0000c13d000000400060043f000000110600002900000000004604350000000004350019000000000114004b00001ce80000213d000000000143004b00001f460000813d0000001101000029000000200110003900000000350304340000000000510435000000000543004b00001f410000413d00000014012000390000000001010433001000000001001d000000110200002932da30200000040f00000011020000290000000002020433000c00000001001d000000000121004b00001fd90000813d00000cb801000041000000060300002900000cb80230009c0000000002010019000000000203401900000040022002100000000903000029000000000303043300000cb80430009c00000000030180190000006003300210000000000223019f000000000300041400000cb80430009c0000000001034019000000c001100210000000000121019f00000cc0011001c7000080100200003932da32d50000040f0000000b03000029000000010220019000001ce80000613d000000000101043b000600000001001d000000400100043d000400000001001d00000d4a0110009c00001eda0000213d00000004040000290000008001400039000000400010043f00000060024000390000000101000039000300000002001d000000000012043500000040024000390000000c01000029000100000002001d00000000001204350000000002340436000000100100002900000cbb01100197000c00000002001d0000000000120435000000060100002900000000001004350000000a01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000001ce80000613d000000040200002900000000020204330000ffff0220018f000000000101043b000000000301041a00000d4b04300197000000000424019f000000000041041b00000d4c03300197000000000223019f0000000c030000290000000003030433000000100330021000000d4d03300197000000000232019f000000000021041b000000010200002900000000020204330000000103100039000000000023041b0000000201100039000001000200008a000000000301041a000000000223016f00000003030000290000000003030433000000000303004b0000000003000019000000010300c039000000000232019f000000000021041b0000004002000039000000400100043d000000200310003900000000002304350000000602000029000000000021043500000009020000290000000002020433000000400310003900000000002304350000006003100039000000000402004b00001fc00000613d0000000004000019000000000534001900000020044000390000000906000029000000000664001900000000060604330000000000650435000000000524004b00001fb80000413d000000000332001900000000000304350000007f022000390000000203000029000000000232016f00000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c70000800d02000039000000010300003900000d4e0400004132da32d00000040f000000010120019000001ce80000613d000000400200043d0000000a010000290000000001010433000000000301004b00001fe70000613d0000000003000019000000000423001900000020033000390000000a05000029000000000553001900000000050504330000000000540435000000000413004b00001fdf0000413d0000000003210019000000000003043500000cb80300004100000cb80420009c0000000002038019000000400220021000000cb80410009c00000000010380190000006001100210000000000121019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f000000010220019000001ce80000613d000000000601043b000000400100043d000000200200003900000000022104360000001103000029000000000303043300000000003204350000004002100039000000100400002900000cbb07400197000000000403004b000020100000613d000000000400001900000011050000290000002005500039001100000005001d000000000505043300000000025204360000000104400039000000000534004b000020080000413d000000000212004900000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000121019f00000cc0011001c70000800d02000039000000040300003900000d4f040000410000000b0500002932da32d00000040f0000000b0500002900000001012001900000000e040000290000000f0600002900001ce80000613d000000400100043d000000200210003900000080030000390000000000320435000000000051043500000080021000390000000000420435000000a00210003900000002036003670000000804000029000000000404004b0000203f0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b000000000056043500000001044000390000000805000029000000000554004b000020360000413d0000000704000029000000000404004b000020510000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000002320019000000000002043500000060021000390000000504000029000000000042043500000040021000390000000d040000290000000000420435000000bf023000390000000203000029000000000232016f00000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c70000800d02000039000000010300003900000d6d0400004132da32d00000040f000000010120019000001ce80000613d0000000001000019000032db0001042e00030000000000020000000001000416000000000101004b0000208e0000c13d000000040100008a000000000110003100000cba02000041000000600310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b0000208e0000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c0000208e0000213d0000002402100370000000000402043b0000ffff0240008c000020900000a13d0000000001000019000032dc000104300000004401100370000000000501043b000000000100041a00000cbb011001970000000002000411000000000121004b000020ab0000c13d000000000105004b000020bc0000c13d000000400100043d000000440210003900000d7203000041000000000032043500000024021000390000001503000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000100000005001d00000000003004350000000201000039000000200010043f00000cb8010000410000000002000414000200000003001d00000cb80320009c0000000001024019000000c00110021000000d1f011001c70000801002000039000300000004001d32da32d50000040f000000030300002900000001022001900000208e0000613d000000000101043b0000000000300435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000304000029000000020300002900000001022001900000208e0000613d000000000101043b0000000105000029000000000051041b000000400100043d0000004002100039000000000052043500000020021000390000000000420435000000000031043500000cb802000041000000000300041400000cb80430009c000000000302801900000cb80410009c00000000010280190000004001100210000000c002300210000000000112019f00000d70011001c70000800d02000039000000010300003900000d710400004132da32d00000040f00000001012001900000208e0000613d0000000001000019000032db0001042e00050000000000020000000001000416000000000101004b0000210e0000c13d0000000001000031000000040210008a00000cba03000041000000400420008c0000000004000019000000000403401900000cba02200197000000000502004b000000000300a01900000cba0220009c00000000020400190000000002036019000000000202004b0000210e0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000021100000a13d0000000001000019000032dc000104300000002403200370000000000303043b00000cb90430009c0000210e0000213d000000230430003900000cba05000041000000000614004b0000000006000019000000000605801900000cba0710019700000cba04400197000000000874004b0000000005008019000000000474013f00000cba0440009c00000000040600190000000004056019000000000404004b0000210e0000c13d0000000404300039000000000242034f000000000402043b00000cb90240009c0000210e0000213d00000024053000390000000002540019000000000112004b0000210e0000213d000000000100041a00000cbb011001970000000002000411000000000121004b000021560000c13d00000000009004350000000101000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c70000801002000039000500000004001d000400000009001d000300000005001d32da32d50000040f00000003060000290000000405000029000000050900002900000001022001900000210e0000613d000000000401043b000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000021670000613d00000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000200130008c0000218a0000413d000100000003001d000200000004001d000000000040043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f00000003060000290000000405000029000000050900002900000001022001900000210e0000613d0000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000002040000290000218a0000813d000000000002041b0000000102200039000000000312004b000021860000413d0000001f0190008c000021b90000a13d000200000004001d000000000040043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f00000003060000290000000405000029000000050900002900000001022001900000210e0000613d000000200200008a0000000003290170000000000101043b0000000002000019000021a90000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b000021a10000413d000000000393004b000021b50000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf0000000204000029000021c50000013d000000000109004b0000000001000019000021be0000613d0000000201600367000000000101043b0000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000000510435000000400210003900000000009204350000001f0390018f000000600210003900000002046003670000000505900272000021db0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000021d30000413d000000000603004b000021ea0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f00000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c70000800d02000039000000010300003900000d730400004132da32d00000040f00000001012001900000210e0000613d0000000001000019000032db0001042e00040000000000020000000001000416000000000101004b000022a60000c13d0000000002000031000000040120008a00000cba03000041000000a00410008c0000000004000019000000000403401900000cba01100197000000000501004b000000000300a01900000cba0110009c00000000010400190000000001036019000000000101004b000022a60000c13d00000002010003670000000403100370000000000a03043b0000ffff03a0008c000022a60000213d0000002403100370000000000403043b00000cb90340009c000022a60000213d000000230340003900000cba05000041000000000623004b0000000006000019000000000605801900000cba0720019700000cba03300197000000000873004b0000000005008019000000000373013f00000cba0330009c00000000030600190000000003056019000000000303004b000022a60000c13d0000000403400039000000000131034f000000000301043b00000d3d0130009c000022a80000813d0000003f05300039000000200100008a000000000515016f000000400b00043d00000000055b00190000000006b5004b0000000006000019000000010600403900000cb90750009c000022a80000213d0000000106600190000022a80000c13d0000002406400039000000400050043f00000000043b04360000000005630019000000000225004b000022a60000213d0000001f0230018f00000002056003670000000506300272000022530000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b0000224b0000413d000000000702004b000022620000613d0000000506600210000000000565034f00000000066400190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f00000000002604350000000002340019000000000002043500000002040003670000004402400370000000000202043b00000cb90320009c000022a60000213d0000002305200039000000000300003100000cba06000041000000000735004b0000000007000019000000000706801900000cba0550019700000cba08300197000000000985004b0000000006008019000000000585013f00000cba0550009c00000000050700190000000005066019000000000505004b000022a60000c13d0000000405200039000000000454034f000000000404043b00000cb90540009c000022a80000213d00000005054002100000003f06500039000000000116016f000000400800043d0000000001180019000000000681004b0000000006000019000000010600403900000cb90710009c000022a80000213d0000000106600190000022a80000c13d000000400010043f000000000048043500000024012000390000000002150019000000000332004b000022a60000213d000000000304004b0000229a0000613d00000000030800190000000204100367000000000404043b000000200330003900000000004304350000002001100039000000000421004b000022930000413d00000002010003670000006402100370000000000302043b000000000203004b0000000002000019000000010200c039000000000223004b000022a60000c13d0000008401100370000000000101043b00000cb90210009c000022ae0000a13d0000000001000019000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000000002000031000000040110003900010000000a001d00020000000b001d000300000008001d000400000003001d32da0e4e0000040f0000000005010019000000010100002900000002020000290000000303000029000000040400002932da2af00000040f000000400300043d00000020043000390000000000240435000000000013043500000cb80100004100000cb80230009c0000000001034019000000400110021000000d27011001c7000032db0001042e00010000000000020000000001000416000000000101004b000023a00000c13d000000040100008a000000000110003100000cba02000041000000800310008c0000000003000019000000000302401900000cba01100197000000000401004b000000000200a01900000cba0110009c00000000010300190000000001026019000000000101004b000023a00000c13d00000002030003670000000401300370000000000101043b0000ffff0210008c000023a00000213d0000002402300370000000000202043b0000ffff0420008c000023a00000213d0000004403300370000000000303043b00000cbb0330009c000023a00000213d000000400500043d0000004403500039000000000400041000000000004304350000002403500039000000000023043500000d740200004100000000002504350000000402500039000000000012043500000064010000390000000201100367000000000101043b000100000005001d0000006402500039000000000012043500000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d38011001c7000080050200003932da32d50000040f0000000102200190000023a00000613d000000000201043b000000000100041400000cbb02200197000000040320008c0000230c0000c13d0000000301000367000000010300003100000001080000290000231f0000013d00000cb80300004100000cb80410009c0000000001038019000000010500002900000cb80450009c00000000030540190000004003300210000000c001100210000000000131019f00000cc8011001c732da32d50000040f00000001080000290000000003010019000000600330027000010cb80030019d00000cb80330019700030000000103550000000102200190000023750000613d0000001f0230018f00000005043002720000232b0000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000023230000413d000000000502004b0000233a0000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f02300039000000200100008a000000000412016f0000000002840019000000000442004b0000000004000019000000010400403900000cb90520009c0000236f0000213d00000001044001900000236f0000c13d00000cba04000041000000200530008c0000000005000019000000000504401900000cba06300197000000000706004b000000000400a01900000cba0660009c000000000405c019000000400020043f000000000404004b000023a00000c13d0000000104000029000000000404043300000cb90540009c000023a00000213d0000000106000029000000000563001900000000036400190000001f0430003900000cba06000041000000000754004b0000000007000019000000000706801900000cba0440019700000cba08500197000000000984004b0000000006008019000000000484013f00000cba0440009c00000000040700190000000004066019000000000404004b000023a00000c13d000000004303043400000cb90630009c0000236f0000213d0000003f06300039000000000116016f000000000121001900000cb90610009c0000239b0000a13d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400200043d0000001f0430018f0000000503300272000023820000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b0000237a0000413d000000000504004b000023910000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc00010430000000400010043f00000000013204360000000006430019000000000556004b000023a20000a13d0000000001000019000032dc00010430000000000503004b000023ac0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000635004b000023a50000413d00000000011300190000000000010435000000400100043d000100000001001d32da0c000000040f0000000104000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032db0001042e000000000100041a00000cbb011001970000000002000411000000000121004b000023c20000c13d000000000001042d000000400100043d000000440210003900000d2f03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000000101004b000023d60000613d000000000001042d000000400100043d000000640210003900000d75030000410000000000320435000000440210003900000d7603000041000000000032043500000024021000390000002603000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000000030100190000001f0100008a000000000112004b0000240a0000813d0000000001030433000000000121004b000024100000413d000000400100043d000000000402004b000024070000613d0000001f0420019000000000050000190000002005006039000000000645019f00000000041600190000000005240019000000000754004b000024020000813d000000000336001900000000360304340000000004640436000000000654004b000023fe0000413d00000000002104350000001f02400039000000200300008a000000000232016f000024080000013d0000000002010436000000400020043f000000000001042d00000d280100004100000000001004350000001101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d7703000041000000000032043500000024021000390000001103000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300008000000000002000000000b020019000000000a000414000000400500043d000000440250003900000080060000390000000000620435000000200650003900000d780200004100000000002604350000ffff0210018f0000002401500039000500000002001d000000000021043500000000020b0433000000a4015000390000000000210435000000c401500039000000000702004b0000243e0000613d0000000007000019000000000817001900000020077000390000000009b7001900000000090904330000000000980435000000000827004b000024370000413d000000000712001900000000000704350000001f02200039000000200700008a000800000007001d000000000272016f000000a0072000390000008408500039000000000078043500000cb9073001970000006403500039000400000007001d0000000000730435000000000212001900000000910404340000000002120436000000000301004b000024580000613d000000000300001900000000072300190000002003300039000000000843001900000000080804330000000000870435000000000713004b000024510000413d0000000003210019000000000003043500000000025200490000001f011000390000000803000029000000000131016f0000000001120019000000200210008a00000000002504350000001f01100039000000000131016f0000000008510019000000000118004b0000000001000019000000010100403900000cb90280009c0000257f0000213d00000001011001900000257f0000c13d000000400080043f00000d790180009c0000257f0000213d000000c001800039000000400010043f0000009601000039000000000c180436000000000100003100000002011003670000000002000019000000050320021000000000073c0019000000000331034f000000000303043b00000000003704350000000102200039000000050320008c000024750000413d0000000002000410000000040120008c000700000004001d00030000000b001d000600000008001d000024860000c13d00000001020000390000000101000031000024a00000013d00000cb80100004100000cb80360009c000000000301001900000000030640190000004003300210000000000505043300000cb80650009c00000000050180190000006005500210000000000335019f00000cb805a0009c00000000010a4019000000c001100210000000000113019f000200000009001d00010000000c001d32da32d00000040f000000010c000029000000020900002900000006080000290000000704000029000000010220018f0003000000010355000000600110027000010cb80010019d00000cb801100197000000960310008c0000009605000039000000000501401900000000005804350000000101000031000000000115004b0000257d0000213d00000003030003670000001f0150018f0000000508500272000024b40000613d0000000005000019000000050650021000000000076c0019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b000024ac0000413d000000000501004b000024c30000613d0000000505800210000000000353034f00000000065c00190000000301100210000000000506043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000160435000000000102004b0000257c0000c13d00000cb80100004100000cb80290009c000000000201001900000000020940190000004002200210000000000304043300000cb80430009c00000000030180190000006003300210000000000223019f000000000300041400000cb80430009c0000000001034019000000c001100210000000000121019f00000cc0011001c7000080100200003932da32d50000040f00000001022001900000257d0000613d000000000101043b000200000001001d000000050100002900000000001004350000000501000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000030700002900000001022001900000257d0000613d000000400200043d000000000301043b0000000001070433000000000401004b000024f70000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b000024f00000413d0000000004210019000000000034043500000cb80300004100000cb80420009c00000000020380190000004002200210000000200110003900000cb80410009c00000000010380190000006001100210000000000121019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f00000001022001900000257d0000613d000000000101043b00000004020000290000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000308000029000000070700002900000001022001900000257d0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000050200002900000000002104350000000002080433000000a0031000390000000000230435000000c003100039000000000402004b000025330000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b0000252c0000413d000000000432001900000000000404350000004004100039000000040500002900000000005404350000001f022000390000000804000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000403004b0000254b0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000025440000413d000000000423001900000000000404350000001f033000390000000804000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000060700002900000000030704330000000002320436000000000403004b000025610000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000255a0000413d0000001f043000390000000805000029000000000454016f000000000323001900000000000304350000000002120049000000000242001900000cb80300004100000cb80420009c0000000002038019000000600220021000000cb80410009c00000000010380190000004001100210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000112019f00000cc0011001c70000800d02000039000000010300003900000d7a0400004132da32d00000040f00000001012001900000257d0000613d000000000001042d0000000001000019000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc0001043000000cbb022001970000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000025940000613d000000000101043b000000000001042d0000000001000019000032dc0001043000000000001004350000000d01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000025a80000613d000000000101043b000000000101041a00000cbb01100198000025aa0000613d000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000000101004b000025bf0000613d000000000001042d000000400100043d000000640210003900000d7b030000410000000000320435000000440210003900000d7c03000041000000000032043500000024021000390000003d03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc000104300001000000000002000100000001001d00000000001004350000000d01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000025f90000613d000000000101043b000000000101041a00000cbb01100198000025fb0000613d000000010100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000025f90000613d000000000101043b000000000101041a00000cbb01100197000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000000101004b000026100000613d000000000001042d000000400100043d000000640210003900000d7d030000410000000000320435000000440210003900000d7e03000041000000000032043500000024021000390000002d03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc000104300008000000000002000200000004001d000400000002001d000500000001001d000800000003001d00000000003004350000000d01000039000700000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000101041a00000cbb01100198000027190000613d000000000200041100000cbb02200197000600000002001d000000000212004b000026860000613d00000000001004350000001001000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b00000006020000290000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000101041a000000ff01100190000026860000c13d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000101041a00000cbb01100198000027190000613d000000080100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000101041a00000cbb011001970000000602000029000000000121004b000027660000c13d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000101041a00000cbb02100198000027190000613d000000050100002900000cbb01100197000000000112004b0000272b0000c13d000600000002001d000000040100002900000cbb01100198000300000001001d000027400000613d000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000101041a00000cbb011001980000000602000029000027190000613d000000000121004b0000272b0000c13d000000080100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000201041a00000cbf02200197000000000021041b000000060100002900000000001004350000000e01000039000100000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000201041a000000010220008a000000000021041b000000030100002900000000001004350000000101000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000201041a0000000102200039000000000021041b000000080100002900000000001004350000000701000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027170000613d000000000101043b000000000201041a00000cbf022001970000000306000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d52040000410000000605000029000000080700002932da32d00000040f0000000101200190000027170000613d000000050100002900000004020000290000000803000029000000020400002932da2a020000040f000000000101004b000027550000613d000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d50030000410000000000320435000000440210003900000d5103000041000000000032043500000024021000390000002503000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000640210003900000d53030000410000000000320435000000440210003900000d5403000041000000000032043500000024021000390000002403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400200043d000800000002001d00000cc7010000410000000000120435000000040120003932da277b0000040f0000000804000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032dc00010430000000400100043d000000640210003900000d7d030000410000000000320435000000440210003900000d7e03000041000000000032043500000024021000390000002d03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000600210003900000d7f030000410000000000320435000000400210003900000d80030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0003000000000002000300000001001d000200000002001d00000000002004350000000d01000039000100000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027ea0000613d000000000101043b000000000101041a00000cbb02100198000027ec0000613d0000000101000039000000030300002900000cbb03300197000300000003001d000000000323004b000027e90000613d00000000002004350000001001000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027ea0000613d000000000101043b00000003020000290000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027ea0000613d000000000101043b000000000101041a000000ff01100190000027e90000c13d000000020100002900000000001004350000000101000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027ea0000613d000000000101043b000000000101041a00000cbb01100198000027ec0000613d000000020100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000027ea0000613d000000000101043b000000000101041a00000cbb011001970000000302000029000000000121004b00000000010000190000000101006039000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300005000000000002000200000002001d000400000001001d000500000003001d00000000003004350000000d01000039000300000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000288c0000613d000000000101043b000000000101041a00000cbb021001980000288e0000613d000000040100002900000cbb01100197000000000112004b000028a00000c13d000400000002001d000000020100002900000cbb01100198000200000001001d000028b50000613d000000050100002900000000001004350000000301000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000288c0000613d000000000101043b000000000101041a00000cbb0110019800000004020000290000288e0000613d000000000121004b000028a00000c13d000000050100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000288c0000613d000000000101043b000000000201041a00000cbf02200197000000000021041b000000040100002900000000001004350000000e01000039000100000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000288c0000613d000000000101043b000000000201041a000000010220008a000000000021041b000000020100002900000000001004350000000101000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000288c0000613d000000000101043b000000000201041a0000000102200039000000000021041b000000050100002900000000001004350000000301000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000288c0000613d000000000101043b000000000201041a00000cbf022001970000000206000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d52040000410000000405000029000000050700002932da32d00000040f00000001012001900000288c0000613d000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d50030000410000000000320435000000440210003900000d5103000041000000000032043500000024021000390000002503000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000640210003900000d53030000410000000000320435000000440210003900000d5403000041000000000032043500000024021000390000002403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc000104300002000000000002000100000001001d000200000002001d00000000002004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000029030000613d000000010200002900000cbb03200197000000000101043b000000000201041a00000cbf02200197000100000003001d000000000232019f000000000021041b000000020100002900000000001004350000000d01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000029030000613d0000000207000029000000000101043b000000000101041a00000cbb05100198000029050000613d00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d8104000041000000010600002932da32d00000040f0000000101200190000029030000613d000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300005000000000002000200000003001d000100000002001d00000d3a020000410000000000200439000300000001001d000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f000000000301034f0000000101200190000029af0000613d0000000101000039000000000203043b000000000202004b000029ae0000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a000390000000102000029000000000021043500000d820100004100000000001a0435000000000100041100000cbb011001970000000402a0003900000000001204350000002401a000390000000000010435000000020600002900000000010604330000008402a000390000000000120435000000a402a00039000000000301004b0000294b0000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b000029440000413d000000000221001900000000000204350000000003000414000000030200002900000cbb02200197000000040420008c0000295b0000c13d0000000001000415000000050110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000500000000001d000029980000013d0000001f01100039000000200400008a000000000141016f00000cb80400004100000cb805a0009c000000000504001900000000050a40190000004005500210000000a40110003900000cb80610009c00000000010480190000006001100210000000000151019f00000cb80530009c0000000003048019000000c003300210000000000113019f00030000000a001d32da32d00000040f000000030a0000290000000003010019000000600330027000000cb803300197000000200430008c000000200400003900000000040340190000001f0540018f0000000506400272000029810000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000029790000413d000000000705004b000029900000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000040110008a00000020011000c9000400000000001d0000000102200190000029b10000613d0000001f02400039000000600420018f0000000002a40019000000000442004b0000000004000019000000010400403900000cb90520009c000029f30000213d0000000104400190000029f30000c13d000000400020043f000000200230008c000029af0000413d00000000020a043300000d3203200197000000000323004b000029af0000c13d000000200110011a000000000102001f00000d820120009c00000000010000190000000101006039000000000001042d0000000001000019000032dc000104300000006001000039000000000203004b000029c80000c13d0000000021010434000000000301004b000029f90000c13d000000400200043d000300000002001d00000cc7010000410000000000120435000000040120003932da277b0000040f0000000304000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032dc000104300000003f0130003900000d8302100197000000400100043d0000000002210019000000000412004b0000000004000019000000010400403900000cb90520009c000029f30000213d0000000104400190000029f30000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f0000000505500272000029e30000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000029db0000413d000000000604004b000029b40000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000029b40000013d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc0001043000000cb80300004100000cb80420009c000000000203801900000cb80410009c000000000103801900000060011002100000004002200210000000000121019f000032dc000104300006000000000002000300000004001d000200000003001d000100000001001d00000d3a010000410000000000100439000400000002001d000000040020044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f000000000301034f000000010120019000002a9d0000613d0000000101000039000000000203043b000000000202004b00002a9c0000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a0003900000002020000290000000000210435000000010100002900000cbb011001970000002402a00039000000000012043500000d820100004100000000001a0435000000000100041100000cbb011001970000000402a000390000000000120435000000030600002900000000010604330000008402a000390000000000120435000000a402a00039000000000301004b00002a390000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b00002a320000413d000000000221001900000000000204350000000003000414000000040200002900000cbb02200197000000040420008c00002a490000c13d0000000001000415000000060110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000600000000001d00002a860000013d0000001f01100039000000200400008a000000000141016f00000cb80400004100000cb805a0009c000000000504001900000000050a40190000004005500210000000a40110003900000cb80610009c00000000010480190000006001100210000000000151019f00000cb80530009c0000000003048019000000c003300210000000000113019f00040000000a001d32da32d00000040f000000040a0000290000000003010019000000600330027000000cb803300197000000200430008c000000200400003900000000040340190000001f0540018f000000050640027200002a6f0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00002a670000413d000000000705004b00002a7e0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000050110008a00000020011000c9000500000000001d000000010220019000002a9f0000613d0000001f02400039000000600420018f0000000002a40019000000000442004b0000000004000019000000010400403900000cb90520009c00002ae10000213d000000010440019000002ae10000c13d000000400020043f000000200230008c00002a9d0000413d00000000020a043300000d3203200197000000000323004b00002a9d0000c13d000000200110011a000000000102001f00000d820120009c00000000010000190000000101006039000000000001042d0000000001000019000032dc000104300000006001000039000000000203004b00002ab60000c13d0000000021010434000000000301004b00002ae70000c13d000000400200043d000400000002001d00000cc7010000410000000000120435000000040120003932da277b0000040f0000000404000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032dc000104300000003f0130003900000d8302100197000000400100043d0000000002210019000000000412004b0000000004000019000000010400403900000cb90520009c00002ae10000213d000000010440019000002ae10000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f000000050550027200002ad10000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00002ac90000413d000000000604004b00002aa20000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500002aa20000013d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc0001043000000cb80300004100000cb80420009c000000000203801900000cb80410009c000000000103801900000060011002100000004002200210000000000121019f000032dc000104300005000000000002000000400600043d0000002007600039000000400800003900000000008704350000000008020433000000600960003900000000008904350000008009600039000000000a08004b00002b030000613d000000000a000019000000000b9a0019000000200aa00039000000000c2a0019000000000c0c04330000000000cb0435000000000b8a004b00002afc0000413d000000000298001900000000000204350000001f02800039000000200a00008a0000000002a2016f000000000292001900000000077200490000004008600039000000000078043500000000070304330000000002720436000000000807004b00002b170000613d00000000080000190000002003300039000000000903043300000000029204360000000108800039000000000978004b00002b110000413d0000000002620049000000200320008a00000000003604350000001f022000390000000002a2016f0000000009620019000000000229004b0000000002000019000000010200403900000cb90390009c00002bc40000213d000000010220019000002bc40000c13d000000400090043f0000004402900039000000a003000039000000000032043500000024029000390000000003000410000000000032043500000d84020000410000000002290436000400000002001d0000ffff0110018f000000040290003900000000001204350000000002060433000000a4019000390000000000210435000000c401900039000000000302004b00002b3f0000613d000000000300001900000000071300190000002003300039000000000863001900000000080804330000000000870435000000000723004b00002b380000413d00000000031200190000000000030435000000000304004b0000000003000019000000010300c039000000640490003900000000003404350000001f0220003900030000000a001d0000000002a2016f000500000009001d0000008403900039000000c0042000390000000000430435000000000112001900000000060504330000000004610436000000000106004b00002b5a0000613d000000000100001900000000024100190000002001100039000000000351001900000000030304330000000000320435000000000261004b00002b530000413d000200000004001d000100000006001d0000000001460019000000000001043500000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d38011001c7000080050200003932da32d50000040f0000000102200190000000050a00002900002bca0000613d000000000201043b000000000100041400000cbb02200197000000040320008c00002b780000c13d0000000103000031000000400130008c0000004004000039000000000403401900002bb30000013d00000001030000290000001f033000390000000304000029000000000343016f00000002040000290000000004a40049000000000334001900000cb80400004100000cb805a0009c000000000504001900000000050a4019000000400550021000000cb80630009c00000000030480190000006003300210000000000353019f00000cb80510009c0000000001048019000000c001100210000000000131019f32da32d50000040f000000050a0000290000000003010019000000600330027000000cb803300197000000400430008c000000400400003900000000040340190000001f0540018f000000050640027200002ba00000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00002b980000413d000000000705004b00002baf0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f0003000000010355000000010220019000002bcc0000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b0000000002000019000000010200403900000cb90410009c00002bc40000213d000000010220019000002bc40000c13d000000400010043f000000400130008c00002bca0000413d00000000010a043300000004020000290000000002020433000000000001042d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc000104300000000001000019000032dc00010430000000400200043d0000001f0430018f000000050330027200002bd90000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00002bd10000413d000000000504004b00002be80000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc000104300010000000000002000300000007001d000100000006001d000200000005001d000400000003001d000700000001001d0000000013040434000600000001001d000000000103004b00002f720000613d000000010130008c0000ffff0120018f000500000001001d000800000004001d00002c190000613d001000000003001d000000050100002900000000001004350000000801000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a0000001002000029000000000112004b00002fe50000213d00000008070000290000000001070433000000000101004b00002d260000613d000000070100002900000cbb01100197000e00000001001d000000000100041100000cbb01100197000900000001001d0000000d01000039000f00000001001d0000801001000039000c00000001001d0000000002000019000b00000002001d0000000501200210000000060200002900000000011200190000000001010433001000000001001d00000000001004350000000f01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c70000000c0200002932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a00000cbb0110019800002f000000613d0000000902000029000000000212004b00002c830000613d00000000001004350000001001000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b00000009020000290000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a000000ff0110019000002c830000c13d000000100100002900000000001004350000000f01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a00000cbb0110019800002f000000613d000000100100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a00000cbb011001970000000902000029000000000121004b00002f510000c13d000000100100002900000000001004350000000f01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c70000000c0200002932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a00000cbb0210019800002f000000613d0000000702000029000000000121013f00000cbb0110019800002f270000c13d000000100100002900000000001004350000000f01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a00000cbb0110019800002f000000613d0000000e02000029000000000121004b00002f120000c13d000000000100041000000cbb01100198000d00000001001d00002f3c0000613d000000100100002900000000001004350000000f01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a00000cbb0110019800002f000000613d0000000e02000029000000000121004b00002f120000c13d000000100100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000201041a00000cbf02200197000000000021041b0000000e0100002900000000001004350000000e01000039000a00000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000d0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000201041a0000000102200039000000000021041b000000100100002900000000001004350000000f01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000201041a00000cbf022001970000000d06000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d52040000410000000e05000029000000100700002932da32d00000040f000000010120019000002efe0000613d0000000b02000029000000010220003900000008070000290000000001070433000000000112004b00002c240000413d000000400900043d00000020019000390000004002000039000000000021043500000004080000290000000002080433000000600390003900000000002304350000008003900039000000000402004b00002d390000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b00002d320000413d000000000432001900000000000404350000001f02200039000000200600008a000000000262016f000000000332001900000000011300490000004002900039000000000012043500000000020704330000000001230436000000000302004b00002d4e0000613d000000000300001900000000040700190000002004400039000000000504043300000000015104360000000103300039000000000523004b00002d480000413d0000000001910049000000200210008a00000000002904350000001f01100039000000000261016f0000000001920019000000000221004b0000000002000019000000010200403900000cb90310009c00002f660000213d000000010220019000002f660000c13d000f00000009001d001000000006001d000000400010043f000000050100002900000000001004350000000901000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d00000008020000290000000002020433000000000101043b000000000101041a00000000341200a9000000000301004b00002d760000613d00000000311400d9000000000121004b00002f6c0000c13d000e00000004001d00000003020000290000000001020433000000210110008c00002f840000a13d00000022012000390000000001010433000d00000001001d000000050100002900000000001004350000000201000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b0000000102000039000c00000002001d0000000000200435000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a0000000e02000029000000000121001a00002f6c0000413d000000000201004b00002f960000613d0000000d02000029000000000112004b00002fa80000413d0000000001000416000b00000001001d000000050100002900000000001004350000000c01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b00002fba0000c13d000000400700043d0000000008570436000000000303004b000e00000007001d00002de40000613d000c00000005001d000d00000008001d000000000010043500000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc2011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d0000000c09000029000000000209004b000000100500002900002ded0000613d000000000201043b00000000010000190000000f060000290000000e070000290000000d080000290000000003810019000000000402041a000000000043043500000001022000390000002001100039000000000391004b00002ddc0000413d00002df10000013d000001000100008a000000000112016f0000000000180435000000000105004b0000002001000039000000000100601900000010050000290000000f0600002900002df10000013d00000000010000190000000f060000290000000e070000290000000d08000029000000000278004900000000011200190000001f01100039000000000251016f0000000001720019000000000221004b0000000002000019000000010200403900000cb90310009c00002f660000213d000000010220019000002f660000c13d000000400010043f0000000002070433000000000202004b00002fc00000613d0000000001060433000d00000001001d000000050100002900000000001004350000000301000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101041a000000000201004b00002710010060390000000d02000029000000000121004b00002fd40000413d00000d2301000041000000000010043900000000010004120000000400100443000000240000044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d38011001c7000080050200003932da32d50000040f000000010220019000002efe0000613d000000000101043b00000d3a02000041000000000020043900000cbb01100197000d00000001001d000000040010044300000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d3b011001c7000080020200003932da32d50000040f000000010220019000002efe0000613d000000000101043b000000000101004b00002efe0000613d000000400a00043d0000002401a00039000000c002000039000000000021043500000d8b0100004100000000001a04350000000401a00039000000050200002900000000002104350000000e070000290000000002070433000000c403a000390000000000230435000000e403a00039000000000402004b000000100800002900002e530000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b00002e4c0000413d000000000432001900000000000404350000001f02200039000000000282016f000000000232001900000000031200490000004404a0003900000000003404350000000f0900002900000000030904330000000002320436000000000403004b000000040700002900002e690000613d000000000400001900000000052400190000002004400039000000000694001900000000060604330000000000650435000000000534004b00002e620000413d00000000042300190000000000040435000000010400002900000cbb044001970000008405a000390000000000450435000000020400002900000cbb044001970000006405a0003900000000004504350000001f03300039000000000383016f00000000032300190000000001130049000000a402a000390000000000120435000000030600002900000000020604330000000001230436000000000302004b00002e860000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b00002e7f0000413d0000000003120019000000000003043500000000030004140000000d04000029000000040540008c00002eb10000613d0000001f02200039000000000282016f0000000001a10049000000000121001900000cb80200004100000cb80510009c0000000001028019000000600110021000000cb805a0009c00100000000a001d000000000502001900000000050a40190000004005500210000000000151019f00000cb80530009c0000000002034019000000c002200210000000000112019f0000000b03000029000000000203004b00002ea60000613d00000cc0011001c70000800902000039000000000500001932da32d00000040f00002ea80000013d000000000204001932da32d00000040f00030000000103550000000003010019000000600330027000010cb80030019d00000cb80430019700000001022001900000000407000029000000100a00002900002ffa0000613d00000cb901a0009c00002f660000213d0000004000a0043f0000000001070433000000000201004b00002ebf0000613d00000000020000190000000003a200190000002002200039000000000472001900000000040404330000000000430435000000000312004b00002eb80000413d0000000002a10019000000000002043500000cb80200004100000cb803a0009c000000000302001900000000030a4019000000400330021000000cb80410009c00000000010280190000006001100210000000000131019f000000000300041400000cb80430009c0000000002034019000000c002200210000000000112019f00000cc0011001c7000080100200003932da32d50000040f000000010220019000002efe0000613d000000000701043b000000400100043d000000200200003900000000022104360000000808000029000000000308043300000000003204350000004002100039000000070400002900000cbb06400197000000000403004b00002ee70000613d00000000040000190000002008800039000000000508043300000000025204360000000104400039000000000534004b00002ee10000413d000000000212004900000cb80300004100000cb80410009c0000000001038019000000400110021000000cb80420009c00000000020380190000006002200210000000000112019f000000000200041400000cb80420009c0000000002038019000000c002200210000000000121019f00000cc0011001c70000800d02000039000000040300003900000d8c04000041000000050500002932da32d00000040f000000010120019000002efe0000613d000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d50030000410000000000320435000000440210003900000d5103000041000000000032043500000024021000390000002503000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000640210003900000d89030000410000000000320435000000440210003900000d8a03000041000000000032043500000024021000390000002203000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000640210003900000d53030000410000000000320435000000440210003900000d5403000041000000000032043500000024021000390000002403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000640210003900000d87030000410000000000320435000000440210003900000d8803000041000000000032043500000024021000390000002e03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc0001043000000d280100004100000000001004350000001101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d9303000041000000000032043500000024021000390000001303000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000440210003900000d9203000041000000000032043500000024021000390000001c03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000440210003900000d9103000041000000000032043500000024021000390000001a03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000440210003900000d9003000041000000000032043500000024021000390000001b03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc0001043000000d280100004100000000001004350000002201000039000000040010043f00000d2901000041000032dc00010430000000640210003900000d8e030000410000000000320435000000440210003900000d8f03000041000000000032043500000024021000390000003003000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400100043d000000440210003900000d8d03000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d85030000410000000000320435000000440210003900000d8603000041000000000032043500000024021000390000002203000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc00010430000000400200043d0000001f0340018f0000000504400272000030070000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00002fff0000413d000000000503004b000030160000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000cb801000041000000010300003100000cb80430009c000000000301801900000cb80420009c000000000102401900000040011002100000006002300210000000000112019f000032dc00010430000b000000000002000100000001001d0000000031020434000400000003001d000000000101004b0000000001000019000031950000613d000000010100002900000cbb01100197000900000001001d0000000701000039000300000001001d0000000d01000039000a00000001001d0000801001000039000700000001001d0000000001000019000200000002001d000030390000013d0000000601000029000000010110003900000002020000290000000003020433000000000331004b000031950000813d00000000040004140000000303000029000000000303041a000000000334004b000031950000413d0000000002020433000000000212004b000031bf0000a13d000600000001001d0000000501100210000000040200002900000000011200190000000001010433000b00000001001d00000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000000070200002932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb011001980000000001000410000800000001001d000030810000613d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb01100198000031960000613d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb01100198000031980000613d0000000802000029000000000121004b000031960000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000000070200002932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb011001980000311c0000613d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb02100198000031980000613d000000080100002900000cbb01100197000000000112004b000031aa0000c13d000800000002001d0000000901000029000000000101004b000031d70000613d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb011001980000000802000029000031980000613d000000000121004b000031aa0000c13d0000000b0100002900000000001004350000000f01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000201041a00000cbf02200197000000000021041b000000080100002900000000001004350000000e01000039000500000001001d000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000201041a000000010220008a000000000021041b000000090100002900000000001004350000000501000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000201041a00000cbf022001970000000906000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d520400004100000008050000290000000b0700002932da32d00000040f0000000101200190000030330000c13d000031960000013d000000400200043d00000d420120009c000031ec0000813d0000002001200039000000400010043f000800000002001d00000000000204350000000901000029000000000101004b000031f20000613d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb01100198000031c50000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000101041a00000cbb01100198000031c50000c13d000000090100002900000000001004350000000e01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000b0100002900000000001004350000000a01000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000031960000613d000000000101043b000000000201041a00000cbf022001970000000906000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d520400004100000000050000190000000b0700002932da32d00000040f0000000101200190000031960000613d00000001010000290000000b02000029000000080300002932da29170000040f000000000101004b000030330000c13d000000400200043d000b00000002001d00000cc7010000410000000000120435000000040120003932da277b0000040f0000000b04000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032dc00010430000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d4003000041000000000032043500000024021000390000001803000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d50030000410000000000320435000000440210003900000d5103000041000000000032043500000024021000390000002503000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000d280100004100000000001004350000003201000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001c03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400100043d000000640210003900000d53030000410000000000320435000000440210003900000d5403000041000000000032043500000024021000390000002403000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000cc8011001c7000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d5703000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc000104300000000002010019000000400100043d00000d940310009c0000321a0000813d0000004003100039000000400030043f0000000103000039000000000331043600000000040000310000000204400367000000000500001900000005065002100000000007630019000000000664034f000000000606043b0000000000670435000000010550003a0000320e0000413d0000000004010433000000000404004b000032200000613d0000000000230435000000000001042d00000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc0001043000000d280100004100000000001004350000003201000039000000040010043f00000d2901000041000032dc000104300005000000000002000000400300043d00000d420430009c000032a80000813d0000002004300039000000400040043f000200000003001d0000000000030435000100000001001d00000cbb01100198000300000001001d000032ae0000613d00000000002004350000000d01000039000400000001001d000000200010043f00000cb801000041000500000002001d000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000032940000613d0000000502000029000000000101043b000000000101041a00000cbb01100198000032960000c13d000000050100002900000000001004350000000401000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000032940000613d000000000101043b000000000101041a00000cbb01100198000032960000c13d000000030100002900000000001004350000000e01000039000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f00000001022001900000000502000029000032940000613d000000000101043b000000000201041a0000000102200039000000000021041b000000050100002900000000001004350000000401000029000000200010043f00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000d1f011001c7000080100200003932da32d50000040f0000000102200190000032940000613d000000000101043b000000000201041a00000cbf022001970000000306000029000000000262019f000000000021041b00000cb801000041000000000200041400000cb80320009c0000000001024019000000c00110021000000cc0011001c70000800d02000039000000040300003900000d52040000410000000005000019000000050700002932da32d00000040f0000000101200190000032940000613d00000001010000290000000502000029000000020300002932da29170000040f000000000101004b000032bf0000613d000000000001042d0000000001000019000032dc00010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001c03000039000000000032043500000cc702000041000000000021043500000004021000390000002003000039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc0001043000000d280100004100000000001004350000004101000039000000040010043f00000d2901000041000032dc00010430000000400100043d000000440210003900000d5703000041000000000032043500000cc70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000cb80200004100000cb80310009c0000000001028019000000400110021000000d21011001c7000032dc00010430000000400200043d000500000002001d00000cc7010000410000000000120435000000040120003932da277b0000040f0000000504000029000000000141004900000cb80200004100000cb80310009c000000000102801900000cb80340009c000000000204401900000040022002100000006001100210000000000121019f000032dc00010430000032d3002104210000000102000039000000000001042d0000000002000019000000000001042d000032d8002104230000000102000039000000000001042d0000000002000019000000000001042d000032da00000432000032db0001042e000032dc0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4c617965725a65726f204d756c7469636861696e20506f77657220584c2056324c5a504f574552584c5632000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e002000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000d12f0c4c60000000000200000000000000000000000000000080000001000000000000000000203e2030000000000000000000000000000000000000000000000000000000006d696e476173546f5472616e73666572416e6453746f7265206d75737420626508c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000007533d78700000000000000000000000000000000000000000000000000000000baf3292c00000000000000000000000000000000000000000000000000000000df2a5b3a00000000000000000000000000000000000000000000000000000000f235364000000000000000000000000000000000000000000000000000000000f5ecbdbb00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000fa25f9b600000000000000000000000000000000000000000000000000000000f235364100000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000e1d4c87000000000000000000000000000000000000000000000000000000000cbed8b9b00000000000000000000000000000000000000000000000000000000d1deba1e00000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000d547cfb700000000000000000000000000000000000000000000000000000000cbed8b9c00000000000000000000000000000000000000000000000000000000d12473a500000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000c446183400000000000000000000000000000000000000000000000000000000c87b56dd000000000000000000000000000000000000000000000000000000009f38369900000000000000000000000000000000000000000000000000000000ab3ffb9200000000000000000000000000000000000000000000000000000000b353aaa600000000000000000000000000000000000000000000000000000000b353aaa700000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000ab3ffb9300000000000000000000000000000000000000000000000000000000af3fb21c000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a6c3d165000000000000000000000000000000000000000000000000000000008ffa1f290000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009ea5d6b1000000000000000000000000000000000000000000000000000000008ffa1f2a00000000000000000000000000000000000000000000000000000000950c8a74000000000000000000000000000000000000000000000000000000007533d788000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000003ccfd60a00000000000000000000000000000000000000000000000000000000519056350000000000000000000000000000000000000000000000000000000066ad5c890000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000066ad5c8a000000000000000000000000000000000000000000000000000000006aa99da3000000000000000000000000000000000000000000000000000000005b8c41e5000000000000000000000000000000000000000000000000000000005b8c41e6000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000519056360000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000004828818f0000000000000000000000000000000000000000000000000000000048288190000000000000000000000000000000000000000000000000000000004ac3f4ff0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042d65a8d000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000003f1f4fa4000000000000000000000000000000000000000000000000000000000df374820000000000000000000000000000000000000000000000000000000013faede50000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002a205e3d0000000000000000000000000000000000000000000000000000000013faede60000000000000000000000000000000000000000000000000000000022a3ecf9000000000000000000000000000000000000000000000000000000000df374830000000000000000000000000000000000000000000000000000000010ddb137000000000000000000000000000000000000000000000000000000001249c58b0000000000000000000000000000000000000000000000000000000007e0db1600000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000b4cad4c0000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206102000000000000000000000000000000000000400000000000000000000000004e6f74206578697374000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000005db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32edf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c76c6964206f776e657200000000000000000000000000000000000000000000004552433732313a2061646472657373207a65726f206973206e6f74206120766100000000000000000000000000000000000000400000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000080000000000000000000000000496e73756666696369656e742066756e64730000000000000000000000000000556e6976657273616c4f4e46543732313a206d6178206d696e74206c696d6974207265616368656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572febbc4f8bb9ec2313950c718d43123124b15778efda4c1f1d529de2995b4f34d0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9ffffffff000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000022bac5d900000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000072000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e654552433732313a20696e76616c696420746f6b656e204944000000000000000010ddb13700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe09cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f394661696c656420746f2073656e6420457468657200000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff9bce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d757374206265000000000000000000000000000000000000000000000000ffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000010e0b70d256bccc84b7027506978bd8b68984a870788b93b479def144c839ad75b821db8a46f8ecbe1941ba2f51cfeea9643268b56631f70d45e2a745d9902656f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f727265637420ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef72657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f20616464000000000000000000000000000000000000000000000000ffffffffffffffdf4552433732313a20746f6b656e20616c7265616479206d696e746564000000004552433732313a206d696e7420746f20746865207a65726f2061646472657373207472616e7366657200000000000000000000000000000000000000000000006e6f7420656e6f7567682067617320746f2070726f6365737320637265646974d7be02b8dd0d27bd0517a9cb4d7469ce27df4313821ae5ec1ff69acc594ba2336e6f20637265646974732073746f7265640000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c007315f7654d594ead24a30160ed9ba2d23247f543016b918343591e93d7afdb6d2030000000000000000000000000000000000000000000000000000000000000647374436861696e4964546f42617463684c696d6974206d757374206265203e4c7a4170703a206e6f20747275737465642070617468207265636f726400000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000008c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cecbed8b9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5b00000000000000000000000000000000000000a4000000000000000000000000c46df2983228ac2d9754e94a0d565e6671665dc8ad38602bc8e544f0685a29fb3e20300000000000000000000000000000000000000000000000000000000000647374436861696e4964546f5472616e73666572476173206d7573742062652000000000000000000000000000000000000000000000000000000000ffffffdf64000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737302000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dabf5ecbdbc000000000000000000000000000000000000000000000000000000006e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f736c6963655f6f75744f66426f756e647300000000000000000000000000000066ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f72206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6563656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152658c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe040a7bb1000000000000000000000000000000000000000000000000000000000697400000000000000000000000000000000000000000000000000000000000062617463682073697a65206578636565647320647374206261746368206c696d72206e6f7220617070726f7665640000000000000000000000000000000000004f4e46543732313a2073656e642063616c6c6572206973206e6f74206f776e6565720000000000000000000000000000000000000000000000000000000000004f4e46543732313a2073656e642066726f6d20696e636f7272656374206f776ec580310000000000000000000000000000000000000000000000000000000000e1b87c47fdeb4f9cbadbca9df3af7aba453bb6e501075d0440d88125b711522a4c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f74204c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000746f6b656e4964735b5d20697320656d70747900000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000000000000000000011574070672c4a53b84494fdb8e6a0fa5d59a3f7c5173d33cc88192a25116e6e
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000088b80000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da00000000000000000000000000000000000000000000000000000000003d090100000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d656146614d52563774346e3743337975394b594370716657384466433271684d53636e4351565961516a696f0000000000000000000000
-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmeaFaMRV7t4n7C3yu9KYCpqfW8DfC2qhMScnCQVYaQjio
Arg [1] : _minGasToStore (uint256): 35000
Arg [2] : _layerZeroEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da
Arg [3] : _startMintId (uint256): 4000001
Arg [4] : _endMintId (uint256): 5000000
-----Encoded View---------------
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ZKSYNC | 31.67% | $1,794.25 | 0.00115 | $2.06 | |
ETH | 19.01% | $1,795.02 | 0.00069 | $1.24 | |
ARB | 16.95% | $1,794.87 | 0.00061528 | $1.1 | |
OP | 12.67% | $1,794.87 | 0.00046 | $0.82564 | |
SCROLL | 12.67% | $1,794.25 | 0.00046 | $0.825354 | |
BASE | 6.34% | $1,794.87 | 0.00023 | $0.412821 | |
AVAX | 0.68% | $23.01 | 0.0019367 | $0.044563 | |
MANTLE | <0.01% | $0.712706 | 0.00023 | $0.000164 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.