ETH Price: $3,208.70 (-3.04%)

Token

Staked + Bonus + Fee GMX (sbfGMX)

Overview

Max Total Supply

6,982,525.774655284255951578 sbfGMX

Holders

97,801 ( -0.001%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.020439010635074813 sbfGMX

Value
$0.00
0xbaea24e991f0723f845a08d3e299dd6f739285ef
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GMX is a decentralized spot and perpetual exchange that supports low swap fees and zero price impact trades.

Contract Source Code Verified (Exact Match)

Contract Name:
RewardTracker

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 9 : RewardTracker.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

import "../libraries/math/SafeMath.sol";
import "../libraries/token/IERC20.sol";
import "../libraries/token/SafeERC20.sol";
import "../libraries/utils/ReentrancyGuard.sol";

import "./interfaces/IRewardDistributor.sol";
import "./interfaces/IRewardTracker.sol";
import "../access/Governable.sol";

contract RewardTracker is IERC20, ReentrancyGuard, IRewardTracker, Governable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 public constant BASIS_POINTS_DIVISOR = 10000;
    uint256 public constant PRECISION = 1e30;

    uint8 public constant decimals = 18;

    bool public isInitialized;

    string public name;
    string public symbol;

    address public distributor;
    mapping (address => bool) public isDepositToken;
    mapping (address => mapping (address => uint256)) public override depositBalances;

    uint256 public override totalSupply;
    mapping (address => uint256) public balances;
    mapping (address => mapping (address => uint256)) public allowances;

    uint256 public cumulativeRewardPerToken;
    mapping (address => uint256) public override stakedAmounts;
    mapping (address => uint256) public claimableReward;
    mapping (address => uint256) public previousCumulatedRewardPerToken;
    mapping (address => uint256) public override cumulativeRewards;
    mapping (address => uint256) public override averageStakedAmounts;

    bool public inPrivateTransferMode;
    bool public inPrivateStakingMode;
    bool public inPrivateClaimingMode;
    mapping (address => bool) public isHandler;

    event Claim(address receiver, uint256 amount);

    constructor(string memory _name, string memory _symbol) public {
        name = _name;
        symbol = _symbol;
    }

    function initialize(
        address[] memory _depositTokens,
        address _distributor
    ) external onlyGov {
        require(!isInitialized, "RewardTracker: already initialized");
        isInitialized = true;

        for (uint256 i = 0; i < _depositTokens.length; i++) {
            address depositToken = _depositTokens[i];
            isDepositToken[depositToken] = true;
        }

        distributor = _distributor;
    }

    function setDepositToken(address _depositToken, bool _isDepositToken) external onlyGov {
        isDepositToken[_depositToken] = _isDepositToken;
    }

    function setInPrivateTransferMode(bool _inPrivateTransferMode) external onlyGov {
        inPrivateTransferMode = _inPrivateTransferMode;
    }

    function setInPrivateStakingMode(bool _inPrivateStakingMode) external onlyGov {
        inPrivateStakingMode = _inPrivateStakingMode;
    }

    function setInPrivateClaimingMode(bool _inPrivateClaimingMode) external onlyGov {
        inPrivateClaimingMode = _inPrivateClaimingMode;
    }

    function setHandler(address _handler, bool _isActive) external onlyGov {
        isHandler[_handler] = _isActive;
    }

    // to help users who accidentally send their tokens to this contract
    function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov {
        require(!isDepositToken[_token], "RewardTracker: _token cannot be a depositToken");
        IERC20(_token).safeTransfer(_account, _amount);
    }

    function balanceOf(address _account) external view override returns (uint256) {
        return balances[_account];
    }

    function stake(address _depositToken, uint256 _amount) external override nonReentrant {
        if (inPrivateStakingMode) { revert("RewardTracker: action not enabled"); }
        _stake(msg.sender, msg.sender, _depositToken, _amount);
    }

    function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external override nonReentrant {
        _validateHandler();
        _stake(_fundingAccount, _account, _depositToken, _amount);
    }

    function unstake(address _depositToken, uint256 _amount) external override nonReentrant {
        if (inPrivateStakingMode) { revert("RewardTracker: action not enabled"); }
        _unstake(msg.sender, _depositToken, _amount, msg.sender);
    }

    function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external override nonReentrant {
        _validateHandler();
        _unstake(_account, _depositToken, _amount, _receiver);
    }

    function transfer(address _recipient, uint256 _amount) external override returns (bool) {
        _transfer(msg.sender, _recipient, _amount);
        return true;
    }

    function allowance(address _owner, address _spender) external view override returns (uint256) {
        return allowances[_owner][_spender];
    }

    function approve(address _spender, uint256 _amount) external override returns (bool) {
        _approve(msg.sender, _spender, _amount);
        return true;
    }

    function transferFrom(address _sender, address _recipient, uint256 _amount) external override returns (bool) {
        if (isHandler[msg.sender]) {
            _transfer(_sender, _recipient, _amount);
            return true;
        }

        uint256 nextAllowance = allowances[_sender][msg.sender].sub(_amount, "RewardTracker: transfer amount exceeds allowance");
        _approve(_sender, msg.sender, nextAllowance);
        _transfer(_sender, _recipient, _amount);
        return true;
    }

    function tokensPerInterval() external override view returns (uint256) {
        return IRewardDistributor(distributor).tokensPerInterval();
    }

    function updateRewards() external override nonReentrant {
        _updateRewards(address(0));
    }

    function claim(address _receiver) external override nonReentrant returns (uint256) {
        if (inPrivateClaimingMode) { revert("RewardTracker: action not enabled"); }
        return _claim(msg.sender, _receiver);
    }

    function claimForAccount(address _account, address _receiver) external override nonReentrant returns (uint256) {
        _validateHandler();
        return _claim(_account, _receiver);
    }

    function claimable(address _account) public override view returns (uint256) {
        uint256 stakedAmount = stakedAmounts[_account];
        if (stakedAmount == 0) {
            return claimableReward[_account];
        }
        uint256 supply = totalSupply;
        uint256 pendingRewards = IRewardDistributor(distributor).pendingRewards().mul(PRECISION);
        uint256 nextCumulativeRewardPerToken = cumulativeRewardPerToken.add(pendingRewards.div(supply));
        return claimableReward[_account].add(
            stakedAmount.mul(nextCumulativeRewardPerToken.sub(previousCumulatedRewardPerToken[_account])).div(PRECISION));
    }

    function rewardToken() public view returns (address) {
        return IRewardDistributor(distributor).rewardToken();
    }

    function _claim(address _account, address _receiver) private returns (uint256) {
        _updateRewards(_account);

        uint256 tokenAmount = claimableReward[_account];
        claimableReward[_account] = 0;

        if (tokenAmount > 0) {
            IERC20(rewardToken()).safeTransfer(_receiver, tokenAmount);
            emit Claim(_account, tokenAmount);
        }

        return tokenAmount;
    }

    function _mint(address _account, uint256 _amount) internal {
        require(_account != address(0), "RewardTracker: mint to the zero address");

        totalSupply = totalSupply.add(_amount);
        balances[_account] = balances[_account].add(_amount);

        emit Transfer(address(0), _account, _amount);
    }

    function _burn(address _account, uint256 _amount) internal {
        require(_account != address(0), "RewardTracker: burn from the zero address");

        balances[_account] = balances[_account].sub(_amount, "RewardTracker: burn amount exceeds balance");
        totalSupply = totalSupply.sub(_amount);

        emit Transfer(_account, address(0), _amount);
    }

    function _transfer(address _sender, address _recipient, uint256 _amount) private {
        require(_sender != address(0), "RewardTracker: transfer from the zero address");
        require(_recipient != address(0), "RewardTracker: transfer to the zero address");

        if (inPrivateTransferMode) { _validateHandler(); }

        balances[_sender] = balances[_sender].sub(_amount, "RewardTracker: transfer amount exceeds balance");
        balances[_recipient] = balances[_recipient].add(_amount);

        emit Transfer(_sender, _recipient,_amount);
    }

    function _approve(address _owner, address _spender, uint256 _amount) private {
        require(_owner != address(0), "RewardTracker: approve from the zero address");
        require(_spender != address(0), "RewardTracker: approve to the zero address");

        allowances[_owner][_spender] = _amount;

        emit Approval(_owner, _spender, _amount);
    }

    function _validateHandler() private view {
        require(isHandler[msg.sender], "RewardTracker: forbidden");
    }

    function _stake(address _fundingAccount, address _account, address _depositToken, uint256 _amount) private {
        require(_amount > 0, "RewardTracker: invalid _amount");
        require(isDepositToken[_depositToken], "RewardTracker: invalid _depositToken");

        IERC20(_depositToken).safeTransferFrom(_fundingAccount, address(this), _amount);

        _updateRewards(_account);

        stakedAmounts[_account] = stakedAmounts[_account].add(_amount);
        depositBalances[_account][_depositToken] = depositBalances[_account][_depositToken].add(_amount);

        _mint(_account, _amount);
    }

    function _unstake(address _account, address _depositToken, uint256 _amount, address _receiver) private {
        require(_amount > 0, "RewardTracker: invalid _amount");
        require(isDepositToken[_depositToken], "RewardTracker: invalid _depositToken");

        _updateRewards(_account);

        uint256 stakedAmount = stakedAmounts[_account];
        require(stakedAmounts[_account] >= _amount, "RewardTracker: _amount exceeds stakedAmount");

        stakedAmounts[_account] = stakedAmount.sub(_amount);

        uint256 depositBalance = depositBalances[_account][_depositToken];
        require(depositBalance >= _amount, "RewardTracker: _amount exceeds depositBalance");
        depositBalances[_account][_depositToken] = depositBalance.sub(_amount);

        _burn(_account, _amount);
        IERC20(_depositToken).safeTransfer(_receiver, _amount);
    }

    function _updateRewards(address _account) private {
        uint256 blockReward = IRewardDistributor(distributor).distribute();

        uint256 supply = totalSupply;
        uint256 _cumulativeRewardPerToken = cumulativeRewardPerToken;
        if (supply > 0 && blockReward > 0) {
            _cumulativeRewardPerToken = _cumulativeRewardPerToken.add(blockReward.mul(PRECISION).div(supply));
            cumulativeRewardPerToken = _cumulativeRewardPerToken;
        }

        // cumulativeRewardPerToken can only increase
        // so if cumulativeRewardPerToken is zero, it means there are no rewards yet
        if (_cumulativeRewardPerToken == 0) {
            return;
        }

        if (_account != address(0)) {
            uint256 stakedAmount = stakedAmounts[_account];
            uint256 accountReward = stakedAmount.mul(_cumulativeRewardPerToken.sub(previousCumulatedRewardPerToken[_account])).div(PRECISION);
            uint256 _claimableReward = claimableReward[_account].add(accountReward);

            claimableReward[_account] = _claimableReward;
            previousCumulatedRewardPerToken[_account] = _cumulativeRewardPerToken;

            if (_claimableReward > 0 && stakedAmounts[_account] > 0) {
                uint256 nextCumulativeReward = cumulativeRewards[_account].add(accountReward);

                averageStakedAmounts[_account] = averageStakedAmounts[_account].mul(cumulativeRewards[_account]).div(nextCumulativeReward)
                    .add(stakedAmount.mul(accountReward).div(nextCumulativeReward));

                cumulativeRewards[_account] = nextCumulativeReward;
            }
        }
    }
}

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

pragma solidity 0.6.12;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

File 3 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

/**
 * @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);
}

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

pragma solidity 0.6.12;

import "./IERC20.sol";
import "../math/SafeMath.sol";
import "../utils/Address.sol";

/**
 * @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 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));
    }

    /**
     * @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'
        // 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, "SafeERC20: decreased allowance below zero");
        _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
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 9 : IRewardDistributor.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

interface IRewardDistributor {
    function rewardToken() external view returns (address);
    function tokensPerInterval() external view returns (uint256);
    function pendingRewards() external view returns (uint256);
    function distribute() external returns (uint256);
}

File 7 of 9 : IRewardTracker.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

interface IRewardTracker {
    function depositBalances(address _account, address _depositToken) external returns (uint256);
    function stakedAmounts(address _account) external returns (uint256);
    function updateRewards() external;
    function stake(address _depositToken, uint256 _amount) external;
    function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external;
    function unstake(address _depositToken, uint256 _amount) external;
    function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external;
    function tokensPerInterval() external view returns (uint256);
    function claim(address _receiver) external returns (uint256);
    function claimForAccount(address _account, address _receiver) external returns (uint256);
    function claimable(address _account) external view returns (uint256);
    function averageStakedAmounts(address _account) external view returns (uint256);
    function cumulativeRewards(address _account) external view returns (uint256);
}

File 8 of 9 : Governable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

contract Governable {
    address public gov;

    constructor() public {
        gov = msg.sender;
    }

    modifier onlyGov() {
        require(msg.sender == gov, "Governable: forbidden");
        _;
    }

    function setGov(address _gov) external onlyGov {
        gov = _gov;
    }
}

File 9 of 9 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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.3._
     */
    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.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASIS_POINTS_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"averageStakedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimForAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimableReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cumulativeRewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"depositBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPrivateClaimingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPrivateStakingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPrivateTransferMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_depositTokens","type":"address[]"},{"internalType":"address","name":"_distributor","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDepositToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isHandler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"previousCumulatedRewardPerToken","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":"_depositToken","type":"address"},{"internalType":"bool","name":"_isDepositToken","type":"bool"}],"name":"setDepositToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gov","type":"address"}],"name":"setGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_handler","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_inPrivateClaimingMode","type":"bool"}],"name":"setInPrivateClaimingMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_inPrivateStakingMode","type":"bool"}],"name":"setInPrivateStakingMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_inPrivateTransferMode","type":"bool"}],"name":"setInPrivateTransferMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_depositToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fundingAccount","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_depositToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stakeForAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensPerInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_depositToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_depositToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"unstakeForAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002c0a38038062002c0a833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405250506001600081905580546001600160a01b03191633179055508151620001cb906002906020850190620001ea565b508051620001e1906003906020840190620001ea565b50505062000286565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b61297480620002966000396000f3fe608060405234801561001057600080fd5b506004361061021a5760003560e01c806301e336671461021f57806306fdde0314610257578063095ea7b3146102d4578063098bf59d1461031457806310c1c10314610350578063126082cf1461038857806312d43a511461039057806313e82e7a146103b457806318160ddd146103e25780631d30d5bc146103ea5780631e83409a1461040957806323b872dd1461042f57806327e235e314610465578063313ce5671461048b5780633792def3146104a9578063392e53cd146104cf5780633cd7f700146104d75780633e158b0c146104f6578063402914f5146104fe57806344a0841114610524578063462d0b2e1461054a57806346ea87af146105f657806355b6ed5c1461061c5780635a47a1a71461064a57806370a0823114610669578063790b5a6c1461068f57806395d89b41146106cb5780639cb7de4b146106d3578063a318021714610701578063a8d9362714610727578063a9059cbb1461072f578063aaf5eb681461075b578063adc9772e14610763578063b89e45b31461078f578063bfe10928146107b5578063c2a672e0146107bd578063c5fa2730146107e9578063cfad57a2146107f1578063dd62ed3e14610817578063dfbaefb114610845578063e44b75581461084d578063e95034251461087b578063f5d9d63e146108a1578063f5fc5076146108cf578063f76033d3146108d7578063f7c618c1146108df575b600080fd5b6102556004803603606081101561023557600080fd5b506001600160a01b038135811691602081013590911690604001356108e7565b005b61025f6109a5565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610299578181015183820152602001610281565b50505050905090810190601f1680156102c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610300600480360360408110156102ea57600080fd5b506001600160a01b038135169060200135610a30565b604080519115158252519081900360200190f35b6102556004803603608081101561032a57600080fd5b506001600160a01b03813581169160208101358216916040820135916060013516610a47565b6103766004803603602081101561036657600080fd5b50356001600160a01b0316610ab1565b60408051918252519081900360200190f35b610376610ac3565b610398610ac9565b604080516001600160a01b039092168252519081900360200190f35b610376600480360360408110156103ca57600080fd5b506001600160a01b0381358116916020013516610ad8565b610376610b43565b6102556004803603602081101561040057600080fd5b50351515610b49565b6103766004803603602081101561041f57600080fd5b50356001600160a01b0316610bb0565b6103006004803603606081101561044557600080fd5b506001600160a01b03813581169160208101359091169060400135610c5a565b6103766004803603602081101561047b57600080fd5b50356001600160a01b0316610cf4565b610493610d06565b6040805160ff9092168252519081900360200190f35b610376600480360360208110156104bf57600080fd5b50356001600160a01b0316610d0b565b610300610d1d565b610255600480360360208110156104ed57600080fd5b50351515610d2d565b610255610d96565b6103766004803603602081101561051457600080fd5b50356001600160a01b0316610df3565b6103766004803603602081101561053a57600080fd5b50356001600160a01b0316610f51565b6102556004803603604081101561056057600080fd5b810190602081018135600160201b81111561057a57600080fd5b82018360208201111561058c57600080fd5b803590602001918460208302840111600160201b831117156105ad57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550505090356001600160a01b03169150610f639050565b6103006004803603602081101561060c57600080fd5b50356001600160a01b0316611086565b6103766004803603604081101561063257600080fd5b506001600160a01b038135811691602001351661109b565b6102556004803603602081101561066057600080fd5b503515156110b8565b6103766004803603602081101561067f57600080fd5b50356001600160a01b0316611118565b610255600480360360808110156106a557600080fd5b506001600160a01b03813581169160208101358216916040820135169060600135611133565b61025f611192565b610255600480360360408110156106e957600080fd5b506001600160a01b03813516906020013515156111ed565b6103766004803603602081101561071757600080fd5b50356001600160a01b0316611265565b610376611277565b6103006004803603604081101561074557600080fd5b506001600160a01b0381351690602001356112f8565b610376611305565b6102556004803603604081101561077957600080fd5b506001600160a01b038135169060200135611315565b610300600480360360208110156107a557600080fd5b50356001600160a01b03166113bc565b6103986113d1565b610255600480360360408110156107d357600080fd5b506001600160a01b0381351690602001356113e0565b61030061147e565b6102556004803603602081101561080757600080fd5b50356001600160a01b031661148c565b6103766004803603604081101561082d57600080fd5b506001600160a01b03813581169160200135166114fb565b610300611526565b6102556004803603604081101561086357600080fd5b506001600160a01b038135169060200135151561152f565b6103766004803603602081101561089157600080fd5b50356001600160a01b03166115a7565b610376600480360360408110156108b757600080fd5b506001600160a01b03813581169160200135166115b9565b6103766115d6565b6103006115dc565b6103986115eb565b6001546001600160a01b03163314610934576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205460ff161561098c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061283b602e913960400191505060405180910390fd5b6109a06001600160a01b038416838361163b565b505050565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000610a3d33848461168d565b5060015b92915050565b60026000541415610a8d576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055610a9a611779565b610aa6848484846117da565b505060016000555050565b600b6020526000908152604090205481565b61271081565b6001546001600160a01b031681565b600060026000541415610b20576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055610b2d611779565b610b3783836119a6565b60016000559392505050565b60075481565b6001546001600160a01b03163314610b96576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b601080549115156101000261ff0019909216919091179055565b600060026000541415610bf8576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b600260005560105462010000900460ff1615610c455760405162461bcd60e51b81526004018080602001828103825260218152602001806128c36021913960400191505060405180910390fd5b610c4f33836119a6565b600160005592915050565b3360009081526011602052604081205460ff1615610c8557610c7d848484611a3c565b506001610ced565b6000610ccf83604051806060016040528060308152602001612869603091396001600160a01b03881660009081526009602090815260408083203384529091529020549190611b8f565b9050610cdc85338361168d565b610ce7858585611a3c565b60019150505b9392505050565b60086020526000908152604090205481565b601281565b600e6020526000908152604090205481565b600154600160a01b900460ff1681565b6001546001600160a01b03163314610d7a576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b60108054911515620100000262ff000019909216919091179055565b60026000541415610ddc576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b60026000908155610dec90611c26565b6001600055565b6001600160a01b0381166000908152600b602052604081205480610e315750506001600160a01b0381166000908152600c6020526040902054610f4c565b60075460048054604080516376f69fed60e11b81529051600093610ebe9368327cb2734119d3b7a9601e1b936001600160a01b039091169263eded3fda92828101926020929190829003018186803b158015610e8c57600080fd5b505afa158015610ea0573d6000803e3d6000fd5b505050506040513d6020811015610eb657600080fd5b505190611e76565b90506000610ed8610ecf8385611ecf565b600a5490611f0e565b6001600160a01b0387166000908152600d6020526040902054909150610f4590610f269068327cb2734119d3b7a9601e1b90610f2090610f19908690611f66565b8890611e76565b90611ecf565b6001600160a01b0388166000908152600c602052604090205490611f0e565b9450505050505b919050565b600d6020526000908152604090205481565b6001546001600160a01b03163314610fb0576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b600154600160a01b900460ff1615610ff95760405162461bcd60e51b81526004018080602001828103825260228152602001806127a56022913960400191505060405180910390fd5b6001805460ff60a01b1916600160a01b17905560005b825181101561106257600083828151811061102657fe5b6020908102919091018101516001600160a01b03166000908152600590915260409020805460ff1916600190811790915591909101905061100f565b50600480546001600160a01b0319166001600160a01b039290921691909117905550565b60116020526000908152604090205460ff1681565b600960209081526000928352604080842090915290825290205481565b6001546001600160a01b03163314611105576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6010805460ff1916911515919091179055565b6001600160a01b031660009081526008602052604090205490565b60026000541415611179576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055611186611779565b610aa684848484611fa8565b6003805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b6001546001600160a01b0316331461123a576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b600f6020526000908152604090205481565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663a8d936276040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c757600080fd5b505afa1580156112db573d6000803e3d6000fd5b505050506040513d60208110156112f157600080fd5b5051905090565b6000610a3d338484611a3c565b68327cb2734119d3b7a9601e1b81565b6002600054141561135b576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055601054610100900460ff16156113a75760405162461bcd60e51b81526004018080602001828103825260218152602001806128c36021913960400191505060405180910390fd5b6113b333338484611fa8565b50506001600055565b60056020526000908152604090205460ff1681565b6004546001600160a01b031681565b60026000541415611426576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055601054610100900460ff16156114725760405162461bcd60e51b81526004018080602001828103825260218152602001806128c36021913960400191505060405180910390fd5b6113b3338383336117da565b601054610100900460ff1681565b6001546001600160a01b031633146114d9576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b60105460ff1681565b6001546001600160a01b0316331461157c576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b600c6020526000908152604090205481565b600660209081526000928352604080842090915290825290205481565b600a5481565b60105462010000900460ff1681565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663f7c618c16040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c757600080fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109a09084906120ef565b6001600160a01b0383166116d25760405162461bcd60e51b815260040180806020018281038252602c815260200180612670602c913960400191505060405180910390fd5b6001600160a01b0382166117175760405162461bcd60e51b815260040180806020018281038252602a81526020018061275a602a913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3360009081526011602052604090205460ff166117d8576040805162461bcd60e51b81526020600482015260186024820152772932bbb0b9322a3930b1b5b2b91d103337b93134b23232b760411b604482015290519081900360640190fd5b565b6000821161181d576040805162461bcd60e51b815260206004820152601e60248201526000805160206125db833981519152604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205460ff166118745760405162461bcd60e51b81526004018080602001828103825260248152602001806127366024913960400191505060405180910390fd5b61187d84611c26565b6001600160a01b0384166000908152600b6020526040902054828110156118d55760405162461bcd60e51b815260040180806020018281038252602b815260200180612645602b913960400191505060405180910390fd5b6118df8184611f66565b6001600160a01b038087166000908152600b6020908152604080832094909455600681528382209288168252919091522054838110156119505760405162461bcd60e51b815260040180806020018281038252602d8152602001806128e4602d913960400191505060405180910390fd5b61195a8185611f66565b6001600160a01b038088166000908152600660209081526040808320938a168352929052205561198a86856121a0565b61199e6001600160a01b038616848661163b565b505050505050565b60006119b183611c26565b6001600160a01b0383166000908152600c6020526040812080549190558015610ced576119f183826119e16115eb565b6001600160a01b0316919061163b565b604080516001600160a01b03861681526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19392505050565b6001600160a01b038316611a815760405162461bcd60e51b815260040180806020018281038252602d8152602001806127c7602d913960400191505060405180910390fd5b6001600160a01b038216611ac65760405162461bcd60e51b815260040180806020018281038252602b8152602001806126e5602b913960400191505060405180910390fd5b60105460ff1615611ad957611ad9611779565b611b16816040518060600160405280602e8152602001612911602e91396001600160a01b0386166000908152600860205260409020549190611b8f565b6001600160a01b038085166000908152600860205260408082209390935590841681522054611b459082611f0e565b6001600160a01b03808416600081815260086020908152604091829020949094558051858152905191939287169260008051602061281b83398151915292918290030190a3505050565b60008184841115611c1e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be3578181015183820152602001611bcb565b50505050905090810190601f168015611c105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611c7857600080fd5b505af1158015611c8c573d6000803e3d6000fd5b505050506040513d6020811015611ca257600080fd5b5051600754600a54919250908115801590611cbd5750600083115b15611cee57611ce6611cdf83610f208668327cb2734119d3b7a9601e1b611e76565b8290611f0e565b600a81905590505b80611cfb57505050611e73565b6001600160a01b03841615611e6f576001600160a01b0384166000908152600b6020908152604080832054600d909252822054909190611d599068327cb2734119d3b7a9601e1b90610f2090611d52908790611f66565b8590611e76565b6001600160a01b0387166000908152600c602052604081205491925090611d809083611f0e565b6001600160a01b0388166000908152600c60209081526040808320849055600d909152902085905590508015801590611dd057506001600160a01b0387166000908152600b602052604090205415155b15611e6b576001600160a01b0387166000908152600e6020526040812054611df89084611f0e565b9050611e45611e0b82610f208787611e76565b6001600160a01b038a166000908152600e6020908152604080832054600f90925290912054611e3f918591610f2091611e76565b90611f0e565b6001600160a01b0389166000908152600f6020908152604080832093909355600e905220555b5050505b5050505b50565b600082611e8557506000610a41565b82820282848281611e9257fe5b0414610ced5760405162461bcd60e51b81526004018080602001828103825260218152602001806127846021913960400191505060405180910390fd5b6000610ced83836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b81525061227e565b600082820183811015610ced576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000610ced83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8f565b60008111611feb576040805162461bcd60e51b815260206004820152601e60248201526000805160206125db833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090205460ff166120425760405162461bcd60e51b81526004018080602001828103825260248152602001806127366024913960400191505060405180910390fd5b6120576001600160a01b0383168530846122e3565b61206083611c26565b6001600160a01b0383166000908152600b60205260409020546120839082611f0e565b6001600160a01b038085166000908152600b60209081526040808320949094556006815283822092861682529190915220546120bf9082611f0e565b6001600160a01b03808516600090815260066020908152604080832093871683529290522055611e6f838261233d565b6060612144826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123fb9092919063ffffffff16565b8051909150156109a05780806020019051602081101561216357600080fd5b50516109a05760405162461bcd60e51b815260040180806020018281038252602a815260200180612899602a913960400191505060405180910390fd5b6001600160a01b0382166121e55760405162461bcd60e51b815260040180806020018281038252602981526020018061269c6029913960400191505060405180910390fd5b612222816040518060600160405280602a81526020016125fb602a91396001600160a01b0385166000908152600860205260409020549190611b8f565b6001600160a01b0383166000908152600860205260409020556007546122489082611f66565b6007556040805182815290516000916001600160a01b0385169160008051602061281b8339815191529181900360200190a35050565b600081836122cd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611be3578181015183820152602001611bcb565b5060008385816122d957fe5b0495945050505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611e6f9085906120ef565b6001600160a01b0382166123825760405162461bcd60e51b81526004018080602001828103825260278152602001806127f46027913960400191505060405180910390fd5b60075461238f9082611f0e565b6007556001600160a01b0382166000908152600860205260409020546123b59082611f0e565b6001600160a01b038316600081815260086020908152604080832094909455835185815293519293919260008051602061281b8339815191529281900390910190a35050565b606061240a8484600085612412565b949350505050565b6060824710156124535760405162461bcd60e51b81526004018080602001828103825260268152602001806127106026913960400191505060405180910390fd5b61245c8561256e565b6124ad576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106124ec5780518252601f1990920191602091820191016124cd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461254e576040519150601f19603f3d011682016040523d82523d6000602084013e612553565b606091505b5091509150612563828286612574565b979650505050505050565b3b151590565b60608315612583575081610ced565b8251156125935782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611be3578181015183820152602001611bcb56fe526577617264547261636b65723a20696e76616c6964205f616d6f756e740000526577617264547261636b65723a206275726e20616d6f756e7420657863656564732062616c616e63655265656e7472616e637947756172643a207265656e7472616e742063616c6c00526577617264547261636b65723a205f616d6f756e742065786365656473207374616b6564416d6f756e74526577617264547261636b65723a20617070726f76652066726f6d20746865207a65726f2061646472657373526577617264547261636b65723a206275726e2066726f6d20746865207a65726f2061646472657373476f7665726e61626c653a20666f7262696464656e0000000000000000000000526577617264547261636b65723a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c526577617264547261636b65723a20696e76616c6964205f6465706f736974546f6b656e526577617264547261636b65723a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526577617264547261636b65723a20616c726561647920696e697469616c697a6564526577617264547261636b65723a207472616e736665722066726f6d20746865207a65726f2061646472657373526577617264547261636b65723a206d696e7420746f20746865207a65726f2061646472657373ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef526577617264547261636b65723a205f746f6b656e2063616e6e6f742062652061206465706f736974546f6b656e526577617264547261636b65723a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564526577617264547261636b65723a20616374696f6e206e6f7420656e61626c6564526577617264547261636b65723a205f616d6f756e742065786365656473206465706f73697442616c616e6365526577617264547261636b65723a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220a3a5cc113174dc662f10989552786a90129e02605a3436187a021f0dac91eebe64736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000185374616b6564202b20426f6e7573202b2046656520474d5800000000000000000000000000000000000000000000000000000000000000000000000000000006736266474d580000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021a5760003560e01c806301e336671461021f57806306fdde0314610257578063095ea7b3146102d4578063098bf59d1461031457806310c1c10314610350578063126082cf1461038857806312d43a511461039057806313e82e7a146103b457806318160ddd146103e25780631d30d5bc146103ea5780631e83409a1461040957806323b872dd1461042f57806327e235e314610465578063313ce5671461048b5780633792def3146104a9578063392e53cd146104cf5780633cd7f700146104d75780633e158b0c146104f6578063402914f5146104fe57806344a0841114610524578063462d0b2e1461054a57806346ea87af146105f657806355b6ed5c1461061c5780635a47a1a71461064a57806370a0823114610669578063790b5a6c1461068f57806395d89b41146106cb5780639cb7de4b146106d3578063a318021714610701578063a8d9362714610727578063a9059cbb1461072f578063aaf5eb681461075b578063adc9772e14610763578063b89e45b31461078f578063bfe10928146107b5578063c2a672e0146107bd578063c5fa2730146107e9578063cfad57a2146107f1578063dd62ed3e14610817578063dfbaefb114610845578063e44b75581461084d578063e95034251461087b578063f5d9d63e146108a1578063f5fc5076146108cf578063f76033d3146108d7578063f7c618c1146108df575b600080fd5b6102556004803603606081101561023557600080fd5b506001600160a01b038135811691602081013590911690604001356108e7565b005b61025f6109a5565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610299578181015183820152602001610281565b50505050905090810190601f1680156102c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610300600480360360408110156102ea57600080fd5b506001600160a01b038135169060200135610a30565b604080519115158252519081900360200190f35b6102556004803603608081101561032a57600080fd5b506001600160a01b03813581169160208101358216916040820135916060013516610a47565b6103766004803603602081101561036657600080fd5b50356001600160a01b0316610ab1565b60408051918252519081900360200190f35b610376610ac3565b610398610ac9565b604080516001600160a01b039092168252519081900360200190f35b610376600480360360408110156103ca57600080fd5b506001600160a01b0381358116916020013516610ad8565b610376610b43565b6102556004803603602081101561040057600080fd5b50351515610b49565b6103766004803603602081101561041f57600080fd5b50356001600160a01b0316610bb0565b6103006004803603606081101561044557600080fd5b506001600160a01b03813581169160208101359091169060400135610c5a565b6103766004803603602081101561047b57600080fd5b50356001600160a01b0316610cf4565b610493610d06565b6040805160ff9092168252519081900360200190f35b610376600480360360208110156104bf57600080fd5b50356001600160a01b0316610d0b565b610300610d1d565b610255600480360360208110156104ed57600080fd5b50351515610d2d565b610255610d96565b6103766004803603602081101561051457600080fd5b50356001600160a01b0316610df3565b6103766004803603602081101561053a57600080fd5b50356001600160a01b0316610f51565b6102556004803603604081101561056057600080fd5b810190602081018135600160201b81111561057a57600080fd5b82018360208201111561058c57600080fd5b803590602001918460208302840111600160201b831117156105ad57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550505090356001600160a01b03169150610f639050565b6103006004803603602081101561060c57600080fd5b50356001600160a01b0316611086565b6103766004803603604081101561063257600080fd5b506001600160a01b038135811691602001351661109b565b6102556004803603602081101561066057600080fd5b503515156110b8565b6103766004803603602081101561067f57600080fd5b50356001600160a01b0316611118565b610255600480360360808110156106a557600080fd5b506001600160a01b03813581169160208101358216916040820135169060600135611133565b61025f611192565b610255600480360360408110156106e957600080fd5b506001600160a01b03813516906020013515156111ed565b6103766004803603602081101561071757600080fd5b50356001600160a01b0316611265565b610376611277565b6103006004803603604081101561074557600080fd5b506001600160a01b0381351690602001356112f8565b610376611305565b6102556004803603604081101561077957600080fd5b506001600160a01b038135169060200135611315565b610300600480360360208110156107a557600080fd5b50356001600160a01b03166113bc565b6103986113d1565b610255600480360360408110156107d357600080fd5b506001600160a01b0381351690602001356113e0565b61030061147e565b6102556004803603602081101561080757600080fd5b50356001600160a01b031661148c565b6103766004803603604081101561082d57600080fd5b506001600160a01b03813581169160200135166114fb565b610300611526565b6102556004803603604081101561086357600080fd5b506001600160a01b038135169060200135151561152f565b6103766004803603602081101561089157600080fd5b50356001600160a01b03166115a7565b610376600480360360408110156108b757600080fd5b506001600160a01b03813581169160200135166115b9565b6103766115d6565b6103006115dc565b6103986115eb565b6001546001600160a01b03163314610934576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205460ff161561098c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061283b602e913960400191505060405180910390fd5b6109a06001600160a01b038416838361163b565b505050565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000610a3d33848461168d565b5060015b92915050565b60026000541415610a8d576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055610a9a611779565b610aa6848484846117da565b505060016000555050565b600b6020526000908152604090205481565b61271081565b6001546001600160a01b031681565b600060026000541415610b20576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055610b2d611779565b610b3783836119a6565b60016000559392505050565b60075481565b6001546001600160a01b03163314610b96576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b601080549115156101000261ff0019909216919091179055565b600060026000541415610bf8576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b600260005560105462010000900460ff1615610c455760405162461bcd60e51b81526004018080602001828103825260218152602001806128c36021913960400191505060405180910390fd5b610c4f33836119a6565b600160005592915050565b3360009081526011602052604081205460ff1615610c8557610c7d848484611a3c565b506001610ced565b6000610ccf83604051806060016040528060308152602001612869603091396001600160a01b03881660009081526009602090815260408083203384529091529020549190611b8f565b9050610cdc85338361168d565b610ce7858585611a3c565b60019150505b9392505050565b60086020526000908152604090205481565b601281565b600e6020526000908152604090205481565b600154600160a01b900460ff1681565b6001546001600160a01b03163314610d7a576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b60108054911515620100000262ff000019909216919091179055565b60026000541415610ddc576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b60026000908155610dec90611c26565b6001600055565b6001600160a01b0381166000908152600b602052604081205480610e315750506001600160a01b0381166000908152600c6020526040902054610f4c565b60075460048054604080516376f69fed60e11b81529051600093610ebe9368327cb2734119d3b7a9601e1b936001600160a01b039091169263eded3fda92828101926020929190829003018186803b158015610e8c57600080fd5b505afa158015610ea0573d6000803e3d6000fd5b505050506040513d6020811015610eb657600080fd5b505190611e76565b90506000610ed8610ecf8385611ecf565b600a5490611f0e565b6001600160a01b0387166000908152600d6020526040902054909150610f4590610f269068327cb2734119d3b7a9601e1b90610f2090610f19908690611f66565b8890611e76565b90611ecf565b6001600160a01b0388166000908152600c602052604090205490611f0e565b9450505050505b919050565b600d6020526000908152604090205481565b6001546001600160a01b03163314610fb0576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b600154600160a01b900460ff1615610ff95760405162461bcd60e51b81526004018080602001828103825260228152602001806127a56022913960400191505060405180910390fd5b6001805460ff60a01b1916600160a01b17905560005b825181101561106257600083828151811061102657fe5b6020908102919091018101516001600160a01b03166000908152600590915260409020805460ff1916600190811790915591909101905061100f565b50600480546001600160a01b0319166001600160a01b039290921691909117905550565b60116020526000908152604090205460ff1681565b600960209081526000928352604080842090915290825290205481565b6001546001600160a01b03163314611105576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6010805460ff1916911515919091179055565b6001600160a01b031660009081526008602052604090205490565b60026000541415611179576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055611186611779565b610aa684848484611fa8565b6003805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b6001546001600160a01b0316331461123a576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b600f6020526000908152604090205481565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663a8d936276040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c757600080fd5b505afa1580156112db573d6000803e3d6000fd5b505050506040513d60208110156112f157600080fd5b5051905090565b6000610a3d338484611a3c565b68327cb2734119d3b7a9601e1b81565b6002600054141561135b576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055601054610100900460ff16156113a75760405162461bcd60e51b81526004018080602001828103825260218152602001806128c36021913960400191505060405180910390fd5b6113b333338484611fa8565b50506001600055565b60056020526000908152604090205460ff1681565b6004546001600160a01b031681565b60026000541415611426576040805162461bcd60e51b815260206004820152601f6024820152600080516020612625833981519152604482015290519081900360640190fd5b6002600055601054610100900460ff16156114725760405162461bcd60e51b81526004018080602001828103825260218152602001806128c36021913960400191505060405180910390fd5b6113b3338383336117da565b601054610100900460ff1681565b6001546001600160a01b031633146114d9576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b60105460ff1681565b6001546001600160a01b0316331461157c576040805162461bcd60e51b815260206004820152601560248201526000805160206126c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b600c6020526000908152604090205481565b600660209081526000928352604080842090915290825290205481565b600a5481565b60105462010000900460ff1681565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663f7c618c16040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c757600080fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109a09084906120ef565b6001600160a01b0383166116d25760405162461bcd60e51b815260040180806020018281038252602c815260200180612670602c913960400191505060405180910390fd5b6001600160a01b0382166117175760405162461bcd60e51b815260040180806020018281038252602a81526020018061275a602a913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3360009081526011602052604090205460ff166117d8576040805162461bcd60e51b81526020600482015260186024820152772932bbb0b9322a3930b1b5b2b91d103337b93134b23232b760411b604482015290519081900360640190fd5b565b6000821161181d576040805162461bcd60e51b815260206004820152601e60248201526000805160206125db833981519152604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205460ff166118745760405162461bcd60e51b81526004018080602001828103825260248152602001806127366024913960400191505060405180910390fd5b61187d84611c26565b6001600160a01b0384166000908152600b6020526040902054828110156118d55760405162461bcd60e51b815260040180806020018281038252602b815260200180612645602b913960400191505060405180910390fd5b6118df8184611f66565b6001600160a01b038087166000908152600b6020908152604080832094909455600681528382209288168252919091522054838110156119505760405162461bcd60e51b815260040180806020018281038252602d8152602001806128e4602d913960400191505060405180910390fd5b61195a8185611f66565b6001600160a01b038088166000908152600660209081526040808320938a168352929052205561198a86856121a0565b61199e6001600160a01b038616848661163b565b505050505050565b60006119b183611c26565b6001600160a01b0383166000908152600c6020526040812080549190558015610ced576119f183826119e16115eb565b6001600160a01b0316919061163b565b604080516001600160a01b03861681526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19392505050565b6001600160a01b038316611a815760405162461bcd60e51b815260040180806020018281038252602d8152602001806127c7602d913960400191505060405180910390fd5b6001600160a01b038216611ac65760405162461bcd60e51b815260040180806020018281038252602b8152602001806126e5602b913960400191505060405180910390fd5b60105460ff1615611ad957611ad9611779565b611b16816040518060600160405280602e8152602001612911602e91396001600160a01b0386166000908152600860205260409020549190611b8f565b6001600160a01b038085166000908152600860205260408082209390935590841681522054611b459082611f0e565b6001600160a01b03808416600081815260086020908152604091829020949094558051858152905191939287169260008051602061281b83398151915292918290030190a3505050565b60008184841115611c1e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be3578181015183820152602001611bcb565b50505050905090810190601f168015611c105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611c7857600080fd5b505af1158015611c8c573d6000803e3d6000fd5b505050506040513d6020811015611ca257600080fd5b5051600754600a54919250908115801590611cbd5750600083115b15611cee57611ce6611cdf83610f208668327cb2734119d3b7a9601e1b611e76565b8290611f0e565b600a81905590505b80611cfb57505050611e73565b6001600160a01b03841615611e6f576001600160a01b0384166000908152600b6020908152604080832054600d909252822054909190611d599068327cb2734119d3b7a9601e1b90610f2090611d52908790611f66565b8590611e76565b6001600160a01b0387166000908152600c602052604081205491925090611d809083611f0e565b6001600160a01b0388166000908152600c60209081526040808320849055600d909152902085905590508015801590611dd057506001600160a01b0387166000908152600b602052604090205415155b15611e6b576001600160a01b0387166000908152600e6020526040812054611df89084611f0e565b9050611e45611e0b82610f208787611e76565b6001600160a01b038a166000908152600e6020908152604080832054600f90925290912054611e3f918591610f2091611e76565b90611f0e565b6001600160a01b0389166000908152600f6020908152604080832093909355600e905220555b5050505b5050505b50565b600082611e8557506000610a41565b82820282848281611e9257fe5b0414610ced5760405162461bcd60e51b81526004018080602001828103825260218152602001806127846021913960400191505060405180910390fd5b6000610ced83836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b81525061227e565b600082820183811015610ced576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000610ced83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8f565b60008111611feb576040805162461bcd60e51b815260206004820152601e60248201526000805160206125db833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090205460ff166120425760405162461bcd60e51b81526004018080602001828103825260248152602001806127366024913960400191505060405180910390fd5b6120576001600160a01b0383168530846122e3565b61206083611c26565b6001600160a01b0383166000908152600b60205260409020546120839082611f0e565b6001600160a01b038085166000908152600b60209081526040808320949094556006815283822092861682529190915220546120bf9082611f0e565b6001600160a01b03808516600090815260066020908152604080832093871683529290522055611e6f838261233d565b6060612144826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123fb9092919063ffffffff16565b8051909150156109a05780806020019051602081101561216357600080fd5b50516109a05760405162461bcd60e51b815260040180806020018281038252602a815260200180612899602a913960400191505060405180910390fd5b6001600160a01b0382166121e55760405162461bcd60e51b815260040180806020018281038252602981526020018061269c6029913960400191505060405180910390fd5b612222816040518060600160405280602a81526020016125fb602a91396001600160a01b0385166000908152600860205260409020549190611b8f565b6001600160a01b0383166000908152600860205260409020556007546122489082611f66565b6007556040805182815290516000916001600160a01b0385169160008051602061281b8339815191529181900360200190a35050565b600081836122cd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611be3578181015183820152602001611bcb565b5060008385816122d957fe5b0495945050505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611e6f9085906120ef565b6001600160a01b0382166123825760405162461bcd60e51b81526004018080602001828103825260278152602001806127f46027913960400191505060405180910390fd5b60075461238f9082611f0e565b6007556001600160a01b0382166000908152600860205260409020546123b59082611f0e565b6001600160a01b038316600081815260086020908152604080832094909455835185815293519293919260008051602061281b8339815191529281900390910190a35050565b606061240a8484600085612412565b949350505050565b6060824710156124535760405162461bcd60e51b81526004018080602001828103825260268152602001806127106026913960400191505060405180910390fd5b61245c8561256e565b6124ad576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106124ec5780518252601f1990920191602091820191016124cd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461254e576040519150601f19603f3d011682016040523d82523d6000602084013e612553565b606091505b5091509150612563828286612574565b979650505050505050565b3b151590565b60608315612583575081610ced565b8251156125935782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611be3578181015183820152602001611bcb56fe526577617264547261636b65723a20696e76616c6964205f616d6f756e740000526577617264547261636b65723a206275726e20616d6f756e7420657863656564732062616c616e63655265656e7472616e637947756172643a207265656e7472616e742063616c6c00526577617264547261636b65723a205f616d6f756e742065786365656473207374616b6564416d6f756e74526577617264547261636b65723a20617070726f76652066726f6d20746865207a65726f2061646472657373526577617264547261636b65723a206275726e2066726f6d20746865207a65726f2061646472657373476f7665726e61626c653a20666f7262696464656e0000000000000000000000526577617264547261636b65723a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c526577617264547261636b65723a20696e76616c6964205f6465706f736974546f6b656e526577617264547261636b65723a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526577617264547261636b65723a20616c726561647920696e697469616c697a6564526577617264547261636b65723a207472616e736665722066726f6d20746865207a65726f2061646472657373526577617264547261636b65723a206d696e7420746f20746865207a65726f2061646472657373ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef526577617264547261636b65723a205f746f6b656e2063616e6e6f742062652061206465706f736974546f6b656e526577617264547261636b65723a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564526577617264547261636b65723a20616374696f6e206e6f7420656e61626c6564526577617264547261636b65723a205f616d6f756e742065786365656473206465706f73697442616c616e6365526577617264547261636b65723a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220a3a5cc113174dc662f10989552786a90129e02605a3436187a021f0dac91eebe64736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000185374616b6564202b20426f6e7573202b2046656520474d5800000000000000000000000000000000000000000000000000000000000000000000000000000006736266474d580000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Staked + Bonus + Fee GMX
Arg [1] : _symbol (string): sbfGMX

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 5374616b6564202b20426f6e7573202b2046656520474d580000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 736266474d580000000000000000000000000000000000000000000000000000


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.