Address Details
contract

0x65b898d61a08De8F5cB2F568A18970b010e06829

Contract Name
InkRewardPool
Creator
0x659fc9–feb5ee at 0x72a0af–4c74dd
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
2,921 Transactions
Transfers
12,070 Transfers
Gas Used
238,734,999
Last Balance Update
24213945
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
InkRewardPool




Optimization enabled
true
Compiler version
v0.8.9+commit.e5eed63a




Optimization runs
200
EVM Version
london




Verified at
2022-06-05T19:44:47.200104Z

contracts/pools/InkRewardPool.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

// Note that this pool has no minter key of INK (rewards).
// Instead, the governance will call INK distributeReward method and send reward to this pool at the beginning.
contract InkRewardPool {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    // governance
    address public operator;

    // Info of each user.
    struct UserInfo {
        uint256 amount; // How many LP tokens the user has provided.
        uint256 rewardDebt; // Reward debt. See explanation below.
    }

    // Info of each pool.
    struct PoolInfo {
        IERC20 token; // Address of LP token contract.
        uint256 allocPoint; // How many allocation points assigned to this pool. INKs to distribute per block.
        uint256 lastRewardTime; // Last time that INKs distribution occurs.
        uint256 accInkPerShare; // Accumulated INKs per share, times 1e18. See below.
        bool isStarted; // if lastRewardTime has passed
    }

    IERC20 public ink;

    // Info of each pool.
    PoolInfo[] public poolInfo;

    // Info of each user that stakes LP tokens.
    mapping(uint256 => mapping(address => UserInfo)) public userInfo;

    // Total allocation points. Must be the sum of all allocation points in all pools.
    uint256 public totalAllocPoint = 0;

    // The time when INK mining starts.
    uint256 public poolStartTime;

    // The time when INK mining ends.
    uint256 public poolEndTime;

    uint256 public inkPerSecond = 0.002502503 ether; // 80000 INK / (370 days * 24h * 60min * 60s)
    uint256 public runningTime = 370 days; // 370 days
    uint256 public constant TOTAL_REWARDS = 80000 ether;

    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event RewardPaid(address indexed user, uint256 amount);

    constructor(
        address _ink,
        uint256 _poolStartTime
    ) {
        require(block.timestamp < _poolStartTime, "late");
        if (_ink != address(0)) ink = IERC20(_ink);
        poolStartTime = _poolStartTime;
        poolEndTime = poolStartTime + runningTime;
        operator = msg.sender;
    }

    modifier onlyOperator() {
        require(operator == msg.sender, "InkRewardPool: caller is not the operator");
        _;
    }

    function checkPoolDuplicate(IERC20 _token) internal view {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            require(poolInfo[pid].token != _token, "InkRewardPool: existing pool?");
        }
    }

    // Add a new lp to the pool. Can only be called by the owner.
    function add(
        uint256 _allocPoint,
        IERC20 _token,
        bool _withUpdate,
        uint256 _lastRewardTime
    ) public onlyOperator {
        checkPoolDuplicate(_token);
        if (_withUpdate) {
            massUpdatePools();
        }
        if (block.timestamp < poolStartTime) {
            // chef is sleeping
            if (_lastRewardTime == 0) {
                _lastRewardTime = poolStartTime;
            } else {
                if (_lastRewardTime < poolStartTime) {
                    _lastRewardTime = poolStartTime;
                }
            }
        } else {
            // chef is cooking
            if (_lastRewardTime == 0 || _lastRewardTime < block.timestamp) {
                _lastRewardTime = block.timestamp;
            }
        }
        bool _isStarted =
        (_lastRewardTime <= poolStartTime) ||
        (_lastRewardTime <= block.timestamp);
        poolInfo.push(PoolInfo({
            token : _token,
            allocPoint : _allocPoint,
            lastRewardTime : _lastRewardTime,
            accInkPerShare : 0,
            isStarted : _isStarted
            }));
        if (_isStarted) {
            totalAllocPoint = totalAllocPoint.add(_allocPoint);
        }
    }

    // Update the given pool's INK allocation point. Can only be called by the owner.
    function set(uint256 _pid, uint256 _allocPoint) public onlyOperator {
        massUpdatePools();
        PoolInfo storage pool = poolInfo[_pid];
        if (pool.isStarted) {
            totalAllocPoint = totalAllocPoint.sub(pool.allocPoint).add(
                _allocPoint
            );
        }
        pool.allocPoint = _allocPoint;
    }

    // Return accumulate rewards over the given _from to _to block.
    function getGeneratedReward(uint256 _fromTime, uint256 _toTime) public view returns (uint256) {
        if (_fromTime >= _toTime) return 0;
        if (_toTime >= poolEndTime) {
            if (_fromTime >= poolEndTime) return 0;
            if (_fromTime <= poolStartTime) return poolEndTime.sub(poolStartTime).mul(inkPerSecond);
            return poolEndTime.sub(_fromTime).mul(inkPerSecond);
        } else {
            if (_toTime <= poolStartTime) return 0;
            if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(inkPerSecond);
            return _toTime.sub(_fromTime).mul(inkPerSecond);
        }
    }

    // View function to see pending INKs on frontend.
    function pendingShare(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accInkPerShare = pool.accInkPerShare;
        uint256 tokenSupply = pool.token.balanceOf(address(this));
        if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) {
            uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp);
            uint256 _inkReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint);
            accInkPerShare = accInkPerShare.add(_inkReward.mul(1e18).div(tokenSupply));
        }
        return user.amount.mul(accInkPerShare).div(1e18).sub(user.rewardDebt);
    }

    // Update reward variables for all pools. Be careful of gas spending!
    function massUpdatePools() public {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            updatePool(pid);
        }
    }

    // Update reward variables of the given pool to be up-to-date.
    function updatePool(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        if (block.timestamp <= pool.lastRewardTime) {
            return;
        }
        uint256 tokenSupply = pool.token.balanceOf(address(this));
        if (tokenSupply == 0) {
            pool.lastRewardTime = block.timestamp;
            return;
        }
        if (!pool.isStarted) {
            pool.isStarted = true;
            totalAllocPoint = totalAllocPoint.add(pool.allocPoint);
        }
        if (totalAllocPoint > 0) {
            uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp);
            uint256 _inkReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint);
            pool.accInkPerShare = pool.accInkPerShare.add(_inkReward.mul(1e18).div(tokenSupply));
        }
        pool.lastRewardTime = block.timestamp;
    }

    // Deposit LP tokens.
    function deposit(uint256 _pid, uint256 _amount) public {
        address _sender = msg.sender;
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_sender];
        updatePool(_pid);
        if (user.amount > 0) {
            uint256 _pending = user.amount.mul(pool.accInkPerShare).div(1e18).sub(user.rewardDebt);
            if (_pending > 0) {
                safeInkTransfer(_sender, _pending);
                emit RewardPaid(_sender, _pending);
            }
        }
        if (_amount > 0) {
            pool.token.safeTransferFrom(_sender, address(this), _amount);
            user.amount = user.amount.add(_amount);
        }
        user.rewardDebt = user.amount.mul(pool.accInkPerShare).div(1e18);
        emit Deposit(_sender, _pid, _amount);
    }

    // Withdraw LP tokens.
    function withdraw(uint256 _pid, uint256 _amount) public {
        address _sender = msg.sender;
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_sender];
        require(user.amount >= _amount, "withdraw: not good");
        updatePool(_pid);
        uint256 _pending = user.amount.mul(pool.accInkPerShare).div(1e18).sub(user.rewardDebt);
        if (_pending > 0) {
            safeInkTransfer(_sender, _pending);
            emit RewardPaid(_sender, _pending);
        }
        if (_amount > 0) {
            user.amount = user.amount.sub(_amount);
            pool.token.safeTransfer(_sender, _amount);
        }
        user.rewardDebt = user.amount.mul(pool.accInkPerShare).div(1e18);
        emit Withdraw(_sender, _pid, _amount);
    }

    // Withdraw without caring about rewards. EMERGENCY ONLY.
    function emergencyWithdraw(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        uint256 _amount = user.amount;
        user.amount = 0;
        user.rewardDebt = 0;
        pool.token.safeTransfer(msg.sender, _amount);
        emit EmergencyWithdraw(msg.sender, _pid, _amount);
    }

    // Safe INK transfer function, just in case if rounding error causes pool to not have enough INKs.
    function safeInkTransfer(address _to, uint256 _amount) internal {
        uint256 _inkBal = ink.balanceOf(address(this));
        if (_inkBal > 0) {
            if (_amount > _inkBal) {
                ink.safeTransfer(_to, _inkBal);
            } else {
                ink.safeTransfer(_to, _amount);
            }
        }
    }

    function setOperator(address _operator) external onlyOperator {
        operator = _operator;
    }

    function governanceRecoverUnsupported(IERC20 _token, uint256 amount, address to) external onlyOperator {
        if (block.timestamp < poolEndTime + 90 days) {
            // do not allow to drain core token (INK or lps) if less than 90 days after pool ends
            require(_token != ink, "ink");
            uint256 length = poolInfo.length;
            for (uint256 pid = 0; pid < length; ++pid) {
                PoolInfo storage pool = poolInfo[pid];
                require(_token != pool.token, "pool.token");
            }
        }
        _token.safeTransfer(to, amount);
    }
}
        

/_openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

/_openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.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 Address for address;

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

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

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

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

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

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

/_openzeppelin/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts/utils/math/SafeMath.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_ink","internalType":"address"},{"type":"uint256","name":"_poolStartTime","internalType":"uint256"}]},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencyWithdraw","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"RewardPaid","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Withdraw","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TOTAL_REWARDS","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"add","inputs":[{"type":"uint256","name":"_allocPoint","internalType":"uint256"},{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"bool","name":"_withUpdate","internalType":"bool"},{"type":"uint256","name":"_lastRewardTime","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deposit","inputs":[{"type":"uint256","name":"_pid","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencyWithdraw","inputs":[{"type":"uint256","name":"_pid","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getGeneratedReward","inputs":[{"type":"uint256","name":"_fromTime","internalType":"uint256"},{"type":"uint256","name":"_toTime","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"governanceRecoverUnsupported","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"ink","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"inkPerSecond","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"massUpdatePools","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"pendingShare","inputs":[{"type":"uint256","name":"_pid","internalType":"uint256"},{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"poolEndTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"token","internalType":"contract IERC20"},{"type":"uint256","name":"allocPoint","internalType":"uint256"},{"type":"uint256","name":"lastRewardTime","internalType":"uint256"},{"type":"uint256","name":"accInkPerShare","internalType":"uint256"},{"type":"bool","name":"isStarted","internalType":"bool"}],"name":"poolInfo","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"poolStartTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"runningTime","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"set","inputs":[{"type":"uint256","name":"_pid","internalType":"uint256"},{"type":"uint256","name":"_allocPoint","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setOperator","inputs":[{"type":"address","name":"_operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalAllocPoint","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePool","inputs":[{"type":"uint256","name":"_pid","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"rewardDebt","internalType":"uint256"}],"name":"userInfo","inputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"_pid","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"}]}]
              

Contract Creation Code

0x608060405260006004556608e403625d46006007556301e7cb006008553480156200002957600080fd5b50604051620017ef380380620017ef8339810160408190526200004c91620000ec565b8042106200008f5760405162461bcd60e51b815260040162000086906020808252600490820152636c61746560e01b604082015260600190565b60405180910390fd5b6001600160a01b03821615620000bb57600180546001600160a01b0319166001600160a01b0384161790555b6005819055600854620000cf908262000128565b6006555050600080546001600160a01b031916331790556200014f565b600080604083850312156200010057600080fd5b82516001600160a01b03811681146200011857600080fd5b6020939093015192949293505050565b600082198211156200014a57634e487b7160e01b600052601160045260246000fd5b500190565b611690806200015f6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635f96dc11116100b8578063943f013d1161007c578063943f013d146102b957806396805e54146102c2578063b3ab15fb146102d5578063cf4b55cb146102e8578063e2bbb158146102fb578063ee08c3001461030e57600080fd5b80635f96dc111461024f578063630b5ba1146102585780636e271dd5146102605780637c5217f41461026957806393f1a40b1461027257600080fd5b8063441a3e70116100ff578063441a3e70146101d857806351eb05a6146101eb5780635312ea8e146101fe57806354575af414610211578063570ca7351461022457600080fd5b806309cf60911461013c5780631526fe271461016057806317caf6f1146101a75780631ab06ee5146101b0578063231f0c6a146101c5575b600080fd5b61014d6910f0cf064dd59200000081565b6040519081526020015b60405180910390f35b61017361016e366004611371565b610321565b604080516001600160a01b03909616865260208601949094529284019190915260608301521515608082015260a001610157565b61014d60045481565b6101c36101be36600461138a565b61036f565b005b61014d6101d336600461138a565b61040d565b6101c36101e636600461138a565b6104d2565b6101c36101f9366004611371565b610694565b6101c361020c366004611371565b6107f8565b6101c361021f3660046113c4565b61089a565b600054610237906001600160a01b031681565b6040516001600160a01b039091168152602001610157565b61014d60055481565b6101c36109cc565b61014d60065481565b61014d60075481565b6102a4610280366004611406565b60036020908152600092835260408084209091529082529020805460019091015482565b60408051928352602083019190915201610157565b61014d60085481565b6101c36102d0366004611444565b6109f7565b6101c36102e336600461148c565b610bd5565b61014d6102f6366004611406565b610c21565b6101c361030936600461138a565b610d8c565b600154610237906001600160a01b031681565b6002818154811061033157600080fd5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909160ff1685565b6000546001600160a01b031633146103a25760405162461bcd60e51b8152600401610399906114a9565b60405180910390fd5b6103aa6109cc565b6000600283815481106103bf576103bf6114f2565b60009182526020909120600590910201600481015490915060ff161561040657610402826103fc8360010154600454610f0690919063ffffffff16565b90610f19565b6004555b6001015550565b600081831061041e575060006104cc565b6006548210610486576006548310610438575060006104cc565b600554831161046b5761046460075461045e600554600654610f0690919063ffffffff16565b90610f25565b90506104cc565b61046460075461045e85600654610f0690919063ffffffff16565b6005548211610497575060006104cc565b60055483116104bb5761046460075461045e60055485610f0690919063ffffffff16565b6007546104649061045e8486610f06565b92915050565b60003390506000600284815481106104ec576104ec6114f2565b600091825260208083208784526003825260408085206001600160a01b038816865290925292208054600590920290920192508411156105635760405162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b6044820152606401610399565b61056c85610694565b60006105a982600101546105a3670de0b6b3a764000061059d87600301548760000154610f2590919063ffffffff16565b90610f31565b90610f06565b905080156105ff576105bb8482610f3d565b836001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040516105f691815260200190565b60405180910390a25b84156106295781546106119086610f06565b82558254610629906001600160a01b03168587610ff3565b6003830154825461064791670de0b6b3a76400009161059d91610f25565b600183015560405185815286906001600160a01b038616907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689060200160405180910390a3505050505050565b6000600282815481106106a9576106a96114f2565b90600052602060002090600502019050806002015442116106c8575050565b80546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561070b57600080fd5b505afa15801561071f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107439190611508565b90508061075557504260029091015550565b600482015460ff16610786576004808301805460ff19166001908117909155830154905461078291610f19565b6004555b600454156107ed57600061079e83600201544261040d565b905060006107bf60045461059d866001015485610f2590919063ffffffff16565b90506107e56107da8461059d84670de0b6b3a7640000610f25565b600386015490610f19565b600385015550505b504260029091015550565b60006002828154811061080d5761080d6114f2565b60009182526020808320858452600382526040808520338087529352842080548582556001820195909555600590930201805490945091929161085d916001600160a01b03919091169083610ff3565b604051818152849033907fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959060200160405180910390a350505050565b6000546001600160a01b031633146108c45760405162461bcd60e51b8152600401610399906114a9565b6006546108d4906276a700611537565b4210156109b3576001546001600160a01b038481169116141561091f5760405162461bcd60e51b8152602060048201526003602482015262696e6b60e81b6044820152606401610399565b60025460005b818110156109b057600060028281548110610942576109426114f2565b6000918252602090912060059091020180549091506001600160a01b038781169116141561099f5760405162461bcd60e51b815260206004820152600a6024820152693837b7b6173a37b5b2b760b11b6044820152606401610399565b506109a98161154f565b9050610925565b50505b6109c76001600160a01b0384168284610ff3565b505050565b60025460005b818110156109f3576109e381610694565b6109ec8161154f565b90506109d2565b5050565b6000546001600160a01b03163314610a215760405162461bcd60e51b8152600401610399906114a9565b610a2a83611056565b8115610a3857610a386109cc565b600554421015610a645780610a505750600554610a78565b600554811015610a5f57506005545b610a78565b801580610a7057504281105b15610a785750425b600060055482111580610a8b5750428211155b6040805160a0810182526001600160a01b03878116825260208201898152928201868152600060608401818152861580156080870190815260028054600181018255945295517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590940293840180546001600160a01b031916919096161790945594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf82015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad082015592517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad2909201805460ff191692151592909217909155909150610bce57600454610bca9086610f19565b6004555b5050505050565b6000546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610399906114a9565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008060028481548110610c3757610c376114f2565b60009182526020808320878452600380835260408086206001600160a01b038a81168852945280862060059590950290920190810154815492516370a0823160e01b815230600482015291965093949291909116906370a082319060240160206040518083038186803b158015610cad57600080fd5b505afa158015610cc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce59190611508565b9050836002015442118015610cf957508015155b15610d56576000610d0e85600201544261040d565b90506000610d2f60045461059d886001015485610f2590919063ffffffff16565b9050610d51610d4a8461059d84670de0b6b3a7640000610f25565b8590610f19565b935050505b610d8183600101546105a3670de0b6b3a764000061059d868860000154610f2590919063ffffffff16565b979650505050505050565b6000339050600060028481548110610da657610da66114f2565b600091825260208083208784526003825260408085206001600160a01b0388168652909252922060059091029091019150610de085610694565b805415610e70576000610e1882600101546105a3670de0b6b3a764000061059d87600301548760000154610f2590919063ffffffff16565b90508015610e6e57610e2a8482610f3d565b836001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051610e6591815260200190565b60405180910390a25b505b8315610e9c578154610e8d906001600160a01b03168430876110f9565b8054610e999085610f19565b81555b60038201548154610eba91670de0b6b3a76400009161059d91610f25565b600182015560405184815285906001600160a01b038516907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a35050505050565b6000610f12828461156a565b9392505050565b6000610f128284611537565b6000610f128284611581565b6000610f1282846115a0565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610f8157600080fd5b505afa158015610f95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb99190611508565b905080156109c75780821115610fe0576001546109c7906001600160a01b03168483610ff3565b6001546109c7906001600160a01b031684845b6040516001600160a01b0383166024820152604481018290526109c790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611137565b60025460005b818110156109c757826001600160a01b031660028281548110611081576110816114f2565b60009182526020909120600590910201546001600160a01b031614156110e95760405162461bcd60e51b815260206004820152601d60248201527f496e6b526577617264506f6f6c3a206578697374696e6720706f6f6c3f0000006044820152606401610399565b6110f28161154f565b905061105c565b6040516001600160a01b03808516602483015283166044820152606481018290526111319085906323b872dd60e01b9060840161101f565b50505050565b600061118c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112099092919063ffffffff16565b8051909150156109c757808060200190518101906111aa91906115c2565b6109c75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610399565b60606112188484600085611220565b949350505050565b6060824710156112815760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610399565b843b6112cf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610399565b600080866001600160a01b031685876040516112eb919061160b565b60006040518083038185875af1925050503d8060008114611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b5091509150610d8182828660608315611347575081610f12565b8251156113575782518084602001fd5b8160405162461bcd60e51b81526004016103999190611627565b60006020828403121561138357600080fd5b5035919050565b6000806040838503121561139d57600080fd5b50508035926020909101359150565b6001600160a01b03811681146113c157600080fd5b50565b6000806000606084860312156113d957600080fd5b83356113e4816113ac565b92506020840135915060408401356113fb816113ac565b809150509250925092565b6000806040838503121561141957600080fd5b82359150602083013561142b816113ac565b809150509250929050565b80151581146113c157600080fd5b6000806000806080858703121561145a57600080fd5b84359350602085013561146c816113ac565b9250604085013561147c81611436565b9396929550929360600135925050565b60006020828403121561149e57600080fd5b8135610f12816113ac565b60208082526029908201527f496e6b526577617264506f6f6c3a2063616c6c6572206973206e6f74207468656040820152681037b832b930ba37b960b91b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561151a57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561154a5761154a611521565b500190565b600060001982141561156357611563611521565b5060010190565b60008282101561157c5761157c611521565b500390565b600081600019048311821515161561159b5761159b611521565b500290565b6000826115bd57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156115d457600080fd5b8151610f1281611436565b60005b838110156115fa5781810151838201526020016115e2565b838111156111315750506000910152565b6000825161161d8184602087016115df565b9190910192915050565b60208152600082518060208401526116468160408501602087016115df565b601f01601f1916919091016040019291505056fea26469706673582212207894346843751c1b69f27468eae9e8d97d986be5c00b86b3ca99feef138ebd8d64736f6c6343000809003300000000000000000000000032975907733f93305be28e2bfd123666b7a9c86300000000000000000000000000000000000000000000000000000000629e5cc0

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635f96dc11116100b8578063943f013d1161007c578063943f013d146102b957806396805e54146102c2578063b3ab15fb146102d5578063cf4b55cb146102e8578063e2bbb158146102fb578063ee08c3001461030e57600080fd5b80635f96dc111461024f578063630b5ba1146102585780636e271dd5146102605780637c5217f41461026957806393f1a40b1461027257600080fd5b8063441a3e70116100ff578063441a3e70146101d857806351eb05a6146101eb5780635312ea8e146101fe57806354575af414610211578063570ca7351461022457600080fd5b806309cf60911461013c5780631526fe271461016057806317caf6f1146101a75780631ab06ee5146101b0578063231f0c6a146101c5575b600080fd5b61014d6910f0cf064dd59200000081565b6040519081526020015b60405180910390f35b61017361016e366004611371565b610321565b604080516001600160a01b03909616865260208601949094529284019190915260608301521515608082015260a001610157565b61014d60045481565b6101c36101be36600461138a565b61036f565b005b61014d6101d336600461138a565b61040d565b6101c36101e636600461138a565b6104d2565b6101c36101f9366004611371565b610694565b6101c361020c366004611371565b6107f8565b6101c361021f3660046113c4565b61089a565b600054610237906001600160a01b031681565b6040516001600160a01b039091168152602001610157565b61014d60055481565b6101c36109cc565b61014d60065481565b61014d60075481565b6102a4610280366004611406565b60036020908152600092835260408084209091529082529020805460019091015482565b60408051928352602083019190915201610157565b61014d60085481565b6101c36102d0366004611444565b6109f7565b6101c36102e336600461148c565b610bd5565b61014d6102f6366004611406565b610c21565b6101c361030936600461138a565b610d8c565b600154610237906001600160a01b031681565b6002818154811061033157600080fd5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909160ff1685565b6000546001600160a01b031633146103a25760405162461bcd60e51b8152600401610399906114a9565b60405180910390fd5b6103aa6109cc565b6000600283815481106103bf576103bf6114f2565b60009182526020909120600590910201600481015490915060ff161561040657610402826103fc8360010154600454610f0690919063ffffffff16565b90610f19565b6004555b6001015550565b600081831061041e575060006104cc565b6006548210610486576006548310610438575060006104cc565b600554831161046b5761046460075461045e600554600654610f0690919063ffffffff16565b90610f25565b90506104cc565b61046460075461045e85600654610f0690919063ffffffff16565b6005548211610497575060006104cc565b60055483116104bb5761046460075461045e60055485610f0690919063ffffffff16565b6007546104649061045e8486610f06565b92915050565b60003390506000600284815481106104ec576104ec6114f2565b600091825260208083208784526003825260408085206001600160a01b038816865290925292208054600590920290920192508411156105635760405162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b6044820152606401610399565b61056c85610694565b60006105a982600101546105a3670de0b6b3a764000061059d87600301548760000154610f2590919063ffffffff16565b90610f31565b90610f06565b905080156105ff576105bb8482610f3d565b836001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040516105f691815260200190565b60405180910390a25b84156106295781546106119086610f06565b82558254610629906001600160a01b03168587610ff3565b6003830154825461064791670de0b6b3a76400009161059d91610f25565b600183015560405185815286906001600160a01b038616907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689060200160405180910390a3505050505050565b6000600282815481106106a9576106a96114f2565b90600052602060002090600502019050806002015442116106c8575050565b80546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561070b57600080fd5b505afa15801561071f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107439190611508565b90508061075557504260029091015550565b600482015460ff16610786576004808301805460ff19166001908117909155830154905461078291610f19565b6004555b600454156107ed57600061079e83600201544261040d565b905060006107bf60045461059d866001015485610f2590919063ffffffff16565b90506107e56107da8461059d84670de0b6b3a7640000610f25565b600386015490610f19565b600385015550505b504260029091015550565b60006002828154811061080d5761080d6114f2565b60009182526020808320858452600382526040808520338087529352842080548582556001820195909555600590930201805490945091929161085d916001600160a01b03919091169083610ff3565b604051818152849033907fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959060200160405180910390a350505050565b6000546001600160a01b031633146108c45760405162461bcd60e51b8152600401610399906114a9565b6006546108d4906276a700611537565b4210156109b3576001546001600160a01b038481169116141561091f5760405162461bcd60e51b8152602060048201526003602482015262696e6b60e81b6044820152606401610399565b60025460005b818110156109b057600060028281548110610942576109426114f2565b6000918252602090912060059091020180549091506001600160a01b038781169116141561099f5760405162461bcd60e51b815260206004820152600a6024820152693837b7b6173a37b5b2b760b11b6044820152606401610399565b506109a98161154f565b9050610925565b50505b6109c76001600160a01b0384168284610ff3565b505050565b60025460005b818110156109f3576109e381610694565b6109ec8161154f565b90506109d2565b5050565b6000546001600160a01b03163314610a215760405162461bcd60e51b8152600401610399906114a9565b610a2a83611056565b8115610a3857610a386109cc565b600554421015610a645780610a505750600554610a78565b600554811015610a5f57506005545b610a78565b801580610a7057504281105b15610a785750425b600060055482111580610a8b5750428211155b6040805160a0810182526001600160a01b03878116825260208201898152928201868152600060608401818152861580156080870190815260028054600181018255945295517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590940293840180546001600160a01b031916919096161790945594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf82015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad082015592517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad2909201805460ff191692151592909217909155909150610bce57600454610bca9086610f19565b6004555b5050505050565b6000546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610399906114a9565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008060028481548110610c3757610c376114f2565b60009182526020808320878452600380835260408086206001600160a01b038a81168852945280862060059590950290920190810154815492516370a0823160e01b815230600482015291965093949291909116906370a082319060240160206040518083038186803b158015610cad57600080fd5b505afa158015610cc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce59190611508565b9050836002015442118015610cf957508015155b15610d56576000610d0e85600201544261040d565b90506000610d2f60045461059d886001015485610f2590919063ffffffff16565b9050610d51610d4a8461059d84670de0b6b3a7640000610f25565b8590610f19565b935050505b610d8183600101546105a3670de0b6b3a764000061059d868860000154610f2590919063ffffffff16565b979650505050505050565b6000339050600060028481548110610da657610da66114f2565b600091825260208083208784526003825260408085206001600160a01b0388168652909252922060059091029091019150610de085610694565b805415610e70576000610e1882600101546105a3670de0b6b3a764000061059d87600301548760000154610f2590919063ffffffff16565b90508015610e6e57610e2a8482610f3d565b836001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051610e6591815260200190565b60405180910390a25b505b8315610e9c578154610e8d906001600160a01b03168430876110f9565b8054610e999085610f19565b81555b60038201548154610eba91670de0b6b3a76400009161059d91610f25565b600182015560405184815285906001600160a01b038516907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a35050505050565b6000610f12828461156a565b9392505050565b6000610f128284611537565b6000610f128284611581565b6000610f1282846115a0565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610f8157600080fd5b505afa158015610f95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb99190611508565b905080156109c75780821115610fe0576001546109c7906001600160a01b03168483610ff3565b6001546109c7906001600160a01b031684845b6040516001600160a01b0383166024820152604481018290526109c790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611137565b60025460005b818110156109c757826001600160a01b031660028281548110611081576110816114f2565b60009182526020909120600590910201546001600160a01b031614156110e95760405162461bcd60e51b815260206004820152601d60248201527f496e6b526577617264506f6f6c3a206578697374696e6720706f6f6c3f0000006044820152606401610399565b6110f28161154f565b905061105c565b6040516001600160a01b03808516602483015283166044820152606481018290526111319085906323b872dd60e01b9060840161101f565b50505050565b600061118c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112099092919063ffffffff16565b8051909150156109c757808060200190518101906111aa91906115c2565b6109c75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610399565b60606112188484600085611220565b949350505050565b6060824710156112815760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610399565b843b6112cf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610399565b600080866001600160a01b031685876040516112eb919061160b565b60006040518083038185875af1925050503d8060008114611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b5091509150610d8182828660608315611347575081610f12565b8251156113575782518084602001fd5b8160405162461bcd60e51b81526004016103999190611627565b60006020828403121561138357600080fd5b5035919050565b6000806040838503121561139d57600080fd5b50508035926020909101359150565b6001600160a01b03811681146113c157600080fd5b50565b6000806000606084860312156113d957600080fd5b83356113e4816113ac565b92506020840135915060408401356113fb816113ac565b809150509250925092565b6000806040838503121561141957600080fd5b82359150602083013561142b816113ac565b809150509250929050565b80151581146113c157600080fd5b6000806000806080858703121561145a57600080fd5b84359350602085013561146c816113ac565b9250604085013561147c81611436565b9396929550929360600135925050565b60006020828403121561149e57600080fd5b8135610f12816113ac565b60208082526029908201527f496e6b526577617264506f6f6c3a2063616c6c6572206973206e6f74207468656040820152681037b832b930ba37b960b91b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561151a57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561154a5761154a611521565b500190565b600060001982141561156357611563611521565b5060010190565b60008282101561157c5761157c611521565b500390565b600081600019048311821515161561159b5761159b611521565b500290565b6000826115bd57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156115d457600080fd5b8151610f1281611436565b60005b838110156115fa5781810151838201526020016115e2565b838111156111315750506000910152565b6000825161161d8184602087016115df565b9190910192915050565b60208152600082518060208401526116468160408501602087016115df565b601f01601f1916919091016040019291505056fea26469706673582212207894346843751c1b69f27468eae9e8d97d986be5c00b86b3ca99feef138ebd8d64736f6c63430008090033