ETH Price: $2,470.66 (+4.03%)

Token

 

Overview

Max Total Supply

0

Holders

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MultiRewarderPerSec

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 9 : MultiRewarderPerSec.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.5;

import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '../interfaces/IMultiRewarder.sol';

/**
 * This is a sample contract to be used in the Master contract for partners to reward
 * stakers with their native token alongside WOM.
 *
 * It assumes no minting rights, so requires a set amount of reward tokens to be transferred to this contract prior.
 * E.g. say you've allocated 100,000 XYZ to the WOM-XYZ farm over 30 days. Then you would need to transfer
 * 100,000 XYZ and set the block reward accordingly so it's fully distributed after 30 days.
 *
 * - This contract has no knowledge on the LP amount and Master is
 *   responsible to pass the amount into this contract
 * - Supports multiple reward tokens
 */
contract MultiRewarderPerSec is IMultiRewarder, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    uint256 public constant ACC_TOKEN_PRECISION = 1e18;
    IERC20 public immutable lpToken;
    address public immutable master;

    struct UserInfo {
        uint128 amount; // 20.18 fixed point.
        // if the pool is activated, rewardDebt should be > 0
        uint128 rewardDebt; // 20.18 fixed point. distributed reward per weight
        uint256 unpaidRewards; // 20.18 fixed point.
    }

    /// @notice Info of each rewardInfo.
    struct RewardInfo {
        IERC20 rewardToken; // if rewardToken is 0, native token is used as reward token
        uint96 tokenPerSec; // 10.18 fixed point
        uint128 accTokenPerShare; // 26.12 fixed point. Amount of reward token each LP token is worth.
        uint128 distributedAmount; // 20.18 fixed point, depending on the decimals of the reward token. This value is used to
        // track the amount of distributed tokens. If `distributedAmount` is closed to the amount of total received
        // tokens, we should refill reward or prepare to stop distributing reward.
    }

    /// @notice address of the operator
    /// @dev operator is able to set emission rate
    address public operator;

    uint256 public lastRewardTimestamp;

    /// @notice Info of the rewardInfo.
    RewardInfo[] public rewardInfo;
    /// @notice tokenId => userId => UserInfo
    mapping(uint256 => mapping(address => UserInfo)) public userInfo;

    event OnReward(address indexed rewardToken, address indexed user, uint256 amount);
    event RewardRateUpdated(address indexed rewardToken, uint256 oldRate, uint256 newRate);

    modifier onlyMaster() {
        require(msg.sender == address(master), 'onlyMaster: only Master can call this function');
        _;
    }

    modifier onlyOperatorOrOwner() {
        require(msg.sender == owner() || msg.sender == operator, 'onlyOperatorOrOwner');
        _;
    }

    /// @notice payable function needed to receive BNB
    receive() external payable {}

    constructor(address _master, IERC20 _lpToken, uint256 _startTimestamp, IERC20 _rewardToken, uint96 _tokenPerSec) {
        require(
            Address.isContract(address(_rewardToken)) || address(_rewardToken) == address(0),
            'constructor: reward token must be a valid contract'
        );
        require(Address.isContract(address(_lpToken)), 'constructor: LP token must be a valid contract');
        require(Address.isContract(address(_master)), 'constructor: Master must be a valid contract');
        require(_startTimestamp >= block.timestamp);

        master = _master;
        lpToken = _lpToken;

        lastRewardTimestamp = _startTimestamp;

        // use non-zero amount for accTokenPerShare as we want to check if user
        // has activated the pool by checking rewardDebt > 0
        RewardInfo memory reward = RewardInfo({
            rewardToken: _rewardToken,
            tokenPerSec: _tokenPerSec,
            accTokenPerShare: 1e18,
            distributedAmount: 0
        });
        rewardInfo.push(reward);
        emit RewardRateUpdated(address(_rewardToken), 0, _tokenPerSec);
    }

    /// @notice Set operator address
    function setOperator(address _operator) external onlyOwner {
        operator = _operator;
    }

    function addRewardToken(IERC20 _rewardToken, uint96 _tokenPerSec) external onlyOwner {
        _updateReward();
        // use non-zero amount for accTokenPerShare as we want to check if user
        // has activated the pool by checking rewardDebt > 0
        RewardInfo memory reward = RewardInfo({
            rewardToken: _rewardToken,
            tokenPerSec: _tokenPerSec,
            accTokenPerShare: 1e18,
            distributedAmount: 0
        });
        rewardInfo.push(reward);
        emit RewardRateUpdated(address(_rewardToken), 0, _tokenPerSec);
    }

    function updateReward() public {
        _updateReward();
    }

    /// @dev This function should be called before lpSupply and sumOfFactors update
    function _updateReward() internal {
        _updateReward(_getTotalShare());
    }

    function _updateReward(uint256 totalShare) internal {
        if (block.timestamp > lastRewardTimestamp) {
            uint256 length = rewardInfo.length;
            for (uint256 i; i < length; ++i) {
                RewardInfo storage reward = rewardInfo[i];
                uint256 timeElapsed = block.timestamp - lastRewardTimestamp;
                uint256 tokenReward = timeElapsed * reward.tokenPerSec;
                // use `max(totalShare, 1e18)` in case of overflow
                reward.accTokenPerShare += toUint128((tokenReward * ACC_TOKEN_PRECISION) / max(totalShare, 1e18));
                reward.distributedAmount += toUint128(tokenReward);
            }
            lastRewardTimestamp = block.timestamp;
        }
    }

    /// @notice Sets the distribution reward rate. This will also update the rewardInfo.
    /// @param _tokenPerSec The number of tokens to distribute per second
    function setRewardRate(uint256 _tokenId, uint96 _tokenPerSec) external onlyOperatorOrOwner {
        require(_tokenPerSec <= 10000e18, 'reward rate too high'); // in case of accTokenPerShare overflow
        _updateReward();

        uint256 oldRate = rewardInfo[_tokenId].tokenPerSec;
        rewardInfo[_tokenId].tokenPerSec = _tokenPerSec;

        emit RewardRateUpdated(address(rewardInfo[_tokenId].rewardToken), oldRate, _tokenPerSec);
    }

    /// @notice Function called by Master whenever staker claims WOM harvest.
    /// @notice Allows staker to also receive a 2nd reward token.
    /// @dev Assume `_getTotalShare` isn't updated yet when this function is called
    /// @param _user Address of user
    /// @param _lpAmount The new amount of LP
    function onReward(
        address _user,
        uint256 _lpAmount
    ) external virtual override onlyMaster nonReentrant returns (uint256[] memory rewards) {
        _updateReward();
        return _onReward(_user, _lpAmount);
    }

    function _onReward(address _user, uint256 _lpAmount) internal virtual returns (uint256[] memory rewards) {
        uint256 length = rewardInfo.length;
        rewards = new uint256[](length);
        for (uint256 i; i < length; ++i) {
            RewardInfo storage reward = rewardInfo[i];
            UserInfo storage user = userInfo[i][_user];
            IERC20 rewardToken = reward.rewardToken;

            if (user.rewardDebt > 0) {
                // rewardDebt > 0 indicates the user has activated the pool and we should distribute rewards
                uint256 pending = ((user.amount * uint256(reward.accTokenPerShare)) / ACC_TOKEN_PRECISION) +
                    user.unpaidRewards -
                    user.rewardDebt;

                if (address(rewardToken) == address(0)) {
                    // is native token
                    uint256 tokenBalance = address(this).balance;
                    if (pending > tokenBalance) {
                        // Note: this line may fail if the receiver is a contract and refuse to receive BNB
                        (bool success, ) = _user.call{value: tokenBalance}('');
                        require(success, 'Transfer failed');
                        rewards[i] = tokenBalance;
                        user.unpaidRewards = pending - tokenBalance;
                    } else {
                        (bool success, ) = _user.call{value: pending}('');
                        require(success, 'Transfer failed');
                        rewards[i] = pending;
                        user.unpaidRewards = 0;
                    }
                } else {
                    // ERC20 token
                    uint256 tokenBalance = rewardToken.balanceOf(address(this));
                    if (pending > tokenBalance) {
                        rewardToken.safeTransfer(_user, tokenBalance);
                        rewards[i] = tokenBalance;
                        user.unpaidRewards = pending - tokenBalance;
                    } else {
                        rewardToken.safeTransfer(_user, pending);
                        rewards[i] = pending;
                        user.unpaidRewards = 0;
                    }
                }
            }

            user.amount = toUint128(_lpAmount);
            user.rewardDebt = toUint128((_lpAmount * reward.accTokenPerShare) / ACC_TOKEN_PRECISION);
            emit OnReward(address(rewardToken), _user, rewards[i]);
        }
    }

    /// @notice returns reward length
    function rewardLength() external view virtual override returns (uint256) {
        return _rewardLength();
    }

    function _rewardLength() internal view returns (uint256) {
        return rewardInfo.length;
    }

    /// @notice View function to see pending tokens
    /// @param _user Address of user.
    /// @return rewards reward for a given user.
    function pendingTokens(address _user) external view virtual override returns (uint256[] memory rewards) {
        return _pendingTokens(_user);
    }

    function _pendingTokens(address _user) internal view returns (uint256[] memory rewards) {
        uint256 length = rewardInfo.length;
        rewards = new uint256[](length);

        for (uint256 i; i < length; ++i) {
            RewardInfo memory pool = rewardInfo[i];
            UserInfo storage user = userInfo[i][_user];

            uint256 accTokenPerShare = pool.accTokenPerShare;
            uint256 totalShare = _getTotalShare();

            if (block.timestamp > lastRewardTimestamp && totalShare > 0) {
                uint256 timeElapsed = block.timestamp - lastRewardTimestamp;
                uint256 tokenReward = timeElapsed * pool.tokenPerSec;
                // use `max(totalShare, 1e18)` in case of overflow
                accTokenPerShare += (tokenReward * ACC_TOKEN_PRECISION) / max(totalShare, 1e18);
            }

            rewards[i] =
                ((user.amount * uint256(accTokenPerShare)) / ACC_TOKEN_PRECISION) -
                user.rewardDebt +
                user.unpaidRewards;
        }
    }

    function _getTotalShare() internal view virtual returns (uint256) {
        return lpToken.balanceOf(address(master));
    }

    /// @notice return an array of reward tokens
    function _rewardTokens() internal view returns (IERC20[] memory tokens) {
        uint256 length = rewardInfo.length;
        tokens = new IERC20[](length);
        for (uint256 i; i < length; ++i) {
            RewardInfo memory pool = rewardInfo[i];
            tokens[i] = pool.rewardToken;
        }
    }

    function rewardTokens() external view virtual override returns (IERC20[] memory tokens) {
        return _rewardTokens();
    }

    /// @notice In case rewarder is stopped before emissions finished, this function allows
    /// withdrawal of remaining tokens.
    function emergencyWithdraw() external onlyOwner {
        uint256 length = rewardInfo.length;

        for (uint256 i; i < length; ++i) {
            RewardInfo storage pool = rewardInfo[i];
            emergencyTokenWithdraw(address(pool.rewardToken));
        }
    }

    /// @notice avoids loosing funds in case there is any tokens sent to this contract
    /// @dev only to be called by owner
    function emergencyTokenWithdraw(address token) public onlyOwner {
        // send that balance back to owner
        if (token == address(0)) {
            // is native token
            (bool success, ) = msg.sender.call{value: address(this).balance}('');
            require(success, 'Transfer failed');
        } else {
            IERC20(token).safeTransfer(msg.sender, IERC20(token).balanceOf(address(this)));
        }
    }

    /// @notice View function to see balances of reward token.
    function balances() external view returns (uint256[] memory balances_) {
        uint256 length = rewardInfo.length;
        balances_ = new uint256[](length);

        for (uint256 i; i < length; ++i) {
            RewardInfo storage pool = rewardInfo[i];
            if (address(pool.rewardToken) == address(0)) {
                // is native token
                balances_[i] = address(this).balance;
            } else {
                balances_[i] = pool.rewardToken.balanceOf(address(this));
            }
        }
    }

    function toUint128(uint256 val) internal pure returns (uint128) {
        if (val > type(uint128).max) revert('uint128 overflow');
        return uint128(val);
    }

    function max(uint256 x, uint256 y) internal pure returns (uint256) {
        return x >= y ? x : y;
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @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].
 */
abstract 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() {
        _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 making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 9 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 6 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.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;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    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));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    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");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 9 : IMultiRewarder.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.5;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

interface IMultiRewarder {
    function lpToken() external view returns (IERC20 lpToken);

    function onReward(address _user, uint256 _lpAmount) external returns (uint256[] memory rewards);

    function pendingTokens(address _user) external view returns (uint256[] memory rewards);

    function rewardTokens() external view returns (IERC20[] memory tokens);

    function rewardLength() external view returns (uint256);
}

Settings
{
  "viaIR": true,
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_master","type":"address"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"uint256","name":"_startTimestamp","type":"uint256"},{"internalType":"contract IERC20","name":"_rewardToken","type":"address"},{"internalType":"uint96","name":"_tokenPerSec","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OnReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"RewardRateUpdated","type":"event"},{"inputs":[],"name":"ACC_TOKEN_PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_rewardToken","type":"address"},{"internalType":"uint96","name":"_tokenPerSec","type":"uint96"}],"name":"addRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balances","outputs":[{"internalType":"uint256[]","name":"balances_","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"emergencyTokenWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastRewardTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"master","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_lpAmount","type":"uint256"}],"name":"onReward","outputs":[{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingTokens","outputs":[{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardInfo","outputs":[{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"uint96","name":"tokenPerSec","type":"uint96"},{"internalType":"uint128","name":"accTokenPerShare","type":"uint128"},{"internalType":"uint128","name":"distributedAmount","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokens","outputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint96","name":"_tokenPerSec","type":"uint96"}],"name":"setRewardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"uint128","name":"rewardDebt","type":"uint128"},{"internalType":"uint256","name":"unpaidRewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0346200037557601f62001b4138819003918201601f1916830192916001600160401b0391828511848610176200037a578160a0928592604097885283398101031262000375578151916001600160a01b0391828416840362000375576020906200006d82840162000390565b9386840151936080620000836060830162000390565b9101516001600160601b038116959086900362000375576000968754988460018060a01b03199433868d16178b558c519b823391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08d80a36001805516998a3b158015906200036c575b156200030f57508482163b15620002b457803b156200025b57428310620002575760a0526080526003558751926080840190848210908211176200024357885286835283830185815288840191670de0b6b3a764000083526060850193888552600454680100000000000000008110156200022f5760018101806004558110156200021b5760048a52878a209651935160a01b909216921691909117600191821b9094019384559051915160801b6001600160801b0319166001600160801b03929092169190911791015584519283528201527f225033f2ea5486463cbb49ceda2823be38daddc85031ce2c637e7ad0950bc85a908390a25161179b9081620003a68239608051818181610e7801526116ab015260a0518181816102680152818161050f01526116840152f35b634e487b7160e01b8a52603260045260248afd5b634e487b7160e01b8a52604160045260248afd5b634e487b7160e01b87526041600452602487fd5b8880fd5b8a5162461bcd60e51b815260048101889052602c60248201527f636f6e7374727563746f723a204d6173746572206d757374206265206120766160448201526b1b1a590818dbdb9d1c9858dd60a21b6064820152608490fd5b8a5162461bcd60e51b815260048101889052602e60248201527f636f6e7374727563746f723a204c5020746f6b656e206d75737420626520612060448201526d1d985b1a590818dbdb9d1c9858dd60921b6064820152608490fd5b62461bcd60e51b815260048101889052603260248201527f636f6e7374727563746f723a2072657761726420746f6b656e206d7573742062604482015271194818481d985b1a590818dbdb9d1c9858dd60721b6064820152608490fd5b508a15620000ee565b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b0382168203620003755756fe608080604052600436101561001d575b50361561001b57600080fd5b005b60003560e01c9081630bc7936314610ec357508063570ca73514610e9c5780635fcbd28514610e58578063715018a614610dff5780637bb98a6814610d2c57806381a00f8314610ccb5780638da5cb5b14610ca457806393f1a40b14610c3b578063ad56882714610b8a578063b3ab15fb14610b4a578063b95c574614610b2c578063c031a66f14610994578063c2b18aa0146108c4578063c3723288146104ec578063db2e21bc146103ff578063edc9d7721461028c578063ee97f7f314610248578063eea0160414610225578063f2fde38b1461014d578063f36c0a72146101345763f8077fae14610111573861000f565b3461012f57600036600319011261012f576020600354604051908152f35b600080fd5b3461012f57600036600319011261012f5761001b611186565b3461012f57602036600319011261012f576101666110da565b61016e6110f0565b6001600160a01b038091169081156101bb57600054826001600160a01b0319821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b608460405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b3461012f57600036600319011261012f576020604051670de0b6b3a76400008152f35b3461012f57600036600319011261012f5760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461012f57604036600319011261012f576004356001600160a01b0380821680920361012f576102ba611034565b6102c26110f0565b6102ca611186565b604051916102d783611148565b838352602083016bffffffffffffffffffffffff8093169182825260408501670de0b6b3a76400008152606086019160008352600454680100000000000000008110156103e95780600161032e920160045561108a565b6103d3576103956040976103c4966001947f225033f2ea5486463cbb49ceda2823be38daddc85031ce2c637e7ad0950bc85a9b51166001600160a01b0319855416178455511682906001600160a01b036001600160a01b031983549260a01b169116179055565b9151925160801b6fffffffffffffffffffffffffffffffff19166001600160801b039390931692909217910155565b815190600082526020820152a2005b634e487b7160e01b600052600060045260246000fd5b634e487b7160e01b600052604160045260246000fd5b3461012f57600036600319011261012f576104186110f0565b60045460005b81811061042757005b6001600160a01b036104388261108a565b505416906104446110f0565b816104725761046d9150610468600080808047335af161046261135e565b5061139e565b611289565b61041e565b6040516370a0823160e01b81523060048201526020908181602481875afa9182156104e0576000926104b0575b50506104689061046d9333906113e9565b90809250813d83116104d9575b6104c78183611164565b8101031261012f57518261046861049f565b503d6104bd565b6040513d6000823e3d90fd5b3461012f57604036600319011261012f576105056110da565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361085a5760026001541461081657600260015561054c611186565b6004546105588161130b565b9160005b828110610579576001805560405180610575868261104f565b0390f35b6105828161108a565b509080600052600560205260406000206001600160a01b03841660005260205260406000206001600160a01b038354169080548060801c908161068d575b50506106429061061a670de0b6b3a76400006106146106889760016001600160801b0391826105f060243561170d565b166fffffffffffffffffffffffffffffffff198854161787550154166024356112a5565b0461170d565b6001600160801b036fffffffffffffffffffffffffffffffff1983549260801b169116179055565b61064c828761134a565b51906040519182527f986cbc32375de61d1fabfb01aef452f5c919f2180bb72fff0fb182126a02b52760206001600160a01b03871693a3611289565b61055c565b906106c3670de0b6b3a76400006106b76106c8946001600160801b038060018c01541691166112a5565b0460018501549061133d565b611298565b9382610756579061061a670de0b6b3a764000061061461064294610688988c8947918d8385116000146107305761071e94928492610713600080808088610718985af161046261135e565b61134a565b52611298565b60018601555b975050508192506105c0565b6107499350600080808088610713955af161046261135e565b5260006001860155610724565b6040516370a0823160e01b8152306004820152602081602481875afa9081156104e05789906000926107da575b506106146106429493888489670de0b6b3a7640000958d8b61061a996106889f116000146107ca5792849261071384610718946107c099976113e9565b6001860155610724565b61074994506107139186916113e9565b93929150506020833d60201161080e575b816107f860209383611164565b8101031261012f57915190919088610614610783565b3d91506107eb565b606460405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b608460405162461bcd60e51b815260206004820152602e60248201527f6f6e6c794d61737465723a206f6e6c79204d61737465722063616e2063616c6c60448201527f20746869732066756e6374696f6e0000000000000000000000000000000000006064820152fd5b3461012f57600036600319011261012f576004546108e1816112f3565b6108ee6040519182611164565b8181526108fa826112f3565b6020928383019291601f190136843760005b81811061095f57505090604051928392818401908285525180915260408401929160005b82811061093f57505050500390f35b83516001600160a01b031685528695509381019392810192600101610930565b806001600160a01b0361097d61097761098f9461108a565b50611624565b5116610989828661134a565b52611289565b61090c565b3461012f5760208060031936011261012f576109ae6110da565b906004546109bb8161130b565b91600093600354906001600160a01b038242119116955b8481106109e75760405180610575888261104f565b6109f36109778261108a565b908060005260058552604060002088600052855260406000206001600160801b03928360408201511690610a25611666565b908680610b23575b610a7b575b5050906001610a63610a7695670de0b6b3a7640000610a58610a6c9686549384166112a5565b049060801c90611298565b9101549061133d565b610989828961134a565b6109d2565b610aa4906bffffffffffffffffffffffff8a610a9a8b97969742611298565b92015116906112a5565b92670de0b6b3a76400009586850294808604881490151715610b0d57670de0b6b3a7640000610a58610af9610a6394610af3610a6c99600198610a769d80821015600014610b055750906112b8565b9061133d565b95965050509550610a32565b9050906112b8565b634e487b7160e01b600052601160045260246000fd5b50811515610a2d565b3461012f57600036600319011261012f576020600454604051908152f35b3461012f57602036600319011261012f576001600160a01b03610b6b6110da565b610b736110f0565b166001600160a01b03196002541617600255600080f35b3461012f57602036600319011261012f576001600160a01b03610bab6110da565b610bb36110f0565b1680610bce575061001b600080808047335af161046261135e565b604051906370a0823160e01b8252306004830152602082602481845afa9081156104e057600091610c06575b61001b925033906113e9565b90506020823d8211610c33575b81610c2060209383611164565b8101031261012f5761001b915190610bfa565b3d9150610c13565b3461012f57604036600319011261012f576024356001600160a01b03811680910361012f5760043560005260056020526040600020906000526020526060604060002060018154910154604051916001600160801b038116835260801c60208301526040820152f35b3461012f57600036600319011261012f5760206001600160a01b0360005416604051908152f35b3461012f57602036600319011261012f5760043560045481101561012f57610cf460809161108a565b5060018154910154604051916001600160a01b038116835260a01c60208301526001600160801b0381166040830152821c6060820152f35b3461012f57600036600319011261012f57600454610d498161130b565b9060005b818110610d625760405180610575858261104f565b6001600160a01b03610d738261108a565b5054169081610d9157610d8c915047610989828661134a565b610d4d565b60405180926370a0823160e01b825230600483015281602460209384935afa9081156104e057600091610dcf575b50610d8c9250610989828661134a565b905082813d8311610df8575b610de58183611164565b8101031261012f57610d8c915185610dbf565b503d610ddb565b3461012f57600036600319011261012f57610e186110f0565b60006001600160a01b0381546001600160a01b031981168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461012f57600036600319011261012f5760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461012f57600036600319011261012f5760206001600160a01b0360025416604051908152f35b3461012f57604036600319011261012f5760043590610ee0611034565b916001600160a01b0391826000541633148015611027575b15610fe557506bffffffffffffffffffffffff83169269021e19e0c9bab24000008411610fa1577f225033f2ea5486463cbb49ceda2823be38daddc85031ce2c637e7ad0950bc85a92610f90604093610f4f611186565b610f8b610f5b8261108a565b505460a01c94610f6a8361108a565b50906001600160a01b036001600160a01b031983549260a01b169116179055565b61108a565b5054169382519182526020820152a2005b606460405162461bcd60e51b815260206004820152601460248201527f726577617264207261746520746f6f20686967680000000000000000000000006044820152fd5b8062461bcd60e51b6064925260206004820152601360248201527f6f6e6c794f70657261746f724f724f776e6572000000000000000000000000006044820152fd5b5082600254163314610ef8565b602435906bffffffffffffffffffffffff8216820361012f57565b6020908160408183019282815285518094520193019160005b828110611076575050505090565b835185529381019392810192600101611068565b6004548110156110c457600460005260011b7f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0190600090565b634e487b7160e01b600052603260045260246000fd5b600435906001600160a01b038216820361012f57565b6001600160a01b0360005416330361110457565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6080810190811067ffffffffffffffff8211176103e957604052565b90601f8019910116810190811067ffffffffffffffff8211176103e957604052565b61118e611666565b6003908154421161119d575050565b600490815491600091670de0b6b3a764000080821015935b8581106111c757505050505050429055565b6111d08161108a565b506111ea6111df895442611298565b825460a01c906112a5565b838102818104851482151715611274579161061a6104689261125f600161122661122161126899988e60001461126d578c906112b8565b61170d565b9401936fffffffffffffffffffffffffffffffff198554916112526001600160801b03918285166112d8565b169116179182855561170d565b9060801c6112d8565b6111b5565b8b906112b8565b601187634e487b7160e01b6000525260246000fd5b6000198114610b0d5760010190565b91908203918211610b0d57565b81810292918115918404141715610b0d57565b81156112c2570490565b634e487b7160e01b600052601260045260246000fd5b9190916001600160801b0380809416911601918211610b0d57565b67ffffffffffffffff81116103e95760051b60200190565b90611315826112f3565b6113226040519182611164565b8281528092611333601f19916112f3565b0190602036910137565b91908201809211610b0d57565b80518210156110c45760209160051b010190565b3d15611399573d9067ffffffffffffffff82116103e9576040519161138d601f8201601f191660200184611164565b82523d6000602084013e565b606090565b156113a557565b606460405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152fd5b919060405190602093848301937fa9059cbb0000000000000000000000000000000000000000000000000000000085526001600160a01b03809316602485015260448401526044835261143b83611148565b1660405190604082019282841067ffffffffffffffff8511176103e9576114a1936040528583527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656486840152600080958192519082855af161149b61135e565b91611551565b805191821591848315611526575b5050509050156114bc5750565b6084906040519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b91938180945001031261154d5782015190811515820361154a5750803880846114af565b80fd5b5080fd5b919290156115b25750815115611565575090565b3b1561156e5790565b606460405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b8251909150156115c55750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b82851061160b575050604492506000838284010152601f80199101168101030190fd5b84810182015186860160440152938101938593506115e8565b9060405161163181611148565b60606001829480546001600160a01b038116855260a01c602085015201546001600160801b038116604084015260801c910152565b6040516370a0823160e01b81526020816024816001600160a01b03807f00000000000000000000000000000000000000000000000000000000000000001660048301527f0000000000000000000000000000000000000000000000000000000000000000165afa9081156104e0576000916116df575090565b906020823d8211611705575b816116f860209383611164565b8101031261154a57505190565b3d91506116eb565b6001600160801b0390818111611721571690565b606460405162461bcd60e51b815260206004820152601060248201527f75696e74313238206f766572666c6f77000000000000000000000000000000006044820152fdfea2646970667358221220dffcfa7a177d74b4a7ab14cbb85d7ed9f618edc2c76825a3d3d03d8ca9db2aaa64736f6c63430008120033000000000000000000000000c9bfc3efefe4cf96877009f75a61f5c1937e5d1a00000000000000000000000075eaa804518a66196946598317aed57ef86235fe0000000000000000000000000000000000000000000000000000000064cc93e000000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f00000000000000000000000000000000000000000000000000079867e4d81e59

Deployed Bytecode

0x608080604052600436101561001d575b50361561001b57600080fd5b005b60003560e01c9081630bc7936314610ec357508063570ca73514610e9c5780635fcbd28514610e58578063715018a614610dff5780637bb98a6814610d2c57806381a00f8314610ccb5780638da5cb5b14610ca457806393f1a40b14610c3b578063ad56882714610b8a578063b3ab15fb14610b4a578063b95c574614610b2c578063c031a66f14610994578063c2b18aa0146108c4578063c3723288146104ec578063db2e21bc146103ff578063edc9d7721461028c578063ee97f7f314610248578063eea0160414610225578063f2fde38b1461014d578063f36c0a72146101345763f8077fae14610111573861000f565b3461012f57600036600319011261012f576020600354604051908152f35b600080fd5b3461012f57600036600319011261012f5761001b611186565b3461012f57602036600319011261012f576101666110da565b61016e6110f0565b6001600160a01b038091169081156101bb57600054826001600160a01b0319821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b608460405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b3461012f57600036600319011261012f576020604051670de0b6b3a76400008152f35b3461012f57600036600319011261012f5760206040516001600160a01b037f000000000000000000000000c9bfc3efefe4cf96877009f75a61f5c1937e5d1a168152f35b3461012f57604036600319011261012f576004356001600160a01b0380821680920361012f576102ba611034565b6102c26110f0565b6102ca611186565b604051916102d783611148565b838352602083016bffffffffffffffffffffffff8093169182825260408501670de0b6b3a76400008152606086019160008352600454680100000000000000008110156103e95780600161032e920160045561108a565b6103d3576103956040976103c4966001947f225033f2ea5486463cbb49ceda2823be38daddc85031ce2c637e7ad0950bc85a9b51166001600160a01b0319855416178455511682906001600160a01b036001600160a01b031983549260a01b169116179055565b9151925160801b6fffffffffffffffffffffffffffffffff19166001600160801b039390931692909217910155565b815190600082526020820152a2005b634e487b7160e01b600052600060045260246000fd5b634e487b7160e01b600052604160045260246000fd5b3461012f57600036600319011261012f576104186110f0565b60045460005b81811061042757005b6001600160a01b036104388261108a565b505416906104446110f0565b816104725761046d9150610468600080808047335af161046261135e565b5061139e565b611289565b61041e565b6040516370a0823160e01b81523060048201526020908181602481875afa9182156104e0576000926104b0575b50506104689061046d9333906113e9565b90809250813d83116104d9575b6104c78183611164565b8101031261012f57518261046861049f565b503d6104bd565b6040513d6000823e3d90fd5b3461012f57604036600319011261012f576105056110da565b6001600160a01b037f000000000000000000000000c9bfc3efefe4cf96877009f75a61f5c1937e5d1a16330361085a5760026001541461081657600260015561054c611186565b6004546105588161130b565b9160005b828110610579576001805560405180610575868261104f565b0390f35b6105828161108a565b509080600052600560205260406000206001600160a01b03841660005260205260406000206001600160a01b038354169080548060801c908161068d575b50506106429061061a670de0b6b3a76400006106146106889760016001600160801b0391826105f060243561170d565b166fffffffffffffffffffffffffffffffff198854161787550154166024356112a5565b0461170d565b6001600160801b036fffffffffffffffffffffffffffffffff1983549260801b169116179055565b61064c828761134a565b51906040519182527f986cbc32375de61d1fabfb01aef452f5c919f2180bb72fff0fb182126a02b52760206001600160a01b03871693a3611289565b61055c565b906106c3670de0b6b3a76400006106b76106c8946001600160801b038060018c01541691166112a5565b0460018501549061133d565b611298565b9382610756579061061a670de0b6b3a764000061061461064294610688988c8947918d8385116000146107305761071e94928492610713600080808088610718985af161046261135e565b61134a565b52611298565b60018601555b975050508192506105c0565b6107499350600080808088610713955af161046261135e565b5260006001860155610724565b6040516370a0823160e01b8152306004820152602081602481875afa9081156104e05789906000926107da575b506106146106429493888489670de0b6b3a7640000958d8b61061a996106889f116000146107ca5792849261071384610718946107c099976113e9565b6001860155610724565b61074994506107139186916113e9565b93929150506020833d60201161080e575b816107f860209383611164565b8101031261012f57915190919088610614610783565b3d91506107eb565b606460405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b608460405162461bcd60e51b815260206004820152602e60248201527f6f6e6c794d61737465723a206f6e6c79204d61737465722063616e2063616c6c60448201527f20746869732066756e6374696f6e0000000000000000000000000000000000006064820152fd5b3461012f57600036600319011261012f576004546108e1816112f3565b6108ee6040519182611164565b8181526108fa826112f3565b6020928383019291601f190136843760005b81811061095f57505090604051928392818401908285525180915260408401929160005b82811061093f57505050500390f35b83516001600160a01b031685528695509381019392810192600101610930565b806001600160a01b0361097d61097761098f9461108a565b50611624565b5116610989828661134a565b52611289565b61090c565b3461012f5760208060031936011261012f576109ae6110da565b906004546109bb8161130b565b91600093600354906001600160a01b038242119116955b8481106109e75760405180610575888261104f565b6109f36109778261108a565b908060005260058552604060002088600052855260406000206001600160801b03928360408201511690610a25611666565b908680610b23575b610a7b575b5050906001610a63610a7695670de0b6b3a7640000610a58610a6c9686549384166112a5565b049060801c90611298565b9101549061133d565b610989828961134a565b6109d2565b610aa4906bffffffffffffffffffffffff8a610a9a8b97969742611298565b92015116906112a5565b92670de0b6b3a76400009586850294808604881490151715610b0d57670de0b6b3a7640000610a58610af9610a6394610af3610a6c99600198610a769d80821015600014610b055750906112b8565b9061133d565b95965050509550610a32565b9050906112b8565b634e487b7160e01b600052601160045260246000fd5b50811515610a2d565b3461012f57600036600319011261012f576020600454604051908152f35b3461012f57602036600319011261012f576001600160a01b03610b6b6110da565b610b736110f0565b166001600160a01b03196002541617600255600080f35b3461012f57602036600319011261012f576001600160a01b03610bab6110da565b610bb36110f0565b1680610bce575061001b600080808047335af161046261135e565b604051906370a0823160e01b8252306004830152602082602481845afa9081156104e057600091610c06575b61001b925033906113e9565b90506020823d8211610c33575b81610c2060209383611164565b8101031261012f5761001b915190610bfa565b3d9150610c13565b3461012f57604036600319011261012f576024356001600160a01b03811680910361012f5760043560005260056020526040600020906000526020526060604060002060018154910154604051916001600160801b038116835260801c60208301526040820152f35b3461012f57600036600319011261012f5760206001600160a01b0360005416604051908152f35b3461012f57602036600319011261012f5760043560045481101561012f57610cf460809161108a565b5060018154910154604051916001600160a01b038116835260a01c60208301526001600160801b0381166040830152821c6060820152f35b3461012f57600036600319011261012f57600454610d498161130b565b9060005b818110610d625760405180610575858261104f565b6001600160a01b03610d738261108a565b5054169081610d9157610d8c915047610989828661134a565b610d4d565b60405180926370a0823160e01b825230600483015281602460209384935afa9081156104e057600091610dcf575b50610d8c9250610989828661134a565b905082813d8311610df8575b610de58183611164565b8101031261012f57610d8c915185610dbf565b503d610ddb565b3461012f57600036600319011261012f57610e186110f0565b60006001600160a01b0381546001600160a01b031981168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461012f57600036600319011261012f5760206040516001600160a01b037f00000000000000000000000075eaa804518a66196946598317aed57ef86235fe168152f35b3461012f57600036600319011261012f5760206001600160a01b0360025416604051908152f35b3461012f57604036600319011261012f5760043590610ee0611034565b916001600160a01b0391826000541633148015611027575b15610fe557506bffffffffffffffffffffffff83169269021e19e0c9bab24000008411610fa1577f225033f2ea5486463cbb49ceda2823be38daddc85031ce2c637e7ad0950bc85a92610f90604093610f4f611186565b610f8b610f5b8261108a565b505460a01c94610f6a8361108a565b50906001600160a01b036001600160a01b031983549260a01b169116179055565b61108a565b5054169382519182526020820152a2005b606460405162461bcd60e51b815260206004820152601460248201527f726577617264207261746520746f6f20686967680000000000000000000000006044820152fd5b8062461bcd60e51b6064925260206004820152601360248201527f6f6e6c794f70657261746f724f724f776e6572000000000000000000000000006044820152fd5b5082600254163314610ef8565b602435906bffffffffffffffffffffffff8216820361012f57565b6020908160408183019282815285518094520193019160005b828110611076575050505090565b835185529381019392810192600101611068565b6004548110156110c457600460005260011b7f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0190600090565b634e487b7160e01b600052603260045260246000fd5b600435906001600160a01b038216820361012f57565b6001600160a01b0360005416330361110457565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6080810190811067ffffffffffffffff8211176103e957604052565b90601f8019910116810190811067ffffffffffffffff8211176103e957604052565b61118e611666565b6003908154421161119d575050565b600490815491600091670de0b6b3a764000080821015935b8581106111c757505050505050429055565b6111d08161108a565b506111ea6111df895442611298565b825460a01c906112a5565b838102818104851482151715611274579161061a6104689261125f600161122661122161126899988e60001461126d578c906112b8565b61170d565b9401936fffffffffffffffffffffffffffffffff198554916112526001600160801b03918285166112d8565b169116179182855561170d565b9060801c6112d8565b6111b5565b8b906112b8565b601187634e487b7160e01b6000525260246000fd5b6000198114610b0d5760010190565b91908203918211610b0d57565b81810292918115918404141715610b0d57565b81156112c2570490565b634e487b7160e01b600052601260045260246000fd5b9190916001600160801b0380809416911601918211610b0d57565b67ffffffffffffffff81116103e95760051b60200190565b90611315826112f3565b6113226040519182611164565b8281528092611333601f19916112f3565b0190602036910137565b91908201809211610b0d57565b80518210156110c45760209160051b010190565b3d15611399573d9067ffffffffffffffff82116103e9576040519161138d601f8201601f191660200184611164565b82523d6000602084013e565b606090565b156113a557565b606460405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152fd5b919060405190602093848301937fa9059cbb0000000000000000000000000000000000000000000000000000000085526001600160a01b03809316602485015260448401526044835261143b83611148565b1660405190604082019282841067ffffffffffffffff8511176103e9576114a1936040528583527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656486840152600080958192519082855af161149b61135e565b91611551565b805191821591848315611526575b5050509050156114bc5750565b6084906040519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b91938180945001031261154d5782015190811515820361154a5750803880846114af565b80fd5b5080fd5b919290156115b25750815115611565575090565b3b1561156e5790565b606460405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b8251909150156115c55750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b82851061160b575050604492506000838284010152601f80199101168101030190fd5b84810182015186860160440152938101938593506115e8565b9060405161163181611148565b60606001829480546001600160a01b038116855260a01c602085015201546001600160801b038116604084015260801c910152565b6040516370a0823160e01b81526020816024816001600160a01b03807f000000000000000000000000c9bfc3efefe4cf96877009f75a61f5c1937e5d1a1660048301527f00000000000000000000000075eaa804518a66196946598317aed57ef86235fe165afa9081156104e0576000916116df575090565b906020823d8211611705575b816116f860209383611164565b8101031261154a57505190565b3d91506116eb565b6001600160801b0390818111611721571690565b606460405162461bcd60e51b815260206004820152601060248201527f75696e74313238206f766572666c6f77000000000000000000000000000000006044820152fdfea2646970667358221220dffcfa7a177d74b4a7ab14cbb85d7ed9f618edc2c76825a3d3d03d8ca9db2aaa64736f6c63430008120033

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

000000000000000000000000c9bfc3efefe4cf96877009f75a61f5c1937e5d1a00000000000000000000000075eaa804518a66196946598317aed57ef86235fe0000000000000000000000000000000000000000000000000000000064cc93e000000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f00000000000000000000000000000000000000000000000000079867e4d81e59

-----Decoded View---------------
Arg [0] : _master (address): 0xC9bFC3eFeFe4CF96877009F75a61F5c1937e5d1a
Arg [1] : _lpToken (address): 0x75Eaa804518a66196946598317Aed57Ef86235Fe
Arg [2] : _startTimestamp (uint256): 1691128800
Arg [3] : _rewardToken (address): 0x30D20208d987713f46DFD34EF128Bb16C404D10f
Arg [4] : _tokenPerSec (uint96): 2137896825396825

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000c9bfc3efefe4cf96877009f75a61f5c1937e5d1a
Arg [1] : 00000000000000000000000075eaa804518a66196946598317aed57ef86235fe
Arg [2] : 0000000000000000000000000000000000000000000000000000000064cc93e0
Arg [3] : 00000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f
Arg [4] : 00000000000000000000000000000000000000000000000000079867e4d81e59


Loading...
Loading
Loading...
Loading
[ 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.