ETH Price: $3,244.51 (-0.44%)
Gas: 1 Gwei

Contract

0x8Cd408279e966b7e7E1f0b9E5eD8191959d11a19
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw All Rew...133290922021-09-30 20:02:241031 days ago1633032144IN
Deus Finance: UNI Staking
0 ETH0.0041791494
Withdraw All Sta...133290252021-09-30 19:46:421031 days ago1633031202IN
Deus Finance: UNI Staking
0 ETH0.00832969135.96401587
Withdraw125620992021-06-03 14:34:071150 days ago1622730847IN
Deus Finance: UNI Staking
0 ETH0.0022559133
Withdraw123674332021-05-04 11:18:201180 days ago1620127100IN
Deus Finance: UNI Staking
0 ETH0.0024609936.00000145
Withdraw Particl...112996702020-11-21 5:53:441344 days ago1605938024IN
Deus Finance: UNI Staking
0 ETH0.0019412933
Withdraw111342372020-10-26 20:36:381370 days ago1603744598IN
Deus Finance: UNI Staking
0 ETH0.002627828
Withdraw111176132020-10-24 7:04:131372 days ago1603523053IN
Deus Finance: UNI Staking
0 ETH0.0020271225
Withdraw111175522020-10-24 6:50:341372 days ago1603522234IN
Deus Finance: UNI Staking
0 ETH0.0023769725
Withdraw111154492020-10-23 23:13:171373 days ago1603494797IN
Deus Finance: UNI Staking
0 ETH0.0011897418
Withdraw111148782020-10-23 21:05:111373 days ago1603487111IN
Deus Finance: UNI Staking
0 ETH0.0020271225
Withdraw111147442020-10-23 20:32:261373 days ago1603485146IN
Deus Finance: UNI Staking
0 ETH0.0017037217.91909529
Withdraw111030552020-10-22 1:33:551375 days ago1603330435IN
Deus Finance: UNI Staking
0 ETH0.0052768855.5
Withdraw111011842020-10-21 18:39:101375 days ago1603305550IN
Deus Finance: UNI Staking
0 ETH0.0090365483
Withdraw110965372020-10-21 1:34:351376 days ago1603244075IN
Deus Finance: UNI Staking
0 ETH0.0028416543.00000145
Withdraw Particl...110947402020-10-20 18:51:511376 days ago1603219911IN
Deus Finance: UNI Staking
0 ETH0.0041178970
Withdraw110947262020-10-20 18:49:321376 days ago1603219772IN
Deus Finance: UNI Staking
0 ETH0.0032031640
Withdraw110930392020-10-20 12:38:131376 days ago1603197493IN
Deus Finance: UNI Staking
0 ETH0.0040365843
Withdraw110929802020-10-20 12:22:551376 days ago1603196575IN
Deus Finance: UNI Staking
0 ETH0.003201134.1
Withdraw110899122020-10-20 1:07:241377 days ago1603156044IN
Deus Finance: UNI Staking
0 ETH0.0017022821.00000145
Withdraw110891942020-10-19 22:31:481377 days ago1603146708IN
Deus Finance: UNI Staking
0 ETH0.002159123
Withdraw110873182020-10-19 15:37:491377 days ago1603121869IN
Deus Finance: UNI Staking
0 ETH0.005599271
Withdraw110862552020-10-19 11:53:561377 days ago1603108436IN
Deus Finance: UNI Staking
0 ETH0.0040225751
Withdraw110859252020-10-19 10:32:271377 days ago1603103547IN
Deus Finance: UNI Staking
0 ETH0.0063099280
Withdraw110844842020-10-19 5:12:181377 days ago1603084338IN
Deus Finance: UNI Staking
0 ETH0.0026252824.1
Withdraw110822322020-10-18 21:00:361378 days ago1603054836IN
Deus Finance: UNI Staking
0 ETH0.0016897318
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 0x15Cd5DDB...A5B43D246
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Staking

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: deus.sol
//Be name khoda

pragma solidity 0.6.12;

import "./SafeMath.sol";
import "./Ownable.sol";

interface StakedToken {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
}

interface RewardToken {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);

}

contract Staking is Ownable {

    struct User {
        uint256 depositAmount;
        uint256 paidReward;
    }

    using SafeMath for uint256;
    
    mapping (address => User) public users;

    uint256 public rewardTillNowPerToken = 0;
    uint256 public lastUpdatedBlock;
    uint256 public rewardPerBlock;
    uint256 public scale = 1e18;

    uint256 public particleCollector = 0;
    uint256 public daoShare;
    uint256 public earlyFoundersShare;
    address public daoWallet;
    address public earlyFoundersWallet;

    StakedToken public stakedToken;
    RewardToken public rewardToken;

    event Deposit(address user, uint256 amount);
    event Withdraw(address user, uint256 amount);
    event EmergencyWithdraw(address user, uint256 amount);
    event RewardClaimed(address user, uint256 amount);
    event RewardPerBlockChanged(uint256 oldValue, uint256 newValue);
    
    constructor (address _stakedToken, address _rewardToken, uint256 _rewardPerBlock, uint256 _daoShare, uint256 _earlyFoundersShare) public {
        stakedToken = StakedToken(_stakedToken);
        rewardToken = RewardToken(_rewardToken);
        rewardPerBlock = _rewardPerBlock;
        daoShare = _daoShare;
        earlyFoundersShare = _earlyFoundersShare;
        lastUpdatedBlock = block.number;
        daoWallet = msg.sender;
        earlyFoundersWallet = msg.sender;
    }

    function setWallets(address _daoWallet, address _earlyFoundersWallet) public onlyOwner {
        daoWallet = _daoWallet;
        earlyFoundersWallet = _earlyFoundersWallet;
    }

    function setShares(uint256 _daoShare, uint256 _earlyFoundersShare) public onlyOwner {
        withdrawParticleCollector();
        daoShare = _daoShare;
        earlyFoundersShare = _earlyFoundersShare;
    }

    function setRewardPerBlock(uint256 _rewardPerBlock) public onlyOwner {
        update();
        rewardPerBlock = _rewardPerBlock;
        emit RewardPerBlockChanged(rewardPerBlock, _rewardPerBlock);
    }

    // Update reward variables of the pool to be up-to-date.
    function update() public {
        if (block.number <= lastUpdatedBlock) {
            return;
        }
        uint256 totalStakedToken = stakedToken.balanceOf(address(this));
        uint256 rewardAmount = (block.number - lastUpdatedBlock).mul(rewardPerBlock);
        
        rewardTillNowPerToken = rewardTillNowPerToken.add(rewardAmount.mul(scale).div(totalStakedToken));
        lastUpdatedBlock = block.number;
    }

    // View function to see pending reward on frontend.
    function pendingReward(address _user) external view returns (uint256) {
        User storage user = users[_user];
        uint256 accRewardPerToken = rewardTillNowPerToken;
        
        if (block.number > lastUpdatedBlock) {
            uint256 totalStakedToken = stakedToken.balanceOf(address(this));
            uint256 rewardAmount = (block.number - lastUpdatedBlock).mul(rewardPerBlock);
            accRewardPerToken = accRewardPerToken.add(rewardAmount.mul(scale).div(totalStakedToken));
        }
        return user.depositAmount.mul(accRewardPerToken).div(scale).sub(user.paidReward);
    }

    function deposit(uint256 amount) public {
        User storage user = users[msg.sender];
        update();

        if (user.depositAmount > 0) {
            uint256 _pendingReward = user.depositAmount.mul(rewardTillNowPerToken).div(scale).sub(user.paidReward);
            rewardToken.transfer(msg.sender, _pendingReward);
            emit RewardClaimed(msg.sender, _pendingReward);
        }

        user.depositAmount = user.depositAmount.add(amount);
        user.paidReward = user.depositAmount.mul(rewardTillNowPerToken).div(scale);

        stakedToken.transferFrom(address(msg.sender), address(this), amount);
        emit Deposit(msg.sender, amount);
    }

    function withdraw(uint256 amount) public {
        User storage user = users[msg.sender];
        require(user.depositAmount >= amount, "withdraw amount exceeds deposited amount");
        update();

        uint256 _pendingReward = user.depositAmount.mul(rewardTillNowPerToken).div(scale).sub(user.paidReward);
        rewardToken.transfer(msg.sender, _pendingReward);
        emit RewardClaimed(msg.sender, _pendingReward);

        uint256 particleCollectorShare = _pendingReward.mul(daoShare.add(earlyFoundersShare)).div(scale);
        particleCollector = particleCollector.add(particleCollectorShare);
        
        if (amount > 0) {
            user.depositAmount = user.depositAmount.sub(amount);
            stakedToken.transfer(address(msg.sender), amount);
            emit Withdraw(msg.sender, amount);
        }
        
        user.paidReward = user.depositAmount.mul(rewardTillNowPerToken).div(scale);
    }
    
    function withdrawParticleCollector() public {
        uint256 _daoShare = particleCollector.mul(daoShare).div(daoShare.add(earlyFoundersShare));
        rewardToken.transfer(daoWallet, _daoShare);

        uint256 _earlyFoundersShare = particleCollector.mul(earlyFoundersShare).div(daoShare.add(earlyFoundersShare));
        rewardToken.transfer(earlyFoundersWallet, _earlyFoundersShare);

        particleCollector = 0;
    }

    // Withdraw without caring about rewards. EMERGENCY ONLY.
    function emergencyWithdraw() public {
        User storage user = users[msg.sender];

        stakedToken.transfer(msg.sender, user.depositAmount);

        emit EmergencyWithdraw(msg.sender, user.depositAmount);

        user.depositAmount = 0;
        user.paidReward = 0;
    }


    // Add temporary withdrawal functionality for owner(DAO) to transfer all tokens to a safe place.
    // Contract ownership will transfer to address(0x) after full auditing of codes.
    function withdrawAllRewardTokens(address to) public onlyOwner {
        uint256 totalRewardTokens = rewardToken.balanceOf(address(this));
        rewardToken.transfer(to, totalRewardTokens);
    }

    // Add temporary withdrawal functionality for owner(DAO) to transfer all tokens to a safe place.
    // Contract ownership will transfer to address(0x) after full auditing of codes.
    function withdrawAllStakedtokens(address to) public onlyOwner {
        uint256 totalStakedTokens = stakedToken.balanceOf(address(this));
        stakedToken.transfer(to, totalStakedTokens);
    }

}


//Dar panah khoda

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 4: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 4 of 4: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_stakedToken","type":"address"},{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_daoShare","type":"uint256"},{"internalType":"uint256","name":"_earlyFoundersShare","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"RewardPerBlockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"daoShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyFoundersShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyFoundersWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastUpdatedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"particleCollector","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTillNowPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract RewardToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"}],"name":"setRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_daoShare","type":"uint256"},{"internalType":"uint256","name":"_earlyFoundersShare","type":"uint256"}],"name":"setShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoWallet","type":"address"},{"internalType":"address","name":"_earlyFoundersWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"contract StakedToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"paidReward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAllRewardTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAllStakedtokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawParticleCollector","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063a2e62045116100de578063d3f6a15711610097578063f40f0f5211610071578063f40f0f5214610572578063f51e181a146105ca578063f7c618c1146105e8578063f90ce5ba1461061c5761018e565b8063d3f6a157146104c0578063db2e21bc14610524578063f2fde38b1461052e5761018e565b8063a2e6204514610383578063a87430ba1461038d578063b6b55f25146103ec578063bb872b4a1461041a578063cc7a262e14610448578063cee66f631461047c5761018e565b8063715018a61161014b5780638ae39cac116101255780638ae39cac146103095780638da5cb5b146103275780639378c6d41461035b578063995d9b60146103655761018e565b8063715018a61461029d57806372d21c89146102a757806388d19f1b146102eb5761018e565b8063079a5705146101935780632aca3e7d146101c75780632e1a7d4d146101ff578063481af4aa1461022d57806360c6cdac1461024b578063698a589714610269575b600080fd5b61019b61063a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101fd600480360360408110156101dd57600080fd5b810190808035906020019092919080359060200190929190505050610660565b005b61022b6004803603602081101561021557600080fd5b8101908080359060200190929190505050610742565b005b610235610b39565b6040518082815260200191505060405180910390f35b610253610b3f565b6040518082815260200191505060405180910390f35b610271610b45565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102a5610b6b565b005b6102e9600480360360208110156102bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cf1565b005b6102f3610f54565b6040518082815260200191505060405180910390f35b610311610f5a565b6040518082815260200191505060405180910390f35b61032f610f60565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610363610f89565b005b61036d6111fd565b6040518082815260200191505060405180910390f35b61038b611203565b005b6103cf600480360360208110156103a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611343565b604051808381526020018281526020019250505060405180910390f35b6104186004803603602081101561040257600080fd5b8101908080359060200190929190505050611367565b005b6104466004803603602081101561043057600080fd5b81019080803590602001909291905050506116c6565b005b6104506117e1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104be6004803603602081101561049257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611807565b005b610522600480360360408110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a6a565b005b61052c611bb8565b005b6105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d3e565b005b6105b46004803603602081101561058857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f49565b6040518082815260200191505060405180910390f35b6105d261210b565b6040518082815260200191505060405180910390f35b6105f0612111565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610624612137565b6040518082815260200191505060405180910390f35b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61066861213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610728576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610730610f89565b81600781905550806008819055505050565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905081816000015410156107e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061246e6028913960400191505060405180910390fd5b6107ea611203565b600061082f8260010154610821600554610813600254876000015461214590919063ffffffff16565b6121cb90919063ffffffff16565b61221590919063ffffffff16565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156108c457600080fd5b505af11580156108d8573d6000803e3d6000fd5b505050506040513d60208110156108ee57600080fd5b8101908080519060200190929190505050507f106f923f993c2149d49b4255ff723acafa1f2d94393f561d3eda32ae348f72413382604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1600061099460055461098661097760085460075461225f90919063ffffffff16565b8561214590919063ffffffff16565b6121cb90919063ffffffff16565b90506109ab8160065461225f90919063ffffffff16565b6006819055506000841115610afe576109d184846000015461221590919063ffffffff16565b8360000181905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610a6c57600080fd5b505af1158015610a80573d6000803e3d6000fd5b505050506040513d6020811015610a9657600080fd5b8101908080519060200190929190505050507f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243643385604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b610b2b600554610b1d600254866000015461214590919063ffffffff16565b6121cb90919063ffffffff16565b836001018190555050505050565b60085481565b60025481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b7361213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610cf961213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610db9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e4457600080fd5b505afa158015610e58573d6000803e3d6000fd5b505050506040513d6020811015610e6e57600080fd5b81019080805190602001909291905050509050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610f1457600080fd5b505af1158015610f28573d6000803e3d6000fd5b505050506040513d6020811015610f3e57600080fd5b8101908080519060200190929190505050505050565b60075481565b60045481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610fca610fa560085460075461225f90919063ffffffff16565b610fbc60075460065461214590919063ffffffff16565b6121cb90919063ffffffff16565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561108157600080fd5b505af1158015611095573d6000803e3d6000fd5b505050506040513d60208110156110ab57600080fd5b81019080805190602001909291905050505060006110fe6110d960085460075461225f90919063ffffffff16565b6110f060085460065461214590919063ffffffff16565b6121cb90919063ffffffff16565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156111b557600080fd5b505af11580156111c9573d6000803e3d6000fd5b505050506040513d60208110156111df57600080fd5b81019080805190602001909291905050505060006006819055505050565b60065481565b600354431161121157611341565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561129c57600080fd5b505afa1580156112b0573d6000803e3d6000fd5b505050506040513d60208110156112c657600080fd5b8101908080519060200190929190505050905060006112f4600454600354430361214590919063ffffffff16565b9050611331611320836113126005548561214590919063ffffffff16565b6121cb90919063ffffffff16565b60025461225f90919063ffffffff16565b6002819055504360038190555050505b565b60016020528060005260406000206000915090508060000154908060010154905082565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506113b2611203565b60008160000154111561152c57600061140482600101546113f66005546113e8600254876000015461214590919063ffffffff16565b6121cb90919063ffffffff16565b61221590919063ffffffff16565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561149957600080fd5b505af11580156114ad573d6000803e3d6000fd5b505050506040513d60208110156114c357600080fd5b8101908080519060200190929190505050507f106f923f993c2149d49b4255ff723acafa1f2d94393f561d3eda32ae348f72413382604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b61154382826000015461225f90919063ffffffff16565b816000018190555061157860055461156a600254846000015461214590919063ffffffff16565b6121cb90919063ffffffff16565b8160010181905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561163157600080fd5b505af1158015611645573d6000803e3d6000fd5b505050506040513d602081101561165b57600080fd5b8101908080519060200190929190505050507fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c3383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b6116ce61213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611796611203565b806004819055507f79a5349732f93288abbb68e251c3dfc325bf3ee6fde7786d919155d39733e0f560045482604051808381526020018281526020019250505060405180910390a150565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61180f61213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561195a57600080fd5b505afa15801561196e573d6000803e3d6000fd5b505050506040513d602081101561198457600080fd5b81019080805190602001909291905050509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611a2a57600080fd5b505af1158015611a3e573d6000803e3d6000fd5b505050506040513d6020811015611a5457600080fd5b8101908080519060200190929190505050505050565b611a7261213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3383600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c9257600080fd5b505af1158015611ca6573d6000803e3d6000fd5b505050506040513d6020811015611cbc57600080fd5b8101908080519060200190929190505050507f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695338260000154604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1600081600001819055506000816001018190555050565b611d4661213d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806124966026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600060025490506003544311156120c1576000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561202957600080fd5b505afa15801561203d573d6000803e3d6000fd5b505050506040513d602081101561205357600080fd5b810190808051906020019092919050505090506000612081600454600354430361214590919063ffffffff16565b90506120bc6120ad8361209f6005548561214590919063ffffffff16565b6121cb90919063ffffffff16565b8461225f90919063ffffffff16565b925050505b61210282600101546120f46005546120e685876000015461214590919063ffffffff16565b6121cb90919063ffffffff16565b61221590919063ffffffff16565b92505050919050565b60055481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b600033905090565b60008083141561215857600090506121c5565b600082840290508284828161216957fe5b04146121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806124bc6021913960400191505060405180910390fd5b809150505b92915050565b600061220d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122e7565b905092915050565b600061225783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123ad565b905092915050565b6000808284019050838110156122dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083118290612393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561235857808201518184015260208101905061233d565b50505050905090810190601f1680156123855780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161239f57fe5b049050809150509392505050565b600083831115829061245a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561241f578082015181840152602081019050612404565b50505050905090810190601f16801561244c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe776974686472617720616d6f756e742065786365656473206465706f736974656420616d6f756e744f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220a1e2028d120cee11cd295e14812b62b889cedb3fa0a0828cc7937ee0d987f02464736f6c634300060c0033

Deployed Bytecode Sourcemap

578:6466:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1091:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2188:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4496:945;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1020:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;790:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1060:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1737:148:1;;;:::i;:::-;;6445:199:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;990:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;875:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1095:79:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5453:434:3;;;:::i;:::-;;947:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2687:434;;;:::i;:::-;;743:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;3807:681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2408:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1134:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6840:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1999:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5958:289;;;:::i;:::-;;2040:244:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3186:613:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;911:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1171:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;837:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1091:34;;;;;;;;;;;;;:::o;2188:212::-;1317:12:1;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:27:3::1;:25;:27::i;:::-;2332:9;2321:8;:20;;;;2373:19;2352:18;:40;;;;2188:212:::0;;:::o;4496:945::-;4548:17;4568:5;:17;4574:10;4568:17;;;;;;;;;;;;;;;4548:37;;4626:6;4604:4;:18;;;:28;;4596:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4688:8;:6;:8::i;:::-;4709:22;4734:77;4795:4;:15;;;4734:56;4784:5;;4734:45;4757:21;;4734:4;:18;;;:22;;:45;;;;:::i;:::-;:49;;:56;;;;:::i;:::-;:60;;:77;;;;:::i;:::-;4709:102;;4822:11;;;;;;;;;;;:20;;;4843:10;4855:14;4822:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886:41;4900:10;4912:14;4886:41;;;;;;;;;;;;;;;;;;;;;;;;;;4940:30;4973:63;5030:5;;4973:52;4992:32;5005:18;;4992:8;;:12;;:32;;;;:::i;:::-;4973:14;:18;;:52;;;;:::i;:::-;:56;;:63;;;;:::i;:::-;4940:96;;5067:45;5089:22;5067:17;;:21;;:45;;;;:::i;:::-;5047:17;:65;;;;5146:1;5137:6;:10;5133:206;;;5185:30;5208:6;5185:4;:18;;;:22;;:30;;;;:::i;:::-;5164:4;:18;;:51;;;;5230:11;;;;;;;;;;;:20;;;5259:10;5272:6;5230:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:28;5308:10;5320:6;5299:28;;;;;;;;;;;;;;;;;;;;;;;;;;5133:206;5377:56;5427:5;;5377:45;5400:21;;5377:4;:18;;;:22;;:45;;;;:::i;:::-;:49;;:56;;;;:::i;:::-;5359:4;:15;;:74;;;;4496:945;;;;:::o;1020:33::-;;;;:::o;790:40::-;;;;:::o;1060:24::-;;;;;;;;;;;;;:::o;1737:148:1:-;1317:12;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1844:1:::1;1807:40;;1828:6;::::0;::::1;;;;;;;;1807:40;;;;;;;;;;;;1875:1;1858:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1737:148::o:0;6445:199:3:-;1317:12:1;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:25:3::1;6546:11;;;;;;;;;;;:21;;;6576:4;6546:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;6518:64;;6593:11;;;;;;;;;;;:20;;;6614:2;6618:17;6593:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;1377:1:1;6445:199:3::0;:::o;990:23::-;;;;:::o;875:29::-;;;;:::o;1095:79:1:-;1133:7;1160:6;;;;;;;;;;;1153:13;;1095:79;:::o;5453:434:3:-;5508:17;5528:69;5564:32;5577:18;;5564:8;;:12;;:32;;;;:::i;:::-;5528:31;5550:8;;5528:17;;:21;;:31;;;;:::i;:::-;:35;;:69;;;;:::i;:::-;5508:89;;5608:11;;;;;;;;;;;:20;;;5629:9;;;;;;;;;;;5640;5608:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5663:27;5693:79;5739:32;5752:18;;5739:8;;:12;;:32;;;;:::i;:::-;5693:41;5715:18;;5693:17;;:21;;:41;;;;:::i;:::-;:45;;:79;;;;:::i;:::-;5663:109;;5783:11;;;;;;;;;;;:20;;;5804:19;;;;;;;;;;;5825;5783:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5878:1;5858:17;:21;;;;5453:434;;:::o;947:36::-;;;;:::o;2687:434::-;2743:16;;2727:12;:32;2723:71;;2776:7;;2723:71;2804:24;2831:11;;;;;;;;;;;:21;;;2861:4;2831:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2804:63;;2878:20;2901:53;2939:14;;2917:16;;2902:12;:31;2901:37;;:53;;;;:::i;:::-;2878:76;;2999:72;3025:45;3053:16;3025:23;3042:5;;3025:12;:16;;:23;;;;:::i;:::-;:27;;:45;;;;:::i;:::-;2999:21;;:25;;:72;;;;:::i;:::-;2975:21;:96;;;;3101:12;3082:16;:31;;;;2687:434;;;:::o;743:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3807:681::-;3858:17;3878:5;:17;3884:10;3878:17;;;;;;;;;;;;;;;3858:37;;3906:8;:6;:8::i;:::-;3952:1;3931:4;:18;;;:22;3927:281;;;3970:22;3995:77;4056:4;:15;;;3995:56;4045:5;;3995:45;4018:21;;3995:4;:18;;;:22;;:45;;;;:::i;:::-;:49;;:56;;;;:::i;:::-;:60;;:77;;;;:::i;:::-;3970:102;;4087:11;;;;;;;;;;;:20;;;4108:10;4120:14;4087:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4155:41;4169:10;4181:14;4155:41;;;;;;;;;;;;;;;;;;;;;;;;;;3927:281;;4241:30;4264:6;4241:4;:18;;;:22;;:30;;;;:::i;:::-;4220:4;:18;;:51;;;;4300:56;4350:5;;4300:45;4323:21;;4300:4;:18;;;:22;;:45;;;;:::i;:::-;:49;;:56;;;;:::i;:::-;4282:4;:15;;:74;;;;4369:11;;;;;;;;;;;:24;;;4402:10;4423:4;4430:6;4369:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4453:27;4461:10;4473:6;4453:27;;;;;;;;;;;;;;;;;;;;;;;;;;3807:681;;:::o;2408:209::-;1317:12:1;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:8:3::1;:6;:8::i;:::-;2524:15;2507:14;:32;;;;2555:54;2577:14;;2593:15;2555:54;;;;;;;;;;;;;;;;;;;;;;;;2408:209:::0;:::o;1134:30::-;;;;;;;;;;;;;:::o;6840:199::-;1317:12:1;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6913:25:3::1;6941:11;;;;;;;;;;;:21;;;6971:4;6941:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;6913:64;;6988:11;;;;;;;;;;;:20;;;7009:2;7013:17;6988:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;1377:1:1;6840:199:3::0;:::o;1999:181::-;1317:12:1;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2109:10:3::1;2097:9;;:22;;;;;;;;;;;;;;;;;;2152:20;2130:19;;:42;;;;;;;;;;;;;;;;;;1999:181:::0;;:::o;5958:289::-;6005:17;6025:5;:17;6031:10;6025:17;;;;;;;;;;;;;;;6005:37;;6055:11;;;;;;;;;;;:20;;;6076:10;6088:4;:18;;;6055:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6125:49;6143:10;6155:4;:18;;;6125:49;;;;;;;;;;;;;;;;;;;;;;;;;;6208:1;6187:4;:18;;:22;;;;6238:1;6220:4;:15;;:19;;;;5958:289;:::o;2040:244:1:-;1317:12;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:1:::1;2129:22;;:8;:22;;;;2121:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2239:8;2210:38;;2231:6;::::0;::::1;;;;;;;;2210:38;;;;;;;;;;;;2268:8;2259:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2040:244:::0;:::o;3186:613:3:-;3247:7;3267:17;3287:5;:12;3293:5;3287:12;;;;;;;;;;;;;;;3267:32;;3310:25;3338:21;;3310:49;;3399:16;;3384:12;:31;3380:321;;;3432:24;3459:11;;;;;;;;;;;:21;;;3489:4;3459:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432:63;;3510:20;3533:53;3571:14;;3549:16;;3534:12;:31;3533:37;;:53;;;;:::i;:::-;3510:76;;3621:68;3643:45;3671:16;3643:23;3660:5;;3643:12;:16;;:23;;;;:::i;:::-;:27;;:45;;;;:::i;:::-;3621:17;:21;;:68;;;;:::i;:::-;3601:88;;3380:321;;;3718:73;3775:4;:15;;;3718:52;3764:5;;3718:41;3741:17;3718:4;:18;;;:22;;:41;;;;:::i;:::-;:45;;:52;;;;:::i;:::-;:56;;:73;;;;:::i;:::-;3711:80;;;;3186:613;;;:::o;911:27::-;;;;:::o;1171:30::-;;;;;;;;;;;;;:::o;837:31::-;;;;:::o;605:106:0:-;658:15;693:10;686:17;;605:106;:::o;2256:471:2:-;2314:7;2564:1;2559;:6;2555:47;;;2589:1;2582:8;;;;2555:47;2614:9;2630:1;2626;:5;2614:17;;2659:1;2654;2650;:5;;;;;;:10;2642:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2718:1;2711:8;;;2256:471;;;;;:::o;3203:132::-;3261:7;3288:39;3292:1;3295;3288:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3281:46;;3203:132;;;;:::o;1366:136::-;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1444:50;;1366:136;;;;:::o;902:181::-;960:7;980:9;996:1;992;:5;980:17;;1021:1;1016;:6;;1008:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074:1;1067:8;;;902:181;;;;:::o;3831:278::-;3917:7;3949:1;3945;:5;3952:12;3937:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3976:9;3992:1;3988;:5;;;;;;3976:17;;4100:1;4093:8;;;3831:278;;;;;:::o;1805:192::-;1891:7;1924:1;1919;:6;;1927:12;1911:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951:9;1967:1;1963;:5;1951:17;;1988:1;1981:8;;;1805:192;;;;;:::o

Swarm Source

ipfs://a1e2028d120cee11cd295e14812b62b889cedb3fa0a0828cc7937ee0d987f024

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

DEUS finance staking pools

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.