ETH Price: $3,267.38 (+2.86%)
Gas: 1 Gwei

Contract

0xff6B7DaA792d62d929b9F3532fC478B57c663d89
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Collect200298122024-06-06 2:29:2350 days ago1717640963IN
0xff6B7DaA...57c663d89
0 ETH0.000618059.768261
Collect200253692024-06-05 11:36:2351 days ago1717587383IN
0xff6B7DaA...57c663d89
0 ETH0.0007184415.56013109
Collect200253282024-06-05 11:28:1151 days ago1717586891IN
0xff6B7DaA...57c663d89
0 ETH0.0007548511.93027663
Collect200248552024-06-05 9:53:2351 days ago1717581203IN
0xff6B7DaA...57c663d89
0 ETH0.000456219.88075413
Collect148807372022-05-31 20:23:09787 days ago1654028589IN
0xff6B7DaA...57c663d89
0 ETH0.0012421448.25545369
Collect148807372022-05-31 20:23:09787 days ago1654028589IN
0xff6B7DaA...57c663d89
0 ETH0.0022280548.25545369
Collect145339892022-04-06 18:48:15842 days ago1649270895IN
0xff6B7DaA...57c663d89
0 ETH0.0018328239.69556681
Collect143215752022-03-04 16:22:22875 days ago1646410942IN
0xff6B7DaA...57c663d89
0 ETH0.0032798771.03592579
Collect142960462022-02-28 17:42:32879 days ago1646070152IN
0xff6B7DaA...57c663d89
0 ETH0.0033767273.13357735
Collect130042002021-08-11 13:32:531080 days ago1628688773IN
0xff6B7DaA...57c663d89
0 ETH0.0030796548.67321353
Collect130040872021-08-11 13:12:131080 days ago1628687533IN
0xff6B7DaA...57c663d89
0 ETH0.0033660253.19931972
Collect130040672021-08-11 13:08:101080 days ago1628687290IN
0xff6B7DaA...57c663d89
0 ETH0.0030742848.58845416
Collect128635802021-07-20 13:08:501102 days ago1626786530IN
0xff6B7DaA...57c663d89
0 ETH0.0006726718.7
Collect127589702021-07-04 4:39:071118 days ago1625373547IN
0xff6B7DaA...57c663d89
0 ETH0.000147484.1
Collect127589172021-07-04 4:26:091118 days ago1625372769IN
0xff6B7DaA...57c663d89
0 ETH0.000147484.1
Collect127588692021-07-04 4:14:531118 days ago1625372093IN
0xff6B7DaA...57c663d89
0 ETH0.000147484.1
Collect126978042021-06-24 16:06:151128 days ago1624550775IN
0xff6B7DaA...57c663d89
0 ETH0.0006834619
Collect126462962021-06-16 15:26:581136 days ago1623857218IN
0xff6B7DaA...57c663d89
0 ETH0.0009712427
Collect126316182021-06-14 8:54:271138 days ago1623660867IN
0xff6B7DaA...57c663d89
0 ETH0.0003597210
Collect125084662021-05-26 6:51:361157 days ago1622011896IN
0xff6B7DaA...57c663d89
0 ETH0.0011870733
Collect124367002021-05-15 3:57:241168 days ago1621051044IN
0xff6B7DaA...57c663d89
0 ETH0.0027028105.00000145
Collect123175422021-04-26 18:20:191187 days ago1619461219IN
0xff6B7DaA...57c663d89
0 ETH0.0016906847
Collect123172362021-04-26 17:12:411187 days ago1619457161IN
0xff6B7DaA...57c663d89
0 ETH0.0023068864.13
Collect123171892021-04-26 16:59:471187 days ago1619456387IN
0xff6B7DaA...57c663d89
0 ETH0.0019065153
Collect123171022021-04-26 16:36:391187 days ago1619454999IN
0xff6B7DaA...57c663d89
0 ETH0.0019065153
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 0x576fa2cC...c82DDc9a6
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Distribution

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-09-02
*/

pragma solidity ^0.5.0;


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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        

        return c;
    }

    
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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 Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

contract Pausable is PauserRole {
    
    event Paused(address account);

    
    event Unpaused(address account);

    bool private _paused;

    
    constructor () internal {
        _paused = false;
    }

    
    function paused() public view returns (bool) {
        return _paused;
    }

    
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

interface IDistribution {
    event RewardAssigned(uint256 periodEnd, address indexed masternode, uint256 value);
    event RewardCollected(uint256 periodEnd, address indexed masternode, uint256 value);
    event RewardSet(address indexed masternode, uint256 value);

    function rewardOf(address account) external view returns (uint256);
    function periodEndOf(address account) external view returns (uint256);

    function assignRewards(uint256 periodEnd, address[] calldata accounts, uint256[] calldata values) external returns (bool);
    function encodedAssignRewards(uint256 periodEnd, uint160 lotSize, uint256[] calldata rewards) external returns (bool);
    function collect() external returns (bool);
    function collectRewards(address[] calldata accounts) external returns (bool);
    function clear() external returns (bool);
}

contract ManagerRole {
    using Roles for Roles.Role;

    event ManagerAdded(address indexed account);
    event ManagerRemoved(address indexed account);

    Roles.Role private _manager;

    
    modifier onlyManager() {
        require(_isManager(msg.sender));
        _;
    }

    function _addManager(address account) internal {
        _manager.add(account);
        emit ManagerAdded(account);
    }

    function _removeManager(address account) internal {
        _manager.remove(account);
        emit ManagerRemoved(account);
    }

    function _isManager(address account) internal view returns (bool) {
        return _manager.has(account);
    }
}

contract Distribution is IDistribution, ManagerRole, Ownable, Pausable {
    using SafeMath for uint256;

    struct AccountReward {
        uint256 reward;
        uint256 periodEnd;
    }

    
    mapping(address => AccountReward) public _rewards;

    
    IERC20 private _swmERC20;

    
    constructor(address swmERC20) public {
        _swmERC20 = IERC20(swmERC20);
    }

    
    
    function rewardOf(address account) external view returns (uint256) {
        return _rewards[account].reward;
    }

    
    function periodEndOf(address account) external view returns (uint256) {
        return _rewards[account].periodEnd;
    }

    
    function assignRewards(uint256 periodEnd, address[] calldata accounts, uint256[] calldata values) external whenNotPaused onlyOwnerOrManager returns (bool) {
        require(accounts.length != 0, "Accounts length is zero");
        require(accounts.length == values.length, "Lengths difference");
        require(periodEnd < now, "Period end is in future");

        uint256 sumValues = 0;

        for (uint256 i = 0; i < accounts.length; i++) {
            _assign(periodEnd, accounts[i], values[i]);

            sumValues = sumValues.add(values[i]);
        }

        require(_swmERC20.transferFrom(msg.sender, address(this), sumValues));

        return true;
    }

    
    function encodedAssignRewards(uint256 periodEnd, uint160 lotSize, uint256[] calldata rewards) external whenNotPaused onlyOwnerOrManager returns (bool) {
        require(rewards.length != 0, "Values length is zero");
        require(periodEnd < now, "Period end is in future");

        uint256 count = rewards.length;
        uint256 sumValues = 0;

        for (uint256 i = 0; i < count; i++) {
            uint256 reward = rewards[i];
            uint256 value = (reward >> 160) * lotSize;
            address to = address(reward & 0x00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);

            _assign(periodEnd, to, value);

            sumValues = sumValues.add(value);
        }

        require(_swmERC20.transferFrom(msg.sender, address(this), sumValues), "Transfer from failed");

        return true;
    }

    
    function setRewards(address[] calldata accounts, uint256[] calldata values) external whenPaused onlyOwner returns (bool) {
        require(accounts.length != 0, "Accounts length is zero");
        require(accounts.length == values.length, "Lengths difference");

        for (uint256 i = 0; i < accounts.length; i++) {
            _set(accounts[i], values[i]);
        }

        return true;
    }

    
    function collect() external whenNotPaused returns (bool) {
        _collect(msg.sender);

        return true;
    }

    
    function collectRewards(address[] calldata accounts) external onlyOwner returns (bool) {
        require(accounts.length != 0, "Accounts length is zero");

        for (uint256 i = 0; i < accounts.length; i++) {
            _collect(accounts[i]);
        }

        return true;
    }

    
    function clear() external onlyOwner returns (bool) {
        return _swmERC20.transfer(msg.sender, _swmERC20.balanceOf(address(this)));
    }

    
    
    function isManager(address account) external view returns (bool) {
        return _isManager(account);
    }

    
    function addManager(address account) external onlyOwner {
        _addManager(account);
    }

    
    function removeManager(address account) external onlyOwner {
        _removeManager(account);
    }

    
    modifier onlyOwnerOrManager() {
        require(isOwner() || _isManager(msg.sender), "Not Owner or Manager");
        _;
    }

    
    function _collect(address account) internal {
        require(_rewards[account].reward != 0, "Reward is zero");

        uint256 reward = _rewards[account].reward;
        uint256 periodEnd = _rewards[account].periodEnd;

        delete _rewards[account].reward;

        require(_swmERC20.transfer(account, reward));

        emit RewardCollected(periodEnd, account, reward);
    }

    function _assign(uint256 periodEnd, address account, uint256 value) internal {
        require(value != 0, "Value is zero");
        require(account != address(0), "Account address is zero");
        require(periodEnd > _rewards[account].periodEnd, "Period end less than saved for account");

        _rewards[account].reward = _rewards[account].reward.add(value);
        _rewards[account].periodEnd = periodEnd;

        emit RewardAssigned(periodEnd, account, value);
    }

    function _set(address account, uint256 value) internal {
        require(account != address(0), "Account address is zero");

        _rewards[account].reward = value;

        emit RewardSet(account, value);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"rewardOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"clear","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_rewards","outputs":[{"internalType":"uint256","name":"reward","type":"uint256"},{"internalType":"uint256","name":"periodEnd","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"setRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"periodEnd","type":"uint256"},{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"assignRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"collect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"periodEndOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isManager","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"collectRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"periodEnd","type":"uint256"},{"internalType":"uint160","name":"lotSize","type":"uint160"},{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"name":"encodedAssignRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swmERC20","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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":"account","type":"address"}],"name":"ManagerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ManagerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"periodEnd","type":"uint256"},{"indexed":true,"internalType":"address","name":"masternode","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"RewardAssigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"periodEnd","type":"uint256"},{"indexed":true,"internalType":"address","name":"masternode","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"RewardCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"masternode","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"RewardSet","type":"event"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063e52253811161007c578063e5225381146105d4578063f2347cd2146105f6578063f2fde38b1461064e578063f3ae241514610692578063f9c31da2146106ee578063fdc3a69f1461077f57610142565b80638da5cb5b1461034e5780638f32d59b1461039857806392920522146103ba5780639a790395146104a0578063ac18de431461059057610142565b80635c975abb1161010a5780635c975abb1461026b5780636ef8d66d1461028d578063715018a6146102975780637d6dfb7e146102a157806382dc1ec4146103005780638456cb591461034457610142565b80631d62ebd9146101475780632d06177a1461019f5780633f4ba83a146101e357806346fbf68e146101ed57806352efea6e14610249575b600080fd5b6101896004803603602081101561015d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061083a565b6040518082815260200191505060405180910390f35b6101e1600480360360208110156101b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610886565b005b6101eb61090c565b005b61022f6004803603602081101561020357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a6c565b604051808215151515815260200191505060405180910390f35b610251610a89565b604051808215151515815260200191505060405180910390f35b610273610cc7565b604051808215151515815260200191505060405180910390f35b610295610cde565b005b61029f610ce9565b005b6102e3600480360360208110156102b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e24565b604051808381526020018281526020019250505060405180910390f35b6103426004803603602081101561031657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e48565b005b61034c610eb2565b005b610356611013565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a061103d565b604051808215151515815260200191505060405180910390f35b610486600480360360408110156103d057600080fd5b81019080803590602001906401000000008111156103ed57600080fd5b8201836020820111156103ff57600080fd5b8035906020019184602083028401116401000000008311171561042157600080fd5b90919293919293908035906020019064010000000081111561044257600080fd5b82018360208201111561045457600080fd5b8035906020019184602083028401116401000000008311171561047657600080fd5b9091929391929390505050611095565b604051808215151515815260200191505060405180910390f35b610576600480360360608110156104b657600080fd5b8101908080359060200190929190803590602001906401000000008111156104dd57600080fd5b8201836020820111156104ef57600080fd5b8035906020019184602083028401116401000000008311171561051157600080fd5b90919293919293908035906020019064010000000081111561053257600080fd5b82018360208201111561054457600080fd5b8035906020019184602083028401116401000000008311171561056657600080fd5b90919293919293905050506112f7565b604051808215151515815260200191505060405180910390f35b6105d2600480360360208110156105a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172f565b005b6105dc6117b5565b604051808215151515815260200191505060405180910390f35b6106386004803603602081101561060c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061184a565b6040518082815260200191505060405180910390f35b6106906004803603602081101561066457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611896565b005b6106d4600480360360208110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061191c565b604051808215151515815260200191505060405180910390f35b6107656004803603602081101561070457600080fd5b810190808035906020019064010000000081111561072157600080fd5b82018360208201111561073357600080fd5b8035906020019184602083028401116401000000008311171561075557600080fd5b909192939192939050505061192e565b604051808215151515815260200191505060405180910390f35b6108206004803603606081101561079557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156107dc57600080fd5b8201836020820111156107ee57600080fd5b8035906020019184602083028401116401000000008311171561081057600080fd5b9091929391929390505050611a7e565b604051808215151515815260200191505060405180910390f35b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b61088e61103d565b610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61090981611eb3565b50565b61091533610a6c565b61096a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612b7f6030913960400191505060405180910390fd5b600360009054906101000a900460ff166109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610a82826002611f0d90919063ffffffff16565b9050919050565b6000610a9361103d565b610b05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610be357600080fd5b505afa158015610bf7573d6000803e3d6000fd5b505050506040513d6020811015610c0d57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610c8757600080fd5b505af1158015610c9b573d6000803e3d6000fd5b505050506040513d6020811015610cb157600080fd5b8101908080519060200190929190505050905090565b6000600360009054906101000a900460ff16905090565b610ce733611feb565b565b610cf161103d565b610d63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60046020528060005260406000206000915090508060000154908060010154905082565b610e5133610a6c565b610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612b7f6030913960400191505060405180910390fd5b610eaf81612045565b50565b610ebb33610a6c565b610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612b7f6030913960400191505060405180910390fd5b600360009054906101000a900460ff1615610f93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600360009054906101000a900460ff16611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b61112161103d565b611193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600085859050141561120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e7473206c656e677468206973207a65726f00000000000000000081525060200191505060405180910390fd5b828290508585905014611288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4c656e6774687320646966666572656e6365000000000000000000000000000081525060200191505060405180910390fd5b60008090505b858590508110156112ea576112dd8686838181106112a857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168585848181106112d157fe5b9050602002013561209f565b808060010191505061128e565b5060019050949350505050565b6000600360009054906101000a900460ff161561137c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61138461103d565b806113945750611393336121db565b5b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f74204f776e6572206f72204d616e6167657200000000000000000000000081525060200191505060405180910390fd5b6000858590501415611480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e7473206c656e677468206973207a65726f00000000000000000081525060200191505060405180910390fd5b8282905085859050146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4c656e6774687320646966666572656e6365000000000000000000000000000081525060200191505060405180910390fd5b428610611570576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f506572696f6420656e6420697320696e2066757475726500000000000000000081525060200191505060405180910390fd5b600080905060008090505b868690508110156115ff576115cb8888888481811061159657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168787858181106115bf57fe5b905060200201356121f8565b6115f08585838181106115da57fe5b90506020020135836124e990919063ffffffff16565b9150808060010191505061157b565b50600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156116dd57600080fd5b505af11580156116f1573d6000803e3d6000fd5b505050506040513d602081101561170757600080fd5b810190808051906020019092919050505061172157600080fd5b600191505095945050505050565b61173761103d565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117b281612571565b50565b6000600360009054906101000a900460ff161561183a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611843336125cb565b6001905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b61189e61103d565b611910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611919816128a0565b50565b6000611927826121db565b9050919050565b600061193861103d565b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000838390501415611a24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e7473206c656e677468206973207a65726f00000000000000000081525060200191505060405180910390fd5b60008090505b83839050811015611a7357611a66848483818110611a4457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166125cb565b8080600101915050611a2a565b506001905092915050565b6000600360009054906101000a900460ff1615611b03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611b0b61103d565b80611b1b5750611b1a336121db565b5b611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f74204f776e6572206f72204d616e6167657200000000000000000000000081525060200191505060405180910390fd5b6000838390501415611c07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f56616c756573206c656e677468206973207a65726f000000000000000000000081525060200191505060405180910390fd5b428510611c7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f506572696f6420656e6420697320696e2066757475726500000000000000000081525060200191505060405180910390fd5b6000838390509050600080905060008090505b82811015611d1a576000868683818110611ca557fe5b90506020020135905060008873ffffffffffffffffffffffffffffffffffffffff1660a083901c029050600073ffffffffffffffffffffffffffffffffffffffff83169050611cf58b82846121f8565b611d0882866124e990919063ffffffff16565b94505050508080600101915050611c8f565b50600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611df857600080fd5b505af1158015611e0c573d6000803e3d6000fd5b505050506040513d6020811015611e2257600080fd5b8101908080519060200190929190505050611ea5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5472616e736665722066726f6d206661696c656400000000000000000000000081525060200191505060405180910390fd5b600192505050949350505050565b611ec78160006129e690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3b4a40cccf2058c593542587329dd385be4f0b588db5471fbd9598e56dd7093a60405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612bf66022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fff816002612ac190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6120598160026129e690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e742061646472657373206973207a65726f00000000000000000081525060200191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167ffb1d63c3ab92db1512a24431e1b98d16962606e5ed0f4b72705880eb9175ba0a826040518082815260200191505060405180910390a25050565b60006121f1826000611f0d90919063ffffffff16565b9050919050565b600081141561226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f56616c7565206973207a65726f0000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612312576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e742061646472657373206973207a65726f00000000000000000081525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015483116123ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612c186026913960400191505060405180910390fd5b61240181600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546124e990919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555082600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508173ffffffffffffffffffffffffffffffffffffffff167f40cea6a517c46e3041942d9b88a525b986aa75d5fe283b97daea8f241519e31d8483604051808381526020018281526020019250505060405180910390a2505050565b600080828401905083811015612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612585816000612ac190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fef69f7d97228658c92417be1b16b19058315de71fecb435d07b7d23728b6bd3160405160405180910390a250565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541415612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f526577617264206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009055600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561280157600080fd5b505af1158015612815573d6000803e3d6000fd5b505050506040513d602081101561282b57600080fd5b810190808051906020019092919050505061284557600080fd5b8273ffffffffffffffffffffffffffffffffffffffff167f21c44946fba391a23601cfe4a4c4dc751779719b269b81942339d9eadb9302238284604051808381526020018281526020019250505060405180910390a2505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612926576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612baf6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6129f08282611f0d565b15612a63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612acb8282611f0d565b612b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612bd56021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373506572696f6420656e64206c657373207468616e20736176656420666f72206163636f756e74a265627a7a723158208e2d31c7c58550afa396d194ab7487576f27f1d81e96146b279985408ad6a3eb64736f6c634300050b0032

Swarm Source

bzzr://8e2d31c7c58550afa396d194ab7487576f27f1d81e96146b279985408ad6a3eb

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.