More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,908,282 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Batch Send Nativ... | 44239254 | 9 mins ago | IN | 0 ETH | 0.00000512 | ||||
Batch Send Nativ... | 44237308 | 44 mins ago | IN | 0 ETH | 0.00000618 | ||||
Deposit Native T... | 44237258 | 45 mins ago | IN | 0.00069 ETH | 0.00000418 | ||||
Deposit Native T... | 44236121 | 1 hr ago | IN | 0.000302 ETH | 0.00000484 | ||||
Batch Send Nativ... | 44235925 | 1 hr ago | IN | 0 ETH | 0.00000503 | ||||
Batch Send Nativ... | 44234672 | 1 hr ago | IN | 0 ETH | 0.00000591 | ||||
Deposit Native T... | 44234274 | 1 hr ago | IN | 0.00066 ETH | 0.00000398 | ||||
Batch Send Nativ... | 44233929 | 1 hr ago | IN | 0 ETH | 0.00000578 | ||||
Deposit Native T... | 44233698 | 1 hr ago | IN | 0.00043 ETH | 0.00000457 | ||||
Deposit Native T... | 44233566 | 1 hr ago | IN | 0.0022 ETH | 0.00000414 | ||||
Deposit Native T... | 44233499 | 1 hr ago | IN | 0.000264 ETH | 0.00000418 | ||||
Deposit Native T... | 44232584 | 2 hrs ago | IN | 0.0013 ETH | 0.0000042 | ||||
Deposit Native T... | 44232437 | 2 hrs ago | IN | 0.000063 ETH | 0.00000491 | ||||
Batch Send Nativ... | 44231614 | 2 hrs ago | IN | 0 ETH | 0.00000501 | ||||
Deposit Native T... | 44231122 | 2 hrs ago | IN | 0.00000227 ETH | 0.00000487 | ||||
Deposit Native T... | 44230887 | 2 hrs ago | IN | 0.00000916 ETH | 0.00000487 | ||||
Batch Send Nativ... | 44230168 | 2 hrs ago | IN | 0 ETH | 0.00000501 | ||||
Batch Send Nativ... | 44230080 | 2 hrs ago | IN | 0 ETH | 0.00000501 | ||||
Batch Send Nativ... | 44229808 | 3 hrs ago | IN | 0 ETH | 0.00000574 | ||||
Batch Send Nativ... | 44227751 | 3 hrs ago | IN | 0 ETH | 0.00000574 | ||||
Deposit Native T... | 44226961 | 3 hrs ago | IN | 0.000022 ETH | 0.00000487 | ||||
Batch Send Nativ... | 44225390 | 4 hrs ago | IN | 0 ETH | 0.00000502 | ||||
Batch Send Nativ... | 44225049 | 4 hrs ago | IN | 0 ETH | 0.00000502 | ||||
Batch Send Nativ... | 44223708 | 4 hrs ago | IN | 0 ETH | 0.00000502 | ||||
Batch Send Nativ... | 44223363 | 5 hrs ago | IN | 0 ETH | 0.00000729 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
44239631 | 3 mins ago | 0.001 ETH | ||||
44239560 | 4 mins ago | 0.00017485 ETH | ||||
44239347 | 8 mins ago | 0.0001087 ETH | ||||
44239317 | 8 mins ago | 0.0001084 ETH | ||||
44239284 | 9 mins ago | 0.00054339 ETH | ||||
44239259 | 9 mins ago | 0.000225 ETH | ||||
44239254 | 9 mins ago | 0.00030356 ETH | ||||
44239140 | 11 mins ago | 0.0001 ETH | ||||
44238981 | 14 mins ago | 0.0001 ETH | ||||
44238944 | 15 mins ago | 0.00012 ETH | ||||
44238500 | 23 mins ago | 0.0008 ETH | ||||
44238281 | 27 mins ago | 0.00052841 ETH | ||||
44238255 | 27 mins ago | 0.0005 ETH | ||||
44237938 | 33 mins ago | 0.000214 ETH | ||||
44237884 | 34 mins ago | 0.00050847 ETH | ||||
44237884 | 34 mins ago | 0.00050847 ETH | ||||
44237883 | 34 mins ago | 0.00050847 ETH | ||||
44237706 | 37 mins ago | 0.0001 ETH | ||||
44237642 | 38 mins ago | 0.0022 ETH | ||||
44237308 | 44 mins ago | 0.00018355 ETH | ||||
44237258 | 45 mins ago | 0.00069 ETH | ||||
44236917 | 52 mins ago | 0.00055832 ETH | ||||
44236917 | 52 mins ago | 0.00055832 ETH | ||||
44236916 | 52 mins ago | 0.00055832 ETH | ||||
44236624 | 57 mins ago | 0.0001 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Refuel
Compiler Version
v0.8.4+commit.c7e474f2
ZkSolc Version
v1.3.8
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** ____ ______________ __________ / __ \/ ____/ ____/ / / / ____/ / / /_/ / __/ / /_ / / / / __/ / / / _, _/ /___/ __/ / /_/ / /___/ /___ /_/ |_/_____/_/ \____/_____/_____/ */ pragma solidity >0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Refuel is Ownable, Pausable { /* Variables */ mapping(uint256 => ChainData) public chainConfig; mapping(bytes32 => bool) public processedHashes; mapping(address => bool) public senders; struct ChainData { uint256 chainId; bool isEnabled; } /* Events */ event Deposit( address indexed destinationReceiver, uint256 amount, uint256 indexed destinationChainId ); event Withdrawal(address indexed receiver, uint256 amount); event Donation(address sender, uint256 amount); event Send(address receiver, uint256 amount, bytes32 srcChainTxHash); event GrantSender(address sender); event RevokeSender(address sender); modifier onlySender() { require(senders[msg.sender], "Sender role required"); _; } constructor() { _grantSenderRole(msg.sender); } receive() external payable { emit Donation(msg.sender, msg.value); } function depositNativeToken(uint256 destinationChainId, address _to) public payable whenNotPaused { require( chainConfig[destinationChainId].isEnabled, "Chain is currently disabled" ); emit Deposit(_to, msg.value, destinationChainId); } function withdrawBalance(address _to, uint256 _amount) public onlyOwner { _withdrawBalance(_to, _amount); } function withdrawFullBalance(address _to) public onlyOwner { _withdrawBalance(_to, address(this).balance); } function _withdrawBalance(address _to, uint256 _amount) private { (bool success, ) = _to.call{value: _amount}(""); require(success, "Failed to send Ether"); emit Withdrawal(_to, _amount); } function rescueERC20(address _token, address _to) public onlyOwner { IERC20 token = IERC20(_token); uint256 balance = token.balanceOf(address(this)); token.transfer(_to, balance); } function setIsEnabled(uint256 chainId, bool _isEnabled) public onlyOwner returns (bool) { chainConfig[chainId].isEnabled = _isEnabled; return chainConfig[chainId].isEnabled; } function setPause() public onlyOwner returns (bool) { _pause(); return paused(); } function setUnPause() public onlyOwner returns (bool) { _unpause(); return paused(); } function addRoutes(ChainData[] calldata _routes) external onlyOwner { for (uint256 i = 0; i < _routes.length; i++) { chainConfig[_routes[i].chainId] = _routes[i]; } } function getChainData(uint256 chainId) public view returns (ChainData memory) { return (chainConfig[chainId]); } function batchSendNativeToken( address payable[] memory receivers, uint256[] memory amounts, bytes32[] memory srcChainTxHashes, uint256 perUserGasAmount, uint256 maxLimit ) public onlySender { require( receivers.length == amounts.length && receivers.length == srcChainTxHashes.length, "Input length mismatch" ); uint256 gasPrice; assembly { gasPrice := gasprice() } for (uint256 i = 0; i < receivers.length; i++) { uint256 _gasFees = amounts[i] > maxLimit ? (amounts[i] - maxLimit + (gasPrice * perUserGasAmount)) : gasPrice * perUserGasAmount; _sendNativeToken( receivers[i], amounts[i], srcChainTxHashes[i], _gasFees ); } } function sendNativeToken( address payable receiver, uint256 amount, bytes32 srcChainTxHash, uint256 perUserGasAmount, uint256 maxLimit ) public onlySender { uint256 gasPrice; assembly { gasPrice := gasprice() } uint256 _gasFees = amount > maxLimit ? (amount - maxLimit + (gasPrice * perUserGasAmount)) : gasPrice * perUserGasAmount; _sendNativeToken(receiver, amount, srcChainTxHash, _gasFees); } function _sendNativeToken( address payable receiver, uint256 amount, bytes32 srcChainTxHash, uint256 gasFees ) private { if (processedHashes[srcChainTxHash]) return; processedHashes[srcChainTxHash] = true; uint256 sendAmount = amount - gasFees; emit Send(receiver, sendAmount, srcChainTxHash); (bool success, ) = receiver.call{value: sendAmount}(""); require(success, "Failed to send Ether"); } function grantSenderRole(address sender) public onlyOwner { _grantSenderRole(sender); } function revokeSenderRole(address sender) public onlyOwner { _revokeSenderRole(sender); } function _grantSenderRole(address sender) private { senders[sender] = true; emit GrantSender(sender); } function _revokeSenderRole(address sender) private { senders[sender] = false; emit RevokeSender(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "compilerPath": "", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destinationReceiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"destinationChainId","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Donation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"GrantSender","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"RevokeSender","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"srcChainTxHash","type":"bytes32"}],"name":"Send","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"internalType":"struct Refuel.ChainData[]","name":"_routes","type":"tuple[]"}],"name":"addRoutes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes32[]","name":"srcChainTxHashes","type":"bytes32[]"},{"internalType":"uint256","name":"perUserGasAmount","type":"uint256"},{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"batchSendNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chainConfig","outputs":[{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"depositNativeToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"chainId","type":"uint256"}],"name":"getChainData","outputs":[{"components":[{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"internalType":"struct Refuel.ChainData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"grantSenderRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"processedHashes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"revokeSenderRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"srcChainTxHash","type":"bytes32"},{"internalType":"uint256","name":"perUserGasAmount","type":"uint256"},{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"sendNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"senders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"bool","name":"_isEnabled","type":"bool"}],"name":"setIsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUnPause","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawFullBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100033d5748e8ce53bc7449f9f264d6704f6bcd3eafeb69f2215057b4186c3800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000300000000000200000000030100190000006003300270000002ed0430019700030000004103550002000000010355000002ed0030019d000100000000001f0000008001000039000000400010043f00000001012001900000002b0000c13d0000000001000031000000040210008c0000006f0000413d0000000202000367000000000202043b000000e002200270000002f80320009c000000740000213d000003060120009c0000008a0000213d0000030d0120009c000000b20000a13d0000030e0120009c0000011e0000613d0000030f0120009c0000012a0000613d000003100120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002170000040f0bb0083b0000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000000400041a000002ee014001970000000006000411000000000161019f000000000010041b000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002ef011001c7000200000004001d000002f0054001970000800d020000390000000303000039000002f104000041000100000003001d000300000006001d0bb00ba60000040f00000001012001900000020c0000613d0000000201000029000002f2011001970000000303000029000002f302300197000000000112019f000000000010041b00000000003004350000000101000029000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f00000001022001900000020c0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000301000029000000800010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f5011001c70000800d020000390000000103000039000002f6040000410bb00ba60000040f00000001012001900000020c0000613d000000200100003900000100001004430000012000000443000002f70100004100000bb10001042e000000000110004c0000020c0000c13d0bb003a60000040f000000000100001900000bb10001042e000002f90320009c0000009e0000213d000003000120009c000000d80000a13d000003010120009c000001360000613d000003020120009c000001420000613d000003030120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d00000000010000310bb0033d0000040f0bb007a50000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e000003070120009c000000ed0000a13d000003080120009c000001660000613d000003090120009c000001720000613d0000030a0120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002170000040f0bb0087d0000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e000002fa0320009c0000010e0000a13d000002fb0320009c0000018a0000613d000002fc0320009c000001a70000613d000002fd0120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002170000040f0bb007f60000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e000003110120009c000001af0000613d000003120120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000200310008c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d00000004010000390000000201100367000000000101043b0bb003ed0000040f000000000220004c0000000002000019000000010200c039000000400300043d000000200430003900000000002404350000000000130435000002ed01000041000002ed0230009c0000000001034019000000400110021000000316011001c700000bb10001042e000003040120009c000001cf0000613d000003050120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002170000040f0bb004150000040f000000000110004c0000000001000019000000010100c039000000400200043d0000000000120435000002ed01000041000002ed0320009c0000000001024019000000400110021000000314011001c700000bb10001042e0000030b0120009c000001ea0000613d0000030c0120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000000310004c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d000000000100041a00000315011001980000000001000019000000010100c039000000400200043d0000000000120435000002ed01000041000002ed0320009c0000000001024019000000400110021000000314011001c700000bb10001042e000002fe0120009c000001fb0000613d000002ff0120009c0000020c0000c13d0000000001000416000000000110004c0000020c0000c13d00000000010000310bb0022c0000040f0bb00a320000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002620000040f0bb004290000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002790000040f0bb008be0000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002170000040f0bb004c60000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000200310008c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d00000004010000390000000201100367000000000101043b0bb003c00000040f0000000002010019000000400100043d000300000001001d0bb0039d0000040f00000003040000290000000001410049000002ed02000041000002ed0310009c0000000001028019000002ed0340009c000000000204401900000040022002100000006001100210000000000121019f00000bb10001042e0000000001000416000000000110004c0000020c0000c13d00000000010000310bb002490000040f0bb005700000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000000310004c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d0bb007780000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000000310004c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d0bb006f40000040f000000000110004c0000000001000019000000010100c039000000400200043d0000000000120435000002ed01000041000002ed0320009c0000000001024019000000400110021000000314011001c700000bb10001042e0bb0036c0000040f0bb00b530000040f000002ed01000041000000400200043d000002ed0320009c0000000001024019000000400110021000000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000200310008c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d00000004010000390000000201100367000000000101043b0bb004020000040f000000000110004c0000000001000019000000010100c039000000400200043d0000000000120435000002ed01000041000002ed0320009c0000000001024019000000400110021000000314011001c700000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000000310004c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020c0000c13d000000000100041a000002f001100197000000400200043d0000000000120435000002ed01000041000002ed0320009c0000000001024019000000400110021000000314011001c700000bb10001042e0000000001000416000000000110004c0000020c0000c13d00000000010000310bb003830000040f0bb006ad0000040f000000000110004c0000000001000019000000010100c039000000400200043d0000000000120435000002ed01000041000002ed0320009c0000000001024019000000400110021000000314011001c700000bb10001042e0000000001000416000000000110004c0000020c0000c13d000000040100008a00000000011000310000031302000041000000000310004c000000000300001900000000030240190000031301100197000000000410004c000000000200a019000003130110009c00000000010300190000000001026019000000000110004c0000020e0000613d000000000100001900000bb2000104300bb007370000040f000000400100043d0000000000010435000002ed02000041000002ed0310009c0000000001028019000000400110021000000314011001c700000bb10001042e000000040110008a00000313020000410000001f0310008c000000000300001900000000030220190000031301100197000000000410004c0000000002008019000003130110009c00000000010300190000000001026019000000000110004c0000022a0000613d00000004010000390000000201100367000000000101043b000002f00210009c0000022a0000213d000000000001042d000000000100001900000bb200010430000000040110008a00000313020000410000009f0310008c000000000300001900000000030220190000031301100197000000000410004c0000000002008019000003130110009c00000000010300190000000001026019000000000110004c000002470000613d00000002050003670000000401500370000000000101043b000002f00210009c000002470000213d0000002402500370000000000202043b0000004403500370000000000303043b0000006404500370000000000404043b0000008405500370000000000505043b000000000001042d000000000100001900000bb200010430000000040110008a00000313020000410000003f0310008c000000000300001900000000030220190000031301100197000000000410004c0000000002008019000003130110009c00000000010300190000000001026019000000000110004c000002600000613d00000002020003670000000401200370000000000101043b000002f00310009c000002600000213d0000002402200370000000000202043b000002f00320009c000002600000213d000000000001042d000000000100001900000bb200010430000000040110008a00000313020000410000003f0310008c000000000300001900000000030220190000031301100197000000000410004c0000000002008019000003130110009c00000000010300190000000001026019000000000110004c000002770000613d00000002020003670000000401200370000000000101043b000002f00310009c000002770000213d0000002402200370000000000202043b000000000001042d000000000100001900000bb200010430000000040210008a00000313030000410000009f0420008c000000000400001900000000040320190000031302200197000000000520004c0000000003008019000003130220009c00000000020400190000000002036019000000000220004c000003350000613d00000002020003670000000403200370000000000403043b000003170340009c000003350000213d00000023034000390000031305000041000000000613004b0000000006000019000000000605801900000313071001970000031303300197000000000873004b0000000005008019000000000373013f000003130330009c00000000030600190000000003056019000000000330004c000003350000c13d0000000403400039000000000232034f000000000202043b000003180320009c000003370000813d00000005052002100000003f06500039000000200300008a000000000736016f000000400600043d0000000007760019000000000867004b00000000080000190000000108004039000003170970009c000003370000213d0000000108800190000003370000c13d000000400070043f000000000026043500000024044000390000000005540019000000000515004b000003350000213d000000000520004c000002c00000613d000000000500001900000000070600190000000208400367000000000808043b000002f00980009c000003350000213d0000002007700039000000000087043500000020044000390000000105500039000000000825004b000002b60000413d00000002020003670000002404200370000000000504043b000003170450009c000003350000213d00000023045000390000031307000041000000000814004b0000000008000019000000000807801900000313091001970000031304400197000000000a94004b0000000007008019000000000494013f000003130440009c00000000040800190000000004076019000000000440004c000003350000c13d0000000404500039000000000242034f000000000402043b000003170240009c000003370000213d00000005074002100000003f02700039000000000832016f000000400200043d0000000008820019000000000928004b00000000090000190000000109004039000003170a80009c000003370000213d0000000109900190000003370000c13d000000400080043f000000000042043500000024055000390000000007570019000000000717004b000003350000213d000000000740004c000002f70000613d000000000700001900000000080200190000000209500367000000000909043b0000002008800039000000000098043500000020055000390000000107700039000000000947004b000002ef0000413d00000002040003670000004405400370000000000505043b000003170750009c000003350000213d00000023075000390000031308000041000000000917004b00000000090000190000000009088019000003130a1001970000031307700197000000000ba7004b00000000080080190000000007a7013f000003130770009c00000000070900190000000007086019000000000770004c000003350000c13d0000000407500039000000000474034f000000000404043b000003170740009c000003370000213d00000005074002100000003f08700039000000000838016f000000400300043d0000000008830019000000000938004b00000000090000190000000109004039000003170a80009c000003370000213d0000000109900190000003370000c13d000000400080043f000000000043043500000024055000390000000007570019000000000117004b000003350000213d000000000140004c0000032e0000613d000000000100001900000000070300190000000208500367000000000808043b0000002007700039000000000087043500000020055000390000000101100039000000000841004b000003260000413d00000002010003670000006404100370000000000404043b0000008401100370000000000501043b0000000001060019000000000001042d000000000100001900000bb200010430000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb200010430000000040210008a00000313030000410000001f0420008c000000000400001900000000040320190000031302200197000000000520004c0000000003008019000003130220009c00000000020400190000000002036019000000000220004c0000036a0000613d00000002020003670000000403200370000000000303043b000003170430009c0000036a0000213d00000023043000390000031305000041000000000614004b0000000006000019000000000605801900000313071001970000031304400197000000000874004b0000000005008019000000000474013f000003130440009c00000000040600190000000004056019000000000440004c0000036a0000c13d0000000404300039000000000242034f000000000202043b000003170420009c0000036a0000213d000000060420021000000024033000390000000004430019000000000114004b0000036a0000213d0000000001030019000000000001042d000000000100001900000bb200010430000000040110008a00000313020000410000003f0310008c000000000300001900000000030220190000031301100197000000000410004c0000000002008019000003130110009c00000000010300190000000001026019000000000110004c000003810000613d00000002010003670000002402100370000000000202043b000002f00320009c000003810000213d0000000401100370000000000101043b000000000001042d000000000100001900000bb200010430000000040110008a00000313020000410000003f0310008c000000000300001900000000030220190000031301100197000000000410004c0000000002008019000003130110009c00000000010300190000000001026019000000000110004c0000039b0000613d00000002010003670000002402100370000000000202043b000000000320004c0000000003000019000000010300c039000000000332004b0000039b0000c13d0000000401100370000000000101043b000000000001042d000000000100001900000bb200010430000000003202043400000000022104360000000003030433000000000330004c0000000003000019000000010300c03900000000003204350000004001100039000000000001042d000000400100043d0000002002100039000000000300041600000000003204350000000002000411000002f0022001970000000000210435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f000002f4011001c70000800d0200003900000001030000390000031b040000410bb00ba60000040f0000000101200190000003be0000613d000000000001042d000000000100001900000bb200010430000000400200043d0000031c0320009c000003e50000813d0000004003200039000000400030043f00000020032000390000000000030435000000000002043500000000001004350000000101000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f000000000301034f0000000101200190000003eb0000613d000000400100043d0000031d0210009c000003e50000213d000000000203043b0000004003100039000000400030043f000000000302041a00000000033104360000000102200039000000000202041a000000ff022001900000000002000019000000010200c0390000000000230435000000000001042d000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb200010430000000000100001900000bb20001043000000000001004350000000101000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000004000000613d000000000201043b000000000102041a0000000102200039000000000202041a000000ff0220018f000000000001042d000000000100001900000bb20001043000000000001004350000000201000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000004130000613d000000000101043b000000000101041a000000ff0110018f000000000001042d000000000100001900000bb200010430000002f00110019700000000001004350000000301000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000004270000613d000000000101043b000000000101041a000000ff0110018f000000000001042d000000000100001900000bb2000104300002000000000002000000000a0200190000000009010019000000000100041a000002f0011001970000000002000411000000000121004b0000049c0000c13d0000000001000414000000040290008c000004370000c13d00000001020000390000000101000031000004590000013d000002ed02000041000000400300043d000002ed0430009c0000000003028019000002ed0410009c0000000001028019000000c0011002100000004002300210000000000112019f0000000002a0004c000200000009001d00010000000a001d000004510000613d00000321011001c7000080090200003900000000030a0019000000000409001900000000050000190bb00ba60000040f000000010a000029000000020900002900030000000103550000006001100270000102ed0010019d000002ed01100197000004590000013d00000000020900190bb00ba60000040f000000010a000029000000020900002900030000000103550000006001100270000102ed0010019d000002ed01100197000000000310004c000004860000613d0000003f03100039000000200400008a000000000443016f000000400300043d0000000004430019000000000534004b00000000050000190000000105004039000003170640009c000004c00000213d0000000105500190000004c00000c13d000000400040043f0000000001130436000000030300036700000001050000310000001f0450018f0000000505500272000004770000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b0000046f0000413d000000000640004c000004860000613d0000000505500210000000000353034f00000000015100190000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000400100043d0000000102200190000004ad0000613d0000000000a10435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000323011001c70000800d020000390000000203000039000003240400004100000000050900190bb00ba60000040f0000000101200190000004be0000613d000000000001042d000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb2000104300000004402100039000003220300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000000100001900000bb200010430000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb2000104300002000000000002000200000001001d000000000100041a000002f0011001970000000002000411000000000121004b000005480000c13d0000032501000041000000000010043900000000010004100000000400100443000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000326011001c70000800a020000390bb00bab0000040f0000000102200190000005460000613d000000000a01043b00000000010004140000000205000029000000040250008c000004e30000c13d00000001020000390000000101000031000005040000013d000002ed02000041000000400300043d000002ed0430009c0000000003028019000002ed0410009c0000000001028019000000c0011002100000004002300210000000000112019f0000000002a0004c00010000000a001d000004fc0000613d00000321011001c7000080090200003900000000030a0019000000000405001900000000050000190bb00ba60000040f000000010a000029000000020500002900030000000103550000006001100270000102ed0010019d000002ed01100197000005040000013d00000000020500190bb00ba60000040f000000010a000029000000020500002900030000000103550000006001100270000102ed0010019d000002ed01100197000000000310004c000005310000613d0000003f03100039000000200400008a000000000443016f000000400300043d0000000004430019000000000634004b00000000070000190000000107004039000003170640009c0000056a0000213d00000001067001900000056a0000c13d000000400040043f0000000001130436000000030300036700000001060000310000001f0460018f0000000509600272000005220000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000796004b0000051a0000413d000000000640004c000005310000613d0000000506900210000000000363034f00000000016100190000000304400210000000000601043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f0000000000310435000000400100043d0000000102200190000005590000613d0000000000a10435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000323011001c70000800d02000039000000020300003900000324040000410bb00ba60000040f0000000101200190000005460000613d000000000001042d000000000100001900000bb200010430000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb2000104300000004402100039000003220300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb2000104300004000000000002000300000002001d000000000200041a000002f0022001970000000003000411000000000232004b0000065e0000c13d00000327020000410000000000200439000002f001100197000400000001001d0000000400100443000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000326011001c700008002020000390bb00bab0000040f00000004050000290000000102200190000006560000613d000000000101043b000000000110004c000006560000613d000000400900043d000003280100004100000000001904350000000001000410000002f002100197000000040390003900000000010004140000000000230435000000040250008c000005960000c13d0000000103000031000005c90000013d000002ed02000041000002ed0310009c0000000001028019000002ed0390009c00000000020940190000004002200210000000c001100210000000000121019f0000031a011001c70000000002050019000200000009001d0bb00bab0000040f000000020900002900000000030100190000006003300270000002ed03300197000000200430008c000000200500003900000000050340190000001f0450018f0000000505500272000005b50000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000005ad0000413d000000000640004c000005c40000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f0003000000010355000000010220019000000004050000290000066f0000613d0000001f01300039000000200400008a000000000241016f0000000001920019000000000221004b00000000020000190000000102004039000003170310009c000006580000213d0000000102200190000006580000c13d000200000004001d000000400010043f00000313010000410000000102000031000000200320008c000000000300001900000000030140190000031302200197000000000420004c000000000100a019000003130220009c000000000103c019000000000110004c000006560000c13d0000000001090433000100000001001d000003270100004100000000001004390000000400500443000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000326011001c700008002020000390bb00bab0000040f00000004040000290000000102200190000006560000613d000000000101043b000000000110004c000006560000613d000000400900043d0000032901000041000000000019043500000024029000390000000001000414000000010300002900000000003204350000000302000029000002f00220019700000004039000390000000000230435000000040240008c000006050000c13d00000001030000310000000202000029000006380000013d000002ed02000041000002ed0310009c0000000001028019000002ed0390009c00000000020940190000004002200210000000c001100210000000000121019f0000032a011001c70000000002040019000400000009001d0bb00ba60000040f000000040900002900000000030100190000006003300270000002ed03300197000000200430008c000000200500003900000000050340190000001f0450018f0000000505500272000006240000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000061c0000413d000000000640004c000006330000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f0003000000010355000000010220019000000002020000290000068e0000613d0000001f01300039000000000221016f0000000001920019000000000221004b00000000020000190000000102004039000003170310009c000006580000213d0000000102200190000006580000c13d000000400010043f00000313010000410000000102000031000000200320008c000000000300001900000000030140190000031302200197000000000420004c000000000100a019000003130220009c000000000103c019000000000110004c000006560000c13d0000000001090433000000000210004c0000000002000019000000010200c039000000000121004b000006560000c13d000000000001042d000000000100001900000bb200010430000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb200010430000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb2000104300000001f0430018f00000005023002720000067a0000613d00000000030000190000000505300210000000000651034f000000000606043b00000000006504350000000103300039000000000523004b000006730000413d000000000340004c000006880000613d00000003034002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000002ed010000410000000102000031000002ed0320009c0000000001024019000000600110021000000bb2000104300000001f0430018f0000000502300272000006990000613d00000000030000190000000505300210000000000651034f000000000606043b00000000006504350000000103300039000000000523004b000006920000413d000000000340004c000006a70000613d00000003034002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000002ed010000410000000102000031000002ed0320009c0000000001024019000000600110021000000bb2000104300003000000000002000300000002001d000000000200041a000002f0032001970000000002000411000000000223004b000006e30000c13d000200000001001d00000000001004350000000101000039000100000001001d000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000006e10000613d000000000101043b0000000101100039000000000201041a000001000300008a000000000232016f0000000303000029000000000330004c0000000003000019000000010300c039000000000232019f000000000021041b000000020100002900000000001004350000000101000029000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000006e10000613d000000000101043b0000000101100039000000000101041a000000ff0110018f000000000001042d000000000100001900000bb200010430000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000000200041a000002f0012001970000000003000411000000000331004b000007120000c13d0000031503200198000007230000c13d000002f3022001970000032c022001c7000000000020041b000000400200043d0000000000120435000002ed010000410000000003000414000002ed0430009c0000000003018019000002ed0420009c00000000010240190000004001100210000000c002300210000000000112019f00000323011001c70000800d0200003900000001030000390000032d040000410bb00ba60000040f0000000101200190000007350000613d0000000101000039000000000001042d000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000400100043d00000044021000390000032b0300004100000000003204350000002402100039000000100300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000000100001900000bb200010430000000000200041a000002f0012001970000000003000411000000000331004b000007530000c13d0000031503200198000007640000613d000002f302200197000000000020041b000000400200043d0000000000120435000002ed010000410000000003000414000002ed0430009c0000000003018019000002ed0420009c00000000010240190000004001100210000000c002300210000000000112019f00000323011001c70000800d0200003900000001030000390000032e040000410bb00ba60000040f0000000101200190000007760000613d000000000001042d000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000400100043d00000044021000390000032f0300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000000100001900000bb200010430000000000100041a000002f0051001970000000002000411000000000225004b000007920000c13d000002ee01100197000000000010041b000000400100043d000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000321011001c70000800d020000390000000303000039000002f10400004100000000060000190bb00ba60000040f0000000101200190000007a30000613d000000000001042d000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000000100001900000bb2000104300007000000000002000500000001001d000000000100041a000002f0011001970000000003000411000000000131004b000007e50000c13d000000000120004c000007e20000613d0000000101000039000400000001001d0000801001000039000300000001001d000001000100008a000100000001001d0000000003000019000200000002001d000600000003001d000000060130021000000005020000290000000001210019000700000001001d0000000201100367000000000101043b00000000001004350000000401000029000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700000003020000290bb00bab0000040f0000000102200190000007e30000613d000000000101043b00000007030000290000000202300367000000000202043b000000000021041b00000020023000390000000202200367000000000202043b000000000320004c0000000003000019000000010300c039000000000332004b000007e30000c13d0000000101100039000000000301041a0000000104000029000000000343016f000000000223019f000000000021041b000000060300002900000001033000390000000202000029000000000123004b000007b60000413d000000000001042d000000000100001900000bb200010430000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb2000104300000000006010019000000000100041a000002f0051001970000000002000411000000000225004b000008130000c13d000002f002600198000008240000613d000002ee01100197000000000121019f000000000010041b000000400100043d000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000321011001c70000800d020000390000000303000039000002f1040000410bb00ba60000040f0000000101200190000008390000613d000000000001042d000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000400100043d0000006402100039000003300300004100000000003204350000004402100039000003310300004100000000003204350000002402100039000000260300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000332011001c700000bb200010430000000000100001900000bb2000104300001000000000002000000000200041a000002f0022001970000000003000411000000000232004b0000086c0000c13d000002f001100197000100000001001d00000000001004350000000301000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f00000001022001900000086a0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d00000001020000290000000000210435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000323011001c70000800d020000390000000103000039000002f6040000410bb00ba60000040f00000001012001900000086a0000613d000000000001042d000000000100001900000bb200010430000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb2000104300001000000000002000000000200041a000002f0022001970000000003000411000000000232004b000008ad0000c13d000002f001100197000100000001001d00000000001004350000000301000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000008ab0000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d00000001020000290000000000210435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000323011001c70000800d02000039000000010300003900000333040000410bb00ba60000040f0000000101200190000008ab0000613d000000000001042d000000000100001900000bb200010430000000400100043d00000044021000390000031e0300004100000000003204350000031f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000d000000000002000400000005001d000700000004001d000a00000003001d000d00000002001d000c00000001001d000000000100041100000000001004350000000301000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000009ee0000613d000000000101043b000000000101041a000000ff0110019000000a200000613d0000000c0100002900000000010104330000000d020000290000000002020433000000000221004b00000a0e0000c13d0000000a020000290000000002020433000000000221004b00000a0e0000c13d000000000110004c000009e70000613d0000800b01000039000100000001001d000000010100008a000200000001001d0000000002000019000008f00000013d0000000101200190000009f60000613d0000000b0200002900000001022000390000000c010000290000000001010433000000000112004b000009e70000813d0000000d010000290000000001010433000000000121004b000009e80000a13d000b00000002001d000000050120021000000020021000390000000d01000029000900000002001d0000000001120019000800000001001d00000000020104330000000401000029000000000112004b000009200000a13d000600000002001d00000335010000410000000000100439000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000336011001c700000001020000290bb00bab0000040f0000000102200190000009ee0000613d000000000101043b000000000210004c000009140000613d000000020200002900000000321200d90000000703000029000000000232004b000009f00000413d000000040200002900000006030000290000000002230049000000070300002900000000313100a90000000203000029000000000331013f000000000332004b000009f00000213d00000000022100190000000903000029000009370000013d00000335010000410000000000100439000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000336011001c70000800b020000390bb00bab0000040f0000000102200190000009ee0000613d000000000101043b000000000210004c000009340000613d000000020200002900000000321200d90000000703000029000000000232004b000009f00000413d000000070200002900000000122100a90000000903000029000600000002001d0000000c0100002900000000010104330000000b02000029000000000121004b000009e80000a13d0000000c0100002900000000011300190000000001010433000002f001100197000900000001001d0000000d010000290000000001010433000000000121004b000009e80000a13d0000000a010000290000000001010433000000000121004b000009e80000a13d00000008010000290000000001010433000500000001001d0000000a0100002900000000011300190000000001010433000800000001001d00000000001004350000000201000039000300000001001d000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000009ee0000613d000000000101043b000000000101041a000000ff01100190000008ea0000c13d000000080100002900000000001004350000000301000029000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f0000000102200190000009ee0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b00000006030000290000000504000029000000000134004b000009f00000413d000000400100043d000000400210003900000008050000290000000000520435000000090200002900000000022104360000000003340049000300000003001d0000000000320435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000337011001c70000800d0200003900000001030000390000033804000041000800000003001d0bb00ba60000040f0000000101200190000009ee0000613d00000000010004140000000902000029000000040220008c0000099c0000c13d00000001010000310000000802000029000009ba0000013d000002ed02000041000000400300043d000002ed0430009c0000000003028019000002ed0410009c0000000001028019000000c0011002100000004002300210000000000112019f00000006020000290000000503000029000000000223004b000009b00000c13d00000009020000290bb00ba60000040f00030000000103550000006001100270000102ed0010019d000002ed01100197000009ba0000013d00000321011001c700008009020000390000000303000029000000090400002900000000050000190bb00ba60000040f00030000000103550000006001100270000102ed0010019d000002ed01100197000000000310004c000008e80000613d0000003f04100039000000200300008a000000000334016f000000400600043d0000000003360019000000000463004b00000000040000190000000104004039000003170530009c00000a080000213d000000010440019000000a080000c13d000000400030043f0000000001160436000000030800036700000001040000310000000503400272000009d70000613d000000000500001900000005065002100000000007610019000000000668034f000000000606043b00000000006704350000000105500039000000000635004b000009cf0000413d0000001f04400190000008e80000613d0000000503300210000000000538034f00000000013100190000000303400210000000000401043300000000043401cf000000000434022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000343019f0000000000310435000008e80000013d000000000001042d000003190100004100000000001004350000003201000039000000040010043f0000031a0100004100000bb200010430000000000100001900000bb200010430000003190100004100000000001004350000001101000039000000040010043f0000031a0100004100000bb200010430000000400100043d0000004402100039000003220300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb200010430000000400100043d0000004402100039000003340300004100000000003204350000002402100039000000150300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000400100043d0000004402100039000003390300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb2000104300006000000000002000400000005001d000300000004001d000500000003001d000600000002001d000200000001001d000000000100041100000000001004350000000301000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f000000010220019000000b210000613d000000000101043b000000000101041a000000ff0110019000000b290000613d00000006010000290000000402000029000000000121004b00000a6d0000a13d00000335010000410000000000100439000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000336011001c70000800b020000390bb00bab0000040f000000010220019000000b210000613d000000000101043b000000000210004c000000030400002900000a620000613d000000010200008a00000000321200d9000000000242004b00000b230000413d00000006020000290000000403000029000000000232004900000000314100a9000000010300008a000000000331013f000000000332004b00000b230000213d0000000001210019000400000001001d00000a830000013d00000335010000410000000000100439000002ed010000410000000002000414000002ed0320009c0000000001024019000000c00110021000000336011001c70000800b020000390bb00bab0000040f000000010220019000000b210000613d000000000101043b000000000210004c000000030400002900000a810000613d000000010200008a00000000321200d9000000000242004b00000b230000413d00000000124100a9000400000002001d000000050100002900000000001004350000000201000039000300000001001d000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f000000010220019000000b210000613d000000000101043b000000000101041a000000ff0110019000000b200000c13d000000050100002900000000001004350000000301000029000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f000000010220019000000b210000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b00000006010000290000000404000029000000000114004b00000b230000213d000000400100043d000000400210003900000005030000290000000000320435000000060200002900000000034200490000002002100039000100000003001d00000000003204350000000202000029000002f002200197000500000002001d0000000000210435000002ed020000410000000003000414000002ed0430009c0000000003028019000002ed0410009c00000000010280190000004001100210000000c002300210000000000112019f00000337011001c70000800d0200003900000001030000390000033804000041000300000003001d0bb00ba60000040f000000010120019000000b210000613d00000000010004140000000505000029000000040250008c00000ad30000c13d0000000101000031000000030200002900000af10000013d000002ed02000041000000400300043d000002ed0430009c0000000003028019000002ed0410009c0000000001028019000000c0011002100000004002300210000000000112019f00000006020000290000000403000029000000000223004b00000ae70000c13d00000000020500190bb00ba60000040f00030000000103550000006001100270000102ed0010019d000002ed0110019700000af10000013d00000321011001c700008009020000390000000103000029000000000405001900000000050000190bb00ba60000040f00030000000103550000006001100270000102ed0010019d000002ed01100197000000000310004c00000b1e0000613d0000003f04100039000000200300008a000000000334016f000000400600043d0000000003360019000000000463004b00000000040000190000000104004039000003170530009c00000b4d0000213d000000010440019000000b4d0000c13d000000400030043f0000000001160436000000030800036700000001040000310000001f0340018f000000050440027200000b0f0000613d000000000500001900000005065002100000000007610019000000000668034f000000000606043b00000000006704350000000105500039000000000645004b00000b070000413d000000000530004c00000b1e0000613d0000000504400210000000000548034f00000000014100190000000303300210000000000401043300000000043401cf000000000434022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000343019f0000000000310435000000010120019000000b3b0000613d000000000001042d000000000100001900000bb200010430000003190100004100000000001004350000001101000039000000040010043f0000031a0100004100000bb200010430000000400100043d0000004402100039000003390300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000000400100043d0000004402100039000003220300004100000000003204350000002402100039000000140300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb200010430000003190100004100000000001004350000004101000039000000040010043f0000031a0100004100000bb2000104300002000000000002000200000002001d000000000200041a000003150220019800000b830000c13d000100000001001d00000000001004350000000101000039000000200010043f000002ed010000410000000002000414000002ed0320009c0000000001024019000000c001100210000002f4011001c700008010020000390bb00bab0000040f000000010220019000000b810000613d000000400200043d000000000101043b0000000101100039000000000101041a000000ff0110019000000b950000613d00000000010004160000000000120435000002ed010000410000000003000414000002ed0430009c0000000003018019000002ed0420009c00000000010240190000004001100210000000c002300210000000000112019f00000323011001c70000800d0200003900000003030000390000033a04000041000000020500002900000001060000290bb00ba60000040f000000010120019000000b810000613d000000000001042d000000000100001900000bb200010430000000400100043d00000044021000390000032b0300004100000000003204350000002402100039000000100300003900000000003204350000031f020000410000000000210435000000040210003900000020030000390000000000320435000002ed02000041000002ed0310009c0000000001028019000000400110021000000320011001c700000bb20001043000000044012000390000033b03000041000000000031043500000024012000390000001b0300003900000000003104350000031f010000410000000000120435000000040120003900000020030000390000000000310435000002ed01000041000002ed0320009c0000000001024019000000400110021000000320011001c700000bb20001043000000ba9002104210000000102000039000000000001042d0000000002000019000000000001042d00000bae002104230000000102000039000000000001042d0000000002000019000000000001042d00000bb00000043200000bb10001042e00000bb200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000800000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000040000000000000000000000000020000000000000000000000000000000000002000000080000000000000000081cdda5c32462d3b8852fb6c30821f5d90c45230475e9b29e517afa5fef7eb9a0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000c537a1b000000000000000000000000000000000000000000000000000000000d431b1ab00000000000000000000000000000000000000000000000000000000d431b1ac00000000000000000000000000000000000000000000000000000000e56461ad00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c537a1b100000000000000000000000000000000000000000000000000000000d1c85e8c000000000000000000000000000000000000000000000000000000009a21c64b000000000000000000000000000000000000000000000000000000009a21c64c00000000000000000000000000000000000000000000000000000000aeb45f0100000000000000000000000000000000000000000000000000000000b659e774000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000982fb9d8000000000000000000000000000000000000000000000000000000004c9ef2f7000000000000000000000000000000000000000000000000000000005d799f86000000000000000000000000000000000000000000000000000000005d799f8700000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000085d9ef5a000000000000000000000000000000000000000000000000000000004c9ef2f8000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000000cf20cc8000000000000000000000000000000000000000000000000000000000cf20cc9000000000000000000000000000000000000000000000000000000000ddedd84000000000000000000000000000000000000000000000000000000003a8ee97d0000000000000000000000000000000000000000000000000000000007d9c534000000000000000000000000000000000000000000000000000000000a70b056800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000100000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000005d8bc849764969eb1bcc6d0a2f55999d0167c1ccec240a4f39cf664ca9c4148e000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffffbf4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657208c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000002000000000000000000000000000000000000000000000000000000000000004661696c656420746f2073656e6420457468657200000000000000000000000002000000000000000000000000000000000000200000000000000000000000007fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b659cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8370a0823100000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000005061757361626c653a2070617573656400000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206100000000000000000000000000000000000000840000000000000000000000006d976a532ca2d9b73b2090e0fb183da92b74bfd91ca6f4562b82a86c0a4b0194496e707574206c656e677468206d69736d617463680000000000000000000000fe173b97ed9aa263236c52fa3eb334d07741add95e972d17352d76816b4aaea3020000020000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000600000000000000000000000002f824f69f211e444df15d741157e83cdf23c50f39399b9523853a84b91379ca653656e64657220726f6c6520726571756972656400000000000000000000000090890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15436861696e2069732063757272656e746c792064697361626c65640000000000e98ce818f5214cc41b9786c07421004b20ab963b383d53f5f93ccfc4ec287be1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ZKSYNC | Ether (ETH) | 99.08% | $2,421.02 | 11.1301 | $26,946.12 |
ARB | 0.39% | $2,421.02 | 0.0435 | $105.37 | |
BASE | 0.30% | $2,420.44 | 0.0336 | $81.33 | |
OP | 0.08% | $2,421 | 0.00934671 | $22.63 | |
AVAX | 0.05% | $24.91 | 0.5739 | $14.3 | |
BSC | 0.04% | $553.87 | 0.0212 | $11.76 | |
ETH | 0.04% | $2,420.7 | 0.00441786 | $10.69 | |
SCROLL | <0.01% | $2,420.7 | 0.00108986 | $2.64 | |
LINEA | <0.01% | $2,420.7 | 0.00011 | $0.266277 | |
POL | <0.01% | $0.403349 | 0.0139 | $0.0056 |
[ 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.