ETH Price: $3,795.32 (+0.40%)
Gas: 5 Gwei

Contract

0x4CF843d2eE119AcD64BbeF9f68f84E64E895A0e8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer114156902020-12-09 1:31:301270 days ago1607477490IN
0x4CF843d2...4E895A0e8
0 ETH0.0026310951.00000145
Transfer113880172020-12-04 19:17:491275 days ago1607109469IN
0x4CF843d2...4E895A0e8
0 ETH0.0006240617.05
Transfer113475702020-11-28 14:30:241281 days ago1606573824IN
0x4CF843d2...4E895A0e8
0 ETH0.0004222119.00000145
Transfer113433492020-11-27 23:03:111281 days ago1606518191IN
0x4CF843d2...4E895A0e8
0 ETH0.0004222119.00000145
Transfer113407872020-11-27 13:22:111282 days ago1606483331IN
0x4CF843d2...4E895A0e8
0 ETH0.0009147525.00000145
Transfer113407762020-11-27 13:19:501282 days ago1606483190IN
0x4CF843d2...4E895A0e8
0 ETH0.0004965723.00000145
Transfer113407692020-11-27 13:18:031282 days ago1606483083IN
0x4CF843d2...4E895A0e8
0 ETH0.0004962923.00000145
Transfer113407402020-11-27 13:11:281282 days ago1606482688IN
0x4CF843d2...4E895A0e8
0 ETH0.0009147525.00000145
Transfer113407352020-11-27 13:10:271282 days ago1606482627IN
0x4CF843d2...4E895A0e8
0 ETH0.0009879327.00000145
Transfer113407242020-11-27 13:07:241282 days ago1606482444IN
0x4CF843d2...4E895A0e8
0 ETH0.0005116523.00000145
Transfer113406992020-11-27 13:00:251282 days ago1606482025IN
0x4CF843d2...4E895A0e8
0 ETH0.0005119323.00000156
Approve113386142020-11-27 5:15:131282 days ago1606454113IN
0x4CF843d2...4E895A0e8
0 ETH0.002103947.30000023
Approve113381052020-11-27 3:27:221282 days ago1606447642IN
0x4CF843d2...4E895A0e8
0 ETH0.0013210529.70000023
Approve113378792020-11-27 2:37:401282 days ago1606444660IN
0x4CF843d2...4E895A0e8
0 ETH0.0012721228.6000002
Approve113355902020-11-26 18:12:211283 days ago1606414341IN
0x4CF843d2...4E895A0e8
0 ETH0.00547949123.19
Approve113353572020-11-26 17:23:341283 days ago1606411414IN
0x4CF843d2...4E895A0e8
0 ETH0.00479494107.80000135
Approve113352572020-11-26 17:00:591283 days ago1606410059IN
0x4CF843d2...4E895A0e8
0 ETH0.00484832109
Approve113352182020-11-26 16:53:161283 days ago1606409596IN
0x4CF843d2...4E895A0e8
0 ETH0.00479449107.79
Approve113351782020-11-26 16:45:281283 days ago1606409128IN
0x4CF843d2...4E895A0e8
0 ETH0.0043590498
Approve113351632020-11-26 16:42:351283 days ago1606408955IN
0x4CF843d2...4E895A0e8
0 ETH0.00484342108.89
Approve113351382020-11-26 16:37:171283 days ago1606408637IN
0x4CF843d2...4E895A0e8
0 ETH0.0034249677.00000023
Approve113351332020-11-26 16:36:351283 days ago1606408595IN
0x4CF843d2...4E895A0e8
0 ETH0.0037185283.60000023
Approve113351322020-11-26 16:35:531283 days ago1606408553IN
0x4CF843d2...4E895A0e8
0 ETH0.00483942108.8
Approve113351292020-11-26 16:35:441283 days ago1606408544IN
0x4CF843d2...4E895A0e8
0 ETH0.004448100
Approve113351252020-11-26 16:35:101283 days ago1606408510IN
0x4CF843d2...4E895A0e8
0 ETH0.0037185283.60000023
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
DPLTOKEN

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-06
*/

pragma solidity ^0.5.1;

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);
}

contract Context {
    constructor () internal {}
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }
}

contract ERC20 is Context, IERC20 {
    using SafeMath for uint;

    mapping(address => uint) private _balances;

    mapping(address => mapping(address => uint)) private _allowances;

    uint private _totalSupply;

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

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

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

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

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

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

    function increaseAllowance(address spender, uint addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function _transfer(address sender, address recipient, uint amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(address owner, address spender, uint amount) internal {
        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);
    }
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }
    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;
    }
}

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 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);
    }
}

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 DPLTOKEN is ERC20, ERC20Detailed {
    using SafeERC20 for IERC20;
    using Address for address;
    using SafeMath for uint;


    address public owner;
    mapping(address => bool) public minters;

    constructor () public ERC20Detailed("Dolphin Protocol", "DPL", 18) {
        owner = msg.sender;
        _mint(msg.sender, 3600000 * 1e18);
    }

    function setOwner(address _owner) public {
        require(msg.sender == owner, "!owner");
        owner = _owner;
    }

    function addMinter(address _minter) public {
        require(msg.sender == owner, "!owner");
        minters[_minter] = true;
    }

    function removeMinter(address _minter) public {
        require(msg.sender == owner, "!owner");
        minters[_minter] = false;
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"minters","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

Deployed Bytecode

0x6080604052600436106100eb576000357c01000000000000000000000000000000000000000000000000000000009004806306fdde03146100f0578063095ea7b31461018057806313af4035146101f357806318160ddd1461024457806323b872dd1461026f5780633092afd514610302578063313ce56714610353578063395093511461038457806342966c68146103f757806370a08231146104325780638da5cb5b1461049757806395d89b41146104ee578063983b2d561461057e578063a457c2d7146105cf578063a9059cbb14610642578063dd62ed3e146106b5578063f46eccc41461073a575b600080fd5b3480156100fc57600080fd5b506101056107a3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561014557808201518184015260208101905061012a565b50505050905090810190601f1680156101725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018c57600080fd5b506101d9600480360360408110156101a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610845565b604051808215151515815260200191505060405180910390f35b3480156101ff57600080fd5b506102426004803603602081101561021657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610863565b005b34801561025057600080fd5b5061025961096c565b6040518082815260200191505060405180910390f35b34801561027b57600080fd5b506102e86004803603606081101561029257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610976565b604051808215151515815260200191505060405180910390f35b34801561030e57600080fd5b506103516004803603602081101561032557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a93565b005b34801561035f57600080fd5b50610368610bb3565b604051808260ff1660ff16815260200191505060405180910390f35b34801561039057600080fd5b506103dd600480360360408110156103a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bca565b604051808215151515815260200191505060405180910390f35b34801561040357600080fd5b506104306004803603602081101561041a57600080fd5b8101908080359060200190929190505050610c7d565b005b34801561043e57600080fd5b506104816004803603602081101561045557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c8a565b6040518082815260200191505060405180910390f35b3480156104a357600080fd5b506104ac610cd2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104fa57600080fd5b50610503610cf8565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610543578082015181840152602081019050610528565b50505050905090810190601f1680156105705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561058a57600080fd5b506105cd600480360360208110156105a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d9a565b005b3480156105db57600080fd5b50610628600480360360408110156105f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eba565b604051808215151515815260200191505060405180910390f35b34801561064e57600080fd5b5061069b6004803603604081101561066557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fcb565b604051808215151515815260200191505060405180910390f35b3480156106c157600080fd5b50610724600480360360408110156106d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fe9565b6040518082815260200191505060405180910390f35b34801561074657600080fd5b506107896004803603602081101561075d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611070565b604051808215151515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b6000610859610852611090565b8484611098565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610928576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f216f776e6572000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b6000610983848484611319565b610a888461098f611090565b610a8385606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a39611090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169d9092919063ffffffff16565b611098565b600190509392505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f216f776e6572000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b6000610c73610bd7611090565b84610c6e8560016000610be8611090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175f90919063ffffffff16565b611098565b6001905092915050565b610c8733826117e9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610e5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f216f776e6572000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610fc1610ec7611090565b84610fbc85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000610f35611090565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169d9092919063ffffffff16565b611098565b6001905092915050565b6000610fdf610fd8611090565b8484611319565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61155e81606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115f1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175f90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290151561174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117115780820151818401526020810190506116f6565b50505050905090810190601f16801561173e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101515156117df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61196381606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169d9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119ba81600254611a2a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611a6c83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061169d565b90509291505056fea165627a7a723058202e98f6fa1986054b51224d1302579fbc696c6c3959433ae73c0f49fb65e5f7e30029

Deployed Bytecode Sourcemap

7652:884:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4385:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4385:83: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;4385:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1653:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1653:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1653:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8031:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8031:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8031:123:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;1140:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1140:88:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1810:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1810:301:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1810:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8304:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8304:138:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8304:138:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;4571:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4571:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2119:207;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2119:207:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2119:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8450:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8450:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8450:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;1236:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1236:107:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1236:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7800:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7800:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4476:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4476:87: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;4476:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8162:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8162:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8162:134:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2334:258;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2334:258:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2334:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1351:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1351:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1351:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1514:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1514:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1514:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7827:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7827:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7827:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4385:83;4422:13;4455:5;4448:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4385:83;:::o;1653:149::-;1716:4;1733:39;1742:12;:10;:12::i;:::-;1756:7;1765:6;1733:8;:39::i;:::-;1790:4;1783:11;;1653:149;;;;:::o;8031:123::-;8105:5;;;;;;;;;;;8091:19;;:10;:19;;;8083:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8140:6;8132:5;;:14;;;;;;;;;;;;;;;;;;8031:123;:::o;1140:88::-;1184:4;1208:12;;1201:19;;1140:88;:::o;1810:301::-;1896:4;1913:36;1923:6;1931:9;1942:6;1913:9;:36::i;:::-;1960:121;1969:6;1977:12;:10;:12::i;:::-;1991:89;2029:6;1991:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;2003:6;1991:19;;;;;;;;;;;;;;;:33;2011:12;:10;:12::i;:::-;1991:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;1960:8;:121::i;:::-;2099:4;2092:11;;1810:301;;;;;:::o;8304:138::-;8383:5;;;;;;;;;;;8369:19;;:10;:19;;;8361:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8429:5;8410:7;:16;8418:7;8410:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;8304:138;:::o;4571:83::-;4612:5;4637:9;;;;;;;;;;;4630:16;;4571:83;:::o;2119:207::-;2196:4;2213:83;2222:12;:10;:12::i;:::-;2236:7;2245:50;2284:10;2245:11;:25;2257:12;:10;:12::i;:::-;2245:25;;;;;;;;;;;;;;;:34;2271:7;2245:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;2213:8;:83::i;:::-;2314:4;2307:11;;2119:207;;;;:::o;8450:83::-;8500:25;8506:10;8518:6;8500:5;:25::i;:::-;8450:83;:::o;1236:107::-;1293:4;1317:9;:18;1327:7;1317:18;;;;;;;;;;;;;;;;1310:25;;1236:107;;;:::o;7800:20::-;;;;;;;;;;;;;:::o;4476:87::-;4515:13;4548:7;4541:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4476:87;:::o;8162:134::-;8238:5;;;;;;;;;;;8224:19;;:10;:19;;;8216:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8284:4;8265:7;:16;8273:7;8265:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;8162:134;:::o;2334:258::-;2416:4;2433:129;2442:12;:10;:12::i;:::-;2456:7;2465:96;2504:15;2465:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;2477:12;:10;:12::i;:::-;2465:25;;;;;;;;;;;;;;;:34;2491:7;2465:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;2433:8;:129::i;:::-;2580:4;2573:11;;2334:258;;;;:::o;1351:155::-;1417:4;1434:42;1444:12;:10;:12::i;:::-;1458:9;1469:6;1434:9;:42::i;:::-;1494:4;1487:11;;1351:155;;;;:::o;1514:131::-;1586:4;1610:11;:18;1622:5;1610:18;;;;;;;;;;;;;;;:27;1629:7;1610:27;;;;;;;;;;;;;;;;1603:34;;1514:131;;;;:::o;7827:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;804:98::-;849:15;884:10;877:17;;804:98;:::o;3742:335::-;3850:1;3833:19;;:5;:19;;;;3825:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931:1;3912:21;;:7;:21;;;;3904:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4015:6;3985:11;:18;3997:5;3985:18;;;;;;;;;;;;;;;:27;4004:7;3985:27;;;;;;;;;;;;;;;:36;;;;4053:7;4037:32;;4046:5;4037:32;;;4062:6;4037:32;;;;;;;;;;;;;;;;;;3742:335;;;:::o;2600:468::-;2713:1;2695:20;;:6;:20;;;;2687:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2797:1;2776:23;;:9;:23;;;;2768:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2872;2894:6;2872:71;;;;;;;;;;;;;;;;;;;;;;;:9;:17;2882:6;2872:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;2852:9;:17;2862:6;2852:17;;;;;;;;;;;;;;;:91;;;;2977:32;3002:6;2977:9;:20;2987:9;2977:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;2954:9;:20;2964:9;2954:20;;;;;;;;;;;;;;;:55;;;;3042:9;3025:35;;3034:6;3025:35;;;3053:6;3025:35;;;;;;;;;;;;;;;;;;2600:468;;;:::o;4997:180::-;5077:4;5107:1;5102;:6;;5110:12;5094:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;5094:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5134:6;5147:1;5143;:5;5134:14;;5168:1;5161:8;;;4997:180;;;;;:::o;4685:169::-;4737:4;4754:6;4767:1;4763;:5;4754:14;;4792:1;4787;:6;;4779:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4845:1;4838:8;;;4685:169;;;;:::o;3389:345::-;3481:1;3462:21;;:7;:21;;;;3454:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3555:68;3578:6;3555:68;;;;;;;;;;;;;;;;;;;;;;;:9;:18;3565:7;3555:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;3534:9;:18;3544:7;3534:18;;;;;;;;;;;;;;;:89;;;;3649:24;3666:6;3649:12;;:16;;:24;;;;:::i;:::-;3634:12;:39;;;;3715:1;3689:37;;3698:7;3689:37;;;3719:6;3689:37;;;;;;;;;;;;;;;;;;3389:345;;:::o;4862:127::-;4914:4;4938:43;4942:1;4945;4938:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4931:50;;4862:127;;;;:::o

Swarm Source

bzzr://2e98f6fa1986054b51224d1302579fbc696c6c3959433ae73c0f49fb65e5f7e3

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.