More Info
Private Name Tags
ContractCreator
TokenTracker
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 8 internal transactions
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.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x43E3Ad27...802Fc8Ad9 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MoonshotToken
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.5.8
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.23;import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol";import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol";import {IMoonshotToken} from "./interfaces/IMoonshotToken.sol";import {MoonshotFactory} from "./MoonshotFactory.sol";contract MoonshotToken is ERC20Burnable, IMoonshotToken, ReentrancyGuard {CurveType public constant curveType = CurveType.ConstantProductV1;uint256 public immutable initalTokenSupply;uint256 public virtualTokenReserves;uint256 public virtualCollateralReserves;uint256 public immutable virtualCollateralReservesInitial;uint256 public immutable feeBPS;uint256 public immutable dexFeeBPS;uint256 public immutable mcLowerLimit;uint256 public immutable mcUpperLimit;
123456789101112131415// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.23;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint) external view returns (address pair);function allPairsLength() external view returns (uint);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function createPair(address tokenA, address tokenB) external returns (address pair);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.23;import {MoonshotToken} from "./MoonshotToken.sol";import {IMoonshotFactory} from "./interfaces/IMoonshotFactory.sol";import {IMoonshotToken} from "./interfaces/IMoonshotToken.sol";import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol";import {SignatureChecker} from "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";contract MoonshotFactory is IMoonshotFactory, OwnableUpgradeable, ReentrancyGuardUpgradeable, UUPSUpgradeable {uint256 public totalSupply;uint256 public virtualTokenReserves;uint256 public virtualCollateralReserves;uint256 public feeBasisPoints;uint256 public mcUpperLimit;uint256 public mcLowerLimit;uint256 public tokensMigrationThreshold;uint256 public migrationFeeFixed;uint256 public poolCreationFee;uint256 public dexFeeBasisPoints;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity >=0.6.2;import "./IUniswapV2Router01.sol";interface IUniswapV2Router02 is IUniswapV2Router01 {function removeLiquidityETHSupportingFeeOnTransferTokens(address token,uint liquidity,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external returns (uint amountETH);function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(address token,uint liquidity,uint amountTokenMin,uint amountETHMin,address to,uint deadline,bool approveMax,uint8 v,bytes32 r,bytes32 s) external returns (uint amountETH);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.23;import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";interface IMoonshotToken is IERC20 {enum CurveType {ConstantProductV1}struct ConstructorParams {string name;string symbol;address creator;uint256 totalSupply;uint256 virtualTokenReserves;uint256 virtualCollateralReserves;uint256 feeBasisPoints;uint256 dexFeeBasisPoints;uint256 migrationFeeFixed;uint256 poolCreationFee;uint256 mcLowerLimit;uint256 mcUpperLimit;uint256 tokensMigrationThreshold;address uniV2Router;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.20;import {IERC20} from "./IERC20.sol";import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";import {Context} from "../../utils/Context.sol";import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.** TIP: For a detailed writeup see our guide* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** The default value of {decimals} is 18. To change this, you should override* this function so it returns a different value.** We have followed general OpenZeppelin Contracts guidelines: functions revert* instead returning `false` on failure. This behavior is nonetheless* conventional and does not conflict with the expectations of ERC-20
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.23;interface IMoonshotFactory {error InvalidSignature();error SignatureIsUsed();error FailedToSendETH();error NotReadyForMigration();error TotalSupplyZeroValue();error VirtualTokenReservesZeroValue();error VirtualCollateralReservesZeroValue();error McUpperLimitZeroValue();error McLowerLimitZeroValue();error TokensMigrationThresholdZeroValue();error TreasuryZeroValue();error DexTreasuryZeroValue();error SignerZeroValue();error McLowerLimitGreaterThanUpperLimit();error FeeBPSCheckFailed();error MigrationFeeTooHigh();error NotMoonshotToken();error TotalSupplyWrongValue();event SetConfig(uint256 totalSupply,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity >=0.6.2;interface IUniswapV2Router01 {function factory() external pure returns (address);function WETH() external pure returns (address);function addLiquidity(address tokenA,address tokenB,uint amountADesired,uint amountBDesired,uint amountAMin,uint amountBMin,address to,uint deadline) external returns (uint amountA, uint amountB, uint liquidity);function addLiquidityETH(address token,uint amountTokenDesired,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);function removeLiquidity(
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)pragma solidity ^0.8.20;/*** @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 EIP-1153 (transient storage) is available on the chain you're deploying at,* consider using {ReentrancyGuardTransient} instead.** 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 standard as defined in the ERC.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the value of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Context} from "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys a `value` amount of tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 value) public virtual {_burn(_msgSender(), value);}/*** @dev Destroys a `value` amount of tokens from `account`, deducting from* the caller's allowance.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol";import {Initializable} from "../proxy/utils/Initializable.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. 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 OwnableUpgradeable is Initializable, ContextUpgradeable {/// @custom:storage-location erc7201:openzeppelin.storage.Ownablestruct OwnableStorage {address _owner;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)pragma solidity ^0.8.20;import {Initializable} from "../proxy/utils/Initializable.sol";/*** @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 EIP-1153 (transient storage) is available on the chain you're deploying at,* consider using {ReentrancyGuardTransient} instead.** 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 ReentrancyGuardUpgradeable is Initializable {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/SignatureChecker.sol)pragma solidity ^0.8.20;import {ECDSA} from "./ECDSA.sol";import {IERC1271} from "../../interfaces/IERC1271.sol";/*** @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA* signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like* Argent and Safe Wallet (previously Gnosis Safe).*/library SignatureChecker {/*** @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the* signature is validated against that smart contract using ERC-1271, otherwise it's validated using `ECDSA.recover`.** NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus* change through time. It could return true at block N and false at block N+1 (or the opposite).*/function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {if (signer.code.length == 0) {(address recovered, ECDSA.RecoverError err, ) = ECDSA.tryRecover(hash, signature);return err == ECDSA.RecoverError.NoError && recovered == signer;} else {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (proxy/utils/UUPSUpgradeable.sol)pragma solidity ^0.8.20;import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol";import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol";import {Initializable} from "./Initializable.sol";/*** @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.** A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing* `UUPSUpgradeable` with a custom implementation of upgrades.** The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.*/abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {/// @custom:oz-upgrades-unsafe-allow state-variable-immutableaddress private immutable __self = address(this);/*** @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`* and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)pragma solidity ^0.8.20;import {Strings} from "../Strings.sol";/*** @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.** The library provides methods for generating a hash of a message that conforms to the* https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]* specifications.*/library MessageHashUtils {/*** @dev Returns the keccak256 digest of an ERC-191 signed data with version* `0x45` (`personal_sign` messages).** The digest is calculated by prefixing a bytes32 `messageHash` with* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.** NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with* keccak256, although any bytes32 value can be safely used because the final digest will* be re-hashed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC-20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.20;import {IERC20} from "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC-20 standard.*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/function decimals() external view returns (uint8);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;import {Initializable} from "../proxy/utils/Initializable.sol";/*** @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 ContextUpgradeable is Initializable {function __Context_init() internal onlyInitializing {}function __Context_init_unchained() internal onlyInitializing {}function _msgSender() internal view virtual returns (address) {return msg.sender;}
1234567891011121314151617// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1271.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-1271 standard signature validation method for* contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].*/interface IERC1271 {/*** @dev Should return whether the signature provided is valid for the provided data* @param hash Hash of the data to be signed* @param signature Signature byte array associated with _data*/function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.20;/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:** [.hljs-theme-light.nopadding]* ```solidity* contract MyToken is ERC20Upgradeable {* function initialize() initializer public {* __ERC20_init("MyToken", "MTK");* }* }** contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC1822.sol)pragma solidity ^0.8.20;/*** @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified* proxy whose upgrades are fully controlled by the current implementation.*/interface IERC1822Proxiable {/*** @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation* address.** IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this* function revert if invoked through a proxy.*/function proxiableUUID() external view returns (bytes32);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (proxy/ERC1967/ERC1967Utils.sol)pragma solidity ^0.8.21;import {IBeacon} from "../beacon/IBeacon.sol";import {IERC1967} from "../../interfaces/IERC1967.sol";import {Address} from "../../utils/Address.sol";import {StorageSlot} from "../../utils/StorageSlot.sol";/*** @dev This library provides getters and event emitting update functions for* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.*/library ERC1967Utils {/*** @dev Storage slot with the address of the current implementation.* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.*/// solhint-disable-next-line private-vars-leading-underscorebytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;/*** @dev The `implementation` of the proxy is invalid.*/error ERC1967InvalidImplementation(address implementation);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)pragma solidity ^0.8.20;import {Errors} from "./Errors.sol";/*** @dev Collection of functions related to the address type*/library Address {/*** @dev There's no code at `target` (it is not a contract).*/error AddressEmptyCode(address target);/*** @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].
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)pragma solidity ^0.8.20;/*** @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.*/interface IERC1967 {/*** @dev Emitted when the implementation is upgraded.*/event Upgraded(address indexed implementation);/*** @dev Emitted when the admin account has changed.*/event AdminChanged(address previousAdmin, address newAdmin);/*** @dev Emitted when the beacon is changed.*/event BeaconUpgraded(address indexed beacon);}
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)pragma solidity ^0.8.20;/*** @dev This is the interface that {BeaconProxy} expects of its beacon.*/interface IBeacon {/*** @dev Must return an address that can be used as a delegate call target.** {UpgradeableBeacon} will check that this address is a contract.*/function implementation() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC-1967 implementation slot:* ```solidity* contract ERC1967 {* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;import {SafeCast} from "./SafeCast.sol";/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.** IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute* one branch when needed, making this function more expensive.*/function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {unchecked {// branchless ternary works because:// b ^ (a ^ b) == a// b ^ 0 == breturn b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)pragma solidity ^0.8.20;import {Panic} from "../Panic.sol";import {SafeCast} from "./SafeCast.sol";/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an success flag (no overflow).*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)pragma solidity ^0.8.20;/*** @dev Collection of common custom errors used in multiple contracts** IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.* It is recommended to avoid relying on the error API for critical functionality.** _Available since v5.1._*/library Errors {/*** @dev The ETH balance of the account is not enough to perform the operation.*/error InsufficientBalance(uint256 balance, uint256 needed);/*** @dev A call to an address target failed. The target may have reverted.*/error FailedCall();/*** @dev The deployment failed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)pragma solidity ^0.8.20;/*** @dev Helper library for emitting standardized panic codes.** ```solidity* contract Example {* using Panic for uint256;** // Use any of the declared internal constants* function foo() { Panic.GENERIC.panic(); }** // Alternatively* function foo() { Panic.panic(Panic.GENERIC); }* }* ```** Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].** _Available since v5.1._*/// slither-disable-next-line unused-statelibrary Panic {
12345678910111213141516171819{"optimizer": {"enabled": true,"mode": "3"},"viaIR": true,"evmVersion": "paris","outputSelection": {"*": {"*": ["abi"]}},"detectMissingLibraries": false,"forceEVMLA": false,"enableEraVMExtensions": false,"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"virtualTokenReserves","type":"uint256"},{"internalType":"uint256","name":"virtualCollateralReserves","type":"uint256"},{"internalType":"uint256","name":"feeBasisPoints","type":"uint256"},{"internalType":"uint256","name":"dexFeeBasisPoints","type":"uint256"},{"internalType":"uint256","name":"migrationFeeFixed","type":"uint256"},{"internalType":"uint256","name":"poolCreationFee","type":"uint256"},{"internalType":"uint256","name":"mcLowerLimit","type":"uint256"},{"internalType":"uint256","name":"mcUpperLimit","type":"uint256"},{"internalType":"uint256","name":"tokensMigrationThreshold","type":"uint256"},{"internalType":"address","name":"uniV2Router","type":"address"}],"internalType":"struct IMoonshotToken.ConstructorParams","name":"_params","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToSendETH","type":"error"},{"inputs":[],"name":"InsufficientTokenReserves","type":"error"},{"inputs":[],"name":"MarketcapThresholdReached","type":"error"},{"inputs":[],"name":"NotEnoughETHReserves","type":"error"},{"inputs":[],"name":"NotEnoughtETHToBuyTokens","type":"error"},{"inputs":[],"name":"OnlyFactory","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"SendingToPairForbidden","type":"error"},{"inputs":[],"name":"SlippageCheckFailed","type":"error"},{"inputs":[],"name":"TradingStopped","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountOutMin","type":"uint256"}],"name":"buyExactIn","outputs":[{"internalType":"uint256","name":"collateralToPayWithFee","type":"uint256"},{"internalType":"uint256","name":"helioFee","type":"uint256"},{"internalType":"uint256","name":"dexFee","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_maxCollateralAmount","type":"uint256"}],"name":"buyExactOut","outputs":[{"internalType":"uint256","name":"collateralToPayWithFee","type":"uint256"},{"internalType":"uint256","name":"helioFee","type":"uint256"},{"internalType":"uint256","name":"dexFee","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curveType","outputs":[{"internalType":"enum IMoonshotToken.CurveType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fixedMigrationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountOut","type":"uint256"},{"internalType":"uint256","name":"_reserveIn","type":"uint256"},{"internalType":"uint256","name":"_reserveOut","type":"uint256"},{"internalType":"bool","name":"_paymentTokenIsOut","type":"bool"}],"name":"getAmountInAndFee","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountIn","type":"uint256"},{"internalType":"uint256","name":"_reserveIn","type":"uint256"},{"internalType":"uint256","name":"_reserveOut","type":"uint256"},{"internalType":"bool","name":"_paymentTokenIsIn","type":"bool"}],"name":"getAmountOutAndFee","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurveProgressBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMarketCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initalTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mcLowerLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mcUpperLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrate","outputs":[{"internalType":"uint256","name":"tokensToMigrate","type":"uint256"},{"internalType":"uint256","name":"tokensToBurn","type":"uint256"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolCreationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_amountCollateralMin","type":"uint256"}],"name":"sellExactIn","outputs":[{"internalType":"uint256","name":"collateralToReceiveMinusFee","type":"uint256"},{"internalType":"uint256","name":"helioFee","type":"uint256"},{"internalType":"uint256","name":"dexFee","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmountMax","type":"uint256"},{"internalType":"uint256","name":"_amountCollateral","type":"uint256"}],"name":"sellExactOut","outputs":[{"internalType":"uint256","name":"collateralToReceiveMinusFee","type":"uint256"},{"internalType":"uint256","name":"tokensOut","type":"uint256"},{"internalType":"uint256","name":"helioFee","type":"uint256"},{"internalType":"uint256","name":"dexFee","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendingToPairForbidden","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMigrationThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStopped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"virtualCollateralReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"virtualCollateralReservesInitial","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"virtualTokenReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x0001000000000002002700000000000200000000000103550000006003100270000004530330019700000001002001900000003b0000c13d0000008002000039000000400020043f000000040030008c0000005f0000413d000000000201043b000000e0022002700000046c0020009c000000610000a13d0000046d0020009c000000b00000213d0000047b0020009c0000012b0000213d000004820020009c0000029f0000a13d000004830020009c000005240000613d000004840020009c000005020000613d000004850020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001d80000c13d000000800010043f000000000005004b000006c20000613d000000000030043f000000020020008c000006da0000413d0000045f0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000000320000413d000007820000013d0000022004000039000000400040043f0000000002000416000000000002004b0000005f0000c13d0000001f0230003900000454022001970000022002200039000000400020043f0000001f0530018f000004550630019800000220026000390000004d0000613d000000000701034f000000007807043c0000000004840436000000000024004b000000490000c13d000000000005004b0000005a0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000005f0000413d000002200400043d000004560040009c000000d10000a13d00000000010000190000114800010430000004880020009c000000e10000a13d000004890020009c000001510000213d000004900020009c000003ae0000a13d000004910020009c000006a50000613d000004920020009c000006840000613d000004930020009c0000005f0000c13d000000840030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000006402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b0000005f0000c13d0000000403100370000000000403043b0000002403100370000000000303043b0000004401100370000000000101043b000d00000001001d000000000002004b0000070e0000c13d000c0000003400ad0000000002040019000000000004004b0000008b0000613d0000000c012000f9000000000031004b00000c180000c13d0000000d0020006b00000c180000413d0000000d0120006b000003990000613d000d00000001001d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000d04000029000b000c00400101000000000101043b0000000b021000b9000a00000002001d0000000c0040006c000000a80000213d0000000a030000290000000b023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000007b90000013d0000046e0020009c0000013e0000213d000004750020009c000002b90000a13d000004760020009c000006180000613d000004770020009c000005070000613d000004780020009c0000005f0000c13d000000440030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000402100370000000000202043b0000045a0020009c0000005f0000213d0000002401100370000000000101043b000d00000001001d0000045a0010009c0000005f0000213d000000000020043f0000000101000039000000200010043f00000000010000191146110d0000040f0000000d02000029000000000020043f000000200010043f0000069a0000013d000002200630003900000220024000390000000001260049000004570010009c0000005f0000213d000001c00010008c0000005f0000413d000000400500043d000004580050009c000001de0000a13d000004b801000041000000000010043f0000004101000039000000040010043f0000046b010000410000114800010430000004960020009c000001c30000a13d000004970020009c0000039f0000a13d000004980020009c0000069d0000613d000004990020009c000006350000613d0000049a0020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000001000410000000000010043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b000000000101041a000d00000001001d000004a20100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000000d0110006c00000c180000413d000d2710001000cd000001130000613d0000000d011000f9000027100010008c00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000c00100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000000000001004b000003990000613d0000000d011000f9000027100010008c0000271001008039000000640010008c000000640100a039000006720000013d0000047c0020009c000002c80000a13d0000047d0020009c000006230000613d0000047e0020009c0000050d0000613d0000047f0020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000001000412001700000001001d001601000000003d000080050100003900000044030000390000000004000415000000170440008a000006b60000013d0000046f0020009c000002f30000a13d000004700020009c0000062a0000613d000004710020009c000005180000613d000004720020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000001000412000f00000001001d000e00c00000003d0000800501000039000000440300003900000000040004150000000f0440008a000006b60000013d0000048a0020009c000004410000a13d0000048b0020009c000006ac0000613d0000048c0020009c0000068f0000613d0000048d0020009c0000005f0000c13d000000440030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000002402100370000000000202043b000d00000002001d0000000401100370000000000101043b000c00000001001d000004a201000041000000000010044300000000010004120000000400100443000001600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000045a011001970000000002000411000000000012004b000006bc0000c13d0000000801000039000000000101041a000000ff00100190000006c80000c13d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000b000d001000bd0000000d0000006b000001930000613d0000000b030000290000000d023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000b03000029000a271000300122000000000101043b0000000a021000b9000900000002001d000027100030008c000001ad0000413d0000000a0300002900000009023000f9000000000012004b00000c180000c13d0000000901000029000027100110011a000800000001001d000b000a0010007300000c180000413d0000000b020000290000000d0120006b00000c180000413d000700080010007400000c180000413d11460ecd0000040f0000000004010019000600000002001d0000000001000414000004530010009c0000045301008041000000c0011002100000000a03000029000000080030006c000008220000c13d0000000002040019000008260000013d0000049d0020009c000003740000213d000004a00020009c000004e00000613d000004a10020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000006bf0000613d000004b801000041000000000010043f0000002201000039000000040010043f0000046b010000410000114800010430000001c003500039000000400030043f0000000001020433000004560010009c0000005f0000213d00000000012100190000001f07100039000000000067004b0000005f0000813d0000000087010434000004560070009c000000db0000213d0000001f09700039000004c0099001970000003f09900039000004c0099001970000000009390019000004560090009c000000db0000213d000000400090043f00000000007304350000000009870019000000000069004b0000005f0000213d000001e009500039000000000007004b000002010000613d000000000a000019000000000b9a0019000000000c8a0019000000000c0c04330000000000cb0435000000200aa0003900000000007a004b000001fa0000413d00000000079700190000000000070435000000000735043600000240034000390000000003030433000004560030009c0000005f0000213d00000000022300190000001f03200039000000000063004b000000000800001900000459080080410000045903300197000000000003004b00000000090000190000045909004041000004590030009c000000000908c019000000000009004b0000005f0000c13d0000000098020434000004560080009c000000db0000213d0000001f02800039000004c0022001970000003f02200039000004c003200197000000400200043d0000000003320019000000000023004b000000000a000039000000010a004039000004560030009c000000db0000213d0000000100a00190000000db0000c13d000000400030043f0000000003820436000000000a98001900000000006a004b0000005f0000213d000000000008004b000002340000613d0000000006000019000000000a630019000000000b960019000000000b0b04330000000000ba04350000002006600039000000000086004b0000022d0000413d0000000006280019000000200660003900000000000604350000000000270435000002600640003900000000060604330000045a0060009c0000005f0000213d0000004007500039000c00000007001d0000000000670435000002800640003900000000060604330000006007500039000d00000007001d0000000000670435000002a00640003900000000060604330000008007500039000b00000007001d0000000000670435000002c0064000390000000006060433000000a007500039000700000007001d0000000000670435000002e0064000390000000006060433000000c007500039000a00000007001d000000000067043500000300064000390000000006060433000000e007500039000900000007001d0000000000670435000003200640003900000000060604330000010007500039000800000007001d0000000000670435000003400640003900000000060604330000012007500039000600000007001d0000000000670435000003600640003900000000060604330000014007500039000500000007001d0000000000670435000003800640003900000000060604330000016007500039000400000007001d00000000006704350000018007500039000003a0064000390000000006060433000300000007001d0000000000670435000003c00440003900000000040404330000045a0040009c0000005f0000213d000001a006500039000200000006001d000000000046043500000000060504330000000075060434000004560050009c000000db0000213d0000000304000039000000000804041a000000010980019000000001088002700000007f0880618f0000001f0080008c000000000a000039000000010a0020390000000000a9004b000001d80000c13d000000200080008c000002970000413d000000000040043f0000001f0950003900000005099002700000045b0990009a000000200050008c0000045c090040410000001f0880003900000005088002700000045b0880009a000000000089004b000002970000813d000000000009041b0000000109900039000000000089004b000002930000413d0000001f0050008c000009780000a13d000000000040043f000004c009500198000009c90000c13d00000020080000390000045c07000041000009d50000013d000004860020009c000004ba0000613d000004870020009c0000005f0000c13d000000440030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000402100370000000000202043b0000045a0020009c0000005f0000213d00000000040200190000002401100370000000000301043b000c00000003001d00000000020004110000000001040019000d00000004001d114610a20000040f0000000d010000290000000c020000291146103f0000040f0000000001000019000011470001042e000004790020009c000004c50000613d0000047a0020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000001000412001300000001001d001200e00000003d000080050100003900000044030000390000000004000415000000130440008a000006b60000013d000004800020009c000004d00000613d000004810020009c0000005f0000c13d000000440030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000401100370000000000101043b000d00000001001d0000045a0010009c0000005f0000213d000004a201000041000000000010044300000000010004120000000400100443000001400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000000d02000029000000000121013f0000045a00100198000002ee0000c13d0000000801000039000000000101041a0000ff0000100190000007940000c13d00000024010000390000000001100367000000000301043b0000000001000411000006700000013d000004730020009c000004db0000613d000004740020009c0000005f0000c13d000000440030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000002402100370000000000202043b000c00000002001d0000000401100370000000000101043b000d00000001001d000004a201000041000000000010044300000000010004120000000400100443000001600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000045a011001970000000002000411000000000012004b000006bc0000c13d0000000801000039000000000101041a000000ff00100190000006c80000c13d0000000701000039000000000101041a000b000d001000bd0000000d0000006b000003230000613d0000000b030000290000000d023000fa000000000012004b00000c180000c13d0000000601000039000000000101041a0000000d0010002a00000c180000413d0000000d0110002a000003990000613d000a00000001001d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000a040000290008000b00400101000000000101043b00000008021000b9000900000002001d0000000b0040006c000003440000213d000000090300002900000008023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000903000029000b271000300122000000000101043b0000000b021000b9000a00000002001d000027100030008c0000035e0000413d0000000b030000290000000a023000f9000000000012004b00000c180000c13d0000000a01000029000027100110011a000700000001001d0009000b0010007300000c180000413d0000000902000029000000080120006b00000c180000413d000600070010007400000c180000413d11460ecd0000040f0000000004010019000500000002001d0000000001000414000004530010009c0000045301008041000000c0011002100000000b03000029000000070030006c0000085b0000c13d00000000020400190000085f0000013d0000049e0020009c000004f10000613d0000049f0020009c0000005f0000c13d000000840030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000006402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b0000005f0000c13d0000000403100370000000000403043b0000002403100370000000000303043b000d00000003001d0000004401100370000000000101043b000000000002004b000006dc0000c13d0000000003010019000c0000001400ad0000000002040019000000000004004b000003950000613d0000000c012000f9000000000031004b00000c180000c13d0000000d0020002a00000c180000413d0000000d0120002a000007970000c13d000004b801000041000000000010043f0000001201000039000000040010043f0000046b0100004100001148000104300000049b0020009c0000051f0000613d0000049c0020009c0000005f0000c13d0000000001000416000000000001004b0000005f0000c13d0000000001000412002500000001001d002401800000003d000080050100003900000044030000390000000004000415000000250440008a000004ea0000013d000004940020009c000006400000613d000004950020009c0000005f0000c13d000000440030008c0000005f0000413d0000002402100370000000000202043b000c00000002001d0000000401100370000000000101043b000d00000001001d000004a201000041000000000010044300000000010004120000000400100443000001600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000045a011001970000000002000411000000000012004b000006bc0000c13d0000000801000039000000000101041a000000ff00100190000006c80000c13d0000000001000410000000000010043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b000000000101041a0000000d02000029000000000021004b000007cb0000a13d0000000701000039000000000101041a000b0000002100ad000000000002004b000003ec0000613d0000000b030000290000000d023000fa000000000012004b00000c180000c13d0000000601000039000000000101041a000a000d0010007400000c180000413d000003990000613d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000a040000290008000b00400101000000000101043b00000008021000b9000900000002001d0000000b0040006c0000040b0000213d000000090300002900000008023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000903000029000b271000300122000000000101043b0000000b021000b9000a00000002001d000027100030008c000004250000413d0000000b030000290000000a023000f9000000000012004b00000c180000c13d0000000a01000029000027100110011a000700000001001d0009000b0010007300000c180000413d0000000802000029000000090020002a00000c180000413d000000080200002900000009012000290006000b0020002d000000060010006b00000c180000413d0000000c02000029000000060020006b000009a00000213d11460ecd0000040f0000000004010019000c00000002001d0000000001000414000004530010009c0000045301008041000000c0011002100000000b03000029000000070030006c00000a090000c13d000000000204001900000a0d0000013d0000048e0020009c000006790000613d0000048f0020009c0000005f0000c13d000000240030008c0000005f0000413d0000000401100370000000000101043b000d00000001001d000004a201000041000000000010044300000000010004120000000400100443000001600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000045a011001970000000002000411000000000012004b000006bc0000c13d0000000801000039000000000101041a000000ff00100190000006c80000c13d0000000001000410000000000010043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b000000000101041a0000000d0010006c000007cb0000a13d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000002000416000000000101043b000c0000002100ad000000000002004b000004890000613d0000000c022000f9000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000c03000029000b271000300122000000000101043b0000000b021000b9000a00000002001d000027100030008c000004a30000413d0000000b030000290000000a023000f9000000000012004b00000c180000c13d0000000a01000029000027100110011a000900000001001d000c000b0010007300000c180000413d00000000010004160008000c0010007400000c180000413d0000000802000029000700090020007400000c180000413d11460ecd0000040f0000000004010019000600000002001d0000000001000414000004530010009c0000045301008041000000c0011002100000000b03000029000000090030006c000008ee0000c13d0000000002040019000008f20000013d0000000001000416000000000001004b0000005f0000c13d0000000001000412001d00000001001d001c00600000003d0000800501000039000000440300003900000000040004150000001d0440008a000006b60000013d0000000001000416000000000001004b0000005f0000c13d0000000001000412001500000001001d001401600000003d000080050100003900000044030000390000000004000415000000150440008a000004ea0000013d0000000001000416000000000001004b0000005f0000c13d0000000001000412001b00000001001d001a01400000003d0000800501000039000000440300003900000000040004150000001b0440008a000004ea0000013d0000000001000416000000000001004b0000005f0000c13d0000000701000039000006a10000013d0000000001000416000000000001004b0000005f0000c13d0000000001000412002700000001001d002601200000003d000080050100003900000044030000390000000004000415000000270440008a0000000504400210000004a2020000411146111e0000040f0000045a01100197000000800010043f000004a301000041000011470001042e000000440030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000402100370000000000202043b000d00000002001d0000045a0020009c0000005f0000213d0000002401100370000000000301043b0000000002000411000000000002004b000006d00000c13d000004bf01000041000006d30000013d0000000001000416000000000001004b0000005f0000c13d11460e700000040f000006720000013d0000000001000416000000000001004b0000005f0000c13d000000800000043f000004a301000041000011470001042e0000000001000416000000000001004b0000005f0000c13d0000000001000412001900000001001d001800200000003d000080050100003900000044030000390000000004000415000000190440008a000006b60000013d0000000001000416000000000001004b0000005f0000c13d0000271001000039000000800010043f000004a301000041000011470001042e0000000001000416000000000001004b0000005f0000c13d0000000601000039000006a10000013d0000000001000416000000000001004b0000005f0000c13d000004a201000041000000000010044300000000010004120000000400100443000001600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000045a011001970000000002000411000000000012004b000006bc0000c13d0000000801000039000000000201041a000004c102200197000000000021041b0000000001000410000000000010043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b000000000101041a000d00000001001d000004a201000041000000000010044300000000010004120000000400100443000001800100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000000400400043d000c00000004001d00000024024000390000000d030000290000000000320435000004a90200004100000000002404350000045a021001970000000401400039000b00000002001d0000000000210435000004530040009c0000045301000041000000000104401900000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000468011001c700000000020004101146113c0000040f0000000c0b00002900000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000005850000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005810000c13d000000000006004b000005920000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007ce0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000004560010009c000000db0000213d0000000100200190000000db0000c13d000000400010043f000000200030008c0000005f0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000005f0000c13d000004aa010000410000000000100443000000000100041000000004001004430000000001000414000004530010009c0000045301008041000000c001100210000004ab011001c70000800a02000039114611410000040f000000010020019000000dfc0000613d000000000101043b000c00000001001d000004a201000041000000000010044300000000010004120000000400100443000000e00100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000a00000001001d000c000c0010007300000c180000413d000004a201000041000000000010044300000000010004120000000400100443000001000100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000900000001001d0000000c0210006b00000c180000413d0000000601000039000000000301041a00000000012300a9000000000003004b000005e40000613d00000000033100d9000000000023004b00000c180000c13d0000000702000039000000000202041a000000000002004b000003990000613d00000000012100d9000c00000001001d000d000d0010007300000c180000413d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0008000a001000bd0000000a0000006b000006030000613d0000000a0300002900000008023000f9000000000012004b00000c180000c13d0000000801000029000027100110011a000700000001001d000a000a0010007300000c180000413d11460ecd0000040f000600000001001d000500000002001d0000000a02000029000000090020002a00000c180000413d0000000a0200002900000009032000290000000001000414000004530010009c0000045301008041000000c001100210000000000003004b00000c4b0000c13d000000060200002900000c4f0000013d0000000001000416000000000001004b0000005f0000c13d0000000001000412001100000001001d001000000000003d000080050100003900000044030000390000000004000415000000110440008a000006b60000013d0000000001000416000000000001004b0000005f0000c13d0000000801000039000000000101041a0000ff0000100190000006300000013d0000000001000416000000000001004b0000005f0000c13d0000000801000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000004a301000041000011470001042e0000000001000416000000000001004b0000005f0000c13d0000000001000412002300000001001d002200400000003d000080050100003900000044030000390000000004000415000000230440008a000006b60000013d000000640030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000402100370000000000202043b000d00000002001d0000045a0020009c0000005f0000213d0000002402100370000000000202043b000c00000002001d0000045a0020009c0000005f0000213d0000004401100370000000000101043b000b00000001001d000004a201000041000000000010044300000000010004120000000400100443000001400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b0000000c0110014f0000045a00100198000006690000c13d0000000801000039000000000101041a0000ff0000100190000007940000c13d00000000020004110000000d010000290000000b03000029114610a20000040f0000000d010000290000000c020000290000000b0300002911460fd40000040f0000000101000039000000400200043d0000000000120435000004530020009c00000453020080410000004001200210000004a8011001c7000011470001042e0000000001000416000000000001004b0000005f0000c13d0000000001000412002100000001001d002000a00000003d000080050100003900000044030000390000000004000415000000210440008a000006b60000013d000000240030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000401100370000000000201043b00000000010004111146103f0000040f0000000001000019000011470001042e000000240030008c0000005f0000413d0000000002000416000000000002004b0000005f0000c13d0000000401100370000000000101043b0000045a0010009c0000005f0000213d000000000010043f000000200000043f00000000010000191146110d0000040f000006a10000013d0000000001000416000000000001004b0000005f0000c13d0000000201000039000000000101041a000000800010043f000004a301000041000011470001042e0000000001000416000000000001004b0000005f0000c13d0000001201000039000000800010043f000004a301000041000011470001042e0000000001000416000000000001004b0000005f0000c13d0000000001000412001f00000001001d001e00800000003d0000800501000039000000440300003900000000040004150000001f0440008a0000000504400210000004a2020000411146111e0000040f000000800010043f000004a301000041000011470001042e000000400100043d000004b402000041000006ca0000013d000000800010043f000000000005004b000006d70000c13d000004c201200197000000a00010043f000000000004004b000000c001000039000000a001006039000007830000013d000000400100043d000004b5020000410000000000210435000004530010009c0000045301008041000000400110021000000465011001c700001148000104300000000d0000006b000007400000c13d000004bd01000041000000800010043f000000840000043f000004be010000410000114800010430000000000030043f000000020020008c000007780000813d000000a001000039000007830000013d000b00000001001d000c00000004001d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000a000c001000bd0000000c0000006b000006f50000613d0000000a030000290000000c023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000a05000029000027100250011a000000000101043b00000000032100a9000027100430011a000027100050008c000007ec0000813d000000000024004b00000c180000213d000007f10000013d000b00000003001d000c00000004001d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000a000c001000bd0000000c0000006b000007270000613d0000000a030000290000000c023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000a05000029000027100250011a000000000101043b00000000032100a9000027100430011a000027100050008c000007ff0000813d000000000024004b000008040000a13d00000c180000013d000c00000003001d000000000020043f0000000101000039000000200010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b0000000d02000029000000000020043f000000200010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b0000000c02000029000000000021041b000000400100043d0000000000210435000004530010009c000004530100804100000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000462011001c70000800d020000390000000303000039000004bc0400004100000000050004110000000d060000291146113c0000040f00000001002001900000005f0000613d000000400100043d00000001020000390000000000210435000004530010009c00000453010080410000004001100210000004a8011001c7000011470001042e0000045c0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000077a0000413d000000c001300039000000800210008a000000800100003911460e500000040f000000400100043d000d00000001001d000000800200003911460e3b0000040f0000000d020000290000000001210049000004530010009c00000453010080410000006001100210000004530020009c00000453020080410000004002200210000000000121019f000011470001042e000000400100043d000004bb02000041000006ca0000013d000d00000001001d000004a201000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000d04000029000b000c00400101000000000101043b0000000b021000b9000a00000002001d0000000c0040006c000007b20000213d0000000a030000290000000b023000fa000000000012004b00000c180000c13d000004a201000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d0000000a05000029000027100250011a000000000101043b00000000032100a9000027100430011a000027100050008c000008130000813d000000000024004b00000c180000213d000008180000013d000000400100043d000004b602000041000006ca0000013d0000001f0530018f0000045506300198000000400200043d0000000004620019000007d90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007d50000c13d000000000005004b000007e60000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000004530020009c00000453020080410000004002200210000000000112019f0000114800010430000000000024004b00000c180000213d00000000032300d9000000000013004b00000c180000c13d0000000b010000290000000c011000b90000000c0000006b000007f80000613d0000000c031000fa0000000b0030006c00000c180000c13d0000000d040000290000000c0040002a00000c180000413d0000000d040000290000000c0340002a000003990000613d000008110000013d000000000024004b00000c180000213d00000000032300d9000000000013004b00000c180000c13d0000000b010000290000000c011000b90000000c0000006b0000080e0000613d0000000c031000fa0000000b0030006c00000c180000c13d0000000d040000290000000c0040006c00000c180000413d0000000d040000290000000c0340006c000003990000613d000b0000003100e1000008180000013d000000000024004b00000c180000213d00000000032300d9000000000013004b00000c180000c13d000000400100043d000000200310003900000000002304350000000b020000290000000000210435000004530010009c00000453010080410000004001100210000004b3011001c7000011470001042e000004a5011001c700008009020000390000000b0300002900000000050000191146113c0000040f00000060031002700000045303300198000008350000c13d000000010020019000000e380000613d0000000001000414000004530010009c0000045301008041000000c00110021000000009020000290000270f0020008c000008930000213d0000000602000029000008980000013d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f0000000006350436000004550530019800000000035600190000084d0000613d000000000701034f000000007807043c0000000006860436000000000036004b000008490000c13d000000000004004b0000082a0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000082a0000013d000004a5011001c70000800902000039000000090300002900000000050000191146113c0000040f00000060031002700000045303300198000008880000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f0000000006350436000004550530019800000000035600190000087b0000613d000000000701034f000000007807043c0000000006860436000000000036004b000008770000c13d000000000004004b000008880000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000e380000613d0000000001000414000004530010009c0000045301008041000000c0011002100000000a020000290000270f0020008c000009270000213d00000005020000290000092c0000013d000004a5011001c700008009020000390000000803000029000000060400002900000000050000191146113c0000040f00000060031002700000045303300198000008c10000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f000000000635043600000455053001980000000003560019000008b40000613d000000000701034f000000007807043c0000000006860436000000000036004b000008b00000c13d000000000004004b000008c10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000e380000613d0000000601000039000000000201041a0000000d042000b90000000d0000006b000008cb0000613d0000000d034000fa000000000023004b00000c180000c13d0000000703000039000000000503041a0000000d0550006c00000c180000413d000003990000613d00000000075400d90000000c0070006c000009a00000213d0000000006070019000000000027001a00000c180000413d000d00000006001d0000000002260019000000000021041b000000000053041b0000000001000411000000070200002911460f8d0000040f000000400100043d00000060021000390000000803000029000000000032043500000040021000390000000b03000029000000000032043500000020021000390000000d03000029000000000032043500000007020000290000000000210435000004530010009c00000453010080410000004001100210000004b2011001c7000011470001042e000004a5011001c700008009020000390000000c0300002900000000050000191146113c0000040f00000060031002700000045303300198000009010000c13d000000010020019000000e380000613d0000000001000414000004530010009c0000045301008041000000c0011002100000000a020000290000270f0020008c000009830000213d0000000602000029000009880000013d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f000000000635043600000455053001980000000003560019000009190000613d000000000701034f000000007807043c0000000006860436000000000036004b000009150000c13d000000000004004b000008f60000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000008f60000013d000004a5011001c700008009020000390000000703000029000000050400002900000000050000191146113c0000040f00000060031002700000045303300198000009550000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f000000000635043600000455053001980000000003560019000009480000613d000000000701034f000000007807043c0000000006860436000000000036004b000009440000c13d000000000004004b000009550000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000e380000613d00000006020000290000000c0020006c000009a00000413d0000000601000039000000000101041a0000000d0010002a00000c180000413d0000000d011000290000000602000039000000000012041b0000000701000039000000000101041a000000080110006c00000c180000413d0000000702000039000000000012041b0000000001000411000000060200002911460f8d0000040f000000400100043d00000040021000390000000703000029000000000032043500000020021000390000000903000029000000000032043500000006020000290000000000210435000004530010009c00000453010080410000004001100210000004a7011001c7000011470001042e000000000005004b00000000060000190000097c0000613d00000000060704330000000307500210000004c30770027f000004c307700167000000000676016f0000000105500210000000000556019f000009e10000013d000004a5011001c700008009020000390000000903000029000000060400002900000000050000191146113c0000040f00000060031002700000045303300198000009a30000c13d000000010020019000000e380000613d0000000601000039000000000201041a00000007032000b90000000805000029000000090050006c000009970000613d00000007043000fa000000000024004b00000c180000c13d0000000704000039000000000504041a000000070050002a00000c180000413d000000070550002a000003990000613d00000000035300d90000000d0030006c00000c160000813d000000400100043d000004ba02000041000006ca0000013d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f000000000635043600000455053001980000000003560019000009bb0000613d000000000701034f000000007807043c0000000006860436000000000036004b000009b70000c13d000000000004004b0000098c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000098c0000013d0000045c070000410000002008000039000000010a90008a000000050aa002700000045d0aa0009a000000000b680019000000000b0b04330000000000b7041b000000200880003900000001077000390000000000a7004b000009ce0000c13d000000000059004b000009df0000813d0000000309500210000000f80990018f000004c30990027f000004c30990016700000000066800190000000006060433000000000696016f000000000067041b000000010550021000000001055001bf000000000054041b0000000005020433000004560050009c000000db0000213d0000000404000039000000000704041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000001d80000c13d000000200060008c00000a010000413d000000000040043f0000001f0750003900000005077002700000045e0770009a000000200050008c0000045f070040410000001f0660003900000005066002700000045e0660009a000000000067004b00000a010000813d000000000007041b0000000107700039000000000067004b000009fd0000413d0000001f0050008c00000a420000a13d000000000040043f000004c00650019800000a9d0000c13d00000020030000390000045f0100004100000aa90000013d000004a5011001c70000800902000039000000090300002900000000050000191146113c0000040f0000006003100270000004530330019800000a1c0000c13d000000010020019000000e380000613d0000000001000414000004530010009c0000045301008041000000c0011002100000000a020000290000270f0020008c00000a4d0000213d0000000c0200002900000a520000013d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000a340000613d000000000701034f000000007807043c0000000006860436000000000036004b00000a300000c13d000000000004004b00000a110000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000a110000013d000000000005004b000000000100001900000a460000613d00000000010304330000000302500210000004c30220027f000004c302200167000000000121016f0000000102500210000000000121019f00000ab50000013d000004a5011001c7000080090200003900000007030000290000000c0400002900000000050000191146113c0000040f0000006003100270000004530330019800000a770000c13d000000010020019000000e380000613d0000000601000039000000000101041a0000000d0110006c00000c180000413d0000000602000039000000000012041b0000000701000039000000000101041a000000080010002a00000c180000413d00000008011000290000000702000039000000000012041b0000000001000416000000060310006c00000c3d0000a13d0000000001000414000004530010009c0000045301008041000000c001100210000004a5011001c70000800902000039000000000400041100000000050000191146113c0000040f0000006003100270000004530330019800000c830000c13d000000010020019000000e380000613d00000c410000013d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000a8f0000613d000000000701034f000000007807043c0000000006860436000000000036004b00000a8b0000c13d000000000004004b00000a560000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000a560000013d0000045f010000410000002003000039000000010760008a0000000507700270000004600770009a00000000082300190000000008080433000000000081041b00000020033000390000000101100039000000000071004b00000aa20000c13d000000000056004b00000ab30000813d0000000306500210000000f80660018f000004c30660027f000004c30660016700000000022300190000000002020433000000000262016f000000000021041b000000010150021000000001011001bf000000000014041b00000001010000390000000502000039000000000012041b0000000801000039000000000201041a000004c10220019700000100022001bf000000000021041b0000000001000410000000000001004b00000acb0000c13d000000400100043d0000046a02000041000000000021043500000004021000390000000000020435000004530010009c000004530100804100000040011002100000046b011001c700001148000104300000000d0100002900000000030104330000000201000039000000000201041a000100000003001d000000000032001a00000c180000413d0000000102200029000000000021041b0000000001000410000000000010043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000005f0000613d000000000101043b000000000201041a00000001030000290000000002320019000000000021041b000000400100043d0000000000310435000004530010009c000004530100804100000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000462011001c70000800d0200003900000003030000390000046304000041000000000500001900000000060004101146113c0000040f00000001002001900000005f0000613d0000000d010000290000000001010433000000800010043f000000070100002900000000010104330000000702000039000000000012041b000000a00010043f0000000b0100002900000000010104330000000602000039000000000012041b0000000c0100002900000000010104330000045a01100197000001a00010043f0000000a010000290000000001010433000000c00010043f00000009010000290000000001010433000000e00010043f00000008010000290000000001010433000001600010043f00000006010000290000000001010433000001800010043f00000005010000290000000001010433000001000010043f00000004010000290000000001010433000001200010043f00000003010000290000000001010433000001400010043f000000020100002900000000010104330000045a02100197000002000020043f0000000001000411000001e00010043f0000046401000041000000400300043d000d00000003001d0000000000130435000004530030009c0000045301000041000000000103401900000040011002100000000003000414000004530030009c0000045303008041000000c003300210000000000113019f00000465011001c7114611410000040f00000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0b0000290000000d0570002900000b420000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000b3e0000c13d000000000006004b00000b4f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c310000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000c00000002001d000004560020009c000000db0000213d0000000100100190000000db0000c13d0000000c01000029000000400010043f000000200030008c0000005f0000413d00000000010b0433000d00000001001d0000045a0010009c0000005f0000213d000002000200043d00000466010000410000000c030000290000000000130435000004530030009c0000045301000041000000000103401900000040011002100000000003000414000004530030009c0000045303008041000000c003300210000000000113019f00000465011001c70000045a02200197114611410000040f00000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900000b830000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00000b7f0000c13d000000000006004b00000b900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000d290000613d0000001f01400039000000600110018f0000000c01100029000b00000001001d000004560010009c000000db0000213d0000000b01000029000000400010043f000000200030008c0000005f0000413d0000000c0100002900000000010104330000045a0010009c0000005f0000213d0000000b030000290000002402300039000000000012043500000467010000410000000000130435000000040130003900000000020004100000000000210435000004530030009c0000045301000041000000000103401900000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000468011001c70000000d020000291146113c0000040f00000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900000bc30000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00000bbf0000c13d000000000006004b00000bd00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000d350000613d0000001f01400039000000600110018f0000000b01100029000004560010009c000000db0000213d000000400010043f000000200030008c0000005f0000413d0000000b0100002900000000010104330000045a0010009c0000005f0000213d000001c00010043f000000800200043d00000140000004430000016000200443000000a00300043d00000020020000390000018000200443000001a0003004430000004003000039000000c00400043d000001c000300443000001e0004004430000006003000039000000e00400043d000002000030044300000220004004430000008003000039000001000400043d00000240003004430000026000400443000000a003000039000001200400043d0000028000300443000002a000400443000000c003000039000001400400043d000002c000300443000002e000400443000000e003000039000001600400043d000003000030044300000320004004430000010003000039000001800400043d000003400030044300000360004004430000012003000039000001a00400043d0000038000300443000003a0004004430000014003000039000003c000300443000003e0001004430000016001000039000001e00300043d000004000010044300000420003004430000018001000039000002000300043d0000044000100443000004600030044300000100002004430000000d0100003900000120001004430000046901000041000011470001042e000000000232004b00000c1e0000813d000004b801000041000000000010043f0000001101000039000000040010043f0000046b010000410000114800010430000000000021041b000000000054041b0000000001000410000000000200041111460fd40000040f11460e700000040f000d00000001001d11460e940000040f0000000d0100002911460eaf0000040f000000400100043d00000040021000390000000903000029000000000032043500000020021000390000000c0300002900000000003204350000000002000416000009720000013d0000001f0530018f0000045506300198000000400200043d0000000004620019000007d90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c380000c13d000007d90000013d00000c410000813d000000400100043d000004b702000041000006ca0000013d000000000100041000000000020004110000000d0300002911460fd40000040f11460e700000040f000d00000001001d11460e940000040f0000000d0100002911460eaf0000040f0000096a0000013d000004a5011001c70000800902000039000000060400002900000000050000191146113c0000040f0000006003100270000004530330019800000c780000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000c6b0000613d000000000701034f000000007807043c0000000006860436000000000036004b00000c670000c13d000000000004004b00000c780000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000e380000613d0000000001000414000004530010009c0000045301008041000000c00110021000000008020000290000270f0020008c00000ca90000213d000000050200002900000cae0000013d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000c9b0000613d000000000701034f000000007807043c0000000006860436000000000036004b00000c970000c13d000000000004004b00000a740000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000a740000013d000004a5011001c700008009020000390000000703000029000000050400002900000000050000191146113c0000040f0000006003100270000004530330019800000cd70000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000cca0000613d000000000701034f000000007807043c0000000006860436000000000036004b00000cc60000c13d000000000004004b00000cd70000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000e380000613d00000000010004100000000d020000291146103f0000040f0000000701000039000000000101041a000800000001001d000004a201000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000101043b000000080110006b00000c180000413d0000000a0110006c00000c180000413d000a00070010007400000c180000413d0000000a02000029000800090020007400000c180000413d000004ac0100004100000000001004430000000001000414000004530010009c0000045301008041000000c001100210000004ad011001c70000800b02000039114611410000040f000000010020019000000dfc0000613d000000000101043b000004c40010009c00000c180000213d0000000a01100039000000400300043d000000a402300039000000000012043500000064013000390000000802000029000000000021043500000044013000390000000c02000029000000000021043500000024013000390000000000210435000004ae01000041000000000013043500000084013000390000000002000410000000000021043500000004013000390000000000210435000004530030009c000700000003001d0000045301000041000000000103401900000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f0000000a03000029000000090030006c00000d410000c13d000004b0011001c70000000b0200002900000d460000013d0000001f0530018f0000045506300198000000400200043d0000000004620019000007d90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d300000c13d000007d90000013d0000001f0530018f0000045506300198000000400200043d0000000004620019000007d90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d3c0000c13d000007d90000013d000004af011001c7000080090200003900000008030000290000000b0400002900000000050000191146113c0000040f00000060031002700000045303300197000000600030008c000000600400003900000000040340190000001f0640018f0000006007400190000000070570002900000d560000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00000d520000c13d000000000006004b00000d630000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000dda0000613d0000001f01400039000000e00210018f0000000701200029000000000021004b00000000020000390000000102004039000004560010009c000000db0000213d0000000100200190000000db0000c13d000000400010043f000000600030008c0000005f0000413d000000070100002900000040011000390000000001010433000b00000001001d000004aa010000410000000000100443000000000100041000000004001004430000000001000414000004530010009c0000045301008041000000c001100210000004ab011001c70000800a02000039114611410000040f000000010020019000000dfc0000613d000000000101043b000000000001004b00000de60000c13d000000400300043d00000024013000390000000b020000290000000000210435000004b1010000410000000000130435000a00000003001d00000004013000390000000000010435000004a201000041000000000010044300000000010004120000000400100443000001400100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000dfc0000613d000000000201043b0000000a01000029000004530010009c000004530100804100000040011002100000000003000414000004530030009c0000045303008041000000c003300210000000000113019f00000468011001c70000045a022001971146113c0000040f00000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0540018f000000000a04001900000020064001900000000a0460002900000dbb0000613d000000000701034f0000000a08000029000000007907043c0000000008980436000000000048004b00000db70000c13d000000000005004b00000dc80000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000000dfd0000613d0000000a0100002900000000020a0019000b0000000a001d11460e500000040f0000000a010000290000000b0210002911460e620000040f000000400100043d00000040021000390000000803000029000000000032043500000020021000390000000d0300002900000000003204350000000c02000029000009720000013d0000001f0530018f0000045506300198000000400200043d0000000004620019000007d90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000de10000c13d000007d90000013d000004aa010000410000000000100443000000000100041000000004001004430000000001000414000004530010009c0000045301008041000000c001100210000004ab011001c70000800a02000039114611410000040f000000010020019000000dfc0000613d000000000301043b0000000001000414000004530010009c0000045301008041000000c001100210000000000003004b00000e090000c13d000000060200002900000e0d0000013d000000000001042f0000001f0530018f0000045506300198000000400200043d0000000004620019000007d90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e040000c13d000007d90000013d000004a5011001c70000800902000039000000060400002900000000050000191146113c0000040f0000006003100270000004530330019800000e360000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c000000db0000213d0000000100600190000000db0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000e290000613d000000000701034f000000007807043c0000000006860436000000000036004b00000e250000c13d000000000004004b00000e360000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000d860000c13d000000400100043d000004b902000041000006ca0000013d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000e4a0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000e430000413d000000000321001900000000000304350000001f02200039000004c0022001970000000001210019000000000001042d0000001f02200039000004c0022001970000000001120019000000000021004b00000000020000390000000102004039000004560010009c00000e5c0000213d000000010020019000000e5c0000c13d000000400010043f000000000001042d000004b801000041000000000010043f0000004101000039000000040010043f0000046b0100004100001148000104300000000002120049000004570020009c00000e6e0000213d0000001f0020008c00000e6e0000a13d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000e6e0000c13d000000000001042d000000000100001900001148000104300000000701000039000000000101041a000000000001004b00000e860000613d000004c5021000d100000000011200d9000004c50010009c00000e800000c13d000000000002004b00000e860000613d0000000201000039000000000301041a00000000012300a900000000022100d9000000000032004b00000e870000613d000004b801000041000000000010043f0000001101000039000000040010043f0000046b01000041000011480001043000000000010000190000000602000039000000000202041a000000000002004b00000e8e0000613d00000000012100d9000004c50110012a000000000001042d000004b801000041000000000010043f0000001201000039000000040010043f0000046b0100004100001148000104300001000000000002000100000001001d000004a201000041000000000010044300000000010004120000000400100443000000800100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000eae0000613d000000000101043b000000010010006c00000ead0000813d0000000801000039000000000201041a000004c20220019700000001022001bf000000000021041b000000000001042d000000000001042f0001000000000002000100000001001d000004a201000041000000000010044300000000010004120000000400100443000000a00100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000ec40000613d000000000101043b000000010010006c00000ec50000a13d000000000001042d000000000001042f000000400100043d000004c6020000410000000000210435000004530010009c0000045301008041000000400110021000000465011001c700001148000104300003000000000002000004a201000041000000000010044300000000010004120000000400100443000001600100003900000024001004430000000001000414000004530010009c0000045301008041000000c001100210000004a4011001c70000800502000039114611410000040f000000010020019000000f620000613d000000000201043b000000400300043d000300000003001d000004c7010000410000000000130435000004530030009c0000045301000041000000000103401900000040011002100000000003000414000004530030009c0000045303008041000000c003300210000000000113019f00000465011001c70000045a02200197000200000002001d114611410000040f000000030b00002900000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000eff0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000efb0000c13d000000000006004b00000f0c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000f630000613d0000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000390000000101004039000004560040009c00000f5c0000213d000000010010019000000f5c0000c13d000000400040043f0000001f0030008c00000f5a0000a13d00000000010b0433000100000001001d0000045a0010009c00000f5a0000213d000004c8010000410000000000140435000004530040009c0000045301000041000000000104401900000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000465011001c70000000202000029000300000004001d114611410000040f000000030b00002900000060031002700000045303300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000f3e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000f3a0000c13d000000000006004b00000f4b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000f6f0000613d0000001f01400039000000600110018f0000000001b10019000004560010009c00000f5c0000213d000000400010043f000000200030008c00000f5a0000413d00000000020b04330000045a0020009c00000f5a0000213d0000000101000029000000000001042d00000000010000190000114800010430000004b801000041000000000010043f0000004101000039000000040010043f0000046b010000410000114800010430000000000001042f0000001f0530018f0000045506300198000000400200043d000000000462001900000f7a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f6a0000c13d00000f7a0000013d0000001f0530018f0000045506300198000000400200043d000000000462001900000f7a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f760000c13d000000000005004b00000f870000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000004530020009c00000453020080410000004002200210000000000112019f000011480001043000000000040100190000000001000414000004530010009c0000045301008041000000c001100210000000000002004b00000f990000613d0000000003020019000004a5011001c70000800902000039000000000500001900000f9a0000013d00000000020400191146113c0000040f0000006003100270000004530330019800000fc30000613d0000001f0430003900000454044001970000003f04400039000004a604400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000004560040009c00000fce0000213d000000010060019000000fce0000c13d000000400040043f0000001f0430018f00000000063504360000045505300198000000000356001900000fb60000613d000000000701034f000000007807043c0000000006860436000000000036004b00000fb20000c13d000000000004004b00000fc30000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000000fc60000613d000000000001042d000000400100043d000004b9020000410000000000210435000004530010009c0000045301008041000000400110021000000465011001c70000114800010430000004b801000041000000000010043f0000004101000039000000040010043f0000046b0100004100001148000104300005000000000002000500000003001d0000045a03100198000010200000613d000100000001001d0003045a0020019c000010230000613d000400000003001d000000000030043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000101e0000613d000000000101043b000000000301041a00020005003000740000102d0000413d0000000401000029000000000010043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000101e0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000101e0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000004530010009c000004530100804100000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000462011001c70000800d0200003900000003030000390000046304000041000000040500002900000003060000291146113c0000040f00000001002001900000101e0000613d000000000001042d00000000010000190000114800010430000000400100043d000004ca02000041000010250000013d000000400100043d0000046a02000041000000000021043500000004021000390000000000020435000004530010009c000004530100804100000040011002100000046b011001c70000114800010430000000400200043d000400000002001d000004c90100004100000000001204350000000401200039000000010200002900000005040000291146109a0000040f00000004020000290000000001210049000004530010009c00000453010080410000006001100210000004530020009c00000453020080410000004002200210000000000121019f00001148000104300004000000000002000400000002001d000100000001001d0000045a031001980000107e0000613d000000000030043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039000300000003001d114611410000040f00000001002001900000107c0000613d0000000302000029000000000101043b000000000301041a0002000400300074000010880000413d000000000020043f000000200000043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f00000001002001900000107c0000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d0000000000310435000004530010009c000004530100804100000040011002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f00000462011001c70000800d0200003900000003030000390000046304000041000000030500002900000000060000191146113c0000040f00000001002001900000107c0000613d000000000001042d00000000010000190000114800010430000000400100043d000004ca02000041000000000021043500000004021000390000000000020435000004530010009c000004530100804100000040011002100000046b011001c70000114800010430000000400200043d000300000002001d000004c90100004100000000001204350000000401200039000000010200002900000004040000291146109a0000040f00000003020000290000000001210049000004530010009c00000453010080410000006001100210000004530020009c00000453020080410000004002200210000000000121019f000011480001043000000040051000390000000000450435000000200410003900000000003404350000045a0220019700000000002104350000006001100039000000000001042d0004000000000002000200000003001d000400000002001d0000045a01100197000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f0000000100200190000010ed0000613d000000000101043b00000004020000290000045a02200197000300000002001d000000000020043f000000200010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f0000000100200190000010ed0000613d0000000402000029000000000101043b000000000301041a000004c30030009c000010ec0000613d0000000204000029000000000543004b000010ef0000413d0000000101000029000000000001004b000010ff0000613d000400000005001d000000030000006b000011020000613d000000000010043f0000000101000039000000200010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f0000000100200190000010ed0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000004530010009c0000045301008041000000c00110021000000461011001c70000801002000039114611410000040f0000000100200190000010ed0000613d000000000101043b0000000402000029000000000021041b000000000001042d00000000010000190000114800010430000000400500043d000300000005001d000004cb01000041000000000015043500000004015000391146109a0000040f00000003020000290000000001210049000004530010009c00000453010080410000006001100210000004530020009c00000453020080410000004002200210000000000121019f0000114800010430000000400100043d000004bf02000041000011040000013d000000400100043d000004bd02000041000000000021043500000004021000390000000000020435000004530010009c000004530100804100000040011002100000046b011001c70000114800010430000000000001042f0000000002000414000004530020009c0000045302008041000000c002200210000004530010009c00000453010080410000004001100210000000000121019f00000461011001c70000801002000039114611410000040f00000001002001900000111c0000613d000000000101043b000000000001042d0000000001000019000011480001043000000000050100190000000000200443000000050030008c0000112c0000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000011240000413d000004530030009c000004530300804100000060013002100000000002000414000004530020009c0000045302008041000000c002200210000000000112019f000004cc011001c70000000002050019114611410000040f00000001002001900000113b0000613d000000000101043b000000000001042d000000000001042f0000113f002104210000000102000039000000000001042d0000000002000019000000000001042d00001144002104230000000102000039000000000001042d0000000002000019000000000001042d0000114600000432000011470001042e000011480001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffe3f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a475ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e6402000000000000000000000000000000000000400000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efc45a0155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ad5c464800000000000000000000000000000000000000000000000000000000c9c653960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000200000000000000000000000000000380000001000000000000000000ec442f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000071ea0d8d00000000000000000000000000000000000000000000000000000000c45a015400000000000000000000000000000000000000000000000000000000e8e70c4b00000000000000000000000000000000000000000000000000000000fd62bcd600000000000000000000000000000000000000000000000000000000fd62bcd700000000000000000000000000000000000000000000000000000000fd967f4700000000000000000000000000000000000000000000000000000000fe94c26900000000000000000000000000000000000000000000000000000000e8e70c4c00000000000000000000000000000000000000000000000000000000e98d5cd500000000000000000000000000000000000000000000000000000000c78d0b0d00000000000000000000000000000000000000000000000000000000c78d0b0e00000000000000000000000000000000000000000000000000000000d3728de400000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000c45a015500000000000000000000000000000000000000000000000000000000c48afe1600000000000000000000000000000000000000000000000000000000a8aa1b3000000000000000000000000000000000000000000000000000000000aa764d4e00000000000000000000000000000000000000000000000000000000aa764d4f00000000000000000000000000000000000000000000000000000000b026a12100000000000000000000000000000000000000000000000000000000be74615f00000000000000000000000000000000000000000000000000000000a8aa1b3100000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008fd3ab7f000000000000000000000000000000000000000000000000000000008fd3ab800000000000000000000000000000000000000000000000000000000090825c280000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000071ea0d8e0000000000000000000000000000000000000000000000000000000079cc67900000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000004c7766b4000000000000000000000000000000000000000000000000000000006d04eb9e000000000000000000000000000000000000000000000000000000006d04eb9f0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000071876318000000000000000000000000000000000000000000000000000000004c7766b5000000000000000000000000000000000000000000000000000000004fb3fbe700000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000049a302460000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000025e17b57000000000000000000000000000000000000000000000000000000001655bc610000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001a1c6e53000000000000000000000000000000000000000000000000000000002368da32000000000000000000000000000000000000000000000000000000001655bc62000000000000000000000000000000000000000000000000000000001694505e00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000152044810000000000000000000000000000000000000000000000000000000002d05d3f0000000000000000000000000000000000000000000000000000000006fdde03310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e00000000000000000000000000000000000000200000008000000000000000000200000200000000000000000000000000000044000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f390200000200000000000000000000000000000024000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000f305d7190000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000c6d42ae00000000000000000000000000000000000000000000000000000000162aacb400000000000000000000000000000000000000000000000000000000904db1ff00000000000000000000000000000000000000000000000000000000cf88b69e000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000007104582600000000000000000000000000000000000000000000000000000000a1c173f000000000000000000000000000000000000000000000000000000000e219ea0b000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d62000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000e602df0500000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff50000000000000000000000000000000000000000000000000de0b6b3a764000053dfa9750000000000000000000000000000000000000000000000000000000061d027b30000000000000000000000000000000000000000000000000000000085f377ca00000000000000000000000000000000000000000000000000000000e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e00000000000000000000000000000000000000000000000000000000fb8f41b200000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b4c685b04851e512e37e92b70442c2bb70d2b91e6669de0c786149eaf7f5fca
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.