More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 132,367 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Native | 50396917 | 5 days ago | IN | 0 ETH | 0.00000837 | ||||
Any Swap Out Nat... | 50298730 | 6 days ago | IN | 0.031 ETH | 0.00000804 | ||||
Withdraw Native | 49514988 | 16 days ago | IN | 0 ETH | 0.00000538 | ||||
Withdraw Native | 49514503 | 16 days ago | IN | 0 ETH | 0.00000714 | ||||
Withdraw Native | 49037291 | 23 days ago | IN | 0 ETH | 0.00000859 | ||||
Withdraw Native | 48915016 | 24 days ago | IN | 0 ETH | 0.00000888 | ||||
Withdraw Native | 48488393 | 30 days ago | IN | 0 ETH | 0.00000908 | ||||
Withdraw Native | 48463169 | 30 days ago | IN | 0 ETH | 0.00000809 | ||||
Withdraw Native | 48130914 | 34 days ago | IN | 0 ETH | 0.00000817 | ||||
Withdraw Native | 46766772 | 52 days ago | IN | 0 ETH | 0.00000971 | ||||
Withdraw Native | 46468784 | 56 days ago | IN | 0 ETH | 0.00000767 | ||||
Withdraw Native | 44308692 | 84 days ago | IN | 0 ETH | 0.00000732 | ||||
Withdraw Native | 42314589 | 108 days ago | IN | 0 ETH | 0.00000541 | ||||
Withdraw Native | 42314550 | 108 days ago | IN | 0 ETH | 0.00000542 | ||||
Withdraw Native | 42314485 | 108 days ago | IN | 0 ETH | 0.00000729 | ||||
Withdraw Native | 42244519 | 109 days ago | IN | 0 ETH | 0.00000541 | ||||
Withdraw Native | 42244466 | 109 days ago | IN | 0 ETH | 0.00000541 | ||||
Withdraw Native | 42244400 | 109 days ago | IN | 0 ETH | 0.00000732 | ||||
Withdraw Native | 41471348 | 119 days ago | IN | 0 ETH | 0.00000808 | ||||
Withdraw Native | 41187179 | 122 days ago | IN | 0 ETH | 0.0000104 | ||||
Withdraw Native | 41138411 | 123 days ago | IN | 0 ETH | 0.00000828 | ||||
Withdraw Native | 40941845 | 125 days ago | IN | 0 ETH | 0.00000917 | ||||
Withdraw Native | 40940179 | 125 days ago | IN | 0 ETH | 0.00000665 | ||||
Withdraw Native | 40939587 | 125 days ago | IN | 0 ETH | 0.00000934 | ||||
Withdraw Native | 40319604 | 132 days ago | IN | 0 ETH | 0.00000735 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
50396917 | 5 days ago | 0.005638 ETH | ||||
50396917 | 5 days ago | 0.005638 ETH | ||||
50298730 | 6 days ago | 0.031 ETH | ||||
50298730 | 6 days ago | 0.031 ETH | ||||
49514988 | 16 days ago | 0.00370759 ETH | ||||
49514988 | 16 days ago | 0.00370759 ETH | ||||
49514503 | 16 days ago | 0.00292129 ETH | ||||
49514503 | 16 days ago | 0.00292129 ETH | ||||
49037291 | 23 days ago | 0.00774 ETH | ||||
49037291 | 23 days ago | 0.00774 ETH | ||||
48915016 | 24 days ago | 0.007325 ETH | ||||
48915016 | 24 days ago | 0.007325 ETH | ||||
48488393 | 30 days ago | 0.01982 ETH | ||||
48488393 | 30 days ago | 0.01982 ETH | ||||
48463169 | 30 days ago | 0.007079 ETH | ||||
48463169 | 30 days ago | 0.007079 ETH | ||||
48130914 | 34 days ago | 0.007195 ETH | ||||
48130914 | 34 days ago | 0.007195 ETH | ||||
46766772 | 52 days ago | 0.001165 ETH | ||||
46766772 | 52 days ago | 0.001165 ETH | ||||
46468784 | 56 days ago | 0.01495 ETH | ||||
46468784 | 56 days ago | 0.01495 ETH | ||||
44308692 | 84 days ago | 0.01865 ETH | ||||
44308692 | 84 days ago | 0.01865 ETH | ||||
42314589 | 108 days ago | 0.01225 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.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xd51194AA...ca632faC8 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AnyswapV6Router
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.1
Contract Source Code (Solidity)
/** *Submitted for verification at era.zksync.network on 2024-01-04 */ // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.10; // helper methods for interacting with ERC20 tokens and sending NATIVE that do not consistently return true/false library TransferHelper { function safeTransferNative(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'TransferHelper: NATIVE_TRANSFER_FAILED'); } } interface IwNATIVE { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; } interface AnyswapV1ERC20 { function mint(address to, uint256 amount) external returns (bool); function burn(address from, uint256 amount) external returns (bool); function setMinter(address _auth) external; function applyMinter() external; function revokeMinter(address _auth) external; function changeVault(address newVault) external returns (bool); function depositVault(uint amount, address to) external returns (uint); function withdrawVault(address from, uint amount, address to) external returns (uint); function underlying() external view returns (address); function deposit(uint amount, address to) external returns (uint); function withdraw(uint amount, address to) external returns (uint); } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library Address { function isContract(address account) internal view returns (bool) { return account.code.length > 0; } } library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint value) internal { require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function callOptionalReturn(IERC20 token, bytes memory data) private { require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } contract AnyswapV6Router { using SafeERC20 for IERC20; address public constant factory = address(0); address public immutable wNATIVE; // delay for timelock functions uint public constant DELAY = 2 days; constructor(address _wNATIVE, address _mpc) { _newMPC = _mpc; _newMPCEffectiveTime = block.timestamp; wNATIVE = _wNATIVE; } receive() external payable { assert(msg.sender == wNATIVE); // only accept Native via fallback from the wNative contract } address private _oldMPC; address private _newMPC; uint256 private _newMPCEffectiveTime; event LogChangeMPC(address indexed oldMPC, address indexed newMPC, uint indexed effectiveTime, uint chainID); event LogAnySwapIn(bytes32 indexed txhash, address indexed token, address indexed to, uint amount, uint fromChainID, uint toChainID); event LogAnySwapOut(address indexed token, address indexed from, address indexed to, uint amount, uint fromChainID, uint toChainID); event LogAnySwapOut(address indexed token, address indexed from, string to, uint amount, uint fromChainID, uint toChainID); modifier onlyMPC() { require(msg.sender == mpc(), "AnyswapV6Router: FORBIDDEN"); _; } function mpc() public view returns (address) { if (block.timestamp >= _newMPCEffectiveTime) { return _newMPC; } return _oldMPC; } function cID() public view returns (uint) { return block.chainid; } function changeMPC(address newMPC) external onlyMPC returns (bool) { require(newMPC != address(0), "AnyswapV6Router: address(0)"); _oldMPC = mpc(); _newMPC = newMPC; _newMPCEffectiveTime = block.timestamp + DELAY; emit LogChangeMPC(_oldMPC, _newMPC, _newMPCEffectiveTime, cID()); return true; } function changeVault(address token, address newVault) external onlyMPC returns (bool) { return AnyswapV1ERC20(token).changeVault(newVault); } function setMinter(address token, address _auth) external onlyMPC { return AnyswapV1ERC20(token).setMinter(_auth); } function applyMinter(address token) external onlyMPC { return AnyswapV1ERC20(token).applyMinter(); } function revokeMinter(address token, address _auth) external onlyMPC { return AnyswapV1ERC20(token).revokeMinter(_auth); } function _anySwapOut(address from, address token, address to, uint amount, uint toChainID) internal { AnyswapV1ERC20(token).burn(from, amount); emit LogAnySwapOut(token, from, to, amount, cID(), toChainID); } // Swaps `amount` `token` from this chain to `toChainID` chain with recipient `to` function anySwapOut(address token, address to, uint amount, uint toChainID) external { _anySwapOut(msg.sender, token, to, amount, toChainID); } // Swaps `amount` `token` from this chain to `toChainID` chain with recipient `to` by minting with `underlying` function anySwapOutUnderlying(address token, address to, uint amount, uint toChainID) external { address _underlying = AnyswapV1ERC20(token).underlying(); require(_underlying != address(0), "AnyswapV6Router: no underlying"); IERC20(_underlying).safeTransferFrom(msg.sender, token, amount); emit LogAnySwapOut(token, msg.sender, to, amount, cID(), toChainID); } function anySwapOutNative(address token, address to, uint toChainID) external payable { require(wNATIVE != address(0), "AnyswapV6Router: zero wNATIVE"); require(AnyswapV1ERC20(token).underlying() == wNATIVE, "AnyswapV6Router: underlying is not wNATIVE"); IwNATIVE(wNATIVE).deposit{value: msg.value}(); assert(IwNATIVE(wNATIVE).transfer(token, msg.value)); emit LogAnySwapOut(token, msg.sender, to, msg.value, cID(), toChainID); } function anySwapOut(address[] calldata tokens, address[] calldata to, uint[] calldata amounts, uint[] calldata toChainIDs) external { for (uint i = 0; i < tokens.length; i++) { _anySwapOut(msg.sender, tokens[i], to[i], amounts[i], toChainIDs[i]); } } function anySwapOut(address token, string memory to, uint amount, uint toChainID) external { AnyswapV1ERC20(token).burn(msg.sender, amount); emit LogAnySwapOut(token, msg.sender, to, amount, cID(), toChainID); } function anySwapOutUnderlying(address token, string memory to, uint amount, uint toChainID) external { address _underlying = AnyswapV1ERC20(token).underlying(); require(_underlying != address(0), "AnyswapV6Router: no underlying"); IERC20(_underlying).safeTransferFrom(msg.sender, token, amount); emit LogAnySwapOut(token, msg.sender, to, amount, cID(), toChainID); } function anySwapOutNative(address token, string memory to, uint toChainID) external payable { require(wNATIVE != address(0), "AnyswapV6Router: zero wNATIVE"); require(AnyswapV1ERC20(token).underlying() == wNATIVE, "AnyswapV6Router: underlying is not wNATIVE"); IwNATIVE(wNATIVE).deposit{value: msg.value}(); assert(IwNATIVE(wNATIVE).transfer(token, msg.value)); emit LogAnySwapOut(token, msg.sender, to, msg.value, cID(), toChainID); } // swaps `amount` `token` in `fromChainID` to `to` on this chainID function _anySwapIn(bytes32 txs, address token, address to, uint amount, uint fromChainID) internal { AnyswapV1ERC20(token).mint(to, amount); emit LogAnySwapIn(txs, token, to, amount, fromChainID, cID()); } // swaps `amount` `token` in `fromChainID` to `to` on this chainID // triggered by `anySwapOut` function anySwapIn(bytes32 txs, address token, address to, uint amount, uint fromChainID) external onlyMPC { _anySwapIn(txs, token, to, amount, fromChainID); } // swaps `amount` `token` in `fromChainID` to `to` on this chainID with `to` receiving `underlying` function anySwapInUnderlying(bytes32 txs, address token, address to, uint amount, uint fromChainID) external onlyMPC { _anySwapIn(txs, token, to, amount, fromChainID); AnyswapV1ERC20(token).withdrawVault(to, amount, to); } // swaps `amount` `token` in `fromChainID` to `to` on this chainID with `to` receiving `underlying` if possible function anySwapInAuto(bytes32 txs, address token, address to, uint amount, uint fromChainID) external onlyMPC { _anySwapIn(txs, token, to, amount, fromChainID); AnyswapV1ERC20 _anyToken = AnyswapV1ERC20(token); address _underlying = _anyToken.underlying(); if (_underlying != address(0) && IERC20(_underlying).balanceOf(token) >= amount) { if (_underlying == wNATIVE) { _anyToken.withdrawVault(to, amount, address(this)); IwNATIVE(wNATIVE).withdraw(amount); TransferHelper.safeTransferNative(to, amount); } else { _anyToken.withdrawVault(to, amount, to); } } } function depositNative(address token, address to) external payable returns (uint) { require(wNATIVE != address(0), "AnyswapV6Router: zero wNATIVE"); require(AnyswapV1ERC20(token).underlying() == wNATIVE, "AnyswapV6Router: underlying is not wNATIVE"); IwNATIVE(wNATIVE).deposit{value: msg.value}(); assert(IwNATIVE(wNATIVE).transfer(token, msg.value)); AnyswapV1ERC20(token).depositVault(msg.value, to); return msg.value; } function withdrawNative(address token, uint amount, address to) external returns (uint) { require(wNATIVE != address(0), "AnyswapV6Router: zero wNATIVE"); require(AnyswapV1ERC20(token).underlying() == wNATIVE, "AnyswapV6Router: underlying is not wNATIVE"); uint256 old_balance = IERC20(wNATIVE).balanceOf(address(this)); AnyswapV1ERC20(token).withdrawVault(msg.sender, amount, address(this)); uint256 new_balance = IERC20(wNATIVE).balanceOf(address(this)); assert(new_balance == old_balance + amount); IwNATIVE(wNATIVE).withdraw(amount); TransferHelper.safeTransferNative(to, amount); return amount; } // extracts mpc fee from bridge fees function anySwapFeeTo(address token, uint amount) external onlyMPC { address _mpc = mpc(); AnyswapV1ERC20(token).mint(_mpc, amount); AnyswapV1ERC20(token).withdrawVault(_mpc, amount, _mpc); } function anySwapIn(bytes32[] calldata txs, address[] calldata tokens, address[] calldata to, uint256[] calldata amounts, uint[] calldata fromChainIDs) external onlyMPC { for (uint i = 0; i < tokens.length; i++) { _anySwapIn(txs[i], tokens[i], to[i], amounts[i], fromChainIDs[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_wNATIVE","type":"address"},{"internalType":"address","name":"_mpc","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txhash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"LogAnySwapIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"LogAnySwapOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"string","name":"to","type":"string"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fromChainID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"LogAnySwapOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldMPC","type":"address"},{"indexed":true,"internalType":"address","name":"newMPC","type":"address"},{"indexed":true,"internalType":"uint256","name":"effectiveTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"chainID","type":"uint256"}],"name":"LogChangeMPC","type":"event"},{"inputs":[],"name":"DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"anySwapFeeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"txs","type":"bytes32[]"},{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"fromChainIDs","type":"uint256[]"}],"name":"anySwapIn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"txs","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"fromChainID","type":"uint256"}],"name":"anySwapIn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"txs","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"fromChainID","type":"uint256"}],"name":"anySwapInAuto","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"txs","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"fromChainID","type":"uint256"}],"name":"anySwapInUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"anySwapOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"string","name":"to","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"anySwapOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"toChainIDs","type":"uint256[]"}],"name":"anySwapOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"string","name":"to","type":"string"},{"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"anySwapOutNative","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"anySwapOutNative","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"string","name":"to","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"anySwapOutUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"toChainID","type":"uint256"}],"name":"anySwapOutUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"applyMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMPC","type":"address"}],"name":"changeMPC","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"newVault","type":"address"}],"name":"changeVault","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"depositNative","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mpc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"_auth","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"_auth","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wNATIVE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawNative","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x0004000000000002000300000000000200000000030100190000006003300270000004610430019700030000004103550002000000010355000004610030019d000100000000001f00000001012001900000000c0000c13d117e00fd0000040f0000000001000416000000000110004c000000480000c13d0000000001000031000000bf02100039000000200300008a000000000232016f0000009f0320008c0000001d0000213d0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f000000400300003900000000002304350000001f0210018f00000002030003670000000504100270000000000540004c0000002d0000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000250000413d000000000520004c0000003c0000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000046202000041000000400310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c0000004b0000613d00000000010000190000000002000019117e00f40000040f000000a001000039117e0df40000040f000200000001001d0000000101000039000300000001001d117e117c0000040f000100000001001d000000c001000039117e0df40000040f000000010200002900000463022001970000046401100197000000000121019f0000000302000029117e117a0000040f000004650100004100000000001004390000800b010000390000000402000039117e00d80000040f0000000202000039117e117a0000040f00000080020000390000000203000029000000000032043500000140010000390000000000010439000001600100003900000000003104390000002003000039000001000100003900000000003104390000012003000039000000030400002900000000004304390000046603000041117e00ea0000040f0002000000000002000200000006001d000100000005001d0000046105000041000004610630009c00000000030580190000004003300210000004610640009c00000000040580190000006004400210000000000334019f000004610410009c0000000001058019000000c001100210000000000113019f117e11700000040f000000010800002900000002040000290000001f0340018f0000000504400270000000000540004c0000008f0000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000000870000413d000000010220018f000000000530004c0000009f0000613d0000000504400210000000000541034f00000000044800190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f000000000034043500030000000103550000006001100270000104610010019d00000000010200190000000200000005000000000001042d0002000000000002000200000006001d000100000005001d0000046105000041000004610610009c0000000001058019000000c00110021000000060044002100000000001140019000004610430009c00000000030580190000004003300210000000000131019f117e11750000040f000000010800002900000002040000290000001f0340018f0000000504400270000000000540004c000000c20000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000000ba0000413d000000010220018f000000000530004c000000d20000613d0000000504400210000000000541034f00000000044800190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f000000000034043500030000000103550000006001100270000104610010019d00000000010200190000000200000005000000000001042d000000000301001900000461010000410000000004000414000004610540009c0000000001044019000000c0011002100000006002200210000000000112001900000468011000410000000002030019117e11750000040f0000000102200190000000e70000613d000000000101043b000000000001042d00000000010000190000000002000019117e00f40000040f0000046104000041000004610510009c000000000104801900000040011002100000000001310019000004610320009c0000000002048019000000600220021000000000012100190000117f0001042e0000046103000041000004610420009c0000000002038019000004610410009c000000000103801900000040011002100000006002200210000000000112019f0000118000010430000c0000000000020000008001000039000000400800003900000000001804350000000002000031000000040120008c00000000090004120000000006000411000001580000413d000c00000000001d0000000201000367000000000301043b000000e0033002700000046a0430009c0000016e0000613d0000046b0430009c000002420000613d0000046c0430009c000002aa0000613d0000046d0430009c000002bd0000613d0000046e0430009c000003370000613d0000046f0430009c000003800000613d000004700430009c000000040520008a00000004041003700000002401100370000003d40000613d000004710230009c000004450000613d000004720230009c000004770000613d000004730230009c0000048e0000613d000004740230009c000004fa0000613d000004750230009c000005160000613d000004760230009c000006210000613d000004770230009c000006850000613d000004780230009c000006c60000613d000004790230009c000006e80000613d0000047a0230009c000007060000613d0000047b0230009c000007500000613d0000047c0130009c000007ab0000613d0000047d0130009c000007c10000613d0000047e0130009c000007ea0000613d0000047f0130009c0000082d0000613d000004800130009c0000088e0000613d000004810130009c00000df10000c13d0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000000310004c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d000a00000008001d117e0edc0000040f0000000a02000029000000000302043300000464011001970000000000130435000000200200003900000000010300190000000003000019117e00ea0000040f000000000120004c00000df10000c13d00000469010000410000000000100439000000040100003900000000009104390000002401000039000000000001043900008005010000390000004402000039000b00000006001d117e00d80000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0ed10000040f000000000100001900000000020000190000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d000400000009001d0000000001000031000a00000008001d000b00000006001d117e0dfb0000040f000600000001001d000900000002001d000700000003001d000800000004001d000500000005001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f00000006010000290000000902000029000000070300002900000008040000290000000505000029117e10a30000040f0000000a06000029000000000306043300000482010000410000000000130435000000000100041400000009020000290000046402200197000000040420008c0000019c0000613d00000004040000390000002006000039000b00000002001d0000000005030019000900000003001d117e00a50000040f00000009030000290000000b020000290000000a06000029000000000110004c000006640000613d0000000101000031000000200410008c000000200400003900000000040140190000001f04400039000000600440018f0000000005340019000000000445004b00000000040000190000000104004039000004830750009c00000d130000213d000000010440019000000d130000c13d000b00000002001d000900000005001d0000000000560435000000200110008c00000df10000413d0000000001030433000600000001001d000004640110009c00000df10000213d0000000601000029000000000110004c0000037c0000613d00000496010000410000000903000029000000000013043500000004013000390000000b02000029000000000021043500000000010004140000000602000029000000040220008c000001c90000613d0000002404000039000000200600003900000006020000290000000905000029117e00a50000040f00000009030000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000002320019000004830320009c00000d130000213d0000000000260435000000200110008c000000040200002900000df10000413d000000090100002900000000010104330000000803000029000000000131004b0000037c0000413d000004690100004100000000001004390000000401000039000500000001001d00000000002104390000002401000039000000000001043900008005010000390000004402000039117e00d80000040f0000000a02000029000000000302043300000493020000410000000000230435000900000003001d00000004033000390000000002010019000000000100041400000464022001970000000604000029000000000224004b00000d360000c13d000000070200002900000464022001970000000000230435000000000200041000000464022001970000000904000029000000440340003900000000002304350000002402400039000000080300002900000000003204350000000b02000029000000040320008c0000000a06000029000002080000613d0000006404000039000000200600003900000009030000290000000005030019117e00700000040f0000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000009020000290000000002230019000000000332004b00000000030000190000000103004039000004830420009c00000d130000213d000000010330019000000d130000c13d0000000000260435000000200110008c00000df10000413d0000048701000041000000000010043900000006010000290000000502000029000000000012043900008002010000390000002402000039117e00d80000040f0000000a06000029000000000110004c00000df10000613d000000000206043300000497010000410000000000120435000b00000002001d00000004012000390000000802000029000000000021043500000000010004140000000602000029000000040220008c000002390000613d000000240400003900000006020000290000000b0300002900000000050300190000000006000019117e00700000040f0000000a06000029000000000110004c000006640000613d0000000b01000029000004830110009c00000d130000213d0000000b01000029000000000016043500000007010000290000000802000029117e11290000040f0000037c0000013d0000000001000416000000000110004c00000df10000c13d0000000001000031000a00000008001d117e0e6f0000040f0000000a060000290000000007060433000004820500004100000000005704350000000005010019000700000002001d000900000003001d000800000004001d0000000001000414000600000005001d0000046402500197000000040320008c000002610000613d000000040400003900000020060000390000000003070019000b00000002001d0000000005070019000500000007001d117e00a50000040f00000005070000290000000b020000290000000a06000029000000000110004c000006640000613d0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600330018f0000000005730019000000000335004b00000000030000190000000103004039000004830450009c00000d130000213d000000010330019000000d130000c13d000b00000002001d0000000000560435000000200110008c00000df10000413d00000000010704330000000002010019000004640110009c00000df10000213d000400000002001d000000000120004c0000000001000019000000010100c039117e0f860000040f0000000002000411000500000002001d000000040100002900000006030000290000000904000029117e0f980000040f0000000a010000290000000001010433000a00000001001d000004840100004100000000001004390000800b010000390000000402000039117e00d80000040f00000000040100190000000a01000029000000070200002900000009030000290000000805000029117e10870000040f0000000a0400002900000000014100490000046102000041000004610340009c000000000302001900000000030440190000004003300210000004610410009c00000000010280190000006001100210000000000131019f0000000003000414000004610430009c0000000002034019000000c002200210000000000121019f0000048c011001c70000800d0200003900000003030000390000048d040000410000000b050000290000000506000029117e11700000040f00000001012001900000037c0000c13d00000df10000013d0000000001000416000000000110004c00000df10000c13d0000000001000031117e0e960000040f000000000501001900000000060200190000000007030019000000000804001900000000010004110000000002050019000000000306001900000000040700190000000005080019117e0eff0000040f000000000100001900000000020000190000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d0000000002000031000000040120008a0000046203000041000000a00410008c000000000400001900000000040340190000046201100197000000000510004c000000000300a019000004620110009c00000000010400190000000001036019000000000110004c00000df10000c13d00000004010000390000000201100367000000000101043b000004830310009c00000df10000213d0000000401100039000b00000006001d117e0eb40000040f000900000001001d000a00000002001d00000024010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f000700000001001d000800000002001d00000044010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f000500000001001d000600000002001d00000064010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f0000000b03000029000300000001001d000400000002001d00000084010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f000100000001001d000200000002001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f00000000070000190000000801000029000000000117004b0000037c0000813d0000000a01000029000000000117004b00000b010000813d0000000504700210000000070100002900000000011400190000000205000367000000000215034f00000009010000290000000001140019000000000115034f000000000101043b000000000202043b000004640320009c00000df10000213d0000000603000029000000000337004b00000b010000813d00000005030000290000000003340019000000000335034f000000000303043b000004640630009c00000df10000213d0000000406000029000000000667004b00000b010000813d0000000206000029000000000667004b00000b010000813d00000001060000290000000006640019000b00000007001d00000003070000290000000004740019000000000445034f000000000565034f000000000505043b000000000404043b117e10a30000040f0000000b070000290000000107700039000003090000013d0000000001000416000000000110004c00000df10000c13d0000000001000031000a00000008001d000b00000006001d117e0dfb0000040f000600000001001d000900000002001d000700000003001d000800000004001d000500000005001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f00000006010000290000000902000029000000070300002900000008040000290000000505000029117e10a30000040f0000000a06000029000000000306043300000493010000410000000000130435000000070100002900000464021001970000004404300039000000000100041400000000002404350000000404300039000000000024043500000024023000390000000804000029000000000042043500000009020000290000046402200197000000040420008c0000036b0000613d00000064040000390000002006000039000b00000003001d0000000b05000029117e00700000040f0000000b030000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000342004b00000000030000190000000103004039000004830420009c00000d130000213d000000010330019000000d130000c13d0000000000260435000000200110008c00000df10000413d000000000100001900000000020000190000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000400310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000002010003670000000402100370000000000202043b000900000002001d000004640220009c00000df10000213d0000002401100370000000000101043b000800000001001d000004640110009c00000df10000213d000a00000008001d000b00000006001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f0000000a0600002900000000030604330000049e01000041000000000013043500000004013000390000000802000029000000000021043500000000010004140000000902000029000000040420008c000003b90000613d00000024040000390000002006000039000b00000003001d0000000b05000029117e00700000040f0000000b030000290000000a06000029000000000110004c000006640000613d0000000102000031000000200120008c000000200100003900000000010240190000001f01100039000000600410018f0000000001340019000000000441004b00000000050000190000000105004039000004830410009c00000d130000213d000000010450019000000d130000c13d0000000000160435000000200220008c00000df10000413d0000000002030433000000000320004c0000000003000019000000010300c039000000000332004b00000df10000c13d000000000021043500000020020000390000000003000019117e00ea0000040f0000046203000041000000600650008c000000000600001900000000060340190000046205500197000000000750004c000000000300a019000004620550009c000000000306c019000000000330004c00000df10000c13d000000000304043b000b00000003001d000004640330009c00000df10000213d000000000101043b000004830310009c00000df10000213d0000000401100039000a00000008001d000400000009001d117e0e1b0000040f000004690200004100000000002004390000000402000039000700000002001d0000000403000029000000000032043900000024020000390000000000020439000600000001001d00008005010000390000004402000039000500000002001d117e00d80000040f0000046401100197000800000001001d000000000110004c0000000001000019000000010100c039117e10600000040f0000000a0600002900000000030604330000048201000041000000000013043500000000010004140000000b02000029000000040420008c0000040e0000613d00000004040000390000002006000039000900000003001d0000000905000029117e00a50000040f00000009030000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b00000000050000190000000105004039000004830420009c00000d130000213d000000010450019000000d130000c13d0000000000260435000000200110008c00000df10000413d0000000001030433000004640210009c00000df10000213d0000000802000029000000000121004b00000000010000190000000101006039117e10720000040f0000048701000041000000000010043900000007010000290000000802000029000000000021043900008002010000390000002402000039117e00d80000040f0000000a06000029000000000110004c00000df10000613d00000000050604330000048e010000410000000000150435000000000100041400000000030004160000000802000029000000040220008c0000000b04000029000900000005001d00000bef0000613d000000000230004c00000bd70000c13d00000004040000390000000802000029000000090300002900000000050300190000000006000019117e00700000040f00000bea0000013d0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000200310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000004010000390000000201100367000000000101043b000900000001001d000004640110009c00000df10000213d000a00000008001d000b00000006001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f0000000901000029000000000110004c000009cb0000c13d0000000a01000029000000000101043300000044021000390000049c03000041000000000032043500000024021000390000001b0300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039117e00f40000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000000310004c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000000010804330000049902000041000000000021043500000020020000390000000003000019117e00ea0000040f0000046202000041000000400350008c000000000300001900000000030240190000046205500197000000000650004c000000000200a019000004620550009c000000000203c019000000000220004c00000df10000c13d000000000204043b000b00000002001d000004640220009c00000df10000213d000000000101043b000900000001001d000004640110009c00000df10000213d000004690100004100000000001004390000000401000039000600000001001d00000000009104390000002401000039000000000001043900008005010000390000004402000039000a00000008001d117e00d80000040f0000046401100197000700000001001d000000000110004c0000000001000019000000010100c039117e10600000040f0000000a0600002900000000030604330000048201000041000000000013043500000000010004140000000b02000029000000040420008c000004c30000613d00000004040000390000002006000039000800000003001d0000000805000029117e00a50000040f00000008030000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b00000000050000190000000105004039000004830420009c00000d130000213d000000010450019000000d130000c13d0000000000260435000000200110008c00000df10000413d0000000001030433000004640210009c00000df10000213d0000000702000029000000000121004b00000000010000190000000101006039117e10720000040f0000048701000041000000000010043900000006010000290000000702000029000000000021043900008002010000390000002402000039117e00d80000040f0000000a06000029000000000110004c00000df10000613d00000000050604330000048e010000410000000000150435000000000100041400000000030004160000000702000029000000040220008c0000000b04000029000800000005001d00000c5f0000613d000000000230004c00000c470000c13d00000004040000390000000702000029000000080300002900000000050300190000000006000019117e00700000040f00000c5a0000013d0000000001000416000000000110004c00000df10000c13d0000000001000031000b00000006001d117e0dfb0000040f000a00000001001d000900000002001d000800000003001d000700000004001d000600000005001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f0000000a010000290000000902000029000000080300002900000007040000290000000605000029117e10a30000040f000000000100001900000000020000190000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000600310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000002010003670000000402100370000000000202043b000900000002001d000004640220009c00000df10000213d0000002402100370000000000202043b000800000002001d0000004401100370000000000101043b000700000001001d000004640110009c00000df10000213d000b00000006001d000004690100004100000000001004390000000401000039000400000001001d00000000009104390000002401000039000000000001043900008005010000390000004402000039000a00000008001d117e00d80000040f0000046401100197000500000001001d000000000110004c0000000001000019000000010100c039117e10600000040f0000000a0600002900000000030604330000048201000041000000000013043500000000010004140000000902000029000000040220008c000005590000613d000000040400003900000020060000390000000902000029000600000003001d0000000605000029117e00a50000040f00000006030000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b00000000050000190000000105004039000004830420009c00000d130000213d000000010450019000000d130000c13d0000000000260435000000200110008c00000df10000413d0000000001030433000004640210009c00000df10000213d0000000502000029000000000121004b00000000010000190000000101006039117e10720000040f0000000a0600002900000000030604330000049601000041000000000013043500000004013000390000000002000410000300000002001d000000000021043500000000010004140000000502000029000000040220008c000005880000613d000000240400003900000020060000390000000502000029000600000003001d0000000605000029117e00a50000040f00000006030000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000000070300190000000005320019000000000225004b00000000020000190000000102004039000004830350009c0000000b0400002900000d130000213d000000010220019000000d130000c13d000600000005001d0000000000560435000000200110008c00000df10000413d0000000001070433000200000001001d000004930100004100000006050000290000000000150435000000030100002900000464021001970000004403500039000000000100041400000000002304350000002402500039000000080300002900000000003204350000046402400197000000040350003900000000002304350000000902000029000000040220008c000005b80000613d00000064040000390000002006000039000000090200002900000006030000290000000005030019117e00700000040f0000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000006030000290000000002320019000b00000002001d000004830220009c00000d130000213d0000000b020000290000000000260435000000200110008c00000df10000413d00000496010000410000000b02000029000000000012043500000004012000390000000302000029000000000021043500000000010004140000000502000029000000040220008c000005da0000613d0000002404000039000000200600003900000005020000290000000b030000290000000005030019117e00a50000040f0000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000b030000290000000002320019000004830320009c00000d130000213d0000000000260435000000200110008c00000df10000413d000000080200002900000002010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000009ef0000c13d0000000b020000290000000002020433000000000112004b00000dc30000c13d0000048701000041000000000010043900000005010000290000000402000029000000000012043900008002010000390000002402000039117e00d80000040f000000000110004c0000000a0600002900000df10000613d000000000206043300000497010000410000000000120435000b00000002001d00000004012000390000000802000029000000000021043500000000010004140000000502000029000000040220008c000006120000613d000000240400003900000005020000290000000b0300002900000000050300190000000006000019117e00700000040f0000000a06000029000000000110004c000006640000613d0000000b01000029000004830110009c00000d130000213d0000000b01000029000000000016043500000007010000290000000802000029117e11290000040f0000000a0100002900000000010104330000000802000029000000000021043500000020020000390000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000400310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000002010003670000000402100370000000000202043b000900000002001d000004640220009c00000df10000213d0000002401100370000000000101043b000800000001001d000004640110009c00000df10000213d000a00000008001d000b00000006001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f0000048701000041000000000010043900000004010000390000000902000029000000000021043900008002010000390000002402000039117e00d80000040f0000000a06000029000000000110004c00000df10000613d00000000030604330000049501000041000000000013043500000004013000390000000802000029000000000021043500000000010004140000000902000029000000040420008c00000a9a0000613d0000002404000039000b00000003001d0000000b050000290000000006000019117e00700000040f0000000b030000290000000a06000029000000000110004c00000a9a0000c13d000000030200036700000001040000310000001f0340018f00000000010604330000000504400270000000000540004c000006740000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000066c0000413d000000000530004c000006830000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000400310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000002010003670000000402100370000000000202043b000900000002001d000004640220009c00000df10000213d0000002401100370000000000101043b000800000001001d000a00000008001d000b00000006001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f117e0edc0000040f0000000a050000290000000007050433000004920200004100000000002704350000000002010019000000240470003900000000010004140000000c030000290000000806000029000000000064043500000464042001970000000402700039000b00000004001d00000000004204350000000902000029000000040220008c00000a400000613d000000000230004c000700000007001d000009f70000c13d00000044040000390000002006000039000000090200002900000000030700190000000005070019117e00700000040f00000007070000290000000a0500002900000a190000013d0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000000310004c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d0000000001080433000b00000001001d00000469010000410000000000100439000000040100003900000000009104390000002401000039000000000001043900008005010000390000004402000039117e00d80000040f00000464021001970000000b01000029000000000021043500000020020000390000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000000310004c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d0000000001080433000b00000001001d000004840100004100000000001004390000800b010000390000000402000039117e00d80000040f0000000b030000290000000000130435000000200200003900000000010300190000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000400310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d00000002010003670000000402100370000000000202043b000900000002001d000004640220009c00000df10000213d0000002401100370000000000101043b000800000001001d000004640110009c00000df10000213d000a00000008001d000b00000006001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f0000048701000041000000000010043900000004010000390000000902000029000000000021043900008002010000390000002402000039117e00d80000040f0000000a05000029000000000110004c00000df10000613d00000000090504330000049001000041000000000019043500000004019000390000000802000029000000000021043500000000010004140000000c080000290000000902000029000000040220008c00000b620000613d000000000280004c000b00000008001d000700000009001d00000b090000c13d00000024040000390000000902000029000000000309001900000000050900190000000006000019117e00700000040f00000007090000290000000b0800002900000000020100190000000a0500002900000b3b0000013d0000046202000041000000600350008c000000000300001900000000030240190000046205500197000000000650004c000000000200a019000004620550009c000000000203c019000000000220004c00000df10000c13d000000000204043b000b00000002001d000004640220009c00000df10000213d000000000101043b000900000001001d000004640110009c00000df10000213d000004690100004100000000001004390000000401000039000700000001001d00000000009104390000002401000039000000000001043900008005010000390000004402000039000600000002001d000a00000008001d117e00d80000040f0000046401100197000800000001001d000000000110004c0000000001000019000000010100c039117e10600000040f0000000a0500002900000000030504330000048201000041000000000013043500000000010004140000000b02000029000000040420008c000009a50000613d000000040400003900000020060000390000000005030019000500000003001d117e00a50000040f00000005030000290000000a05000029000000000110004c000009a50000c13d0000000c0100002900000001040000310000000002140019000000000242004b00000df10000213d0000001f0240018f000000030310036700000000010504330000000504400270000000000540004c0000079a0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000007920000413d000000000520004c000007a90000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000000310004c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d0000000001080433000000000001043500000020020000390000000003000019117e00ea0000040f0000000001000416000000000110004c00000df10000c13d0000000001000031000a00000008001d000b00000006001d117e0e6f0000040f0000000b070000290000000a0600002900000000090604330000048a0500004100000000005904350000000005010019000700000002001d0000000008030019000800000004001d0000046402700197000000040490003900000000010004140000000c0300002900000000002404350000002402900039000600000008001d00000000008204350000046408500197000000040280008c000009640000613d000000000230004c000900000008001d000500000009001d000009190000c13d00000044040000390000002006000039000000000208001900000000030900190000000005090019117e00700000040f00000005090000290000000a060000290000000b070000290000093c0000013d0000000001000416000000000110004c00000df10000c13d000000040100008a00000000011000310000046202000041000000200310008c000000000300001900000000030240190000046201100197000000000410004c000000000200a019000004620110009c00000000010300190000000001026019000000000110004c00000df10000c13d0000000401000039000800000001001d0000000201100367000000000101043b000900000001001d000004640110009c00000df10000213d000a00000008001d000b00000006001d117e0edc0000040f00000464011001970000000b02000029000000000112004b00000000010000190000000101006039117e0eed0000040f0000048701000041000000000010043900000009010000290000000802000029000000000012043900008002010000390000002402000039117e00d80000040f0000000a05000029000000000110004c00000df10000613d00000000090504330000048801000041000000000019043500000000010004140000000c080000290000000902000029000000040220008c00000af90000613d000000000280004c000b00000008001d000800000009001d00000aa10000c13d00000004040000390000000902000029000000000309001900000000050900190000000006000019117e00700000040f00000008090000290000000b0800002900000000020100190000000a0500002900000ad20000013d0000000001000416000000000110004c00000df10000c13d0000000002000031000000040120008a0000046203000041000000800410008c000000000400001900000000040340190000046201100197000000000510004c000000000300a019000004620110009c00000000010400190000000001036019000000000110004c00000df10000c13d00000004010000390000000201100367000000000101043b000004830310009c00000df10000213d0000000401100039117e0eb40000040f000900000001001d000a00000002001d00000024010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f000700000001001d000800000002001d00000044010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f000500000001001d000600000002001d00000064010000390000000201100367000000000101043b000004830210009c00000df10000213d00000000020000310000000401100039117e0eb40000040f000300000001001d000400000002001d00000000060000190000000a01000029000000000116004b0000037c0000813d0000000501600210000000090200002900000000021200190000000204000367000000000224034f000000000202043b000004640320009c00000df10000213d0000000803000029000000000336004b00000b010000813d00000007030000290000000003130019000000000334034f000000000303043b000004640530009c00000df10000213d0000000605000029000000000556004b00000b010000813d0000000405000029000000000556004b00000b010000813d00000003050000290000000005150019000b00000006001d00000005060000290000000001160019000000000114034f000000000454034f000000000504043b000000000401043b0000000001000411117e0eff0000040f0000000b060000290000000106600039000008660000013d0000000001000416000000000110004c00000df10000c13d0000000001000031000a00000008001d117e0e960000040f0000000a060000290000000007060433000004820500004100000000005704350000000005010019000800000002001d000900000003001d000700000004001d0000000001000414000600000005001d0000046402500197000000040320008c000008d20000613d000000040400003900000020060000390000000003070019000b00000002001d0000000005070019000500000007001d117e00a50000040f00000005070000290000000b020000290000000a06000029000000000110004c000008d20000c13d0000000c0100002900000001040000310000000002140019000000000242004b00000df10000213d0000001f0240018f000000030310036700000000010604330000000504400270000000000540004c000008c10000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000008b90000413d000000000520004c000008d00000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600330018f0000000005730019000000000335004b00000000030000190000000103004039000004830450009c00000d130000213d000000010330019000000d130000c13d000b00000002001d0000000000560435000000200110008c00000df10000413d00000000010704330000000002010019000004640110009c00000df10000213d000400000002001d000000000120004c0000000001000019000000010100c039117e0f860000040f0000000002000411000500000002001d000000040100002900000006030000290000000904000029117e0f980000040f0000000a010000290000000001010433000600000001001d000004840100004100000000001004390000800b010000390000000402000039000a00000002001d117e00d80000040f0000000604000029000000400240003900000007030000290000000000320435000000200240003900000000001204350000000901000029000000000014043500000461010000410000000002000414000004610320009c0000000002018019000004610340009c00000000010440190000004001100210000000c002200210000000000112019f0000000802000029000004640720019700000485011001c70000800d0200003900000486040000410000000a030000290000000b050000290000000506000029117e11700000040f0000000101200190000009a10000c13d00000df10000013d0000046102000041000004610490009c00000000040200190000000004094019000004610510009c0000000001028019000000c0011002100000004002400210000000000112019f0000048b011001c7000080090200003900000000040800190000000005000019117e11700000040f0000000509000029000000000301034f000000010120018f000000000200001900000005042002100000000005490019000000000443034f000000000404043b00000000004504350000000102200039000000000420004c0000000004000019000000010400603900000001044001900000092b0000c13d000300000003035500000000020300190000006002200270000104610020019d0000000a060000290000000b07000029000000000110004c0000000908000029000009640000c13d0000000c0100002900000001040000310000000002140019000000000242004b00000df10000213d0000001f0240018f000000030310036700000000010604330000000504400270000000000540004c000009530000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b0000094b0000413d000000000520004c000009620000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000004920019000000000224004b00000000020000190000000102004039000004830340009c00000d130000213d000000010220019000000d130000c13d000900000008001d000400000004001d0000000000460435000000200110008c00000df10000413d0000000001090433000000000210004c0000000002000019000000010200c039000000000121004b00000df10000c13d000004840100004100000000001004390000800b010000390000000402000039117e00d80000040f00000000040100190000000401000029000000070200002900000006030000290000000805000029117e10870000040f000000040400002900000000014100490000046102000041000004610340009c000000000302001900000000030440190000004003300210000004610410009c00000000010280190000006001100210000000000131019f0000000003000414000004610430009c0000000002034019000000c002200210000000000121019f0000048c011001c70000800d0200003900000003030000390000048d0400004100000009050000290000000b06000029117e11700000040f000000010120019000000df10000613d0000000c0100002900000000020100190000000003000019117e00ea0000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b00000000060000190000000106004039000004830420009c00000d130000213d000000010460019000000d130000c13d0000000000250435000000200110008c00000df10000413d0000000001030433000004640210009c00000df10000213d0000000802000029000000000121004b00000000010000190000000101006039117e10720000040f0000048701000041000000000010043900000007010000290000000802000029000000000021043900008002010000390000002402000039117e00d80000040f000000000110004c00000b6a0000c13d0000000c010000290000000002010019117e00f40000040f117e0edc0000040f0000046401100197000b00000001001d0000000001000019117e117c0000040f00000463011001970000000b02000029000000000121019f0000000002000019117e117a0000040f0000000101000039000800000001001d117e117c0000040f00000463011001970000000902000029000000000121019f0000000802000029117e117a0000040f0000046501000041000700000001001d00000000001004390000800b01000039000600000001001d0000000402000039000500000002001d117e00d80000040f00000007020000290000000000200439000700000001001d00000006010000290000000502000029117e00d80000040f00000007020000290000049903200041000000000131004b00000a710000a13d0000046701000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f0000046102000041000004610470009c00000000040200190000000004074019000004610510009c0000000001028019000000c0011002100000004002400210000000000112019f0000048b011001c7000080090200003900000009040000290000000005000019117e11700000040f0000000707000029000000000301034f000000010120018f000000000200001900000005042002100000000005470019000000000443034f000000000404043b00000000004504350000000102200039000000000420004c00000000040000190000000104006039000000010440019000000a090000c13d000300000003035500000000020300190000006002200270000104610020019d0000000a05000029000000000110004c00000a400000c13d0000000c0100002900000001040000310000000002140019000000000242004b00000df10000213d0000001f0240018f000000030310036700000000010504330000000504400270000000000540004c00000a2f0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000a270000413d000000000520004c00000a3e0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000004720019000000000224004b00000000020000190000000102004039000004830340009c00000d130000213d000000010220019000000d130000c13d000600000004001d0000000000450435000000200110008c00000df10000413d0000000001070433000000000210004c0000000002000019000000010200c039000000000121004b00000df10000c13d000004930100004100000006070000290000000000170435000000240270003900000000010004140000000c030000290000000804000029000000000042043500000044027000390000000b040000290000000000420435000000040270003900000000004204350000000902000029000000040220008c00000bca0000613d000000000230004c00000b800000c13d00000064040000390000002006000039000000090200002900000000030700190000000005070019117e00700000040f00000ba10000013d00000002020000390000000001030019000700000003001d117e117a0000040f0000000a010000290000000001010433000500000001001d000004840100004100000000001004390000800b010000390000000402000039000600000002001d117e00d80000040f0000000504000029000000000014043500000461010000410000000002000414000004610320009c0000000002018019000004610340009c00000000010440190000004001100210000000c002200210000000000112019f0000049a011001c70000800d020000390000049b0400004100000006030000290000000b0500002900000009060000290000000707000029117e11700000040f0000000a03000029000000010120019000000df10000613d00000000010304330000000802000029000000000021043500000020020000390000000003000019117e00ea0000040f000004830130009c00000d130000213d0000000000360435000000000100001900000000020000190000000003000019117e00ea0000040f0000046102000041000004610310009c0000000001028019000004610390009c00000000020940190000004002200210000000c001100210000000000121019f00000489011001c70000800902000039000000000308001900000009040000290000000005000019117e11700000040f00000008090000290000000b080000290000001f0380018f0000000504800270000000000540004c00000abe0000613d000000000500001900000005065002100000000007690019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000ab60000413d000000000530004c00000acd0000613d0000000504400210000000000541034f00000000044900190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f0000000000340435000000010220018f00030000000103550000006001100270000104610010019d0000000a05000029000000000120004c00000af90000c13d000000010400003100000000030800190000000001840019000000000141004b00000df10000213d0000001f0240018f000000030330036700000000010504330000000504400270000000000540004c00000ae80000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000ae00000413d000000000520004c00000af70000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f000004830190009c00000d130000213d00000000009504350000000002080019000000000180004c0000037c0000613d0000000001020019117e00f40000040f0000046701000041000000000010043500000032010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f0000046102000041000004610390009c00000000030200190000000003094019000004610410009c0000000001028019000000c0011002100000004002300210000000000112019f00000491011001c70000800902000039000000000308001900000009040000290000000005000019117e11700000040f00000007090000290000000b080000290000001f0380018f0000000504800270000000000540004c00000b270000613d000000000500001900000005065002100000000007690019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000b1f0000413d000000000530004c00000b360000613d0000000504400210000000000541034f00000000044900190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f0000000000340435000000010220018f00030000000103550000006001100270000104610010019d0000000a05000029000000000120004c00000b620000c13d000000010400003100000000030800190000000001840019000000000141004b00000df10000213d0000001f0240018f000000030330036700000000010504330000000504400270000000000540004c00000b510000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000b490000413d000000000520004c00000b600000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f000004830190009c00000d130000213d00000000009504350000000002080019000000000180004c0000037c0000613d0000000001020019117e00f40000040f0000000a0500002900000000040504330000048e010000410000000000140435000000000100041400000000030004160000000c02000029000500000002001d0000000802000029000000040220008c000700000004001d00000d110000613d000000000230004c00000cb60000c13d00000004040000390000000802000029000000070300002900000000050300190000000506000029117e00700000040f000000000201001900000ce70000013d0000046102000041000004610470009c00000000040200190000000004074019000004610510009c0000000001028019000000c0011002100000004002400210000000000112019f00000494011001c7000080090200003900000009040000290000000005000019117e11700000040f0000000606000029000000000301034f000000010120018f000000000200001900000005042002100000000005460019000000000443034f000000000404043b00000000004504350000000102200039000000000420004c00000000040000190000000104006039000000010440019000000b920000c13d000300000003035500000000020300190000006002200270000104610020019d000000000110004c0000000a05000029000000060700002900000bca0000c13d0000000c0100002900000001040000310000000002140019000000000242004b00000df10000213d0000001f0240018f000000030310036700000000010504330000000504400270000000000540004c00000bb90000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000bb10000413d000000000520004c00000bc80000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000002720019000004830320009c00000d130000213d0000000000250435000000200110008c00000df10000413d000009a10000013d0000046102000041000004610410009c00000000010280190000000905000029000004610450009c00000000020540190000004002200210000000c001100210000000000121019f00000489011001c7000080090200003900000008040000290000000005000019117e11700000040f00000000030100190000006003300270000104610030019d0003000000010355000000010120018f000000000110004c0000000a060000290000000b040000290000000905000029000006640000613d000004830150009c00000d130000213d00000000005604350000048f0100004100000000001504350000002402500039000000000100041400000000030004160000000000320435000000040250003900000000004204350000000802000029000000040220008c00000c070000613d00000044040000390000002006000039000000080200002900000000030500190000000905000029117e00700000040f00000009050000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000002520019000800000002001d000004830220009c00000d130000213d00000008020000290000000000260435000000200110008c00000df10000413d00000009010000290000000001010433000000000210004c0000000002000019000000010200c039000000000221004b00000df10000c13d000000000110004c00000dc30000613d0000000001000416000a00000001001d000004840100004100000000001004390000800b010000390000000402000039117e00d80000040f00000005020000290000000202200367000000000502043b0000000004010019000000080100002900000006020000290000000a03000029117e10870000040f000000080400002900000000014100490000046102000041000004610340009c000000000302001900000000030440190000004003300210000004610410009c00000000010280190000006001100210000000000131019f0000000003000414000004610430009c0000000002034019000000c002200210000000000121019f0000048c011001c70000800d0200003900000003030000390000048d0400004100000000060004110000000b05000029117e11700000040f00000001012001900000037c0000c13d00000df10000013d0000046102000041000004610410009c00000000010280190000000805000029000004610450009c00000000020540190000004002200210000000c001100210000000000121019f00000489011001c7000080090200003900000007040000290000000005000019117e11700000040f00000000030100190000006003300270000104610030019d0003000000010355000000010120018f000000000110004c0000000a060000290000000b040000290000000805000029000006640000613d000004830150009c00000d130000213d00000000005604350000048f0100004100000000001504350000002402500039000000000100041400000000030004160000000000320435000000040250003900000000004204350000000702000029000000040220008c00000c770000613d00000044040000390000002006000039000000070200002900000000030500190000000805000029117e00700000040f00000008050000290000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000002520019000700000002001d000004830220009c00000d130000213d00000007020000290000000000260435000000200110008c00000df10000413d00000008010000290000000001010433000000000210004c0000000002000019000000010200c039000000000221004b00000df10000c13d000000000110004c00000dc30000613d00000498010000410000000704000029000000000014043500000024014000390000000002000416000000090300002900000000003104350000000401400039000000000021043500000000010004140000000b02000029000000040320008c0000000a0600002900000ca40000613d0000004404000039000000200600003900000007030000290000000005030019117e00700000040f0000000a06000029000000000110004c000006640000613d0000000102000031000000200120008c000000200100003900000000010240190000001f01100039000000600110018f00000007030000290000000001310019000004830310009c00000d130000213d0000000000160435000000200220008c00000df10000413d0000000002000416000000000021043500000020020000390000000003000019117e00ea0000040f0000046102000041000004610410009c00000000010280190000000705000029000004610450009c00000000020540190000004002200210000000c001100210000000000121019f00000489011001c7000080090200003900000008040000290000000005000019117e11700000040f000000070800002900000005040000290000001f0340018f0000000504400270000000000540004c00000cd30000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000ccb0000413d000000000530004c00000ce30000613d0000000504400210000000000541034f000000070600002900000000044600190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f0000000000340435000000010220018f00030000000103550000006001100270000104610010019d000000000120004c0000000a05000029000000070400002900000d110000c13d000000010400003100000005010000290000000001140019000000000141004b00000df10000213d0000001f0240018f0000000501000029000000030310036700000000010504330000000504400270000000000540004c00000d000000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000cf80000413d000000000520004c00000d0f0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f000004830140009c00000d1b0000a13d0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f00000000004504350000000501000029000000000110004c00000d5e0000c13d0000048f0100004100000007050000290000000000150435000000240250003900000000010004140000000c030000290000000004000416000000000042043500000004025000390000000b0400002900000000004204350000000802000029000000040220008c00000daa0000613d000000000230004c00000d610000c13d00000044040000390000002006000039000000080200002900000007030000290000000005030019117e00700000040f00000d820000013d0000000702000029000004640220019700000000002304350000000904000029000000440340003900000000002304350000002402400039000000080300002900000000003204350000000b02000029000000040320008c0000000a0600002900000d4b0000613d0000006404000039000000200600003900000009030000290000000005030019117e00700000040f0000000a06000029000000000110004c000006640000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600320018f00000009020000290000000002230019000000000332004b00000000030000190000000103004039000004830420009c00000d130000213d000000010330019000000d130000c13d0000000000260435000000200110008c00000df10000413d0000037c0000013d00000005010000290000000002010019117e00f40000040f0000046102000041000004610410009c00000000010280190000000705000029000004610450009c00000000020540190000004002200210000000c001100210000000000121019f0000048b011001c7000080090200003900000008040000290000000005000019117e11700000040f0000000706000029000000000301034f000000010120018f000000000200001900000005042002100000000005460019000000000443034f000000000404043b00000000004504350000000102200039000000000420004c00000000040000190000000104006039000000010440019000000d730000c13d000300000003035500000000020300190000006002200270000104610020019d000000000110004c00000daa0000c13d0000000c0100002900000001040000310000000002140019000000000242004b0000000a0500002900000df10000213d0000001f0240018f000000030310036700000000010504330000000504400270000000000540004c00000d990000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000d910000413d000000000520004c00000da80000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031117e00f40000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f00000007030000290000000002320019000800000002001d000004830220009c0000000a0200002900000d130000213d00000008030000290000000000320435000000200110008c00000df10000413d00000007010000290000000001010433000000000210004c0000000002000019000000010200c039000000000221004b00000df10000c13d000000000110004c00000dcb0000c13d0000046701000041000000000010043500000001010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f0000000001000416000700000001001d000004840100004100000000001004390000800b010000390000000402000039000a00000002001d117e00d80000040f00000006020000290000000202200367000000000202043b00000008040000290000004003400039000000000023043500000020024000390000000000120435000000070100002900000000001404350000046101000041000004610240009c000000000201001900000000020440190000000003000414000004610430009c00000000010340190000004002200210000000c001100210000000000112019f00000485011001c70000800d02000039000004860400004100000000060004110000000a030000290000000b050000290000000907000029117e11700000040f0000000101200190000009a10000c13d00000000010000190000000002000019117e00f40000040f00000000010104330000049f0210009c00000df80000813d000000000001042d00000000010000190000000002000019117e00f40000040f000000040110008a00000462020000410000009f0310008c000000000300001900000000030220190000046201100197000000000410004c0000000002008019000004620110009c00000000010300190000000001026019000000000110004c00000e180000613d00000002050003670000000401500370000000000101043b0000002402500370000000000202043b000004640320009c00000e180000213d0000004403500370000000000303043b000004640430009c00000e180000213d0000006404500370000000000404043b0000008405500370000000000505043b000000000001042d00000000010000190000000002000019117e00f40000040f00000000030100190000001f013000390000046204000041000000000521004b0000000005000019000000000504401900000462062001970000046201100197000000000761004b000000000400a019000000000161013f000004620110009c00000000010500190000000001046019000000000110004c00000e6c0000613d0000000201300367000000000401043b000004a00140009c00000e640000813d0000003f01400039000000200500008a000000000651016f000000400500003900000000010504330000000006610019000000000716004b00000000070000190000000107004039000004830860009c00000e640000213d000000010770019000000e640000c13d0000000000650435000000000041043500000020033000390000000005430019000000000225004b00000e6c0000213d0000001f0240018f000000020530036700000020031000390000000506400270000000000760004c00000e510000613d000000000700001900000005087002100000000009830019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00000e490000413d000000000720004c00000e600000613d0000000506600210000000000565034f00000000036300190000000302200210000000000603043300000000062601cf000000000626022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000262019f0000000000230435000000000214001900000020022000390000000000020435000000000001042d0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f00000000010000190000000002000019117e00f40000040f00010000000000020000000002010019000000040120008a00000462030000410000007f0410008c000000000400001900000000040320190000046201100197000000000510004c0000000003008019000004620110009c00000000010400190000000001036019000000000110004c00000e930000613d00000002010003670000000403100370000000000303043b000100000003001d000004640330009c00000e930000213d0000002401100370000000000101043b000004830310009c00000e930000213d0000000401100039117e0e1b0000040f00000002020003670000004403200370000000000303043b0000006402200370000000000402043b000000000201001900000001010000290000000100000005000000000001042d00000000010000190000000002000019117e00f40000040f000000040110008a00000462020000410000007f0310008c000000000300001900000000030220190000046201100197000000000410004c0000000002008019000004620110009c00000000010300190000000001026019000000000110004c00000eb10000613d00000002040003670000000401400370000000000101043b000004640210009c00000eb10000213d0000002402400370000000000202043b000004640320009c00000eb10000213d0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d00000000010000190000000002000019117e00f40000040f0000001f031000390000046204000041000000000523004b0000000005000019000000000504401900000462062001970000046203300197000000000763004b000000000400a019000000000363013f000004620330009c00000000030500190000000003046019000000000330004c00000ece0000613d0000000203100367000000000303043b000004830430009c00000ece0000213d000000050430021000000020011000390000000004410019000000000224004b00000ece0000213d0000000002030019000000000001042d00000000010000190000000002000019117e00f40000040f000000000110004c00000ed40000613d000000000001042d0000046701000041000000000010043500000001010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f0001000000000002000004650100004100000000001004390000800b010000390000000402000039117e00d80000040f000100000001001d0000000201000039117e117c0000040f0000000102000029000000000112004b00000000010000190000000101008039117e117c0000040f00000464011001970000000100000005000000000001042d000000000110004c00000ef00000613d000000000001042d000000400100003900000000010104330000004402100039000004a103000041000000000032043500000024021000390000001a0300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039117e00f40000040f0007000000000002000300000005001d000500000003001d0000000007010019000000400600003900000000030604330000048a01000041000000000013043500000024053000390000000001000414000400000004001d000000000045043500000464047001970000000405300039000600000004001d00000000004504350000046402200197000700000002001d000000040220008c00000f1e0000613d0000004404000039000200000006001d000000200600003900000007020000290000000005030019000100000003001d117e00700000040f00000001030000290000000206000029000000000110004c00000f650000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000005320019000000000225004b00000000020000190000000102004039000004830450009c00000f5d0000213d000000010220019000000f5d0000c13d000200000005001d00000000005604350000001f0110008c00000f5a0000a13d0000000001030433000000000210004c0000000002000019000000010200c039000000000121004b00000f5a0000c13d000004840100004100000000001004390000800b010000390000000402000039000100000002001d117e00d80000040f0000000204000029000000400240003900000003030000290000000000320435000000200240003900000000001204350000000401000029000000000014043500000461010000410000000002000414000004610320009c0000000002018019000004610340009c00000000010440190000004001100210000000c002200210000000000112019f0000000502000029000004640720019700000485011001c70000800d020000390000048604000041000000010300002900000007050000290000000606000029117e11700000040f000000010120019000000f5a0000613d0000000700000005000000000001042d00000000010000190000000002000019117e00f40000040f0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f000000030200036700000001040000310000001f0340018f00000000010604330000000504400270000000000540004c00000f750000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b00000f6d0000413d000000000530004c00000f840000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031117e00f40000040f000000000110004c00000f890000613d000000000001042d000000400100003900000000010104330000004402100039000004a203000041000000000032043500000024021000390000001e0300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039117e00f40000040f000500000000000200000040060000390000000007060433000000640570003900000000004504350000046403300197000000440470003900000000003404350000002004700039000004a303000041000300000004001d000000000034043500000464022001970000002403700039000000000023043500000064020000390000000000270435000004a40270009c00000fec0000813d000400000007001d000000a002700039000200000006001d000100000002001d00000000002604350000048702000041000000000020043900000464021001970000000401000039000500000002001d000000000021043900008002010000390000002402000039117e00d80000040f000000000110004c00000ff40000613d00000000010004140000000503000029000000040230008c000000000200001900000fca0000613d000000040200002900000000040204330000000002030019000000030300002900000000050000190000000006000019117e00700000040f000000000110004c00000000020000190000000102006039000500000002001d117e10230000040f00000005020000290000000102200190000010030000c13d0000000002010433000000000320004c00000fe70000613d00000462030000410000001f0420008c000000000400001900000000040320190000046202200197000000000520004c0000000003008019000004620220009c00000000020400190000000002036019000000000220004c00000fe90000613d00000020011000390000000001010433000000000210004c0000000002000019000000010200c039000000000221004b00000fe90000c13d000000000110004c000010110000613d0000000500000005000000000001042d00000000010000190000000002000019117e00f40000040f0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f0000049d02000041000000010100002900000000002104350000000403000029000000e404300039000004a8020000410000000000240435000000c4043000390000001f020000390000000000240435000000a403300039000000200200003900000000002304350000006402000039117e00f40000040f000000020100002900000000010104330000004402100039000004a70300004100000000003204350000049d020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039117e00f40000040f000000020100002900000000010104330000006402100039000004a50300004100000000003204350000004402100039000004a603000041000000000032043500000024021000390000002a0300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039117e00f40000040f00000060010000390000000102000031000000000320004c000010570000613d000004a00120009c000010580000813d0000003f01200039000000200300008a000000000431016f000000400300003900000000010304330000000004410019000000000514004b00000000050000190000000105004039000004830640009c000010580000213d0000000105500190000010580000c13d000000000043043500000000002104350000002002100039000000030300036700000001050000310000001f0450018f0000000505500270000000000650004c000010480000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000010400000413d000000000640004c000010570000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000000001042d0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f000000000110004c000010630000613d000000000001042d000000400100003900000000010104330000004402100039000004a903000041000000000032043500000024021000390000001d0300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039117e00f40000040f000000000110004c000010750000613d000000000001042d000000400100003900000000010104330000006402100039000004aa0300004100000000003204350000004402100039000004ab03000041000000000032043500000024021000390000002a0300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039117e00f40000040f00000080060000390000000000610435000000000602043300000080071000390000000000670435000000a0071000390000000008000019000000000968004b000010960000813d00000000098700190000002008800039000000000a280019000000000a0a04330000000000a904350000108e0000013d000000000267001900000000000204350000006002100039000000000052043500000040021000390000000000420435000000200110003900000000003104350000001f01600039000000200200008a000000000121016f0000000001170019000000000001042d0007000000000002000300000005001d000600000001001d000000400600003900000000070604330000049201000041000000000017043500000024057000390000000001000414000400000004001d000000000045043500000464043001970000000403700039000500000004001d00000000004304350000046402200197000700000002001d000000040220008c000010c20000613d0000004404000039000200000006001d0000002006000039000000070200002900000000030700190000000005070019000100000007001d117e00700000040f00000001070000290000000206000029000000000110004c000011080000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000004720019000000000224004b00000000020000190000000102004039000004830340009c000011000000213d0000000102200190000011000000c13d000200000004001d00000000004604350000001f0110008c000010fd0000a13d0000000001070433000000000210004c0000000002000019000000010200c039000000000121004b000010fd0000c13d000004840100004100000000001004390000800b010000390000000402000039000100000002001d117e00d80000040f0000000204000029000000200240003900000003030000290000000000320435000000400240003900000000001204350000000401000029000000000014043500000461010000410000000002000414000004610320009c0000000002018019000004610340009c00000000010440190000004001100210000000c002200210000000000112019f00000485011001c70000800d02000039000004ac040000410000000103000029000000060500002900000007060000290000000507000029117e11700000040f0000000101200190000010fd0000613d0000000700000005000000000001042d00000000010000190000000002000019117e00f40000040f0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f000000030200036700000001040000310000001f0340018f00000000010604330000000504400270000000000540004c000011180000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000011100000413d000000000530004c000011270000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031117e00f40000040f00020000000000020000000003020019000000000401001900000040050000390000000001050433000004ad0210009c000011560000813d0000002002100039000100000005001d0000000000250435000000000001043500000001050000390000000001000414000000040240008c0000114f0000613d000000000230004c000011480000613d0000046102000041000004610510009c0000000001028019000000c0011002100000048c011001c700008009020000390000000005000019117e11700000040f00000000030100190000006003300270000104610030019d0003000000010355000000010520018f0000114f0000013d00000000020400190000000003000019000000000400001900000000050000190000000006000019117e00700000040f0000000005010019000200000005001d117e10230000040f0000000201000029000000000110004c0000115e0000613d0000000200000005000000000001042d0000046701000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019117e00f40000040f000000010100002900000000010104330000006402100039000004ae0300004100000000003204350000004402100039000004af0300004100000000003204350000002402100039000000260300003900000000003204350000049d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039117e00f40000040f00001173002104210000000102000039000000000001042d0000000002000019000000000001042d00001178002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000117e000004320000117f0001042e000011800001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913200000002000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000200000200000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000000000000000000000000000000000000175b1c400000000000000000000000000000000000000000000000000000000049b4e7e00000000000000000000000000000000000000000000000000000000241dc2df0000000000000000000000000000000000000000000000000000000025121b76000000000000000000000000000000000000000000000000000000003f88de8900000000000000000000000000000000000000000000000000000000456862aa00000000000000000000000000000000000000000000000000000000540dd52c000000000000000000000000000000000000000000000000000000005b7b018c0000000000000000000000000000000000000000000000000000000069b4117000000000000000000000000000000000000000000000000000000000701bb89100000000000000000000000000000000000000000000000000000000825bb13c00000000000000000000000000000000000000000000000000000000832e94920000000000000000000000000000000000000000000000000000000087bafe5f0000000000000000000000000000000000000000000000000000000087cc6e2f000000000000000000000000000000000000000000000000000000008fd903f50000000000000000000000000000000000000000000000000000000099a2f2d7000000000000000000000000000000000000000000000000000000009f122d6c00000000000000000000000000000000000000000000000000000000a5e5657100000000000000000000000000000000000000000000000000000000c45a015500000000000000000000000000000000000000000000000000000000c604b0b800000000000000000000000000000000000000000000000000000000d9e35bb200000000000000000000000000000000000000000000000000000000dcfb77b100000000000000000000000000000000000000000000000000000000edbdf5e200000000000000000000000000000000000000000000000000000000f75c26646f307dc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b020000000000000000000000000000000000006000000000000000000000000097116cf6cd4f6412bb47914d6db18da9e16ab2142f543b86e207c24fbd16b23a1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830d707df80000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000040000000000000000000000009dc29fac0000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000440000000000000000000000000200000000000000000000000000000000000000000000000000000000000000409e0ad946b19f77602d6cf11d59e1796ddaa4828159a0b4fb7fa2ff6b161b79d0e30db000000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000fca3b5aa00000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000002400000000000000000000000040c10f19000000000000000000000000000000000000000000000000000000000039d6ec000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000064000000000000000000000000cfbd48850000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000002e1a7d4d00000000000000000000000000000000000000000000000000000000bebbf4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a3000200000000000000000000000000000000000020000000000000000000000000cda32bc39904597666dfa9f9c845714756e1ffffad55b52e0d344673a2198121416e79737761705636526f757465723a2061646472657373283029000000000008c379a00000000000000000000000000000000000000000000000000000000060e232a90000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000416e79737761705636526f757465723a20464f5242494444454e000000000000416e79737761705636526f757465723a206e6f20756e6465726c79696e67000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff606f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65645361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400416e79737761705636526f757465723a207a65726f20774e41544956450000006f7420774e415449564500000000000000000000000000000000000000000000416e79737761705636526f757465723a20756e6465726c79696e67206973206eaac9ce45fe3adf5143598c4f18a369591a20a3384aedaf1b525d29127e1fcd55000000000000000000000000000000000000000000000000ffffffffffffffe04641494c454400000000000000000000000000000000000000000000000000005472616e7366657248656c7065723a204e41544956455f5452414e534645525f0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ARB | 100.00% | $3,939.34 | 0.02 | $78.79 |
[ 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.