ETH Price: $3,099.37 (-0.12%)
Gas: 2 Gwei

Contract

0x84F3e2d0B1C026c7a368DbAA45Ba84CFc1a24aFb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Get Reward195563422024-03-31 20:48:59101 days ago1711918139IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0019304924.9227651
Withdraw195563402024-03-31 20:48:35101 days ago1711918115IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0024572620.68036942
Withdraw194492132024-03-16 18:24:35116 days ago1710613475IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0044659939.17640111
Withdraw194069692024-03-10 20:05:47122 days ago1710101147IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0048520765.39453045
Get Reward194069492024-03-10 20:01:47122 days ago1710100907IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0055161467.05831098
Withdraw193357482024-02-29 21:07:47132 days ago1709240867IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.00816458103.33739555
Get Reward192706772024-02-20 18:24:35141 days ago1708453475IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0027871235.98189751
Withdraw192525332024-02-18 5:10:59144 days ago1708233059IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0011825114.96681367
Withdraw191793262024-02-07 22:35:35154 days ago1707345335IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0024566130.78113058
Withdraw190317772024-01-18 5:50:59175 days ago1705557059IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0017713222.42268916
Get Reward190293602024-01-17 21:45:11175 days ago1705527911IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0036261336.49526644
Stake187498972023-12-09 16:35:23214 days ago1702139723IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.003610240.59099063
Stake185957132023-11-18 2:17:59236 days ago1700273879IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.001653818.59444661
Stake175766292023-06-28 8:28:35378 days ago1687940915IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0012780414.36956146
Get Reward175766232023-06-28 8:27:23378 days ago1687940843IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0011857914.77464304
Get Reward175373302023-06-22 19:47:11384 days ago1687463231IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0010715313.83355564
Withdraw175373282023-06-22 19:46:47384 days ago1687463207IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0011734813.87145599
Withdraw175364262023-06-22 16:45:11384 days ago1687452311IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.002060117.33792298
Get Reward175267972023-06-21 8:17:47385 days ago1687335467IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0011222114.48787656
Withdraw175267922023-06-21 8:16:47385 days ago1687335407IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0014775915.24721231
Stake173600062023-05-28 20:50:59409 days ago1685307059IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0029056526.02674671
Stake172053472023-05-07 1:16:23431 days ago1683422183IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.009498294.84826402
Get Reward170952162023-04-21 13:59:47446 days ago1682085587IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0029546534.55935198
Withdraw170952142023-04-21 13:59:11446 days ago1682085551IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0036552534.1535871
Withdraw170324692023-04-12 14:18:47455 days ago1681309127IN
0x84F3e2d0...Fc1a24aFb
0 ETH0.0030776228.7499464
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:
StakingPool

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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.
     *
     * IMPORTANT: 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);
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    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));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    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'
        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) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - 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. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract StakingPool {
    using Address for address;
    using SafeERC20 for IERC20;

    bool public stakingOpen = false;

    uint256 public duration;
    address public owner;
    address public rewardToken;
    address public depositToken;

    uint256 public finishTimestamp = 0;
    uint256 public rewardRate = 0;
    uint256 public lastUpdateTimestamp;
    uint256 public cacheRewardPerToken;
    mapping(address => uint256) public userReward;
    mapping(address => uint256) public rewards;

    event RewardAdded(uint256 rewardAmount);
    event Staked(address indexed who, uint256 amount);
    event Withdraw(address indexed who, uint256 amount);
    event GotReward(address indexed who, uint256 rewardAmount);

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

    modifier onlyOwner() {
        require(msg.sender == owner, "Not Authorized");
        _;
    }

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

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

    modifier updateReward(address account) {
        cacheRewardPerToken = rewardPerToken();
        lastUpdateTimestamp = lastTimeRewardApplicable();
        if(account != address(0)) {
            rewards[account] = earned(account);
            userReward[account] = cacheRewardPerToken;
        }
        _;
    }

    modifier canStake() {
        require(stakingOpen == true, "Staking is not open!");
        _;
    }

    constructor(
        address _rewardToken,
        address _depositToken,
        uint256 _stakingDurationRewardPay
    ) public {
        rewardToken = _rewardToken;
        depositToken = _depositToken;
        duration = _stakingDurationRewardPay;
        owner = msg.sender;
    }

    function changeOwner(address _newOwner) external onlyOwner {
        owner = _newOwner;
    }

    function openStaking(bool _newStakeStatus) external onlyOwner {
        stakingOpen = _newStakeStatus;
    }

    function lastTimeRewardApplicable() public view returns (uint256) {
        if (block.timestamp <= finishTimestamp) {
            return block.timestamp;
        } else {
            return finishTimestamp;
        }
    }

    function rewardPerToken() public view returns (uint256) {
        if (totalSupply() == 0) {
            return cacheRewardPerToken;
        }
        return
            cacheRewardPerToken + ((lastTimeRewardApplicable() - lastUpdateTimestamp) * rewardRate * 1e18 / totalSupply());
    }

    function earned(address account) public view returns (uint256) {
        return (balanceOf(account) * (rewardPerToken() - userReward[account]) / 1e18) + rewards[account];
    }

    function stake(uint256 amount) public updateReward(msg.sender) canStake {
        require(amount > 0, "Amount cannot be 0");
        IERC20(depositToken).safeTransferFrom(msg.sender, address(this), amount);
        _totalSupply = _totalSupply + amount;
        _balances[msg.sender] = _balances[msg.sender] + amount;
        emit Staked(msg.sender, amount);
    }

    function withdraw(uint256 amount) public updateReward(msg.sender) {
        require(amount > 0, "Amount cannot be 0");
        require(_balances[msg.sender] >= amount, "Withdraw overflow");
        _totalSupply = _totalSupply - amount;
        _balances[msg.sender] = _balances[msg.sender] - amount;
        IERC20(depositToken).safeTransfer(msg.sender, amount);
        emit Withdraw(msg.sender, amount);
    }

    function exit() external {
        withdraw(balanceOf(msg.sender));
        getReward();
    }

    function getReward() public updateReward(msg.sender) {
        uint256 reward = earned(msg.sender);
        if (address(depositToken) == address(rewardToken)) {
            uint256 _tokenBal = IERC20(depositToken).balanceOf(address(this));
            require(_tokenBal - reward >= _totalSupply, "Extra security check failed.");
        }
        if (reward > 0) {
            rewards[msg.sender] = 0;
            IERC20(rewardToken).safeTransfer(msg.sender, reward);
            emit GotReward(msg.sender, reward);
        }
    }

    function pushReward(address recipient) public updateReward(recipient) onlyOwner {
        uint256 reward = earned(recipient);
        if (reward > 0) {
            rewards[recipient] = 0;
            IERC20(rewardToken).safeTransfer(recipient, reward);
            emit GotReward(recipient, reward);
        }
    }

    function addedReward(uint256 reward) external onlyOwner updateReward(address(0)) {
        if (block.timestamp >= finishTimestamp) {
            rewardRate = reward / duration;
        } else {
            uint256 remaining = finishTimestamp - block.timestamp;
            uint256 leftover = remaining * rewardRate;
            rewardRate = (reward + leftover) / duration;
        }
        lastUpdateTimestamp = block.timestamp;
        finishTimestamp = block.timestamp + duration;
        emit RewardAdded(reward);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"address","name":"_depositToken","type":"address"},{"internalType":"uint256","name":"_stakingDurationRewardPay","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"GotReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"addedReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cacheRewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStakeStatus","type":"bool"}],"name":"openStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"pushReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260008060006101000a81548160ff021916908315150217905550600060055560006006553480156200003557600080fd5b506040516200245c3803806200245c83398181016040528101906200005b91906200015c565b82600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060018190555033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000224565b6000815190506200013f81620001f0565b92915050565b60008151905062000156816200020a565b92915050565b6000806000606084860312156200017257600080fd5b600062000182868287016200012e565b935050602062000195868287016200012e565b9250506040620001a88682870162000145565b9150509250925092565b6000620001bf82620001c6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b620001fb81620001b2565b81146200020757600080fd5b50565b6200021581620001e6565b81146200022157600080fd5b50565b61222880620002346000396000f3fe608060405234801561001057600080fd5b50600436106101565760003560e01c806371f02c52116100c3578063a6f9dae11161007c578063a6f9dae1146103a3578063c89039c5146103bf578063cd3daf9d146103dd578063e9fad8ee146103fb578063f7c618c114610405578063fa9389a21461042357610156565b806371f02c52146102f357806379eed0da146103115780637b0a47ee1461032d57806380faa57d1461034b5780638da5cb5b14610369578063a694fc3a1461038757610156565b806318160ddd1161011557806318160ddd146102435780632e1a7d4d14610261578063387602981461027d5780633d18b9121461029b57806343d7d321146102a557806370a08231146102c357610156565b80620a74be1461015b5780628cc2621461018b5780630700037d146101bb5780630fb5a6b4146101eb57806311e2ee8d1461020957806314bcec9f14610225575b600080fd5b610175600480360381019061017091906119e2565b61043f565b6040516101829190611f61565b60405180910390f35b6101a560048036038101906101a091906119e2565b610457565b6040516101b29190611f61565b60405180910390f35b6101d560048036038101906101d091906119e2565b610522565b6040516101e29190611f61565b60405180910390f35b6101f361053a565b6040516102009190611f61565b60405180910390f35b610223600480360381019061021e9190611a5d565b610540565b005b61022d610773565b60405161023a9190611f61565b60405180910390f35b61024b610779565b6040516102589190611f61565b60405180910390f35b61027b60048036038101906102769190611a5d565b610783565b005b610285610a6d565b6040516102929190611e24565b60405180910390f35b6102a3610a7e565b005b6102ad610dd6565b6040516102ba9190611f61565b60405180910390f35b6102dd60048036038101906102d891906119e2565b610ddc565b6040516102ea9190611f61565b60405180910390f35b6102fb610e25565b6040516103089190611f61565b60405180910390f35b61032b60048036038101906103269190611a0b565b610e2b565b005b610335610ed7565b6040516103429190611f61565b60405180910390f35b610353610edd565b6040516103609190611f61565b60405180910390f35b610371610ef9565b60405161037e9190611da9565b60405180910390f35b6103a1600480360381019061039c9190611a5d565b610f1f565b005b6103bd60048036038101906103b891906119e2565b6111dd565b005b6103c76112b1565b6040516103d49190611da9565b60405180910390f35b6103e56112d7565b6040516103f29190611f61565b60405180910390f35b61040361134c565b005b61040d611367565b60405161041a9190611da9565b60405180910390f35b61043d600480360381019061043891906119e2565b61138d565b005b60096020528060005260406000206000915090505481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054670de0b6b3a7640000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104ea6112d7565b6104f4919061208f565b6104fd85610ddc565b6105079190612035565b6105119190612004565b61051b9190611fae565b9050919050565b600a6020528060005260406000206000915090505481565b60015481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c790611ec1565b60405180910390fd5b60006105da6112d7565b6008819055506105e8610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106b55761062b81610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60055442106106d757600154826106cc9190612004565b60068190555061071d565b6000426005546106e7919061208f565b90506000600654826106f99190612035565b9050600154818561070a9190611fae565b6107149190612004565b60068190555050505b42600781905550600154426107329190611fae565b6005819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040516107679190611f61565b60405180910390a15050565b60075481565b6000600b54905090565b3361078c6112d7565b60088190555061079a610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610867576107dd81610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600082116108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190611ee1565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390611e81565b60405180910390fd5b81600b5461093a919061208f565b600b8190555081600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461098b919061208f565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a1b3383600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115fd9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436483604051610a619190611f61565b60405180910390a25050565b60008054906101000a900460ff1681565b33610a876112d7565b600881905550610a95610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6257610ad881610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000610b6d33610457565b9050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ce8576000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c449190611da9565b60206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190611a86565b9050600b548282610ca5919061208f565b1015610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611f21565b60405180910390fd5b505b6000811115610dd2576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d833382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115fd9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f5b2e5d8cfce8958914d620ce6c93ad21c517de1cba305917142145f2e489444282604051610dc99190611f61565b60405180910390a25b5050565b60055481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60085481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290611ec1565b60405180910390fd5b806000806101000a81548160ff02191690831515021790555050565b60065481565b60006005544211610ef057429050610ef6565b60055490505b90565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b33610f286112d7565b600881905550610f36610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461100357610f7981610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001151560008054906101000a900460ff16151514611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90611e61565b60405180910390fd5b6000821161109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190611ee1565b60405180910390fd5b6110e9333084600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611683909392919063ffffffff16565b81600b546110f79190611fae565b600b8190555081600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111489190611fae565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040516111d19190611f61565b60405180910390a25050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490611ec1565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806112e2610779565b14156112f2576008549050611349565b6112fa610779565b670de0b6b3a7640000600654600754611311610edd565b61131b919061208f565b6113259190612035565b61132f9190612035565b6113399190612004565b6008546113469190611fae565b90505b90565b61135d61135833610ddc565b610783565b611365610a7e565b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b806113966112d7565b6008819055506113a4610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611471576113e781610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890611ec1565b60405180910390fd5b600061150c83610457565b905060008111156115f8576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115a98382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115fd9092919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff167f5b2e5d8cfce8958914d620ce6c93ad21c517de1cba305917142145f2e4894442826040516115ef9190611f61565b60405180910390a25b505050565b61167e8363a9059cbb60e01b848460405160240161161c929190611dfb565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061170c565b505050565b611706846323b872dd60e01b8585856040516024016116a493929190611dc4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061170c565b50505050565b600061176e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166117d39092919063ffffffff16565b90506000815111156117ce578080602001905181019061178e9190611a34565b6117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490611f41565b60405180910390fd5b5b505050565b60606117e284846000856117eb565b90509392505050565b606082471015611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790611ea1565b60405180910390fd5b611839856118ff565b611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90611f01565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516118a19190611d92565b60006040518083038185875af1925050503d80600081146118de576040519150601f19603f3d011682016040523d82523d6000602084013e6118e3565b606091505b50915091506118f3828286611912565b92505050949350505050565b600080823b905060008111915050919050565b6060831561192257829050611972565b6000835111156119355782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699190611e3f565b60405180910390fd5b9392505050565b600081359050611988816121ad565b92915050565b60008135905061199d816121c4565b92915050565b6000815190506119b2816121c4565b92915050565b6000813590506119c7816121db565b92915050565b6000815190506119dc816121db565b92915050565b6000602082840312156119f457600080fd5b6000611a0284828501611979565b91505092915050565b600060208284031215611a1d57600080fd5b6000611a2b8482850161198e565b91505092915050565b600060208284031215611a4657600080fd5b6000611a54848285016119a3565b91505092915050565b600060208284031215611a6f57600080fd5b6000611a7d848285016119b8565b91505092915050565b600060208284031215611a9857600080fd5b6000611aa6848285016119cd565b91505092915050565b611ab8816120c3565b82525050565b611ac7816120d5565b82525050565b6000611ad882611f7c565b611ae28185611f92565b9350611af281856020860161210b565b80840191505092915050565b6000611b0982611f87565b611b138185611f9d565b9350611b2381856020860161210b565b611b2c8161219c565b840191505092915050565b6000611b44601483611f9d565b91507f5374616b696e67206973206e6f74206f70656e210000000000000000000000006000830152602082019050919050565b6000611b84601183611f9d565b91507f5769746864726177206f766572666c6f770000000000000000000000000000006000830152602082019050919050565b6000611bc4602683611f9d565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2a600e83611f9d565b91507f4e6f7420417574686f72697a65640000000000000000000000000000000000006000830152602082019050919050565b6000611c6a601283611f9d565b91507f416d6f756e742063616e6e6f74206265203000000000000000000000000000006000830152602082019050919050565b6000611caa601d83611f9d565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000611cea601c83611f9d565b91507f457874726120736563757269747920636865636b206661696c65642e000000006000830152602082019050919050565b6000611d2a602a83611f9d565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b611d8c81612101565b82525050565b6000611d9e8284611acd565b915081905092915050565b6000602082019050611dbe6000830184611aaf565b92915050565b6000606082019050611dd96000830186611aaf565b611de66020830185611aaf565b611df36040830184611d83565b949350505050565b6000604082019050611e106000830185611aaf565b611e1d6020830184611d83565b9392505050565b6000602082019050611e396000830184611abe565b92915050565b60006020820190508181036000830152611e598184611afe565b905092915050565b60006020820190508181036000830152611e7a81611b37565b9050919050565b60006020820190508181036000830152611e9a81611b77565b9050919050565b60006020820190508181036000830152611eba81611bb7565b9050919050565b60006020820190508181036000830152611eda81611c1d565b9050919050565b60006020820190508181036000830152611efa81611c5d565b9050919050565b60006020820190508181036000830152611f1a81611c9d565b9050919050565b60006020820190508181036000830152611f3a81611cdd565b9050919050565b60006020820190508181036000830152611f5a81611d1d565b9050919050565b6000602082019050611f766000830184611d83565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000611fb982612101565b9150611fc483612101565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ff957611ff861213e565b5b828201905092915050565b600061200f82612101565b915061201a83612101565b92508261202a5761202961216d565b5b828204905092915050565b600061204082612101565b915061204b83612101565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120845761208361213e565b5b828202905092915050565b600061209a82612101565b91506120a583612101565b9250828210156120b8576120b761213e565b5b828203905092915050565b60006120ce826120e1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561212957808201518184015260208101905061210e565b83811115612138576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b6121b6816120c3565b81146121c157600080fd5b50565b6121cd816120d5565b81146121d857600080fd5b50565b6121e481612101565b81146121ef57600080fd5b5056fea26469706673582212200ab20a92cc1a4686df6ea24ccbf843d67b66c327a60b40620f74db4c34f4834a64736f6c63430008000033000000000000000000000000f9fbe825bfb2bf3e387af0dc18cac8d87f29dea8000000000000000000000000f9fbe825bfb2bf3e387af0dc18cac8d87f29dea8000000000000000000000000000000000000000000000000000000000024ea00

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101565760003560e01c806371f02c52116100c3578063a6f9dae11161007c578063a6f9dae1146103a3578063c89039c5146103bf578063cd3daf9d146103dd578063e9fad8ee146103fb578063f7c618c114610405578063fa9389a21461042357610156565b806371f02c52146102f357806379eed0da146103115780637b0a47ee1461032d57806380faa57d1461034b5780638da5cb5b14610369578063a694fc3a1461038757610156565b806318160ddd1161011557806318160ddd146102435780632e1a7d4d14610261578063387602981461027d5780633d18b9121461029b57806343d7d321146102a557806370a08231146102c357610156565b80620a74be1461015b5780628cc2621461018b5780630700037d146101bb5780630fb5a6b4146101eb57806311e2ee8d1461020957806314bcec9f14610225575b600080fd5b610175600480360381019061017091906119e2565b61043f565b6040516101829190611f61565b60405180910390f35b6101a560048036038101906101a091906119e2565b610457565b6040516101b29190611f61565b60405180910390f35b6101d560048036038101906101d091906119e2565b610522565b6040516101e29190611f61565b60405180910390f35b6101f361053a565b6040516102009190611f61565b60405180910390f35b610223600480360381019061021e9190611a5d565b610540565b005b61022d610773565b60405161023a9190611f61565b60405180910390f35b61024b610779565b6040516102589190611f61565b60405180910390f35b61027b60048036038101906102769190611a5d565b610783565b005b610285610a6d565b6040516102929190611e24565b60405180910390f35b6102a3610a7e565b005b6102ad610dd6565b6040516102ba9190611f61565b60405180910390f35b6102dd60048036038101906102d891906119e2565b610ddc565b6040516102ea9190611f61565b60405180910390f35b6102fb610e25565b6040516103089190611f61565b60405180910390f35b61032b60048036038101906103269190611a0b565b610e2b565b005b610335610ed7565b6040516103429190611f61565b60405180910390f35b610353610edd565b6040516103609190611f61565b60405180910390f35b610371610ef9565b60405161037e9190611da9565b60405180910390f35b6103a1600480360381019061039c9190611a5d565b610f1f565b005b6103bd60048036038101906103b891906119e2565b6111dd565b005b6103c76112b1565b6040516103d49190611da9565b60405180910390f35b6103e56112d7565b6040516103f29190611f61565b60405180910390f35b61040361134c565b005b61040d611367565b60405161041a9190611da9565b60405180910390f35b61043d600480360381019061043891906119e2565b61138d565b005b60096020528060005260406000206000915090505481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054670de0b6b3a7640000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104ea6112d7565b6104f4919061208f565b6104fd85610ddc565b6105079190612035565b6105119190612004565b61051b9190611fae565b9050919050565b600a6020528060005260406000206000915090505481565b60015481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c790611ec1565b60405180910390fd5b60006105da6112d7565b6008819055506105e8610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106b55761062b81610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60055442106106d757600154826106cc9190612004565b60068190555061071d565b6000426005546106e7919061208f565b90506000600654826106f99190612035565b9050600154818561070a9190611fae565b6107149190612004565b60068190555050505b42600781905550600154426107329190611fae565b6005819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040516107679190611f61565b60405180910390a15050565b60075481565b6000600b54905090565b3361078c6112d7565b60088190555061079a610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610867576107dd81610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600082116108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190611ee1565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390611e81565b60405180910390fd5b81600b5461093a919061208f565b600b8190555081600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461098b919061208f565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a1b3383600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115fd9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436483604051610a619190611f61565b60405180910390a25050565b60008054906101000a900460ff1681565b33610a876112d7565b600881905550610a95610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6257610ad881610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000610b6d33610457565b9050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ce8576000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c449190611da9565b60206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190611a86565b9050600b548282610ca5919061208f565b1015610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611f21565b60405180910390fd5b505b6000811115610dd2576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d833382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115fd9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f5b2e5d8cfce8958914d620ce6c93ad21c517de1cba305917142145f2e489444282604051610dc99190611f61565b60405180910390a25b5050565b60055481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60085481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290611ec1565b60405180910390fd5b806000806101000a81548160ff02191690831515021790555050565b60065481565b60006005544211610ef057429050610ef6565b60055490505b90565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b33610f286112d7565b600881905550610f36610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461100357610f7981610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001151560008054906101000a900460ff16151514611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90611e61565b60405180910390fd5b6000821161109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190611ee1565b60405180910390fd5b6110e9333084600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611683909392919063ffffffff16565b81600b546110f79190611fae565b600b8190555081600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111489190611fae565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040516111d19190611f61565b60405180910390a25050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490611ec1565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806112e2610779565b14156112f2576008549050611349565b6112fa610779565b670de0b6b3a7640000600654600754611311610edd565b61131b919061208f565b6113259190612035565b61132f9190612035565b6113399190612004565b6008546113469190611fae565b90505b90565b61135d61135833610ddc565b610783565b611365610a7e565b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b806113966112d7565b6008819055506113a4610edd565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611471576113e781610457565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890611ec1565b60405180910390fd5b600061150c83610457565b905060008111156115f8576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115a98382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115fd9092919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff167f5b2e5d8cfce8958914d620ce6c93ad21c517de1cba305917142145f2e4894442826040516115ef9190611f61565b60405180910390a25b505050565b61167e8363a9059cbb60e01b848460405160240161161c929190611dfb565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061170c565b505050565b611706846323b872dd60e01b8585856040516024016116a493929190611dc4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061170c565b50505050565b600061176e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166117d39092919063ffffffff16565b90506000815111156117ce578080602001905181019061178e9190611a34565b6117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490611f41565b60405180910390fd5b5b505050565b60606117e284846000856117eb565b90509392505050565b606082471015611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790611ea1565b60405180910390fd5b611839856118ff565b611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90611f01565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516118a19190611d92565b60006040518083038185875af1925050503d80600081146118de576040519150601f19603f3d011682016040523d82523d6000602084013e6118e3565b606091505b50915091506118f3828286611912565b92505050949350505050565b600080823b905060008111915050919050565b6060831561192257829050611972565b6000835111156119355782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699190611e3f565b60405180910390fd5b9392505050565b600081359050611988816121ad565b92915050565b60008135905061199d816121c4565b92915050565b6000815190506119b2816121c4565b92915050565b6000813590506119c7816121db565b92915050565b6000815190506119dc816121db565b92915050565b6000602082840312156119f457600080fd5b6000611a0284828501611979565b91505092915050565b600060208284031215611a1d57600080fd5b6000611a2b8482850161198e565b91505092915050565b600060208284031215611a4657600080fd5b6000611a54848285016119a3565b91505092915050565b600060208284031215611a6f57600080fd5b6000611a7d848285016119b8565b91505092915050565b600060208284031215611a9857600080fd5b6000611aa6848285016119cd565b91505092915050565b611ab8816120c3565b82525050565b611ac7816120d5565b82525050565b6000611ad882611f7c565b611ae28185611f92565b9350611af281856020860161210b565b80840191505092915050565b6000611b0982611f87565b611b138185611f9d565b9350611b2381856020860161210b565b611b2c8161219c565b840191505092915050565b6000611b44601483611f9d565b91507f5374616b696e67206973206e6f74206f70656e210000000000000000000000006000830152602082019050919050565b6000611b84601183611f9d565b91507f5769746864726177206f766572666c6f770000000000000000000000000000006000830152602082019050919050565b6000611bc4602683611f9d565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2a600e83611f9d565b91507f4e6f7420417574686f72697a65640000000000000000000000000000000000006000830152602082019050919050565b6000611c6a601283611f9d565b91507f416d6f756e742063616e6e6f74206265203000000000000000000000000000006000830152602082019050919050565b6000611caa601d83611f9d565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000611cea601c83611f9d565b91507f457874726120736563757269747920636865636b206661696c65642e000000006000830152602082019050919050565b6000611d2a602a83611f9d565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b611d8c81612101565b82525050565b6000611d9e8284611acd565b915081905092915050565b6000602082019050611dbe6000830184611aaf565b92915050565b6000606082019050611dd96000830186611aaf565b611de66020830185611aaf565b611df36040830184611d83565b949350505050565b6000604082019050611e106000830185611aaf565b611e1d6020830184611d83565b9392505050565b6000602082019050611e396000830184611abe565b92915050565b60006020820190508181036000830152611e598184611afe565b905092915050565b60006020820190508181036000830152611e7a81611b37565b9050919050565b60006020820190508181036000830152611e9a81611b77565b9050919050565b60006020820190508181036000830152611eba81611bb7565b9050919050565b60006020820190508181036000830152611eda81611c1d565b9050919050565b60006020820190508181036000830152611efa81611c5d565b9050919050565b60006020820190508181036000830152611f1a81611c9d565b9050919050565b60006020820190508181036000830152611f3a81611cdd565b9050919050565b60006020820190508181036000830152611f5a81611d1d565b9050919050565b6000602082019050611f766000830184611d83565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000611fb982612101565b9150611fc483612101565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ff957611ff861213e565b5b828201905092915050565b600061200f82612101565b915061201a83612101565b92508261202a5761202961216d565b5b828204905092915050565b600061204082612101565b915061204b83612101565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120845761208361213e565b5b828202905092915050565b600061209a82612101565b91506120a583612101565b9250828210156120b8576120b761213e565b5b828203905092915050565b60006120ce826120e1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561212957808201518184015260208101905061210e565b83811115612138576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b6121b6816120c3565b81146121c157600080fd5b50565b6121cd816120d5565b81146121d857600080fd5b50565b6121e481612101565b81146121ef57600080fd5b5056fea26469706673582212200ab20a92cc1a4686df6ea24ccbf843d67b66c327a60b40620f74db4c34f4834a64736f6c63430008000033

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

000000000000000000000000f9fbe825bfb2bf3e387af0dc18cac8d87f29dea8000000000000000000000000f9fbe825bfb2bf3e387af0dc18cac8d87f29dea8000000000000000000000000000000000000000000000000000000000024ea00

-----Decoded View---------------
Arg [0] : _rewardToken (address): 0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8
Arg [1] : _depositToken (address): 0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8
Arg [2] : _stakingDurationRewardPay (uint256): 2419200

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000f9fbe825bfb2bf3e387af0dc18cac8d87f29dea8
Arg [1] : 000000000000000000000000f9fbe825bfb2bf3e387af0dc18cac8d87f29dea8
Arg [2] : 000000000000000000000000000000000000000000000000000000000024ea00


Deployed Bytecode Sourcemap

14608:5172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15028:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17267:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15080:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14743:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19241:534;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14946:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15553:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17830:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14703:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18361:542;;;:::i;:::-;;14869:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15652:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14987:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16613:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14910:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16731:228;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14773:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17453:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16510:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14833:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16967:292;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18256:97;;;:::i;:::-;;14800:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18911:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15028:45;;;;;;;;;;;;;;;;;:::o;17267:178::-;17321:7;17421;:16;17429:7;17421:16;;;;;;;;;;;;;;;;17413:4;17390:10;:19;17401:7;17390:19;;;;;;;;;;;;;;;;17371:16;:14;:16::i;:::-;:38;;;;:::i;:::-;17349:18;17359:7;17349:9;:18::i;:::-;:61;;;;:::i;:::-;:68;;;;:::i;:::-;17348:89;;;;:::i;:::-;17341:96;;17267:178;;;:::o;15080:42::-;;;;;;;;;;;;;;;;;:::o;14743:23::-;;;;:::o;19241:534::-;15501:5;;;;;;;;;;;15487:19;;:10;:19;;;15479:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;19318:1:::1;15842:16;:14;:16::i;:::-;15820:19;:38;;;;15891:26;:24;:26::i;:::-;15869:19;:48;;;;15950:1;15931:21;;:7;:21;;;15928:143;;15988:15;15995:7;15988:6;:15::i;:::-;15969:7;:16;15977:7;15969:16;;;;;;;;;;;;;;;:34;;;;16040:19;;16018:10;:19;16029:7;16018:19;;;;;;;;;;;;;;;:41;;;;15928:143;19356:15:::2;;19337;:34;19333:297;;19410:8;;19401:6;:17;;;;:::i;:::-;19388:10;:30;;;;19333:297;;;19451:17;19489:15;19471;;:33;;;;:::i;:::-;19451:53;;19519:16;19550:10;;19538:9;:22;;;;:::i;:::-;19519:41;;19610:8;;19598;19589:6;:17;;;;:::i;:::-;19588:30;;;;:::i;:::-;19575:10;:43;;;;19333:297;;;19662:15;19640:19;:37;;;;19724:8;;19706:15;:26;;;;:::i;:::-;19688:15;:44;;;;19748:19;19760:6;19748:19;;;;;;:::i;:::-;;;;;;;;15536:1:::1;19241:534:::0;:::o;14946:34::-;;;;:::o;15553:91::-;15597:7;15624:12;;15617:19;;15553:91;:::o;17830:418::-;17884:10;15842:16;:14;:16::i;:::-;15820:19;:38;;;;15891:26;:24;:26::i;:::-;15869:19;:48;;;;15950:1;15931:21;;:7;:21;;;15928:143;;15988:15;15995:7;15988:6;:15::i;:::-;15969:7;:16;15977:7;15969:16;;;;;;;;;;;;;;;:34;;;;16040:19;;16018:10;:19;16029:7;16018:19;;;;;;;;;;;;;;;:41;;;;15928:143;17924:1:::1;17915:6;:10;17907:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17992:6;17967:9;:21;17977:10;17967:21;;;;;;;;;;;;;;;;:31;;17959:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;18061:6;18046:12;;:21;;;;:::i;:::-;18031:12;:36;;;;18126:6;18102:9;:21;18112:10;18102:21;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;18078:9;:21;18088:10;18078:21;;;;;;;;;;;;;;;:54;;;;18143:53;18177:10;18189:6;18150:12;;;;;;;;;;;18143:33;;;;:53;;;;;:::i;:::-;18221:10;18212:28;;;18233:6;18212:28;;;;;;:::i;:::-;;;;;;;;17830:418:::0;;:::o;14703:31::-;;;;;;;;;;;;:::o;18361:542::-;18402:10;15842:16;:14;:16::i;:::-;15820:19;:38;;;;15891:26;:24;:26::i;:::-;15869:19;:48;;;;15950:1;15931:21;;:7;:21;;;15928:143;;15988:15;15995:7;15988:6;:15::i;:::-;15969:7;:16;15977:7;15969:16;;;;;;;;;;;;;;;:34;;;;16040:19;;16018:10;:19;16029:7;16018:19;;;;;;;;;;;;;;;:41;;;;15928:143;18425:14:::1;18442:18;18449:10;18442:6;:18::i;:::-;18425:35;;18508:11;;;;;;;;;;;18475:45;;18483:12;;;;;;;;;;;18475:45;;;18471:233;;;18537:17;18564:12;;;;;;;;;;;18557:30;;;18596:4;18557:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18537:65;;18647:12;;18637:6;18625:9;:18;;;;:::i;:::-;:34;;18617:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;18471:233;;18727:1;18718:6;:10;18714:182;;;18767:1;18745:7;:19;18753:10;18745:19;;;;;;;;;;;;;;;:23;;;;18783:52;18816:10;18828:6;18790:11;;;;;;;;;;;18783:32;;;;:52;;;;;:::i;:::-;18865:10;18855:29;;;18877:6;18855:29;;;;;;:::i;:::-;;;;;;;;18714:182;16081:1;18361:542:::0;:::o;14869:34::-;;;;:::o;15652:110::-;15709:7;15736:9;:18;15746:7;15736:18;;;;;;;;;;;;;;;;15729:25;;15652:110;;;:::o;14987:34::-;;;;:::o;16613:110::-;15501:5;;;;;;;;;;;15487:19;;:10;:19;;;15479:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16700:15:::1;16686:11;::::0;:29:::1;;;;;;;;;;;;;;;;;;16613:110:::0;:::o;14910:29::-;;;;:::o;16731:228::-;16788:7;16831:15;;16812;:34;16808:144;;16870:15;16863:22;;;;16808:144;16925:15;;16918:22;;16731:228;;:::o;14773:20::-;;;;;;;;;;;;;:::o;17453:369::-;17504:10;15842:16;:14;:16::i;:::-;15820:19;:38;;;;15891:26;:24;:26::i;:::-;15869:19;:48;;;;15950:1;15931:21;;:7;:21;;;15928:143;;15988:15;15995:7;15988:6;:15::i;:::-;15969:7;:16;15977:7;15969:16;;;;;;;;;;;;;;;:34;;;;16040:19;;16018:10;:19;16029:7;16018:19;;;;;;;;;;;;;;;:41;;;;15928:143;16152:4:::1;16137:19;;:11;::::0;::::1;;;;;;;;:19;;;16129:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;17553:1:::2;17544:6;:10;17536:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17588:72;17626:10;17646:4;17653:6;17595:12;;;;;;;;;;;17588:37;;;;:72;;;;;;:::i;:::-;17701:6;17686:12;;:21;;;;:::i;:::-;17671:12;:36;;;;17766:6;17742:9;:21;17752:10;17742:21;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;17718:9;:21;17728:10;17718:21;;;;;;;;;;;;;;;:54;;;;17795:10;17788:26;;;17807:6;17788:26;;;;;;:::i;:::-;;;;;;;;17453:369:::0;;:::o;16510:95::-;15501:5;;;;;;;;;;;15487:19;;:10;:19;;;15479:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16588:9:::1;16580:5;;:17;;;;;;;;;;;;;;;;;;16510:95:::0;:::o;14833:27::-;;;;;;;;;;;;;:::o;16967:292::-;17014:7;17055:1;17038:13;:11;:13::i;:::-;:18;17034:77;;;17080:19;;17073:26;;;;17034:77;17237:13;:11;:13::i;:::-;17230:4;17217:10;;17194:19;;17165:26;:24;:26::i;:::-;:48;;;;:::i;:::-;17164:63;;;;:::i;:::-;:70;;;;:::i;:::-;:86;;;;:::i;:::-;17141:19;;:110;;;;:::i;:::-;17121:130;;16967:292;;:::o;18256:97::-;18292:31;18301:21;18311:10;18301:9;:21::i;:::-;18292:8;:31::i;:::-;18334:11;:9;:11::i;:::-;18256:97::o;14800:26::-;;;;;;;;;;;;;:::o;18911:322::-;18970:9;15842:16;:14;:16::i;:::-;15820:19;:38;;;;15891:26;:24;:26::i;:::-;15869:19;:48;;;;15950:1;15931:21;;:7;:21;;;15928:143;;15988:15;15995:7;15988:6;:15::i;:::-;15969:7;:16;15977:7;15969:16;;;;;;;;;;;;;;;:34;;;;16040:19;;16018:10;:19;16029:7;16018:19;;;;;;;;;;;;;;;:41;;;;15928:143;15501:5:::1;;;;;;;;;;;15487:19;;:10;:19;;;15479:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;19002:14:::2;19019:17;19026:9;19019:6;:17::i;:::-;19002:34;;19060:1;19051:6;:10;19047:179;;;19099:1;19078:7;:18;19086:9;19078:18;;;;;;;;;;;;;;;:22;;;;19115:51;19148:9;19159:6;19122:11;;;;;;;;;;;19115:32;;;;:51;;;;;:::i;:::-;19196:9;19186:28;;;19207:6;19186:28;;;;;;:::i;:::-;;;;;;;;19047:179;15536:1;18911:322:::0;;:::o;11312:211::-;11429:86;11449:5;11479:23;;;11504:2;11508:5;11456:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11429:19;:86::i;:::-;11312:211;;;:::o;11531:248::-;11675:96;11695:5;11725:27;;;11754:4;11760:2;11764:5;11702:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11675:19;:96::i;:::-;11531:248;;;;:::o;13885:716::-;14309:23;14335:69;14363:4;14335:69;;;;;;;;;;;;;;;;;14343:5;14335:27;;;;:69;;;;;:::i;:::-;14309:95;;14439:1;14419:10;:17;:21;14415:179;;;14516:10;14505:30;;;;;;;;;;;;:::i;:::-;14497:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14415:179;13885:716;;;:::o;3514:229::-;3651:12;3683:52;3705:6;3713:4;3719:1;3722:12;3683:21;:52::i;:::-;3676:59;;3514:229;;;;;:::o;4634:510::-;4804:12;4862:5;4837:21;:30;;4829:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;4929:18;4940:6;4929:10;:18::i;:::-;4921:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4995:12;5009:23;5036:6;:11;;5055:5;5062:4;5036:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4994:73;;;;5085:51;5102:7;5111:10;5123:12;5085:16;:51::i;:::-;5078:58;;;;4634:510;;;;;;:::o;708:387::-;768:4;976:12;1043:7;1031:20;1023:28;;1086:1;1079:4;:8;1072:15;;;708:387;;;:::o;7320:712::-;7470:12;7499:7;7495:530;;;7530:10;7523:17;;;;7495:530;7664:1;7644:10;:17;:21;7640:374;;;7842:10;7836:17;7903:15;7890:10;7886:2;7882:19;7875:44;7790:148;7985:12;7978:20;;;;;;;;;;;:::i;:::-;;;;;;;;7320:712;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:137::-;;376:6;370:13;361:22;;392:30;416:5;392:30;:::i;:::-;351:77;;;;:::o;434:139::-;;518:6;505:20;496:29;;534:33;561:5;534:33;:::i;:::-;486:87;;;;:::o;579:143::-;;667:6;661:13;652:22;;683:33;710:5;683:33;:::i;:::-;642:80;;;;:::o;728:262::-;;836:2;824:9;815:7;811:23;807:32;804:2;;;852:1;849;842:12;804:2;895:1;920:53;965:7;956:6;945:9;941:22;920:53;:::i;:::-;910:63;;866:117;794:196;;;;:::o;996:256::-;;1101:2;1089:9;1080:7;1076:23;1072:32;1069:2;;;1117:1;1114;1107:12;1069:2;1160:1;1185:50;1227:7;1218:6;1207:9;1203:22;1185:50;:::i;:::-;1175:60;;1131:114;1059:193;;;;:::o;1258:278::-;;1374:2;1362:9;1353:7;1349:23;1345:32;1342:2;;;1390:1;1387;1380:12;1342:2;1433:1;1458:61;1511:7;1502:6;1491:9;1487:22;1458:61;:::i;:::-;1448:71;;1404:125;1332:204;;;;:::o;1542:262::-;;1650:2;1638:9;1629:7;1625:23;1621:32;1618:2;;;1666:1;1663;1656:12;1618:2;1709:1;1734:53;1779:7;1770:6;1759:9;1755:22;1734:53;:::i;:::-;1724:63;;1680:117;1608:196;;;;:::o;1810:284::-;;1929:2;1917:9;1908:7;1904:23;1900:32;1897:2;;;1945:1;1942;1935:12;1897:2;1988:1;2013:64;2069:7;2060:6;2049:9;2045:22;2013:64;:::i;:::-;2003:74;;1959:128;1887:207;;;;:::o;2100:118::-;2187:24;2205:5;2187:24;:::i;:::-;2182:3;2175:37;2165:53;;:::o;2224:109::-;2305:21;2320:5;2305:21;:::i;:::-;2300:3;2293:34;2283:50;;:::o;2339:373::-;;2471:38;2503:5;2471:38;:::i;:::-;2525:88;2606:6;2601:3;2525:88;:::i;:::-;2518:95;;2622:52;2667:6;2662:3;2655:4;2648:5;2644:16;2622:52;:::i;:::-;2699:6;2694:3;2690:16;2683:23;;2447:265;;;;;:::o;2718:364::-;;2834:39;2867:5;2834:39;:::i;:::-;2889:71;2953:6;2948:3;2889:71;:::i;:::-;2882:78;;2969:52;3014:6;3009:3;3002:4;2995:5;2991:16;2969:52;:::i;:::-;3046:29;3068:6;3046:29;:::i;:::-;3041:3;3037:39;3030:46;;2810:272;;;;;:::o;3088:318::-;;3251:67;3315:2;3310:3;3251:67;:::i;:::-;3244:74;;3348:22;3344:1;3339:3;3335:11;3328:43;3397:2;3392:3;3388:12;3381:19;;3234:172;;;:::o;3412:315::-;;3575:67;3639:2;3634:3;3575:67;:::i;:::-;3568:74;;3672:19;3668:1;3663:3;3659:11;3652:40;3718:2;3713:3;3709:12;3702:19;;3558:169;;;:::o;3733:370::-;;3896:67;3960:2;3955:3;3896:67;:::i;:::-;3889:74;;3993:34;3989:1;3984:3;3980:11;3973:55;4059:8;4054:2;4049:3;4045:12;4038:30;4094:2;4089:3;4085:12;4078:19;;3879:224;;;:::o;4109:312::-;;4272:67;4336:2;4331:3;4272:67;:::i;:::-;4265:74;;4369:16;4365:1;4360:3;4356:11;4349:37;4412:2;4407:3;4403:12;4396:19;;4255:166;;;:::o;4427:316::-;;4590:67;4654:2;4649:3;4590:67;:::i;:::-;4583:74;;4687:20;4683:1;4678:3;4674:11;4667:41;4734:2;4729:3;4725:12;4718:19;;4573:170;;;:::o;4749:327::-;;4912:67;4976:2;4971:3;4912:67;:::i;:::-;4905:74;;5009:31;5005:1;5000:3;4996:11;4989:52;5067:2;5062:3;5058:12;5051:19;;4895:181;;;:::o;5082:326::-;;5245:67;5309:2;5304:3;5245:67;:::i;:::-;5238:74;;5342:30;5338:1;5333:3;5329:11;5322:51;5399:2;5394:3;5390:12;5383:19;;5228:180;;;:::o;5414:374::-;;5577:67;5641:2;5636:3;5577:67;:::i;:::-;5570:74;;5674:34;5670:1;5665:3;5661:11;5654:55;5740:12;5735:2;5730:3;5726:12;5719:34;5779:2;5774:3;5770:12;5763:19;;5560:228;;;:::o;5794:118::-;5881:24;5899:5;5881:24;:::i;:::-;5876:3;5869:37;5859:53;;:::o;5918:271::-;;6070:93;6159:3;6150:6;6070:93;:::i;:::-;6063:100;;6180:3;6173:10;;6052:137;;;;:::o;6195:222::-;;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6293:124;;;;:::o;6423:442::-;;6610:2;6599:9;6595:18;6587:26;;6623:71;6691:1;6680:9;6676:17;6667:6;6623:71;:::i;:::-;6704:72;6772:2;6761:9;6757:18;6748:6;6704:72;:::i;:::-;6786;6854:2;6843:9;6839:18;6830:6;6786:72;:::i;:::-;6577:288;;;;;;:::o;6871:332::-;;7030:2;7019:9;7015:18;7007:26;;7043:71;7111:1;7100:9;7096:17;7087:6;7043:71;:::i;:::-;7124:72;7192:2;7181:9;7177:18;7168:6;7124:72;:::i;:::-;6997:206;;;;;:::o;7209:210::-;;7334:2;7323:9;7319:18;7311:26;;7347:65;7409:1;7398:9;7394:17;7385:6;7347:65;:::i;:::-;7301:118;;;;:::o;7425:313::-;;7576:2;7565:9;7561:18;7553:26;;7625:9;7619:4;7615:20;7611:1;7600:9;7596:17;7589:47;7653:78;7726:4;7717:6;7653:78;:::i;:::-;7645:86;;7543:195;;;;:::o;7744:419::-;;7948:2;7937:9;7933:18;7925:26;;7997:9;7991:4;7987:20;7983:1;7972:9;7968:17;7961:47;8025:131;8151:4;8025:131;:::i;:::-;8017:139;;7915:248;;;:::o;8169:419::-;;8373:2;8362:9;8358:18;8350:26;;8422:9;8416:4;8412:20;8408:1;8397:9;8393:17;8386:47;8450:131;8576:4;8450:131;:::i;:::-;8442:139;;8340:248;;;:::o;8594:419::-;;8798:2;8787:9;8783:18;8775:26;;8847:9;8841:4;8837:20;8833:1;8822:9;8818:17;8811:47;8875:131;9001:4;8875:131;:::i;:::-;8867:139;;8765:248;;;:::o;9019:419::-;;9223:2;9212:9;9208:18;9200:26;;9272:9;9266:4;9262:20;9258:1;9247:9;9243:17;9236:47;9300:131;9426:4;9300:131;:::i;:::-;9292:139;;9190:248;;;:::o;9444:419::-;;9648:2;9637:9;9633:18;9625:26;;9697:9;9691:4;9687:20;9683:1;9672:9;9668:17;9661:47;9725:131;9851:4;9725:131;:::i;:::-;9717:139;;9615:248;;;:::o;9869:419::-;;10073:2;10062:9;10058:18;10050:26;;10122:9;10116:4;10112:20;10108:1;10097:9;10093:17;10086:47;10150:131;10276:4;10150:131;:::i;:::-;10142:139;;10040:248;;;:::o;10294:419::-;;10498:2;10487:9;10483:18;10475:26;;10547:9;10541:4;10537:20;10533:1;10522:9;10518:17;10511:47;10575:131;10701:4;10575:131;:::i;:::-;10567:139;;10465:248;;;:::o;10719:419::-;;10923:2;10912:9;10908:18;10900:26;;10972:9;10966:4;10962:20;10958:1;10947:9;10943:17;10936:47;11000:131;11126:4;11000:131;:::i;:::-;10992:139;;10890:248;;;:::o;11144:222::-;;11275:2;11264:9;11260:18;11252:26;;11288:71;11356:1;11345:9;11341:17;11332:6;11288:71;:::i;:::-;11242:124;;;;:::o;11372:98::-;;11457:5;11451:12;11441:22;;11430:40;;;:::o;11476:99::-;;11562:5;11556:12;11546:22;;11535:40;;;:::o;11581:147::-;;11719:3;11704:18;;11694:34;;;;:::o;11734:169::-;;11852:6;11847:3;11840:19;11892:4;11887:3;11883:14;11868:29;;11830:73;;;;:::o;11909:305::-;;11968:20;11986:1;11968:20;:::i;:::-;11963:25;;12002:20;12020:1;12002:20;:::i;:::-;11997:25;;12156:1;12088:66;12084:74;12081:1;12078:81;12075:2;;;12162:18;;:::i;:::-;12075:2;12206:1;12203;12199:9;12192:16;;11953:261;;;;:::o;12220:185::-;;12277:20;12295:1;12277:20;:::i;:::-;12272:25;;12311:20;12329:1;12311:20;:::i;:::-;12306:25;;12350:1;12340:2;;12355:18;;:::i;:::-;12340:2;12397:1;12394;12390:9;12385:14;;12262:143;;;;:::o;12411:348::-;;12474:20;12492:1;12474:20;:::i;:::-;12469:25;;12508:20;12526:1;12508:20;:::i;:::-;12503:25;;12696:1;12628:66;12624:74;12621:1;12618:81;12613:1;12606:9;12599:17;12595:105;12592:2;;;12703:18;;:::i;:::-;12592:2;12751:1;12748;12744:9;12733:20;;12459:300;;;;:::o;12765:191::-;;12825:20;12843:1;12825:20;:::i;:::-;12820:25;;12859:20;12877:1;12859:20;:::i;:::-;12854:25;;12898:1;12895;12892:8;12889:2;;;12903:18;;:::i;:::-;12889:2;12948:1;12945;12941:9;12933:17;;12810:146;;;;:::o;12962:96::-;;13028:24;13046:5;13028:24;:::i;:::-;13017:35;;13007:51;;;:::o;13064:90::-;;13141:5;13134:13;13127:21;13116:32;;13106:48;;;:::o;13160:126::-;;13237:42;13230:5;13226:54;13215:65;;13205:81;;;:::o;13292:77::-;;13358:5;13347:16;;13337:32;;;:::o;13375:307::-;13443:1;13453:113;13467:6;13464:1;13461:13;13453:113;;;13552:1;13547:3;13543:11;13537:18;13533:1;13528:3;13524:11;13517:39;13489:2;13486:1;13482:10;13477:15;;13453:113;;;13584:6;13581:1;13578:13;13575:2;;;13664:1;13655:6;13650:3;13646:16;13639:27;13575:2;13424:258;;;;:::o;13688:180::-;13736:77;13733:1;13726:88;13833:4;13830:1;13823:15;13857:4;13854:1;13847:15;13874:180;13922:77;13919:1;13912:88;14019:4;14016:1;14009:15;14043:4;14040:1;14033:15;14060:102;;14152:2;14148:7;14143:2;14136:5;14132:14;14128:28;14118:38;;14108:54;;;:::o;14168:122::-;14241:24;14259:5;14241:24;:::i;:::-;14234:5;14231:35;14221:2;;14280:1;14277;14270:12;14221:2;14211:79;:::o;14296:116::-;14366:21;14381:5;14366:21;:::i;:::-;14359:5;14356:32;14346:2;;14402:1;14399;14392:12;14346:2;14336:76;:::o;14418:122::-;14491:24;14509:5;14491:24;:::i;:::-;14484:5;14481:35;14471:2;;14530:1;14527;14520:12;14471:2;14461:79;:::o

Swarm Source

ipfs://0ab20a92cc1a4686df6ea24ccbf843d67b66c327a60b40620f74db4c34f4834a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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