More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 228 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 6811502 | 18 hrs ago | IN | 0 ETH | 0.00000703 | ||||
Transfer | 6810751 | 18 hrs ago | IN | 0 ETH | 0.00000661 | ||||
Approve | 6802368 | 20 hrs ago | IN | 0 ETH | 0.00000515 | ||||
Approve | 6786129 | 25 hrs ago | IN | 0 ETH | 0.00000495 | ||||
Transfer | 6776493 | 28 hrs ago | IN | 0 ETH | 0.00000604 | ||||
Approve | 6774691 | 28 hrs ago | IN | 0 ETH | 0.00000492 | ||||
Transfer | 6772503 | 29 hrs ago | IN | 0 ETH | 0.00000565 | ||||
Approve | 6770910 | 29 hrs ago | IN | 0 ETH | 0.00000429 | ||||
Approve | 6770505 | 29 hrs ago | IN | 0 ETH | 0.00000469 | ||||
Approve | 6770481 | 29 hrs ago | IN | 0 ETH | 0.00000467 | ||||
Approve | 6770458 | 29 hrs ago | IN | 0 ETH | 0.00000485 | ||||
Approve | 6755573 | 34 hrs ago | IN | 0 ETH | 0.00000538 | ||||
Approve | 6753490 | 34 hrs ago | IN | 0 ETH | 0.00000495 | ||||
Approve | 6747900 | 36 hrs ago | IN | 0 ETH | 0.0000047 | ||||
Approve | 6747785 | 36 hrs ago | IN | 0 ETH | 0.00000443 | ||||
Approve | 6743733 | 37 hrs ago | IN | 0 ETH | 0.00000572 | ||||
Approve | 6743394 | 37 hrs ago | IN | 0 ETH | 0.00000495 | ||||
Approve | 6742417 | 37 hrs ago | IN | 0 ETH | 0.00000477 | ||||
Approve | 6742248 | 37 hrs ago | IN | 0 ETH | 0.00000472 | ||||
Approve | 6742156 | 37 hrs ago | IN | 0 ETH | 0.00000363 | ||||
Approve | 6742118 | 37 hrs ago | IN | 0 ETH | 0.0000048 | ||||
Approve | 6737391 | 39 hrs ago | IN | 0 ETH | 0.00000431 | ||||
Approve | 6736987 | 39 hrs ago | IN | 0 ETH | 0.00000496 | ||||
Approve | 6735193 | 40 hrs ago | IN | 0 ETH | 0.00000502 | ||||
Approve | 6734143 | 40 hrs ago | IN | 0 ETH | 0.00000513 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6717857 | 44 hrs ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
SimpleEarn
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// The first Auto-Reward Protocol on Abstract Chain // https://simpleearn.finance // https://x.com/simpleearn_fi // https://t.me/simpleearn_fi // SPDX-License-Identifier: MIT pragma solidity 0.8.23; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract SimpleEarn is Ownable, ERC20 { event EnableTrading(); event DisableLimits(); event SwapBack(uint256 amount); event ExcludedFromFees(address wallet, bool value); event UpdateRewardAddress(address newAddress); event UpdateSwapBackDelay(uint256 delay); event UpdateMaxSwapBackAmount(uint256 amount); uint256 private constant _totalSupply = 1_000_000_000 ether; uint256 private constant TAX = 5; bool private _enabled; uint256 private _maxSwapBackAmount = 200_000 ether; uint256 private _maxWallet = (_totalSupply / 100) * 3; // 3% uint256 private _timePerSwapback = 30 seconds; uint256 private _latestSwapback; address public rewardAddress; uint256 public lauchtime; address public immutable pair; bool private _swaping = false; mapping(address => bool) private _excludedFromFees; IUniswapV2Router02 constant router = IUniswapV2Router02(0xad1eCa41E6F772bE3cb5A48A6141f9bcc1AF9F7c); constructor() ERC20("SimpleEarn", "EARN") Ownable(_msgSender()) { pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _excludedFromFees[_msgSender()] = true; _excludedFromFees[address(this)] = true; _excludedFromFees[address(router)] = true; _mint(_msgSender(), _totalSupply); } modifier onSwap() { _swaping = true; _; _swaping = false; } function burn(uint256 amount) external { _burn(_msgSender(), amount); } function enableTrading() external onlyOwner { require(!_enabled, "enabled!"); _enabled = true; lauchtime = block.timestamp; emit EnableTrading(); } function _update( address from, address to, uint256 amount ) internal override { if ( _excludedFromFees[from] || _excludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._update(from, to, amount); return; } require(_enabled, "Trading is not open"); if (block.timestamp < lauchtime + 10 minutes) { if (to != pair && balanceOf(to) + amount > _maxWallet) { revert("Max wallet limit reached"); } } if (_shouldSwapBack() && to == pair) { uint256 clog = balanceOf(address(this)); _swapTokenForETH(_min(clog, _maxSwapBackAmount)); } uint256 _totalFees = (amount * TAX) / 100; if (_totalFees > 0) { super._update(from, address(this), _totalFees); amount = amount - _totalFees; } super._update(from, to, amount); } function _min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function _shouldSwapBack() internal view returns (bool) { return block.timestamp - _latestSwapback > _timePerSwapback && balanceOf(address(this)) > 0; } function _swapTokenForETH(uint256 amount) private onSwap { _latestSwapback = block.timestamp; address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), amount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, rewardAddress, block.timestamp ); emit SwapBack(amount); } function _safeSendEther(address to, uint256 amount) private { (bool success, ) = payable(to).call{value: amount}(""); require(success, "Transfer failed"); } function updateRewardAddress(address newAddress) external onlyOwner { require(newAddress != address(0), "Invalid address"); rewardAddress = newAddress; emit UpdateRewardAddress(newAddress); } function updateSwapBackDelay(uint256 delay) external onlyOwner { _timePerSwapback = delay; emit UpdateSwapBackDelay(delay); } function updateMaxSwapBackAmount(uint256 amount) external onlyOwner { require(amount > 0 && amount < _totalSupply / 50, "Invalid amount"); _maxSwapBackAmount = amount; emit UpdateMaxSwapBackAmount(amount); } function isExcludedFromFees(address wallet) external view returns (bool) { return _excludedFromFees[wallet]; } function excludedFromFees(address wallet, bool value) external onlyOwner { _excludedFromFees[wallet] = value; emit ExcludedFromFees(wallet, value); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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 Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); 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 createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.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 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * Both values are immutable: they can only be set once during construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner`'s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
pragma 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); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// 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; } }
pragma 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( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// 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. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @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. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// 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); }
// 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. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateMaxSwapBackAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"UpdateRewardAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"UpdateSwapBackDelay","type":"event"},{"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lauchtime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxSwapBackAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRewardAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"updateSwapBackDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003f1aceceb36eaa1873c3958fab5716db3933cc09680ce9c6e9b56d0bb1700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000e00000000000200010000000103550000006003100270000003820030019d0000000100200190000000320000c13d00000382023001970000008003000039000000400030043f000000040020008c000000490000413d000000000301043b000000e003300270000003ac0030009c0000004d0000213d000003bb0030009c0000007e0000a13d000003bc0030009c000000c70000213d000003c00030009c000002560000613d000003c10030009c000001fa0000613d000003c20030009c000003e40000c13d000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d000000000200041a00000386032001970000000002000411000000000023004b000002a20000c13d0000000401100370000000000101043b0000000902000039000000000012041b000000800010043f0000000001000414000003820010009c0000038201008041000000c001100210000003cf011001c70000800d020000390000000103000039000003da04000041000003e10000013d000000a001000039000000400010043f0000000001000416000000000001004b000003e40000c13d0000000a01000039000000a00010043f0000038301000041000000c00010043f0000012001000039000000400010043f0000000401000039000000e00010043f0000038401000041000001000010043f0000000006000411000000000006004b000000650000c13d000003aa01000041000001200010043f000001240000043f000003ab0100004100000e0600010430000000000002004b000003e40000c13d000000000100001900000e050001042e000003ad0030009c000000ba0000a13d000003ae0030009c000000dc0000213d000003b20030009c0000025d0000613d000003b30030009c000002070000613d000003b40030009c000003e40000c13d0000000001000416000000000001004b000003e40000c13d0000000001000412000a00000001001d000900000000003d0000800501000039000000440300003900000000040004150000000a0440008a0000000504400210000003cd020000410e040ddc0000040f000001c20000013d000000000100041a0000038502100197000000000262019f000000000020041b00000000020004140000038605100197000003820020009c0000038202008041000000c00120021000000387011001c70000800d02000039000000030300003900000388040000410e040dfa0000040f0000000100200190000003e40000613d000000a00400043d000003890040009c000000f40000413d000003e001000041000000000010043f0000004101000039000000040010043f000003e10100004100000e0600010430000003c30030009c000001040000a13d000003c40030009c000001810000613d000003c50030009c000001770000613d000003c60030009c000003e40000c13d000000640020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000402100370000000000202043b000800000002001d000003860020009c000003e40000213d0000002402100370000000000202043b000700000002001d000003860020009c000003e40000213d0000004401100370000000000101043b000600000001001d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000301041a000003e90030009c0000053b0000c13d000000080100002900000007020000290000000603000029000002990000013d000003b50030009c000001190000a13d000003b60030009c000001bd0000613d000003b70030009c0000017c0000613d000003b80030009c000003e40000c13d0000000001000416000000000001004b000003e40000c13d0000000c01000039000002520000013d000003bd0030009c000002770000613d000003be0030009c0000021f0000613d000003bf0030009c000003e40000c13d000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000401100370000000000101043b000003860010009c000003e40000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000002510000013d000003af0030009c0000028d0000613d000003b00030009c000002380000613d000003b10030009c000003e40000c13d000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000401100370000000000601043b000003860060009c000003e40000213d000000000100041a00000386021001970000000005000411000000000052004b000002b20000c13d000000000006004b000003c70000c13d000003aa01000041000002030000013d0000000406000039000000000106041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000001430000613d000003e001000041000000000010043f0000002201000039000000040010043f000003e10100004100000e0600010430000003c70030009c000001c60000613d000003c80030009c000003e40000c13d000000440020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000402100370000000000202043b000800000002001d000003860020009c000003e40000213d0000002401100370000000000301043b0000000002000411000000000002004b000003530000c13d000003e501000041000002030000013d000003b90030009c000001e60000613d000003ba0030009c000003e40000c13d0000000001000416000000000001004b000003e40000c13d000000000100041a00000386021001970000000001000411000000000012004b000002b70000c13d0000000601000039000000000201041a000000ff00200190000003490000c13d000003ea0220019700000001022001bf000000000021041b0000039b0100004100000000001004430000000001000414000003820010009c0000038201008041000000c0011002100000039c011001c70000800b020000390e040dff0000040f00000001002001900000094e0000613d000000000101043b0000000c02000039000000000012041b0000000001000414000003820010009c0000038201008041000000c00110021000000387011001c70000800d020000390000000103000039000003d504000041000003e10000013d000000200030008c000001630000413d000700000003001d000800000004001d000000000060043f0000000001000414000003820010009c0000038201008041000000c0011002100000038a011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d00000008040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000406000039000001630000813d000000000002041b0000000102200039000000000012004b0000015f0000413d0000001f0040008c000002a70000a13d000800000004001d000000000060043f0000000001000414000003820010009c0000038201008041000000c0011002100000038a011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d0000000807000029000003eb02700198000000000101043b000002ee0000c13d00000020030000390000000406000039000002fb0000013d0000000001000416000000000001004b000003e40000c13d0000000301000039000002520000013d0000000001000416000000000001004b000003e40000c13d000000000100041a000001c20000013d000000440020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000402100370000000000202043b000800000002001d000003860020009c000003e40000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000003e40000c13d000000000100041a00000386021001970000000001000411000000000012004b000002b70000c13d0000000801000029000000000010043f0000000e01000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003ea022001970000000703000029000000000232019f000000000021041b000000400100043d0000002002100039000000000032043500000008020000290000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f00000395011001c70000800d020000390000000103000039000003e704000041000003e10000013d0000000001000416000000000001004b000003e40000c13d0000000b01000039000000000101041a0000038601100197000000800010043f000003cb0100004100000e050001042e0000000001000416000000000001004b000003e40000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000fe0000c13d000000800010043f000000000005004b000002190000613d000000000030043f000000020020008c0000035a0000413d000003e80200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001dd0000413d000003b50000013d0000000001000416000000000001004b000003e40000c13d000000000100041a00000386021001970000000005000411000000000052004b000002b20000c13d0000038501100197000000000010041b0000000001000414000003820010009c0000038201008041000000c00110021000000387011001c70000800d02000039000000030300003900000388040000410000000006000019000003e10000013d000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000002000411000000000002004b000002bc0000c13d000003e301000041000000800010043f000000840000043f000003ca0100004100000e06000104300000000001000416000000000001004b000003e40000c13d0000000503000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000fe0000c13d000000800010043f000000000005004b000003570000c13d000003ea01200197000000a00010043f000000000004004b000000c001000039000000a001006039000003b60000013d000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000401100370000000000101043b000000000200041a00000386032001970000000002000411000000000023004b000002a20000c13d000003d60210009a000003d70020009c0000035c0000213d000003d101000041000000800010043f0000002001000039000000840010043f0000000e01000039000000a40010043f000003d901000041000000c40010043f000003d30100004100000e0600010430000000440020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000402100370000000000202043b000003860020009c000003e40000213d0000002401100370000000000101043b000800000001001d000003860010009c000003e40000213d000000000020043f0000000201000039000000200010043f000000400200003900000000010000190e040dc70000040f0000000802000029000000000020043f000000200010043f000000000100001900000040020000390e040dc70000040f000000000101041a000000800010043f000003cb0100004100000e050001042e0000000001000416000000000001004b000003e40000c13d0000001201000039000000800010043f000003cb0100004100000e050001042e000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000401100370000000000101043b000003860010009c000003e40000213d000000000200041a00000386032001970000000002000411000000000023004b000002a20000c13d000000000001004b000003d30000c13d000003d101000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f000003d201000041000000c40010043f000003d30100004100000e0600010430000000240020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000401100370000000000101043b000003860010009c000003e40000213d000000000010043f0000000e01000039000000200010043f000000400200003900000000010000190e040dc70000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000003cb0100004100000e050001042e000000440020008c000003e40000413d0000000002000416000000000002004b000003e40000c13d0000000402100370000000000202043b000003860020009c000003e40000213d0000002401100370000000000301043b00000000010004110e040a970000040f0000000101000039000000400200043d0000000000120435000003820020009c00000382020080410000004001200210000003cc011001c700000e050001042e000003c901000041000000800010043f000000840020043f000003ca0100004100000e0600010430000000000004004b0000000001000019000002ab0000613d000000c00100043d0000000302400210000003e90220027f000003e902200167000000000121016f0000000102400210000000000121019f000003070000013d000003c901000041000000800010043f000000840050043f000003ca0100004100000e0600010430000003c902000041000000800020043f000000840010043f000003ca0100004100000e06000104300000000401100370000000000101043b000700000001001d00000386022001970000000001000415000600000001001d000800000002001d000000000020043f0000000e01000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000101041a000000ff001001900000056d0000c13d000000000000043f0000039601000041000000000101041a000000ff001001900000056d0000c13d000003cd0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003820010009c0000038201008041000000c001100210000003db011001c700008005020000390e040dff0000040f00000001002001900000094e0000613d000000000101043b00000386021001980000054b0000c13d00000000010004150000000c0110008a0000000501100210000c00000000003d000005520000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000406000039000000a0053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002f40000c13d000000000072004b000003050000813d0000000302700210000000f80220018f000003e90220027f000003e902200167000000a0033000390000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b000000e00500043d0000038b0050009c000000780000213d0000000504000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000fe0000c13d000000200030008c000003360000413d000700000003001d000800000005001d000000000040043f0000000001000414000003820010009c0000038201008041000000c0011002100000038a011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d00000008050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000504000039000003360000813d000000000002041b0000000102200039000000000012004b000003320000413d0000001f0050008c000003680000a13d000800000005001d000000000040043f0000000001000414000003820010009c0000038201008041000000c0011002100000038a011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d0000000806000029000003eb02600198000000000101043b000003e60000c13d0000002003000039000003f20000013d000003d101000041000000800010043f0000002001000039000000840010043f0000000801000039000000a40010043f000003d401000041000000c40010043f000003d30100004100000e0600010430000000080000006b000003730000c13d000003e401000041000002030000013d000000000030043f000000020020008c000003ab0000813d000000a001000039000003b60000013d0000000702000039000000000012041b000000800010043f0000000001000414000003820010009c0000038201008041000000c001100210000003cf011001c70000800d020000390000000103000039000003d804000041000003e10000013d000000000005004b00000000010000190000036c0000613d000001000100043d0000000302500210000003e90220027f000003e902200167000000000121016f0000000102500210000000000121019f000003ff0000013d000700000003001d000000000020043f0000000201000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000702000029000000000021041b000000400100043d0000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039e04000041000000000500041100000008060000290e040dfa0000040f0000000100200190000003e40000613d000000400100043d00000001020000390000000000210435000003820010009c00000382010080410000004001100210000003cc011001c700000e050001042e000003ce0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000003ad0000413d000000c001300039000000800210008a00000080010000390e040a7d0000040f000000400100043d000800000001001d00000080020000390e040a680000040f00000008020000290000000001210049000003820010009c00000382010080410000006001100210000003820020009c00000382020080410000004002200210000000000121019f00000e050001042e0000038501100197000000000161019f000000000010041b0000000001000414000003820010009c0000038201008041000000c00110021000000387011001c70000800d0200003900000003030000390000038804000041000003e10000013d0000000b02000039000000000302041a0000038503300197000000000313019f000000000032041b000000800010043f0000000001000414000003820010009c0000038201008041000000c001100210000003cf011001c70000800d020000390000000103000039000003d0040000410e040dfa0000040f00000001002001900000004b0000c13d000000000100001900000e0600010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000e0053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003eb0000c13d000000000062004b000003fc0000813d0000000302600210000000f80220018f000003e90220027f000003e902200167000000e0033000390000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000504000039000000000014041b0000038c010000410000000702000039000000000012041b0000038d010000410000000802000039000000000012041b0000001e010000390000000902000039000000000012041b0000000d02000039000000000102041a000003ea01100197000000000012041b0000038e01000041000000400200043d000800000002001d0000000000120435000003820020009c0000038201000041000000000102401900000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038f011001c700000390020000410e040dff0000040f000000080b00002900000060031002700000038203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000042d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000004290000c13d000000000006004b0000043a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000051d0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b000000000100003900000001010040390000038b0020009c000000780000213d0000000100100190000000780000c13d000700000002001d000000400020043f000000200030008c000003e40000413d00000000010b0433000800000001001d000003860010009c000003e40000213d000003920100004100000007020000290000000000120435000003820020009c0000038201000041000000000102401900000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038f011001c700000390020000410e040dff0000040f00000060031002700000038203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000007057000290000046c0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000004680000c13d000000000006004b000004790000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000005d40000613d0000001f01400039000000600110018f0000000701100029000600000001001d0000038b0010009c000000780000213d0000000601000029000000400010043f000000200030008c000003e40000413d00000007010000290000000001010433000003860010009c000003e40000213d00000006030000290000002402300039000000000012043500000393010000410000000000130435000000040130003900000000020004100000000000210435000003820030009c0000038201000041000000000103401900000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f00000394011001c700000008020000290e040dfa0000040f00000060031002700000038203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000004ac0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000004a80000c13d000000000006004b000004b90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000006e10000613d0000001f01400039000000600110018f00000006011000290000038b0010009c000000780000213d000000400010043f000000200030008c000003e40000413d00000006010000290000000001010433000003860010009c000003e40000213d000000800010043f0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003ea0220019700000001022001bf000000000021041b0000000001000410000000000010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003ea0220019700000001022001bf000000000021041b0000039001000041000000000010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003ea0220019700000001022001bf000000000021041b0000000001000415000800000001001d000000000000043f0000000e01000039000000200010043f0000039601000041000000000101041a000000ff00100190000008550000c13d00000000010004110000038601100197000700000001001d000000000010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000101041a000000ff00100190000008550000c13d000000800100043d0000038602100197000000070020006b000006f90000c13d00000000010004150000000e0110008a0000000501100210000e00000000003d000007000000013d0000001f0530018f0000039106300198000000400200043d0000000004620019000005280000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005240000c13d000000000005004b000005350000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000003820020009c00000382020080410000004002200210000000000112019f00000e0600010430000000060130006c000005450000813d000000400200043d000800000002001d000003e6010000410000000000120435000000040120003900000000020004110000000604000029000005a60000013d000500000001001d000000080000006b000005c70000c13d000000400100043d000003e502000041000005cc0000013d00000000010004150000000b0110008a0000000501100210000000080020006b000b00000000003d000b00010000c03d0000056d0000c13d0000000d02000039000000000202041a0000000501100270000000ff01200195000000ff002001900000056d0000c13d0000000601000039000000000101041a000000ff00100190000005e00000c13d000000400100043d0000004402100039000003e2030000410000000000320435000000240210003900000013030000390000000000320435000003d1020000410000000000210435000000040210003900000020030000390000000000320435000003820010009c00000382010080410000004001100210000003df011001c700000e06000104300000000805000029000000000005004b0000058f0000c13d0000000301000039000000000101041a0000000702000029000000000021001a000005e50000413d000000000121001900000000012100490000000303000039000000000013041b000000400100043d0000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d020000390000039a0400004100000000060000190e040dfa0000040f0000000100200190000003e40000613d000000000100041500000006011000690000000001000002000000000100001900000e050001042e000000000050043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000301041a0000000704000029000000000143004b000005b10000813d000000400200043d000800000002001d000003dc010000410000000000120435000000040120003900000000020004110e040a8f0000040f00000008020000290000000001210049000003820010009c00000382010080410000006001100210000003820020009c00000382020080410000004002200210000000000121019f00000e0600010430000500000001001d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000502000029000000000021041b0000000301000039000000000101041a00000008050000290000000702000029000005760000013d0000000001000411000000000001004b000005eb0000c13d000000400100043d000003e402000041000000000021043500000004021000390000000000020435000003820010009c00000382010080410000004001100210000003e1011001c700000e06000104300000001f0530018f0000039106300198000000400200043d0000000004620019000005280000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005db0000c13d000005280000013d0000000c01000039000000000201041a000500000002001d000003ec0020009c000006090000a13d000003e001000041000000000010043f0000001101000039000000040010043f000003e10100004100000e06000104300000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000502000029000000000021041b000000b60000013d0000039b0100004100000000001004430000000001000414000003820010009c0000038201008041000000c0011002100000039c011001c70000800b020000390e040dff0000040f00000001002001900000094e0000613d000000000201043b00000005010000290000025801100039000500000002001d000000000012004b0000063f0000813d000003cd0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003820010009c0000038201008041000000c001100210000003db011001c700008005020000390e040dff0000040f00000001002001900000094e0000613d000000000101043b00000386001001980000063f0000613d000000000000043f0000000101000039000000200010043f000003dd01000041000000000101041a0000000702000029000000000021001a000005e50000413d00000000012100190000000802000039000000000202041a000000000021004b0000063f0000a13d000000400100043d0000004402100039000003de03000041000000000032043500000024021000390000001803000039000005620000013d0000000a01000039000000000101041a000000050110006b000005e50000413d0000000902000039000000000202041a000000000021004b000009280000a13d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000101041a000000000001004b000009280000613d000003cd0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003820010009c0000038201008041000000c001100210000003db011001c700008005020000390e040dff0000040f00000001002001900000094e0000613d000000000101043b0000038600100198000009280000c13d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d0000000d04000039000000000204041a000003ea0220019700000001022001bf0000000703000039000000000303041a000000000101043b000000000501041a000000000024041b00000005010000290000000a02000039000000000012041b000000000035004b0000000005038019000200000005001d000000400100043d000300000001001d0000039d0010009c000000780000213d00000003020000290000006001200039000000400010043f0000000203000039000000000332043600000000020000310000000102200367000400000003001d000000002402043c0000000003430436000000000013004b000006910000c13d0000000401000029000000000200041000000000002104350000039201000041000000400200043d000100000002001d0000000000120435000003820020009c0000038201000041000000000102401900000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038f011001c700000390020000410e040dff0000040f00000060031002700000038203300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000010b0000290000000105700029000006b80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000006b40000c13d000000000006004b000006c50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000006ed0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000038b0010009c000000780000213d0000000100200190000000780000c13d000000400010043f000000200030008c000003e40000413d00000000010b0433000003860010009c000003e40000213d00000003020000290000000002020433000000020020008c000008920000813d000003e001000041000000000010043f0000003201000039000000040010043f000003e10100004100000e06000104300000001f0530018f0000039106300198000000400200043d0000000004620019000005280000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006e80000c13d000005280000013d0000001f0530018f0000039106300198000000400200043d0000000004620019000005280000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006f40000c13d000005280000013d00000000010004150000000d0110008a0000000501100210000000000002004b000d00000000003d000d00010000c03d000008550000c13d0000000d02000039000000000202041a0000000501100270000000ff01200195000000ff00200190000008550000c13d0000000601000039000000000101041a000000ff001001900000055c0000613d0000000c01000039000000000201041a000600000002001d000003ec0020009c000005e50000213d0000039b0100004100000000001004430000000001000414000003820010009c0000038201008041000000c0011002100000039c011001c70000800b020000390e040dff0000040f00000001002001900000094e0000613d000000000201043b00000006010000290000025801100039000500000002001d000000000012004b000007240000813d000000800100043d0000038601100197000000070010006b000009d40000c13d0000000a01000039000000000101041a000000050110006b000005e50000413d0000000902000039000000000202041a000000000021004b000008490000a13d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000101041a000000000001004b000008490000613d000000800100043d0000000002000411000000000121013f0000038600100198000008490000c13d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d0000000d04000039000000000204041a000003ea0220019700000001022001bf0000000703000039000000000303041a000000000101043b000000000501041a000000000024041b0000000a010000390000000502000029000000000021041b000000000035004b0000000005038019000300000005001d000000400100043d000400000001001d0000039d0010009c000000780000213d00000004020000290000006001200039000000400010043f0000000203000039000000000332043600000000020000310000000102200367000600000003001d000000002402043c0000000003430436000000000013004b0000076a0000c13d0000000001000410000000060200002900000000001204350000039201000041000000400200043d000200000002001d0000000000120435000003820020009c0000038201000041000000000102401900000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038f011001c700000390020000410e040dff0000040f00000060031002700000038203300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000020b0000290000000205700029000007910000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000078d0000c13d000000000006004b0000079e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000a4f0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000038b0010009c000000780000213d0000000100200190000000780000c13d000000400010043f000000200030008c000003e40000413d00000000010b0433000003860010009c000003e40000213d00000004020000290000000002020433000000010020008c000006db0000a13d0000000402000029000000400220003900000000001204350000000001000410000000000001004b000005480000613d000000000010043f0000000201000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000039002000041000000000020043f000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000302000029000000000021041b000000400100043d0000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039e04000041000000000500041000000390060000410e040dfa0000040f0000000100200190000003e40000613d0000000b01000039000000000101041a000200000001001d0000039f010000410000000000100443000003900100004100000004001004430000000001000414000003820010009c0000038201008041000000c001100210000003a0011001c700008002020000390e040dff0000040f00000001002001900000094e0000613d000000000101043b000000000001004b000000a003000039000003e40000613d00000002010000290000038601100197000000400400043d00000044024000390000000000320435000003a10200004100000000002404350000000402400039000000030300002900000000003204350000002402400039000000000002043500000004020000290000000003020433000000a4024000390000000000320435000400000004001d000000c402400039000000000003004b0000081a0000613d000000000400001900000006060000290000000065060434000600000006001d000003860550019700000000025204360000000104400039000000000034004b000008120000413d0000000405000029000000840350003900000005040000290000000000430435000000640350003900000000001304350000000001520049000003820010009c000003820100804100000060011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f000003820050009c00000382020000410000000002054019000600400020021800000006011001af00000390020000410e040dfa0000040f000000010020019000000a5b0000613d00000004010000290000038b0010009c000000780000213d0000000402000029000000400020043f000000030100002900000000001204350000000001000414000003820010009c0000038201008041000000c00110021000000006011001af0000038a011001c70000800d020000390000000103000039000003a2040000410e040dfa0000040f0000000100200190000003e40000613d0000000d02000039000000000102041a000003ea01100197000000000012041b0000000301000039000000000101041a000003a40210009c000005e50000813d0000000303000039000000000023041b0000000002000410000000000002004b000009ea0000c13d0000000302000039000000000012041b000009fb0000013d0000000301000039000000000101041a000003980210009c000005e50000813d0000000303000039000000000023041b0000000002000411000703860020019c000008610000c13d0000000302000039000000000012041b000008720000013d0000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003980220009a000000000021041b000000400100043d00000399020000410000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039a04000041000000000500001900000007060000290e040dfa0000040f0000000100200190000003e40000613d000000000100041500000008011000690000000001000002000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000003a90100004100000e050001042e0000000302000029000000400220003900000000001204350000000001000410000103860010019c000005480000613d0000000101000029000000000010043f0000000201000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000039002000041000000000020043f000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039e04000041000000010500002900000390060000410e040dfa0000040f0000000100200190000003e40000613d0000000b01000039000000000101041a000100000001001d0000039f010000410000000000100443000003900100004100000004001004430000000001000414000003820010009c0000038201008041000000c001100210000003a0011001c700008002020000390e040dff0000040f00000001002001900000094e0000613d000000000101043b000000000001004b000003e40000613d00000001010000290000038601100197000000400400043d0000004402400039000000a0030000390000000000320435000003a10200004100000000002404350000000402400039000000020300002900000000003204350000002402400039000000000002043500000003020000290000000003020433000000a4024000390000000000320435000300000004001d000000c402400039000000000003004b000008f90000613d000000000400001900000004060000290000000065060434000400000006001d000003860550019700000000025204360000000104400039000000000034004b000008f10000413d0000000305000029000000840350003900000005040000290000000000430435000000640350003900000000001304350000000001520049000003820010009c000003820100804100000060011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f000003820050009c00000382020000410000000002054019000500400020021800000005011001af00000390020000410e040dfa0000040f000000010020019000000a1a0000613d00000003010000290000038b0010009c000000780000213d0000000302000029000000400020043f000000020100002900000000001204350000000001000414000003820010009c0000038201008041000000c00110021000000005011001af0000038a011001c70000800d020000390000000103000039000003a2040000410e040dfa0000040f0000000100200190000003e40000613d0000000d02000039000000000102041a000003ea01100197000000000012041b000000070000006b000500000000001d000009340000613d000000070200002900000005012000c900000000022100d9000000050020008c000005e50000c13d000000640010008c000009680000813d0000000701000029000500000001001d000000080000006b0000094f0000c13d0000000301000039000000000101041a000000050010002a000005e50000413d0000000501100029000000050200002900000000012100490000000303000039000000000013041b000000400100043d0000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d020000390000039a040000410000000805000029000005860000013d000000000001042f0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000301041a0007000500300074000009780000813d000000400200043d000800000002001d000003dc010000410000000000120435000000040120003900000000020004110000000504000029000005a60000013d0005006400100122000000080000006b0000098b0000c13d0000000301000039000000000201041a000000050020002a000005e50000413d0000000502200029000000000021041b0000000001000410000403860010019c000009ac0000c13d0000000301000039000000000201041a000000050220006a000009bc0000013d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000702000029000000000021041b0000000301000039000000000101041a0000093b0000013d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000301041a0004000500300074000009600000413d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b0000000402000029000009700000013d0000000401000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a0000000502200029000000000021041b000000400100043d00000005020000290000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039a04000041000000080500002900000004060000290e040dfa0000040f0000000100200190000003e40000613d00000005020000290000000701200069000009330000013d0000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000101041a000003980110009c000005e50000813d0000000802000039000000000202041a000000000021004b000006380000213d000007240000013d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003a40220009a000000000021041b000000400100043d000003a5020000410000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039a04000041000000000500001900000000060004100e040dfa0000040f0000000100200190000003e40000613d0000000301000039000000000101041a000003a70210009c000005e50000813d0000000303000039000000000023041b000000070000006b00000a360000c13d0000000302000039000000000012041b00000a470000013d00000060061002700000001f0460018f0000039105600198000000400200043d000000000352001900000a260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000a220000c13d0000038206600197000000000004004b00000a340000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001600210000005360000013d0000000701000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f0000000100200190000003e40000613d000000000101043b000000000201041a000003a70220009a000000000021041b000000400100043d000003a8020000410000000000210435000003820010009c000003820100804100000040011002100000000002000414000008790000013d0000001f0530018f0000039106300198000000400200043d0000000004620019000005280000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a560000c13d000005280000013d00000060061002700000001f0460018f0000039105600198000000400200043d000000000352001900000a260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000a630000c13d00000a260000013d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000a770000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000a700000413d000000000321001900000000000304350000001f02200039000003eb022001970000000001210019000000000001042d0000001f02200039000003eb022001970000000001120019000000000021004b000000000200003900000001020040390000038b0010009c00000a890000213d000000010020019000000a890000c13d000000400010043f000000000001042d000003e001000041000000000010043f0000004101000039000000040010043f000003e10100004100000e06000104300000004005100039000000000045043500000020041000390000000000340435000003860220019700000000002104350000006001100039000000000001042d000b000000000002000700000003001d0000000003010019000903860010019c00000d370000613d000500000003001d000600000002001d000803860020019c00000d3a0000613d0000000901000029000000000010043f0000000e01000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000101041a000000ff0010019000000ae40000c13d0000000801000029000000000010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000101041a000000ff0010019000000ae40000c13d000003cd0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003820010009c0000038201008041000000c001100210000003db011001c700008005020000390e040dff0000040f000000010020019000000d560000613d000000000101043b0000038602100197000000080020006b00000ad70000c13d00000000010004150000000b0110008a0000000501100210000b00000000003d00000ade0000013d00000000010004150000000a0110008a0000000501100210000000090020006b000a00000000003d000a00010000c03d00000ae40000c13d0000000d02000039000000000202041a0000000501100270000000ff01200195000000ff0020019000000b2b0000613d0000000901000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d0000000102000039000000000101043b000000000301041a000600070030007400000d440000413d0000000901000029000000000010043f000000200020043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b0000000602000029000000000021041b0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039a04000041000000090500002900000008060000290e040dfa0000040f000000010020019000000d350000613d000000000001042d0000000601000039000000000101041a000000ff0010019000000d5d0000613d0000000c01000039000000000201041a000400000002001d000003ec0020009c00000d570000213d0000039b0100004100000000001004430000000001000414000003820010009c0000038201008041000000c0011002100000039c011001c70000800b020000390e040dff0000040f000000010020019000000d560000613d000000000201043b00000004010000290000025801100039000400000002001d000000000012004b00000b6d0000813d000003cd0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003820010009c0000038201008041000000c001100210000003db011001c700008005020000390e040dff0000040f000000010020019000000d560000613d000000000101043b0000038601100197000000080010006b00000b6d0000613d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000101041a000000070010002a00000d570000413d00000007011000290000000802000039000000000202041a000000000021004b00000d720000213d0000000a01000039000000000101041a000000040110006b00000d570000413d0000000902000039000000000202041a000000000021004b00000c9b0000a13d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000101041a000000000001004b00000c9b0000613d000003cd0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003820010009c0000038201008041000000c001100210000003db011001c700008005020000390e040dff0000040f000000010020019000000d560000613d000000000101043b000000060110014f000003860010019800000c9b0000c13d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d0000000d04000039000000000204041a000003ea0220019700000001022001bf0000000703000039000000000303041a000000000101043b000000000501041a000000000024041b00000004010000290000000a02000039000000000012041b000000000035004b0000000005038019000600000005001d000000400200043d000003ed0020009c00000d640000813d0000006001200039000000400010043f0000000203000039000300000002001d0000000005320436000000000200003100000001022003670000000003050019000000002402043c0000000003430436000000000013004b00000bbf0000c13d000100000005001d000000000100041000000000001504350000039201000041000000400200043d000200000002001d0000000000120435000003820020009c0000038201000041000000000102401900000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038f011001c700000390020000410e040dff0000040f000000020b00002900000060031002700000038203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000be60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000be20000c13d000000000006004b00000bf30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000d830000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000038b0010009c00000d640000213d000000010020019000000d640000c13d000000400010043f000000200030008c00000d350000413d00000000010b0433000003860010009c00000d350000213d00000003030000290000000002030433000000010020008c00000d9d0000a13d000000400230003900000000001204350000000001000410000003860110019800000da30000613d000200000001001d000000000010043f0000000201000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b0000039002000041000000000020043f000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b0000000602000029000000000021041b000000400100043d0000000000210435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039e04000041000000020500002900000390060000410e040dfa0000040f000000010020019000000d350000613d0000000b01000039000000000101041a000200000001001d0000039f010000410000000000100443000003900100004100000004001004430000000001000414000003820010009c0000038201008041000000c001100210000003a0011001c700008002020000390e040dff0000040f000000010020019000000d560000613d000000000101043b000000000001004b00000d350000613d00000002010000290000038601100197000000400700043d0000004402700039000000a0030000390000000000320435000003a10200004100000000002704350000000402700039000000060300002900000000003204350000002402700039000000000002043500000003020000290000000003020433000000a4027000390000000000320435000000c402700039000000000003004b00000c6d0000613d000000000400001900000001060000290000000065060434000003860550019700000000025204360000000104400039000000000034004b00000c670000413d000000840370003900000004040000290000000000430435000000640370003900000000001304350000000001720049000003820010009c000003820100804100000060011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f000003820070009c00000382020000410000000002074019000300400020021800000003011001af0000039002000041000400000007001d0e040dfa0000040f000000010020019000000da60000613d00000004020000290000038b0020009c00000d640000213d000000400020043f000000060100002900000000001204350000000001000414000003820010009c0000038201008041000000c00110021000000003011001af0000038a011001c70000800d020000390000000103000039000003a2040000410e040dfa0000040f000000010020019000000d350000613d0000000d02000039000000000102041a000003ea01100197000000000012041b0000000701000029000000000001004b00000ce00000613d00000005021000c900000000011200d9000000050010008c00000d570000c13d000000640020008c00000cfb0000413d000600000002001d0000000901000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d00000006020000290006006400200122000000000101043b000000000301041a000000060130006c000400000001001d00000d6a0000413d0000000901000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d0000000002000410000000000101043b0000000403000029000000000031041b000003860620019800000ce20000613d000400000006001d000000000060043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000201041a00000006030000290000000002320019000000000021041b000000040600002900000ce70000013d000700000000001d00000cfb0000013d0000000301000039000000000201041a00000006030000290000000002320049000000000021041b000000400100043d0000000000310435000003820010009c000003820100804100000040011002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f0000038a011001c70000800d0200003900000003030000390000039a0400004100000009050000290e040dfa0000040f000000010020019000000d350000613d000000060200002900070007002000710000000901000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d0000000102000039000000000101043b000000000301041a000600070030007400000d440000413d0000000901000029000000000010043f000000200020043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b0000000602000029000000000021041b0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003820010009c0000038201008041000000c00110021000000395011001c700008010020000390e040dff0000040f000000010020019000000d350000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000003820010009c00000382010080410000004001100210000000000200041400000b1d0000013d000000000100001900000e0600010430000000400100043d000003e30200004100000d3c0000013d000000400100043d000003ee02000041000000000021043500000004021000390000000000020435000003820010009c00000382010080410000004001100210000003e1011001c700000e0600010430000000400200043d000900000002001d000003dc0100004100000000001204350000000401200039000000050200002900000007040000290e040a8f0000040f00000009020000290000000001210049000003820010009c00000382010080410000006001100210000003820020009c00000382020080410000004002200210000000000121019f00000e0600010430000000000001042f000003e001000041000000000010043f0000001101000039000000040010043f000003e10100004100000e0600010430000000400100043d0000004402100039000003e20300004100000000003204350000002402100039000000130300003900000d780000013d000003e001000041000000000010043f0000004101000039000000040010043f000003e10100004100000e0600010430000000400200043d000900000002001d000003dc01000041000000000012043500000004012000390000000502000029000000060400002900000d4b0000013d000000400100043d0000004402100039000003de030000410000000000320435000000240210003900000018030000390000000000320435000003d1020000410000000000210435000000040210003900000020030000390000000000320435000003820010009c00000382010080410000004001100210000003df011001c700000e06000104300000001f0530018f0000039106300198000000400200043d000000000462001900000d8e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d8a0000c13d000000000005004b00000d9b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000dc10000013d000003e001000041000000000010043f0000003201000039000000040010043f000003e10100004100000e0600010430000000400100043d000003e50200004100000d3c0000013d00000060061002700000001f0460018f0000039105600198000000400200043d000000000352001900000db20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000dae0000c13d0000038206600197000000000004004b00000dc00000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001600210000003820020009c00000382020080410000004002200210000000000112019f00000e0600010430000000000001042f000003820010009c00000382010080410000004001100210000003820020009c00000382020080410000006002200210000000000112019f0000000002000414000003820020009c0000038202008041000000c002200210000000000112019f00000387011001c700008010020000390e040dff0000040f000000010020019000000dda0000613d000000000101043b000000000001042d000000000100001900000e060001043000000000050100190000000000200443000000050030008c00000dea0000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b00000de20000413d000003820030009c000003820300804100000060013002100000000002000414000003820020009c0000038202008041000000c002200210000000000112019f000003ef011001c700000000020500190e040dff0000040f000000010020019000000df90000613d000000000101043b000000000001042d000000000001042f00000dfd002104210000000102000039000000000001042d0000000002000019000000000001042d00000e02002104230000000102000039000000000001042d0000000002000019000000000001042d00000e040000043200000e050001042e00000e0600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff53696d706c654561726e000000000000000000000000000000000000000000004541524e00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000002a5a058fc295ed00000000000000000000000000000000000000000000000018d0bf423c03d8de000000c45a0155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000ad1eca41e6f772be3cb5a48a6141f9bcc1af9f7c00000000000000000000000000000000000000000000000000000000ffffffe0ad5c464800000000000000000000000000000000000000000000000000000000c9c653960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000200000000000000000000000000000000000040000000000000000000000000e710864318d4a32f37d6ce54cb3fadbef648dd12d8dbdf53973564d56b7f881cfffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc317fffffffffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc3180000000000000000000000000000000000000000000000033b2e3c9fd0803ce8000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9251806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000791ac94700000000000000000000000000000000000000000000000000000000d851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05ffffffffffffffffffffffffffffffffffffffffffd6a416919bf9968dffffffffffffffffffffffffffffffffffffffffffffffffd6a416919bf9968e000000000000000000000000000000000000000000000000295be96e64066972000000fffffffffffffffffffffffffffffffffffffffffcee2dacce93862c89fffffffffffffffffffffffffffffffffffffffffffffffcee2dacce93862c8a00000000000000000000000000000000000000000000000311d253316c79d37600000000000002000000000000000000000000000000800000010000000000000000001e4fbdf700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000120000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000944dd5a100000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000944dd5a20000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a8aa1b31000000000000000000000000000000000000000000000000000000008cf57cb8000000000000000000000000000000000000000000000000000000008cf57cb9000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008e4b389800000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008a8c523c00000000000000000000000000000000000000000000000000000000313ce566000000000000000000000000000000000000000000000000000000004fbee192000000000000000000000000000000000000000000000000000000004fbee19300000000000000000000000000000000000000000000000000000000626de2380000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004a7a4a570000000000000000000000000000000000000000000000000000000016697fc40000000000000000000000000000000000000000000000000000000016697fc50000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3118cdaa700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00200000000000000000000000000000000000020000000800000000000000000be1849831e6775a2022006aeebcc00f70d10bc4202c8187e215ad9e9911f2b0608c379a000000000000000000000000000000000000000000000000000000000496e76616c6964206164647265737300000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000656e61626c6564210000000000000000000000000000000000000000000000001d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d000000000000000000000000000000000000000000108b2a2c28029094000000ffffffffffffffffffffffffffffffffffffffffffef74d5d3d7fd6f6c000000db3d91c4b4701c2ec5396e1f2dd1f98c293c840369dce3906a6a0e899e84c794496e76616c696420616d6f756e74000000000000000000000000000000000000eeead833ef3bd72b908fa0c2d1c47eabe4acbd6f2342eeddf75acda1467589cb0200000200000000000000000000000000000044000000000000000000000000e450d38c00000000000000000000000000000000000000000000000000000000a6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb494d61782077616c6c6574206c696d69742072656163686564000000000000000000000000000000000000000000000000000000640000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000054726164696e67206973206e6f74206f70656e0000000000000000000000000096c6fd1e0000000000000000000000000000000000000000000000000000000094280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000fb8f41b2000000000000000000000000000000000000000000000000000000003499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffda7000000000000000000000000000000000000000000000000ffffffffffffffa0ec442f05000000000000000000000000000000000000000000000000000000000200000200000000000000000000000000000000000000000000000000000000e8c6010162356d518db1c15278101ce9979396ec8f721bbe74b8d96ab7c234eb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.