ETH Price: $3,537.58 (-1.41%)
Gas: 21 Gwei

Contract

0xb54536E0c4CA3FA54d394DB6B7c41f70AeC334FF
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Get Reward143022932022-03-01 16:44:54758 days ago1646153094IN
0xb54536E0...0AeC334FF
0 ETH0.0040083642.53581537
Withdraw143022582022-03-01 16:39:07758 days ago1646152747IN
0xb54536E0...0AeC334FF
0 ETH0.0050188351.56087174
Withdraw142500222022-02-21 14:40:37766 days ago1645454437IN
0xb54536E0...0AeC334FF
0 ETH0.0079025186.16472792
Withdraw142116452022-02-15 16:03:39772 days ago1644941019IN
0xb54536E0...0AeC334FF
0 ETH0.006529767.6386915
Withdraw141771872022-02-10 8:11:08778 days ago1644480668IN
0xb54536E0...0AeC334FF
0 ETH0.0045246249.32112854
Get Reward141771842022-02-10 8:10:11778 days ago1644480611IN
0xb54536E0...0AeC334FF
0 ETH0.0037498345.73859781
Withdraw141667552022-02-08 17:27:49779 days ago1644341269IN
0xb54536E0...0AeC334FF
0 ETH0.0079914182.80054518
Withdraw141654132022-02-08 12:25:10779 days ago1644323110IN
0xb54536E0...0AeC334FF
0 ETH0.0052321254.21099655
Get Reward141631282022-02-08 3:56:28780 days ago1644292588IN
0xb54536E0...0AeC334FF
0 ETH0.0072643388.60671412
Get Reward141605862022-02-07 18:31:42780 days ago1644258702IN
0xb54536E0...0AeC334FF
0 ETH0.01322126140.30096238
Withdraw141605822022-02-07 18:31:25780 days ago1644258685IN
0xb54536E0...0AeC334FF
0 ETH0.01569037161.23448021
Withdraw141584982022-02-07 10:50:26780 days ago1644231026IN
0xb54536E0...0AeC334FF
0 ETH0.0060469865.91576152
Get Reward141584962022-02-07 10:49:17780 days ago1644230957IN
0xb54536E0...0AeC334FF
0 ETH0.0043792753.41626415
Withdraw141549162022-02-06 21:24:07781 days ago1644182647IN
0xb54536E0...0AeC334FF
0 ETH0.0069799876.08606934
Get Reward141549032022-02-06 21:22:14781 days ago1644182534IN
0xb54536E0...0AeC334FF
0 ETH0.01064416107.42570549
Get Reward141536702022-02-06 16:40:52781 days ago1644165652IN
0xb54536E0...0AeC334FF
0 ETH0.0045979259.60878903
Withdraw141536662022-02-06 16:40:26781 days ago1644165626IN
0xb54536E0...0AeC334FF
0 ETH0.0082771568.89821143
Get Reward140488982022-01-21 12:26:22797 days ago1642767982IN
0xb54536E0...0AeC334FF
0 ETH0.0090134187.7798928
Withdraw140488882022-01-21 12:24:36797 days ago1642767876IN
0xb54536E0...0AeC334FF
0 ETH0.0125624104.61261362
Stake140442212022-01-20 18:54:10798 days ago1642704850IN
0xb54536E0...0AeC334FF
0 ETH0.01244205103.99230895
Stake140314722022-01-18 19:39:27800 days ago1642534767IN
0xb54536E0...0AeC334FF
0 ETH0.01783869149.09810972
Get Reward140313252022-01-18 19:03:44800 days ago1642532624IN
0xb54536E0...0AeC334FF
0 ETH0.0081909793.47124166
Get Reward140194632022-01-16 23:13:02802 days ago1642374782IN
0xb54536E0...0AeC334FF
0 ETH0.0101897497.29445708
Stake140075142022-01-15 2:55:03804 days ago1642215303IN
0xb54536E0...0AeC334FF
0 ETH0.01240413117.69413596
Get Reward140074902022-01-15 2:50:41804 days ago1642215041IN
0xb54536E0...0AeC334FF
0 ETH0.01319642128.4560665
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MultiRewards

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-06
*/

pragma solidity 0.5.17;


library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

contract Owned {
    address public owner;
    address public nominatedOwner;

    constructor(address _owner) public {
        require(_owner != address(0), "Owner address cannot be 0");
        owner = _owner;
        emit OwnerChanged(address(0), _owner);
    }

    function nominateNewOwner(address _owner) external onlyOwner {
        nominatedOwner = _owner;
        emit OwnerNominated(_owner);
    }

    function acceptOwnership() external {
        require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
        emit OwnerChanged(owner, nominatedOwner);
        owner = nominatedOwner;
        nominatedOwner = address(0);
    }

    modifier onlyOwner {
        _onlyOwner();
        _;
    }

    function _onlyOwner() private view {
        require(msg.sender == owner, "Only the contract owner may perform this action");
    }

    event OwnerNominated(address newOwner);
    event OwnerChanged(address oldOwner, address newOwner);
}

contract Pausable is Owned {
    uint public lastPauseTime;
    bool public paused;

    constructor() internal {
        // This contract is abstract, and thus cannot be instantiated directly
        require(owner != address(0), "Owner must be set");
        // Paused will be false, and lastPauseTime will be 0 upon initialisation
    }

    /**
     * @notice Change the paused state of the contract
     * @dev Only the contract owner may call this.
     */
    function setPaused(bool _paused) external onlyOwner {
        // Ensure we're actually changing the state before we do anything
        if (_paused == paused) {
            return;
        }

        // Set our paused state.
        paused = _paused;

        // If applicable, set the last pause time.
        if (paused) {
            lastPauseTime = now;
        }

        // Let everyone know that our pause state has changed.
        emit PauseChanged(paused);
    }

    event PauseChanged(bool isPaused);

    modifier notPaused {
        require(!paused, "This action cannot be performed while the contract is paused");
        _;
    }
}

contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () internal {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
    }
}


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

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

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

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

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

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

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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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-solidity/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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

contract MultiRewards is ReentrancyGuard, Pausable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    /* ========== STATE VARIABLES ========== */

    struct Reward {
        address rewardsDistributor;
        uint256 rewardsDuration;
        uint256 periodFinish;
        uint256 rewardRate;
        uint256 lastUpdateTime;
        uint256 rewardPerTokenStored;
    }
    IERC20 public stakingToken;
    mapping(address => Reward) public rewardData;
    address[] public rewardTokens;

    // user -> reward token -> amount
    mapping(address => mapping(address => uint256)) public userRewardPerTokenPaid;
    mapping(address => mapping(address => uint256)) public rewards;

    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;

    /* ========== CONSTRUCTOR ========== */

    constructor(
        address _owner,
        address _stakingToken
    ) public Owned(_owner) {
        stakingToken = IERC20(_stakingToken);
    }

    function addReward(
        address _rewardsToken,
        address _rewardsDistributor,
        uint256 _rewardsDuration
    )
        public
        onlyOwner
    {
        require(rewardData[_rewardsToken].rewardsDuration == 0);
        rewardTokens.push(_rewardsToken);
        rewardData[_rewardsToken].rewardsDistributor = _rewardsDistributor;
        rewardData[_rewardsToken].rewardsDuration = _rewardsDuration;
    }

    /* ========== VIEWS ========== */

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

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

    function lastTimeRewardApplicable(address _rewardsToken) public view returns (uint256) {
        return Math.min(block.timestamp, rewardData[_rewardsToken].periodFinish);
    }

    function rewardPerToken(address _rewardsToken) public view returns (uint256) {
        if (_totalSupply == 0) {
            return rewardData[_rewardsToken].rewardPerTokenStored;
        }
        return
            rewardData[_rewardsToken].rewardPerTokenStored.add(
                lastTimeRewardApplicable(_rewardsToken).sub(rewardData[_rewardsToken].lastUpdateTime).mul(rewardData[_rewardsToken].rewardRate).mul(1e18).div(_totalSupply)
            );
    }

    function earned(address account, address _rewardsToken) public view returns (uint256) {
        return _balances[account].mul(rewardPerToken(_rewardsToken).sub(userRewardPerTokenPaid[account][_rewardsToken])).div(1e18).add(rewards[account][_rewardsToken]);
    }

    function getRewardForDuration(address _rewardsToken) external view returns (uint256) {
        return rewardData[_rewardsToken].rewardRate.mul(rewardData[_rewardsToken].rewardsDuration);
    }

    /* ========== MUTATIVE FUNCTIONS ========== */

    function setRewardsDistributor(address _rewardsToken, address _rewardsDistributor) external onlyOwner {
        rewardData[_rewardsToken].rewardsDistributor = _rewardsDistributor;
    }

    function stake(uint256 amount) external nonReentrant notPaused updateReward(msg.sender) {
        require(amount > 0, "Cannot stake 0");
        _totalSupply = _totalSupply.add(amount);
        _balances[msg.sender] = _balances[msg.sender].add(amount);
        stakingToken.safeTransferFrom(msg.sender, address(this), amount);
        emit Staked(msg.sender, amount);
    }

    function withdraw(uint256 amount) public nonReentrant updateReward(msg.sender) {
        require(amount > 0, "Cannot withdraw 0");
        _totalSupply = _totalSupply.sub(amount);
        _balances[msg.sender] = _balances[msg.sender].sub(amount);
        stakingToken.safeTransfer(msg.sender, amount);
        emit Withdrawn(msg.sender, amount);
    }

    function getReward() public nonReentrant updateReward(msg.sender) {

        for (uint i; i < rewardTokens.length; i++) {
            address _rewardsToken = rewardTokens[i];
            uint256 reward = rewards[msg.sender][_rewardsToken];
            if (reward > 0) {
                rewards[msg.sender][_rewardsToken] = 0;
                IERC20(_rewardsToken).safeTransfer(msg.sender, reward);
                emit RewardPaid(msg.sender, _rewardsToken, reward);
            }
    }
    }

    function exit() external {
        withdraw(_balances[msg.sender]);
        getReward();
    }

    /* ========== RESTRICTED FUNCTIONS ========== */

    function notifyRewardAmount(address _rewardsToken, uint256 reward) external updateReward(address(0)) {
        require(rewardData[_rewardsToken].rewardsDistributor == msg.sender);
        // handle the transfer of reward tokens via `transferFrom` to reduce the number
        // of transactions required and ensure correctness of the reward amount
        IERC20(_rewardsToken).safeTransferFrom(msg.sender, address(this), reward);

        if (block.timestamp >= rewardData[_rewardsToken].periodFinish) {
            rewardData[_rewardsToken].rewardRate = reward.div(rewardData[_rewardsToken].rewardsDuration);
        } else {
            uint256 remaining = rewardData[_rewardsToken].periodFinish.sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardData[_rewardsToken].rewardRate);
            rewardData[_rewardsToken].rewardRate = reward.add(leftover).div(rewardData[_rewardsToken].rewardsDuration);
        }

        rewardData[_rewardsToken].lastUpdateTime = block.timestamp;
        rewardData[_rewardsToken].periodFinish = block.timestamp.add(rewardData[_rewardsToken].rewardsDuration);
        emit RewardAdded(reward);
    }

    // Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders
    function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner {
        require(tokenAddress != address(stakingToken), "Cannot withdraw staking token");
        require(rewardData[tokenAddress].lastUpdateTime == 0, "Cannot withdraw reward token");
        IERC20(tokenAddress).safeTransfer(owner, tokenAmount);
        emit Recovered(tokenAddress, tokenAmount);
    }

    function setRewardsDuration(address _rewardsToken, uint256 _rewardsDuration) external {
        require(
            block.timestamp > rewardData[_rewardsToken].periodFinish,
            "Reward period still active"
        );
        require(rewardData[_rewardsToken].rewardsDistributor == msg.sender);
        require(_rewardsDuration > 0, "Reward duration must be non-zero");
        rewardData[_rewardsToken].rewardsDuration = _rewardsDuration;
        emit RewardsDurationUpdated(_rewardsToken, rewardData[_rewardsToken].rewardsDuration);
    }

    /* ========== MODIFIERS ========== */

    modifier updateReward(address account) {
        for (uint i; i < rewardTokens.length; i++) {
            address token = rewardTokens[i];
            rewardData[token].rewardPerTokenStored = rewardPerToken(token);
            rewardData[token].lastUpdateTime = lastTimeRewardApplicable(token);
            if (account != address(0)) {
                rewards[account][token] = earned(account, token);
                userRewardPerTokenPaid[account][token] = rewardData[token].rewardPerTokenStored;
            }
        }
        _;
    }

    /* ========== EVENTS ========== */

    event RewardAdded(uint256 reward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, address indexed rewardsToken, uint256 reward);
    event RewardsDurationUpdated(address token, uint256 newDuration);
    event Recovered(address token, uint256 amount);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"rewardsToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"RewardsDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_rewardsDistributor","type":"address"},{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"addReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardData","outputs":[{"internalType":"address","name":"rewardsDistributor","type":"address"},{"internalType":"uint256","name":"rewardsDuration","type":"uint256"},{"internalType":"uint256","name":"periodFinish","type":"uint256"},{"internalType":"uint256","name":"rewardRate","type":"uint256"},{"internalType":"uint256","name":"lastUpdateTime","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_rewardsDistributor","type":"address"}],"name":"setRewardsDistributor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"setRewardsDuration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051611db9380380611db98339818101604052604081101561003357600080fd5b5080516020909101516001600055816001600160a01b03811661009d576040805162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f74206265203000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040805160008152602081019290925280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a1506001546001600160a01b0316610149576040805162461bcd60e51b815260206004820152601160248201527013dddb995c881b5d5cdd081899481cd95d607a1b604482015290519081900360640190fd5b600480546001600160a01b0390921661010002610100600160a81b031990921691909117905550611c3a8061017f6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a694fc3a11610097578063d0ed26ae11610071578063d0ed26ae146104b1578063e70b9e27146104e7578063e9fad8ee14610515578063f12297771461051d576101a9565b8063a694fc3a14610442578063b66503cf1461045f578063bcd110141461048b576101a9565b80637bb7bed1116100d35780637bb7bed1146103e95780638980f11f146104065780638da5cb5b1461043257806391b4ded91461043a576101a9565b806370a08231146103b357806372f702f3146103d957806379ba5097146103e1576101a9565b80633d18b9121161016657806353a47bb71161014057806353a47bb71461031f5780635c975abb14610343578063638634ee1461035f5780637035ab9814610385576101a9565b80633d18b912146102865780633f695b451461028e57806348e5d9f8146102bc576101a9565b80631627540c146101ae57806316c38b3c146101d657806318160ddd146101f5578063211dc32d1461020f5780632378bea61461023d5780632e1a7d4d14610269575b600080fd5b6101d4600480360360208110156101c457600080fd5b50356001600160a01b0316610543565b005b6101d4600480360360208110156101ec57600080fd5b5035151561059f565b6101fd610619565b60408051918252519081900360200190f35b6101fd6004803603604081101561022557600080fd5b506001600160a01b038135811691602001351661061f565b6101d46004803603604081101561025357600080fd5b506001600160a01b0381351690602001356106d2565b6101d46004803603602081101561027f57600080fd5b5035610818565b6101d4610a52565b6101d4600480360360408110156102a457600080fd5b506001600160a01b0381358116916020013516610c74565b6102e2600480360360208110156102d257600080fd5b50356001600160a01b0316610caa565b604080516001600160a01b0390971687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b610327610ce9565b604080516001600160a01b039092168252519081900360200190f35b61034b610cf8565b604080519115158252519081900360200190f35b6101fd6004803603602081101561037557600080fd5b50356001600160a01b0316610d01565b6101fd6004803603604081101561039b57600080fd5b506001600160a01b0381358116916020013516610d30565b6101fd600480360360208110156103c957600080fd5b50356001600160a01b0316610d4d565b610327610d68565b6101d4610d7c565b610327600480360360208110156103ff57600080fd5b5035610e38565b6101d46004803603604081101561041c57600080fd5b506001600160a01b038135169060200135610e5f565b610327610fa5565b6101fd610fb4565b6101d46004803603602081101561045857600080fd5b5035610fba565b6101d46004803603604081101561047557600080fd5b506001600160a01b038135169060200135611231565b6101fd600480360360208110156104a157600080fd5b50356001600160a01b031661150b565b6101d4600480360360608110156104c757600080fd5b506001600160a01b0381358116916020810135909116906040013561153d565b6101fd600480360360408110156104fd57600080fd5b506001600160a01b03813581169160200135166115d9565b6101d46115f6565b6101fd6004803603602081101561053357600080fd5b50356001600160a01b0316611619565b61054b6116cc565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b6105a76116cc565b60045460ff16151581151514156105bd57610616565b6004805460ff1916821515179081905560ff16156105da57426003555b6004546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b60095490565b6001600160a01b0380831660008181526008602090815260408083209486168084529482528083205493835260078252808320948352939052918220546106c991906106bd90670de0b6b3a7640000906106b19061068c9061068089611619565b9063ffffffff61171516565b6001600160a01b0389166000908152600a60205260409020549063ffffffff61177216565b9063ffffffff6117cb16565b9063ffffffff61183516565b90505b92915050565b6001600160a01b0382166000908152600560205260409020600201544211610741576040805162461bcd60e51b815260206004820152601a60248201527f52657761726420706572696f64207374696c6c20616374697665000000000000604482015290519081900360640190fd5b6001600160a01b0382811660009081526005602052604090205416331461076757600080fd5b600081116107bc576040805162461bcd60e51b815260206004820181905260248201527f526577617264206475726174696f6e206d757374206265206e6f6e2d7a65726f604482015290519081900360640190fd5b6001600160a01b0382166000818152600560209081526040918290206001018490558151928352820183905280517fad2f86b01ed93b4b3a150d448c61a4f5d8d38075d3c0c64cc0a26fd6e1f495459281900390910190a15050565b600080546001018082559033905b60065481101561090b5760006006828154811061083f57fe5b6000918252602090912001546001600160a01b0316905061085f81611619565b6001600160a01b0382166000908152600560208190526040909120015561088581610d01565b6001600160a01b03808316600090815260056020526040902060040191909155831615610902576108b6838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b50600101610826565b5060008311610955576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b600954610968908463ffffffff61171516565b600955336000908152600a602052604090205461098b908463ffffffff61171516565b336000818152600a60205260409020919091556004546109c1916101009091046001600160a01b0316908563ffffffff61188f16565b60408051848152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2506000548114610a4e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b5050565b600080546001018082559033905b600654811015610b4557600060068281548110610a7957fe5b6000918252602090912001546001600160a01b03169050610a9981611619565b6001600160a01b03821660009081526005602081905260409091200155610abf81610d01565b6001600160a01b03808316600090815260056020526040902060040191909155831615610b3c57610af0838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b50600101610a60565b5060005b600654811015610c1c57600060068281548110610b6257fe5b60009182526020808320909101543383526008825260408084206001600160a01b03909216808552919092529120549091508015610c12573360008181526008602090815260408083206001600160a01b0387168085529252822091909155610bd1918363ffffffff61188f16565b6040805182815290516001600160a01b0384169133917f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9181900360200190a35b5050600101610b49565b50506000548114610616576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b610c7c6116cc565b6001600160a01b03918216600090815260056020526040902080546001600160a01b03191691909216179055565b60056020819052600091825260409091208054600182015460028301546003840154600485015494909501546001600160a01b03909316949193909286565b6002546001600160a01b031681565b60045460ff1681565b6001600160a01b038116600090815260056020526040812060020154610d289042906118e6565b90505b919050565b600760209081526000928352604080842090915290825290205481565b6001600160a01b03166000908152600a602052604090205490565b60045461010090046001600160a01b031681565b6002546001600160a01b03163314610dc55760405162461bcd60e51b8152600401808060200182810382526035815260200180611b1b6035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60068181548110610e4557fe5b6000918252602090912001546001600160a01b0316905081565b610e676116cc565b6004546001600160a01b03838116610100909204161415610ecf576040805162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74207769746864726177207374616b696e6720746f6b656e000000604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090206004015415610f3d576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742077697468647261772072657761726420746f6b656e00000000604482015290519081900360640190fd5b600154610f5d906001600160a01b0384811691168363ffffffff61188f16565b604080516001600160a01b03841681526020810183905281517f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa28929181900390910190a15050565b6001546001600160a01b031681565b60035481565b600080546001019081905560045460ff16156110075760405162461bcd60e51b815260040180806020018281038252603c815260200180611ba0603c913960400191505060405180910390fd5b3360005b6006548110156110f05760006006828154811061102457fe5b6000918252602090912001546001600160a01b0316905061104481611619565b6001600160a01b0382166000908152600560208190526040909120015561106a81610d01565b6001600160a01b038083166000908152600560205260409020600401919091558316156110e75761109b838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b5060010161100b565b5060008311611137576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b60095461114a908463ffffffff61183516565b600955336000908152600a602052604090205461116d908463ffffffff61183516565b336000818152600a60205260409020919091556004546111a4916101009091046001600160a01b031690308663ffffffff6118fc16565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a2506000548114610a4e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805b60065481101561131a5760006006828154811061124e57fe5b6000918252602090912001546001600160a01b0316905061126e81611619565b6001600160a01b0382166000908152600560208190526040909120015561129481610d01565b6001600160a01b03808316600090815260056020526040902060040191909155831615611311576112c5838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b50600101611235565b506001600160a01b0383811660009081526005602052604090205416331461134157600080fd5b61135c6001600160a01b03841633308563ffffffff6118fc16565b6001600160a01b03831660009081526005602052604090206002015442106113cc576001600160a01b0383166000908152600560205260409020600101546113ab90839063ffffffff6117cb16565b6001600160a01b03841660009081526005602052604090206003015561147b565b6001600160a01b0383166000908152600560205260408120600201546113f8904263ffffffff61171516565b6001600160a01b0385166000908152600560205260408120600301549192509061142990839063ffffffff61177216565b6001600160a01b03861660009081526005602052604090206001015490915061145c906106b1868463ffffffff61183516565b6001600160a01b03861660009081526005602052604090206003015550505b6001600160a01b038316600090815260056020526040902042600482018190556001909101546114b1919063ffffffff61183516565b6001600160a01b03841660009081526005602090815260409182902060020192909255805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d929181900390910190a1505050565b6001600160a01b03811660009081526005602052604081206001810154600390910154610d289163ffffffff61177216565b6115456116cc565b6001600160a01b0383166000908152600560205260409020600101541561156b57600080fd5b6006805460018181019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b039586166001600160a01b031991821681179092556000918252600560205260409091208054949095169316929092178355910155565b600860209081526000928352604080842090915290825290205481565b336000908152600a602052604090205461160f90610818565b611617610a52565b565b60006009546000141561164957506001600160a01b03811660009081526005602081905260409091200154610d2b565b6009546001600160a01b03831660009081526005602052604090206003810154600490910154610d28926116a39290916106b191670de0b6b3a764000091611697919082906106808b610d01565b9063ffffffff61177216565b6001600160a01b038416600090815260056020819052604090912001549063ffffffff61183516565b6001546001600160a01b031633146116175760405162461bcd60e51b815260040180806020018281038252602f815260200180611b50602f913960400191505060405180910390fd5b60008282111561176c576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611781575060006106cc565b8282028284828161178e57fe5b04146106c95760405162461bcd60e51b8152600401808060200182810382526021815260200180611b7f6021913960400191505060405180910390fd5b6000808211611821576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b600082848161182c57fe5b04949350505050565b6000828201838110156106c9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526118e190849061195c565b505050565b60008183106118f557816106c9565b5090919050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261195690859061195c565b50505050565b61196e826001600160a01b0316611b14565b6119bf576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106119fd5780518252601f1990920191602091820191016119de565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611a5f576040519150601f19603f3d011682016040523d82523d6000602084013e611a64565b606091505b509150915081611abb576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561195657808060200190516020811015611ad757600080fd5b50516119565760405162461bcd60e51b815260040180806020018281038252602a815260200180611bdc602a913960400191505060405180910390fd5b3b15159056fe596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869704f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820731cf4abf8d8a8130d07577cfe68335a7251c496d352327e8a55c8dad03177df64736f6c63430005110032000000000000000000000000d418c5d0c4a3d87a6c555b7aa41f13ef87485ec60000000000000000000000004ce3687fed17e19324f23e305593ab13bbd55c4d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a694fc3a11610097578063d0ed26ae11610071578063d0ed26ae146104b1578063e70b9e27146104e7578063e9fad8ee14610515578063f12297771461051d576101a9565b8063a694fc3a14610442578063b66503cf1461045f578063bcd110141461048b576101a9565b80637bb7bed1116100d35780637bb7bed1146103e95780638980f11f146104065780638da5cb5b1461043257806391b4ded91461043a576101a9565b806370a08231146103b357806372f702f3146103d957806379ba5097146103e1576101a9565b80633d18b9121161016657806353a47bb71161014057806353a47bb71461031f5780635c975abb14610343578063638634ee1461035f5780637035ab9814610385576101a9565b80633d18b912146102865780633f695b451461028e57806348e5d9f8146102bc576101a9565b80631627540c146101ae57806316c38b3c146101d657806318160ddd146101f5578063211dc32d1461020f5780632378bea61461023d5780632e1a7d4d14610269575b600080fd5b6101d4600480360360208110156101c457600080fd5b50356001600160a01b0316610543565b005b6101d4600480360360208110156101ec57600080fd5b5035151561059f565b6101fd610619565b60408051918252519081900360200190f35b6101fd6004803603604081101561022557600080fd5b506001600160a01b038135811691602001351661061f565b6101d46004803603604081101561025357600080fd5b506001600160a01b0381351690602001356106d2565b6101d46004803603602081101561027f57600080fd5b5035610818565b6101d4610a52565b6101d4600480360360408110156102a457600080fd5b506001600160a01b0381358116916020013516610c74565b6102e2600480360360208110156102d257600080fd5b50356001600160a01b0316610caa565b604080516001600160a01b0390971687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b610327610ce9565b604080516001600160a01b039092168252519081900360200190f35b61034b610cf8565b604080519115158252519081900360200190f35b6101fd6004803603602081101561037557600080fd5b50356001600160a01b0316610d01565b6101fd6004803603604081101561039b57600080fd5b506001600160a01b0381358116916020013516610d30565b6101fd600480360360208110156103c957600080fd5b50356001600160a01b0316610d4d565b610327610d68565b6101d4610d7c565b610327600480360360208110156103ff57600080fd5b5035610e38565b6101d46004803603604081101561041c57600080fd5b506001600160a01b038135169060200135610e5f565b610327610fa5565b6101fd610fb4565b6101d46004803603602081101561045857600080fd5b5035610fba565b6101d46004803603604081101561047557600080fd5b506001600160a01b038135169060200135611231565b6101fd600480360360208110156104a157600080fd5b50356001600160a01b031661150b565b6101d4600480360360608110156104c757600080fd5b506001600160a01b0381358116916020810135909116906040013561153d565b6101fd600480360360408110156104fd57600080fd5b506001600160a01b03813581169160200135166115d9565b6101d46115f6565b6101fd6004803603602081101561053357600080fd5b50356001600160a01b0316611619565b61054b6116cc565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b6105a76116cc565b60045460ff16151581151514156105bd57610616565b6004805460ff1916821515179081905560ff16156105da57426003555b6004546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b60095490565b6001600160a01b0380831660008181526008602090815260408083209486168084529482528083205493835260078252808320948352939052918220546106c991906106bd90670de0b6b3a7640000906106b19061068c9061068089611619565b9063ffffffff61171516565b6001600160a01b0389166000908152600a60205260409020549063ffffffff61177216565b9063ffffffff6117cb16565b9063ffffffff61183516565b90505b92915050565b6001600160a01b0382166000908152600560205260409020600201544211610741576040805162461bcd60e51b815260206004820152601a60248201527f52657761726420706572696f64207374696c6c20616374697665000000000000604482015290519081900360640190fd5b6001600160a01b0382811660009081526005602052604090205416331461076757600080fd5b600081116107bc576040805162461bcd60e51b815260206004820181905260248201527f526577617264206475726174696f6e206d757374206265206e6f6e2d7a65726f604482015290519081900360640190fd5b6001600160a01b0382166000818152600560209081526040918290206001018490558151928352820183905280517fad2f86b01ed93b4b3a150d448c61a4f5d8d38075d3c0c64cc0a26fd6e1f495459281900390910190a15050565b600080546001018082559033905b60065481101561090b5760006006828154811061083f57fe5b6000918252602090912001546001600160a01b0316905061085f81611619565b6001600160a01b0382166000908152600560208190526040909120015561088581610d01565b6001600160a01b03808316600090815260056020526040902060040191909155831615610902576108b6838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b50600101610826565b5060008311610955576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b600954610968908463ffffffff61171516565b600955336000908152600a602052604090205461098b908463ffffffff61171516565b336000818152600a60205260409020919091556004546109c1916101009091046001600160a01b0316908563ffffffff61188f16565b60408051848152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2506000548114610a4e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b5050565b600080546001018082559033905b600654811015610b4557600060068281548110610a7957fe5b6000918252602090912001546001600160a01b03169050610a9981611619565b6001600160a01b03821660009081526005602081905260409091200155610abf81610d01565b6001600160a01b03808316600090815260056020526040902060040191909155831615610b3c57610af0838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b50600101610a60565b5060005b600654811015610c1c57600060068281548110610b6257fe5b60009182526020808320909101543383526008825260408084206001600160a01b03909216808552919092529120549091508015610c12573360008181526008602090815260408083206001600160a01b0387168085529252822091909155610bd1918363ffffffff61188f16565b6040805182815290516001600160a01b0384169133917f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9181900360200190a35b5050600101610b49565b50506000548114610616576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b610c7c6116cc565b6001600160a01b03918216600090815260056020526040902080546001600160a01b03191691909216179055565b60056020819052600091825260409091208054600182015460028301546003840154600485015494909501546001600160a01b03909316949193909286565b6002546001600160a01b031681565b60045460ff1681565b6001600160a01b038116600090815260056020526040812060020154610d289042906118e6565b90505b919050565b600760209081526000928352604080842090915290825290205481565b6001600160a01b03166000908152600a602052604090205490565b60045461010090046001600160a01b031681565b6002546001600160a01b03163314610dc55760405162461bcd60e51b8152600401808060200182810382526035815260200180611b1b6035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60068181548110610e4557fe5b6000918252602090912001546001600160a01b0316905081565b610e676116cc565b6004546001600160a01b03838116610100909204161415610ecf576040805162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74207769746864726177207374616b696e6720746f6b656e000000604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090206004015415610f3d576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742077697468647261772072657761726420746f6b656e00000000604482015290519081900360640190fd5b600154610f5d906001600160a01b0384811691168363ffffffff61188f16565b604080516001600160a01b03841681526020810183905281517f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa28929181900390910190a15050565b6001546001600160a01b031681565b60035481565b600080546001019081905560045460ff16156110075760405162461bcd60e51b815260040180806020018281038252603c815260200180611ba0603c913960400191505060405180910390fd5b3360005b6006548110156110f05760006006828154811061102457fe5b6000918252602090912001546001600160a01b0316905061104481611619565b6001600160a01b0382166000908152600560208190526040909120015561106a81610d01565b6001600160a01b038083166000908152600560205260409020600401919091558316156110e75761109b838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b5060010161100b565b5060008311611137576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b60095461114a908463ffffffff61183516565b600955336000908152600a602052604090205461116d908463ffffffff61183516565b336000818152600a60205260409020919091556004546111a4916101009091046001600160a01b031690308663ffffffff6118fc16565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a2506000548114610a4e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805b60065481101561131a5760006006828154811061124e57fe5b6000918252602090912001546001600160a01b0316905061126e81611619565b6001600160a01b0382166000908152600560208190526040909120015561129481610d01565b6001600160a01b03808316600090815260056020526040902060040191909155831615611311576112c5838261061f565b6001600160a01b03808516600081815260086020908152604080832094871680845294825280832095909555600580825285832001549282526007815284822093825292909252919020555b50600101611235565b506001600160a01b0383811660009081526005602052604090205416331461134157600080fd5b61135c6001600160a01b03841633308563ffffffff6118fc16565b6001600160a01b03831660009081526005602052604090206002015442106113cc576001600160a01b0383166000908152600560205260409020600101546113ab90839063ffffffff6117cb16565b6001600160a01b03841660009081526005602052604090206003015561147b565b6001600160a01b0383166000908152600560205260408120600201546113f8904263ffffffff61171516565b6001600160a01b0385166000908152600560205260408120600301549192509061142990839063ffffffff61177216565b6001600160a01b03861660009081526005602052604090206001015490915061145c906106b1868463ffffffff61183516565b6001600160a01b03861660009081526005602052604090206003015550505b6001600160a01b038316600090815260056020526040902042600482018190556001909101546114b1919063ffffffff61183516565b6001600160a01b03841660009081526005602090815260409182902060020192909255805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d929181900390910190a1505050565b6001600160a01b03811660009081526005602052604081206001810154600390910154610d289163ffffffff61177216565b6115456116cc565b6001600160a01b0383166000908152600560205260409020600101541561156b57600080fd5b6006805460018181019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b039586166001600160a01b031991821681179092556000918252600560205260409091208054949095169316929092178355910155565b600860209081526000928352604080842090915290825290205481565b336000908152600a602052604090205461160f90610818565b611617610a52565b565b60006009546000141561164957506001600160a01b03811660009081526005602081905260409091200154610d2b565b6009546001600160a01b03831660009081526005602052604090206003810154600490910154610d28926116a39290916106b191670de0b6b3a764000091611697919082906106808b610d01565b9063ffffffff61177216565b6001600160a01b038416600090815260056020819052604090912001549063ffffffff61183516565b6001546001600160a01b031633146116175760405162461bcd60e51b815260040180806020018281038252602f815260200180611b50602f913960400191505060405180910390fd5b60008282111561176c576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611781575060006106cc565b8282028284828161178e57fe5b04146106c95760405162461bcd60e51b8152600401808060200182810382526021815260200180611b7f6021913960400191505060405180910390fd5b6000808211611821576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b600082848161182c57fe5b04949350505050565b6000828201838110156106c9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526118e190849061195c565b505050565b60008183106118f557816106c9565b5090919050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261195690859061195c565b50505050565b61196e826001600160a01b0316611b14565b6119bf576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106119fd5780518252601f1990920191602091820191016119de565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611a5f576040519150601f19603f3d011682016040523d82523d6000602084013e611a64565b606091505b509150915081611abb576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561195657808060200190516020811015611ad757600080fd5b50516119565760405162461bcd60e51b815260040180806020018281038252602a815260200180611bdc602a913960400191505060405180910390fd5b3b15159056fe596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869704f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820731cf4abf8d8a8130d07577cfe68335a7251c496d352327e8a55c8dad03177df64736f6c63430005110032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000d418c5d0c4a3d87a6c555b7aa41f13ef87485ec60000000000000000000000004ce3687fed17e19324f23e305593ab13bbd55c4d

-----Decoded View---------------
Arg [0] : _owner (address): 0xD418c5d0c4a3D87a6c555B7aA41f13EF87485Ec6
Arg [1] : _stakingToken (address): 0x4Ce3687fEd17e19324F23e305593Ab13bBd55c4D

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d418c5d0c4a3d87a6c555b7aa41f13ef87485ec6
Arg [1] : 0000000000000000000000004ce3687fed17e19324f23e305593ab13bbd55c4d


Deployed Bytecode Sourcemap

13606:7804:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13606:7804:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4524:141;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4524:141:0;-1:-1:-1;;;;;4524:141:0;;:::i;:::-;;5750:488;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5750:488:0;;;;:::i;15111:93::-;;;:::i;:::-;;;;;;;;;;;;;;;;15994:264;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15994:264:0;;;;;;;;;;:::i;19830:558::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19830:558:0;;;;;;;;:::i;17104:357::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17104:357:0;;:::i;17469:502::-;;;:::i;16522:187::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16522:187:0;;;;;;;;;;:::i;14047:44::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14047:44:0;-1:-1:-1;;;;;14047:44:0;;:::i;:::-;;;;-1:-1:-1;;;;;14047:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4293:29;;;:::i;:::-;;;;-1:-1:-1;;;;;4293:29:0;;;;;;;;;;;;;;5336:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;15332:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15332:178:0;-1:-1:-1;;;;;15332:178:0;;:::i;14175:77::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14175:77:0;;;;;;;;;;:::i;15212:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15212:112:0;-1:-1:-1;;;;;15212:112:0;;:::i;14014:26::-;;;:::i;4673:271::-;;;:::i;14098:29::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14098:29:0;;:::i;19428:394::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19428:394:0;;;;;;;;:::i;4266:20::-;;;:::i;5304:25::-;;;:::i;16717:379::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16717:379:0;;:::i;18140:1173::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18140:1173:0;;;;;;;;:::i;16266:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16266:194:0;-1:-1:-1;;;;;16266:194:0;;:::i;14626:436::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14626:436:0;;;;;;;;;;;;;;;;;:::i;14259:62::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14259:62:0;;;;;;;;;;:::i;17979:97::-;;;:::i;15518:468::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15518:468:0;-1:-1:-1;;;;;15518:468:0;;:::i;4524:141::-;4982:12;:10;:12::i;:::-;4596:14;:23;;-1:-1:-1;;;;;4596:23:0;;-1:-1:-1;;;;;;4596:23:0;;;;;;;;4635:22;;;;;;;;;;;;;;;;4524:141;:::o;5750:488::-;4982:12;:10;:12::i;:::-;5903:6;;;;5892:17;;;;;;5888:56;;;5926:7;;5888:56;5990:6;:16;;-1:-1:-1;;5990:16:0;;;;;;;;;;6075:6;6071:58;;;6114:3;6098:13;:19;6071:58;6223:6;;6210:20;;;6223:6;;;;6210:20;;;;;;;;;;;;;;5005:1;5750:488;:::o;15111:93::-;15184:12;;15111:93;:::o;15994:264::-;-1:-1:-1;;;;;16218:16:0;;;16071:7;16218:16;;;:7;:16;;;;;;;;:31;;;;;;;;;;;;;16155;;;:22;:31;;;;;:46;;;;;;;;;;16098:152;;16218:31;16098:115;;16208:4;;16098:105;;16121:81;;:29;16235:13;16121:14;:29::i;:::-;:33;:81;:33;:81;:::i;:::-;-1:-1:-1;;;;;16098:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105;:::i;:::-;:109;:115;:109;:115;:::i;:::-;:119;:152;:119;:152;:::i;:::-;16091:159;;15994:264;;;;;:::o;19830:558::-;-1:-1:-1;;;;;19967:25:0;;;;;;:10;:25;;;;;:38;;;19949:15;:56;19927:132;;;;;-1:-1:-1;;;19927:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20078:25:0;;;;;;;:10;:25;;;;;:44;;20126:10;20078:58;20070:67;;;;;;20175:1;20156:16;:20;20148:65;;;;;-1:-1:-1;;;20148:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20224:25:0;;;;;;:10;:25;;;;;;;;;:41;;:60;;;20300:80;;;;;;;;;;;;;;;;;;;;;;19830:558;;:::o;17104:357::-;7188:13;:18;;7205:1;7188:18;;;;;17171:10;;20491:481;20508:12;:19;20504:23;;20491:481;;;20549:13;20565:12;20578:1;20565:15;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20565:15:0;;-1:-1:-1;20636:21:0;20565:15;20636:14;:21::i;:::-;-1:-1:-1;;;;;20595:17:0;;;;;;:10;:17;;;;;;;;:38;:62;20707:31;20606:5;20707:24;:31::i;:::-;-1:-1:-1;;;;;20672:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;20757:21;;;20753:208;;20825:22;20832:7;20841:5;20825:6;:22::i;:::-;-1:-1:-1;;;;;20799:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;20907:10;:17;;;;;;:38;;20866:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;20753:208;-1:-1:-1;20529:3:0;;20491:481;;;;17211:1;17202:6;:10;17194:40;;;;;-1:-1:-1;;;17194:40:0;;;;;;;;;;;;-1:-1:-1;;;17194:40:0;;;;;;;;;;;;;;;17260:12;;:24;;17277:6;17260:24;:16;:24;:::i;:::-;17245:12;:39;17329:10;17319:21;;;;:9;:21;;;;;;:33;;17345:6;17319:33;:25;:33;:::i;:::-;17305:10;17295:21;;;;:9;:21;;;;;:57;;;;17363:12;;:45;;:12;;;;-1:-1:-1;;;;;17363:12:0;;17401:6;17363:45;:25;:45;:::i;:::-;17424:29;;;;;;;;17434:10;;17424:29;;;;;;;;;;7264:1;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17104:357;;:::o;17469:502::-;7188:13;:18;;7205:1;7188:18;;;;;17523:10;;20491:481;20508:12;:19;20504:23;;20491:481;;;20549:13;20565:12;20578:1;20565:15;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20565:15:0;;-1:-1:-1;20636:21:0;20565:15;20636:14;:21::i;:::-;-1:-1:-1;;;;;20595:17:0;;;;;;:10;:17;;;;;;;;:38;:62;20707:31;20606:5;20707:24;:31::i;:::-;-1:-1:-1;;;;;20672:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;20757:21;;;20753:208;;20825:22;20832:7;20841:5;20825:6;:22::i;:::-;-1:-1:-1;;;;;20799:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;20907:10;:17;;;;;;:38;;20866:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;20753:208;-1:-1:-1;20529:3:0;;20491:481;;;;17553:6;17548:416;17565:12;:19;17561:23;;17548:416;;;17606:21;17630:12;17643:1;17630:15;;;;;;;;;;;;;;;;;;;;17685:10;17677:19;;:7;:19;;;;;;-1:-1:-1;;;;;17630:15:0;;;17677:34;;;;;;;;;;17630:15;;-1:-1:-1;17730:10:0;;17726:231;;17769:10;17798:1;17761:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;17761:34:0;;;;;;;;;:38;;;;17818:54;;17865:6;17818:54;:34;:54;:::i;:::-;17896:45;;;;;;;;-1:-1:-1;;;;;17896:45:0;;;17907:10;;17896:45;;;;;;;;;17726:231;-1:-1:-1;;17586:3:0;;17548:416;;;;7264:1;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16522:187;4982:12;:10;:12::i;:::-;-1:-1:-1;;;;;16635:25:0;;;;;;;:10;:25;;;;;:66;;-1:-1:-1;;;;;;16635:66:0;;;;;;;;16522:187::o;14047:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14047:44:0;;;;;;;;;:::o;4293:29::-;;;-1:-1:-1;;;;;4293:29:0;;:::o;5336:18::-;;;;;;:::o;15332:178::-;-1:-1:-1;;;;;15463:25:0;;15410:7;15463:25;;;:10;:25;;;;;:38;;;15437:65;;15446:15;;15437:8;:65::i;:::-;15430:72;;15332:178;;;;:::o;14175:77::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;15212:112::-;-1:-1:-1;;;;;15298:18:0;15271:7;15298:18;;;:9;:18;;;;;;;15212:112::o;14014:26::-;;;;;;-1:-1:-1;;;;;14014:26:0;;:::o;4673:271::-;4742:14;;-1:-1:-1;;;;;4742:14:0;4728:10;:28;4720:94;;;;-1:-1:-1;;;4720:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4843:5;;4850:14;;4830:35;;;-1:-1:-1;;;;;4843:5:0;;;4830:35;;4850:14;;;;4830:35;;;;;;;;;;;;;;;;4884:14;;;;4876:22;;-1:-1:-1;;;;;;4876:22:0;;;-1:-1:-1;;;;;4884:14:0;;4876:22;;;;4909:27;;;4673:271::o;14098:29::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14098:29:0;;-1:-1:-1;14098:29:0;:::o;19428:394::-;4982:12;:10;:12::i;:::-;19555;;-1:-1:-1;;;;;19531:37:0;;;19555:12;;;;;19531:37;;19523:79;;;;;-1:-1:-1;;;19523:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19621:24:0;;;;;;:10;:24;;;;;:39;;;:44;19613:85;;;;;-1:-1:-1;;;19613:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19743:5;;19709:53;;-1:-1:-1;;;;;19709:33:0;;;;19743:5;19750:11;19709:53;:33;:53;:::i;:::-;19778:36;;;-1:-1:-1;;;;;19778:36:0;;;;;;;;;;;;;;;;;;;;;;;19428:394;;:::o;4266:20::-;;;-1:-1:-1;;;;;4266:20:0;;:::o;5304:25::-;;;;:::o;16717:379::-;7188:13;:18;;7205:1;7188:18;;;;;6327:6;;;;6326:7;6318:80;;;;-1:-1:-1;;;6318:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16793:10;20496:6;20491:481;20508:12;:19;20504:23;;20491:481;;;20549:13;20565:12;20578:1;20565:15;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20565:15:0;;-1:-1:-1;20636:21:0;20565:15;20636:14;:21::i;:::-;-1:-1:-1;;;;;20595:17:0;;;;;;:10;:17;;;;;;;;:38;:62;20707:31;20606:5;20707:24;:31::i;:::-;-1:-1:-1;;;;;20672:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;20757:21;;;20753:208;;20825:22;20832:7;20841:5;20825:6;:22::i;:::-;-1:-1:-1;;;;;20799:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;20907:10;:17;;;;;;:38;;20866:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;20753:208;-1:-1:-1;20529:3:0;;20491:481;;;;16833:1;16824:6;:10;16816:37;;;;;-1:-1:-1;;;16816:37:0;;;;;;;;;;;;-1:-1:-1;;;16816:37:0;;;;;;;;;;;;;;;16879:12;;:24;;16896:6;16879:24;:16;:24;:::i;:::-;16864:12;:39;16948:10;16938:21;;;;:9;:21;;;;;;:33;;16964:6;16938:33;:25;:33;:::i;:::-;16924:10;16914:21;;;;:9;:21;;;;;:57;;;;16982:12;;:64;;:12;;;;-1:-1:-1;;;;;16982:12:0;;17032:4;17039:6;16982:64;:29;:64;:::i;:::-;17062:26;;;;;;;;17069:10;;17062:26;;;;;;;;;;6409:1;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;18140:1173;18237:1;20496:6;20491:481;20508:12;:19;20504:23;;20491:481;;;20549:13;20565:12;20578:1;20565:15;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20565:15:0;;-1:-1:-1;20636:21:0;20565:15;20636:14;:21::i;:::-;-1:-1:-1;;;;;20595:17:0;;;;;;:10;:17;;;;;;;;:38;:62;20707:31;20606:5;20707:24;:31::i;:::-;-1:-1:-1;;;;;20672:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;20757:21;;;20753:208;;20825:22;20832:7;20841:5;20825:6;:22::i;:::-;-1:-1:-1;;;;;20799:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;20907:10;:17;;;;;;:38;;20866:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;20753:208;-1:-1:-1;20529:3:0;;20491:481;;;-1:-1:-1;;;;;;18260:25:0;;;;;;;:10;:25;;;;;:44;;18308:10;18260:58;18252:67;;;;;;18500:73;-1:-1:-1;;;;;18500:38:0;;18539:10;18559:4;18566:6;18500:73;:38;:73;:::i;:::-;-1:-1:-1;;;;;18609:25:0;;;;;;:10;:25;;;;;:38;;;18590:15;:57;18586:500;;-1:-1:-1;;;;;18714:25:0;;;;;;:10;:25;;;;;:41;;;18703:53;;:6;;:53;:10;:53;:::i;:::-;-1:-1:-1;;;;;18664:25:0;;;;;;:10;:25;;;;;:36;;:92;18586:500;;;-1:-1:-1;;;;;18809:25:0;;18789:17;18809:25;;;:10;:25;;;;;:38;;;:59;;18852:15;18809:59;:42;:59;:::i;:::-;-1:-1:-1;;;;;18916:25:0;;18883:16;18916:25;;;:10;:25;;;;;:36;;;18789:79;;-1:-1:-1;18883:16:0;18902:51;;18789:79;;18902:51;:13;:51;:::i;:::-;-1:-1:-1;;;;;19032:25:0;;;;;;:10;:25;;;;;:41;;;18883:70;;-1:-1:-1;19007:67:0;;:20;:6;18883:70;19007:20;:10;:20;:::i;:67::-;-1:-1:-1;;;;;18968:25:0;;;;;;:10;:25;;;;;:36;;:106;-1:-1:-1;;18586:500:0;-1:-1:-1;;;;;19098:25:0;;;;;;:10;:25;;;;;19141:15;19098:40;;;:58;;;19228:41;;;;;19208:62;;19141:15;19208:62;:19;:62;:::i;:::-;-1:-1:-1;;;;;19167:25:0;;;;;;:10;:25;;;;;;;;;:38;;:103;;;;19286:19;;;;;;;;;;;;;;;;;;18140:1173;;;:::o;16266:194::-;-1:-1:-1;;;;;16410:25:0;;16342:7;16410:25;;;:10;:25;;;;;:41;;;;16369:36;;;;;:83;;;:40;:83;:::i;14626:436::-;4982:12;:10;:12::i;:::-;-1:-1:-1;;;;;14816:25:0;;;;;;:10;:25;;;;;:41;;;:46;14808:55;;;;;;14874:12;27:10:-1;;39:1;23:18;;;45:23;;;14874:32:0;;;;-1:-1:-1;;;;;14874:32:0;;;-1:-1:-1;;;;;;14874:32:0;;;;;;;;-1:-1:-1;14917:25:0;;;:10;14874:32;14917:25;;;;;:66;;;;;;;;;;;;;;14994:41;;:60;14626:436::o;14259:62::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;17979:97::-;18034:10;18024:21;;;;:9;:21;;;;;;18015:31;;:8;:31::i;:::-;18057:11;:9;:11::i;:::-;17979:97::o;15518:468::-;15586:7;15610:12;;15626:1;15610:17;15606:103;;;-1:-1:-1;;;;;;15651:25:0;;;;;;:10;:25;;;;;;;;:46;;15644:53;;15606:103;15950:12;;-1:-1:-1;;;;;15898:25:0;;;;;;:10;:25;;;;;:36;;;;15852:40;;;;;15739:239;;15808:155;;15950:12;;15808:137;;15940:4;;15808:127;;15898:36;15808:127;;:39;15909:13;15808:24;:39::i;:85::-;:89;:127;:89;:127;:::i;:155::-;-1:-1:-1;;;;;15739:25:0;;;;;;:10;:25;;;;;;;;:46;;;:239;:50;:239;:::i;5022:133::-;5090:5;;-1:-1:-1;;;;;5090:5:0;5076:10;:19;5068:79;;;;-1:-1:-1;;;5068:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11284:184;11342:7;11375:1;11370;:6;;11362:49;;;;;-1:-1:-1;;;11362:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11434:5:0;;;11284:184::o;11719:470::-;11777:7;12021:6;12017:47;;-1:-1:-1;12051:1:0;12044:8;;12017:47;12088:5;;;12092:1;12088;:5;:1;12112:5;;;;;:10;12104:56;;;;-1:-1:-1;;;12104:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12657:333;12715:7;12814:1;12810;:5;12802:44;;;;;-1:-1:-1;;;12802:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12857:9;12873:1;12869;:5;;;;;;;12657:333;-1:-1:-1;;;;12657:333:0:o;10828:181::-;10886:7;10918:5;;;10942:6;;;;10934:46;;;;;-1:-1:-1;;;10934:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7458:176;7567:58;;;-1:-1:-1;;;;;7567:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7567:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;7541:85:0;;7560:5;;7541:18;:85::i;:::-;7458:176;;;:::o;3819:106::-;3877:7;3908:1;3904;:5;:13;;3916:1;3904:13;;;-1:-1:-1;3912:1:0;;3819:106;-1:-1:-1;3819:106:0:o;7642:204::-;7769:68;;;-1:-1:-1;;;;;7769:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7769:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;7743:95:0;;7762:5;;7743:18;:95::i;:::-;7642:204;;;;:::o;9452:1114::-;10056:27;10064:5;-1:-1:-1;;;;;10056:25:0;;:27::i;:::-;10048:71;;;;;-1:-1:-1;;;10048:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10193:12;10207:23;10242:5;-1:-1:-1;;;;;10234:19:0;10254:4;10234:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;10234:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;10192:67:0;;;;10278:7;10270:52;;;;;-1:-1:-1;;;10270:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10339:17;;:21;10335:224;;10481:10;10470:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10470:30:0;10462:85;;;;-1:-1:-1;;;10462:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488:422;855:20;894:8;;;488:422::o

Swarm Source

bzzr://731cf4abf8d8a8130d07577cfe68335a7251c496d352327e8a55c8dad03177df

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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.