ETH Price: $3,290.68 (+1.51%)
Gas: 2 Gwei

Contract

0xE115e56a5a725E1fEbf17820E8fb5Ad8f17d5cF1
 
Transaction Hash
Method
Block
From
To
Deposit193502702024-03-02 21:48:59146 days ago1709416139IN
Capital DEX: Farming V2
0 ETH0.0051101845.62213462
Withdraw193241912024-02-28 6:17:35150 days ago1709101055IN
Capital DEX: Farming V2
0 ETH0.0042214435.10525888
Deposit192823172024-02-22 9:38:59156 days ago1708594739IN
Capital DEX: Farming V2
0 ETH0.0053340637.13031546
Withdraw192729132024-02-21 1:55:47157 days ago1708480547IN
Capital DEX: Farming V2
0 ETH0.0038572432.07658527
Deposit192391492024-02-16 8:02:35162 days ago1708070555IN
Capital DEX: Farming V2
0 ETH0.0035559924.75320572
Withdraw192300932024-02-15 1:35:11163 days ago1707960911IN
Capital DEX: Farming V2
0 ETH0.0027145522.58087528
Withdraw192300132024-02-15 1:19:11163 days ago1707959951IN
Capital DEX: Farming V2
0 ETH0.003221223.83164393
Withdraw192298212024-02-15 0:40:11163 days ago1707957611IN
Capital DEX: Farming V2
0 ETH0.0045498529.88350225
Withdraw192297422024-02-15 0:23:59163 days ago1707956639IN
Capital DEX: Farming V2
0 ETH0.0033135921.76716738
Deposit190664342024-01-23 2:33:47186 days ago1705977227IN
Capital DEX: Farming V2
0 ETH0.001349919.48940706
Withdraw186954422023-12-02 1:29:11238 days ago1701480551IN
Capital DEX: Farming V2
0 ETH0.0014450234.96573505
Withdraw186954422023-12-02 1:29:11238 days ago1701480551IN
Capital DEX: Farming V2
0 ETH0.0035879929.83458127
Deposit186785232023-11-29 16:41:11240 days ago1701276071IN
Capital DEX: Farming V2
0 ETH0.0070394748.99755093
Withdraw186543602023-11-26 7:28:11244 days ago1700983691IN
Capital DEX: Farming V2
0 ETH0.0027988718.38160547
Withdraw186464782023-11-25 4:58:35245 days ago1700888315IN
Capital DEX: Farming V2
0 ETH0.0022441218.66199042
Deposit186464742023-11-25 4:57:47245 days ago1700888267IN
Capital DEX: Farming V2
0 ETH0.0021908419.55922001
Withdraw185709852023-11-14 15:17:47255 days ago1699975067IN
Capital DEX: Farming V2
0 ETH0.0055490547
Withdraw183244062023-10-11 3:03:59290 days ago1696993439IN
Capital DEX: Farming V2
0 ETH0.00084036.9872321
Withdraw183242812023-10-11 2:38:59290 days ago1696991939IN
Capital DEX: Farming V2
0 ETH0.001129338.35598615
Withdraw183229502023-10-10 22:11:35290 days ago1696975895IN
Capital DEX: Farming V2
0 ETH0.000798456.63923354
Withdraw183005982023-10-07 19:08:23293 days ago1696705703IN
Capital DEX: Farming V2
0 ETH0.000801846.66807975
Withdraw182790382023-10-04 18:46:59296 days ago1696445219IN
Capital DEX: Farming V2
0 ETH0.0010391110.07605673
Withdraw182621662023-10-02 10:11:35299 days ago1696241495IN
Capital DEX: Farming V2
0 ETH0.0012331810.25817585
Withdraw182619752023-10-02 9:33:11299 days ago1696239191IN
Capital DEX: Farming V2
0 ETH0.001146659.53549668
Deposit182474912023-09-30 9:00:47301 days ago1696064447IN
Capital DEX: Farming V2
0 ETH0.000915958.1773444
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MasterChefV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : MasterChefV2.sol
/*
 * Capital DEX
 *
 * Copyright ©️ 2021 Curio AG (Company Number FL-0002.594.728-9)
 * Incorporated and registered in Liechtenstein.
 *
 * Copyright ©️ 2021 Curio Capital AG (Company Number CHE-211.446.654)
 * Incorporated and registered in Zug, Switzerland.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.6.12;

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

import "./interfaces/IReservoir.sol";
import "../interfaces/IDexWhitelist.sol";

/**
 *  original source code: https://github.com/sushiswap/sushiswap/blob/1e4db47fa313f84cd242e17a4972ec1e9755609a/contracts/MasterChef.sol
 *  XXX: Removed migration logic;
 *  XXX: Removed token minting and added token reservoir;
 *  XXX: Removed devaddr for reward;
 *  XXX: Added whitelist from DexWhitelist;
 *  XXX: Added check if LP token has already been added;
 *  XXX: Added sushiPerBlock update logic;
 *  XXX: sushi == farming CGT token.
 */

// MasterChefV2 is the master of Sushi. He can make Sushi and he is a fair guy.
//
// Note that it's ownable and the owner wields tremendous power. The ownership
// will be transferred to a governance smart contract once SUSHI is sufficiently
// distributed and the community can show to govern itself.
//
// Have fun reading it. Hopefully it's bug-free. God bless.
contract MasterChefV2 is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    // Info of each user.
    struct UserInfo {
        uint256 amount;     // How many LP tokens the user has provided.
        uint256 rewardDebt; // Reward debt. See explanation below.
        //
        // We do some fancy math here. Basically, any point in time, the amount of SUSHIs
        // entitled to a user but is pending to be distributed is:
        //
        //   pending reward = (user.amount * pool.accSushiPerShare) - user.rewardDebt
        //
        // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens:
        //   1. The pool's `accSushiPerShare` (and `lastRewardBlock`) gets updated.
        //   2. User receives the pending reward sent to his/her address.
        //   3. User's `amount` gets updated.
        //   4. User's `rewardDebt` gets updated.
    }

    // Info of each pool.
    struct PoolInfo {
        IERC20 lpToken;           // Address of LP token contract.
        uint256 allocPoint;       // How many allocation points assigned to this pool. SUSHIs to distribute per block.
        uint256 lastRewardBlock;  // Last block number that SUSHIs distribution occurs.
        uint256 accSushiPerShare; // Accumulated SUSHIs per share, times 1e12. See below.
    }

    // The SUSHI TOKEN!
    IERC20 public sushi;
    // Block number when bonus SUSHI period ends.
    uint256 public bonusEndBlock;
    // SUSHI tokens created per block.
    uint256 public sushiPerBlock;
    // Bonus muliplier for early sushi makers.
    uint256 public constant BONUS_MULTIPLIER = 10;

    // 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 block number when SUSHI mining starts.
    uint256 public startBlock;

    // XXX: user whitelist
    IDexWhitelist public whitelist;

    // XXX: token reservoir
    IReservoir public sushiReservoir;

    // XXX: checking already added LP tokens
    mapping(address => bool) private lpTokens;

    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 SetWhitelist(address whitelist);      // XXX: set whitelist event
    event SetSushiReservoir(address reservoir); // XXX: set reservoir event
    event SetSushiPerBlock(uint256 sushiPerBlock); // XXX: set sushiPerBlock event

    constructor(
        IERC20 _sushi,
        IReservoir _sushiReservoir,
        uint256 _sushiPerBlock,
        uint256 _startBlock,
        uint256 _bonusEndBlock,
        IDexWhitelist _whitelist
    ) public {
        sushi = _sushi;
        sushiReservoir = _sushiReservoir;   // XXX: set token reservoir
        sushiPerBlock = _sushiPerBlock;
        bonusEndBlock = _bonusEndBlock;
        startBlock = _startBlock;
        whitelist = _whitelist; // XXX: set whitelist address
    }

    // XXX: only farm whitelisted
    modifier onlyWhitelisted() {
        if (address(whitelist) != address(0)) {
            require(whitelist.isFarmAddressActive(msg.sender), "MasterChefV2: WL permission denied");
        }
        _;
    }

    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }

    // Add a new lp to the pool. Can only be called by the owner.
    function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate) public onlyOwner {
        // XXX: trying to add the same LP token more than once
        require(!lpTokens[address(_lpToken)], "MasterChefV2: LP token has already been added");
        lpTokens[address(_lpToken)] = true;

        if (_withUpdate) {
            massUpdatePools();
        }
        uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
        totalAllocPoint = totalAllocPoint.add(_allocPoint);
        poolInfo.push(PoolInfo({
            lpToken: _lpToken,
            allocPoint: _allocPoint,
            lastRewardBlock: lastRewardBlock,
            accSushiPerShare: 0
        }));
    }

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

    // XXX: set whitelist. Can only be called by the owner.
    function setWhitelist(IDexWhitelist _whitelist) public onlyOwner {
        whitelist = _whitelist;
        emit SetWhitelist(address(_whitelist));
    }

    // XXX: set sushiReservoir. Can only be called by the owner.
    function setSushiReservoir(IReservoir _sushiReservoir) public onlyOwner {
        sushiReservoir = _sushiReservoir;
        emit SetSushiReservoir(address(_sushiReservoir));
    }

    // XXX: set sushiPerBlock. Can only be called by the owner.
    function setSushiPerBlock(uint256 _sushiPerBlock, bool _withUpdate) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        sushiPerBlock = _sushiPerBlock;
        emit SetSushiPerBlock(_sushiPerBlock);
    }

    // Return reward multiplier over the given _from to _to block.
    function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
        if (_to <= bonusEndBlock) {
            return _to.sub(_from).mul(BONUS_MULTIPLIER);
        } else if (_from >= bonusEndBlock) {
            return _to.sub(_from);
        } else {
            return bonusEndBlock.sub(_from).mul(BONUS_MULTIPLIER).add(
                _to.sub(bonusEndBlock)
            );
        }
    }

    // View function to see pending SUSHIs on frontend.
    function pendingSushi(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accSushiPerShare = pool.accSushiPerShare;
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (block.number > pool.lastRewardBlock && lpSupply != 0) {
            uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
            uint256 sushiReward = multiplier.mul(sushiPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
            accSushiPerShare = accSushiPerShare.add(sushiReward.mul(1e12).div(lpSupply));
        }
        return user.amount.mul(accSushiPerShare).div(1e12).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.number <= pool.lastRewardBlock) {
            return;
        }
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (lpSupply == 0) {
            pool.lastRewardBlock = block.number;
            return;
        }
        uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
        uint256 sushiReward = multiplier.mul(sushiPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
        sushiReward = sushiReservoir.drip(sushiReward); // XXX: transfer tokens from sushiReservoir
        pool.accSushiPerShare = pool.accSushiPerShare.add(sushiReward.mul(1e12).div(lpSupply));
        pool.lastRewardBlock = block.number;
    }

    // XXX: added whitelist check.
    // Deposit LP tokens to MasterChefV2 for SUSHI allocation.
    function deposit(uint256 _pid, uint256 _amount) public onlyWhitelisted {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        updatePool(_pid);
        if (user.amount > 0) {
            uint256 pending = user.amount.mul(pool.accSushiPerShare).div(1e12).sub(user.rewardDebt);
            if(pending > 0) {
                safeSushiTransfer(msg.sender, pending);
            }
        }
        if(_amount > 0) {
            pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
            user.amount = user.amount.add(_amount);
        }
        user.rewardDebt = user.amount.mul(pool.accSushiPerShare).div(1e12);
        emit Deposit(msg.sender, _pid, _amount);
    }

    // XXX: added whitelist check.
    // Withdraw LP tokens from MasterChefV2.
    function withdraw(uint256 _pid, uint256 _amount) public onlyWhitelisted {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        require(user.amount >= _amount, "withdraw: not good");
        updatePool(_pid);
        uint256 pending = user.amount.mul(pool.accSushiPerShare).div(1e12).sub(user.rewardDebt);
        if(pending > 0) {
            safeSushiTransfer(msg.sender, pending);
        }
        if(_amount > 0) {
            user.amount = user.amount.sub(_amount);
            pool.lpToken.safeTransfer(address(msg.sender), _amount);
        }
        user.rewardDebt = user.amount.mul(pool.accSushiPerShare).div(1e12);
        emit Withdraw(msg.sender, _pid, _amount);
    }

    // XXX: added whitelist check.
    // Withdraw without caring about rewards. EMERGENCY ONLY.
    function emergencyWithdraw(uint256 _pid) public onlyWhitelisted {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        uint256 amount = user.amount;
        user.amount = 0;
        user.rewardDebt = 0;
        pool.lpToken.safeTransfer(address(msg.sender), amount);
        emit EmergencyWithdraw(msg.sender, _pid, amount);
    }

    // Safe sushi transfer function, just in case if rounding error causes pool to not have enough SUSHIs.
    function safeSushiTransfer(address _to, uint256 _amount) internal {
        uint256 sushiBal = sushi.balanceOf(address(this));
        if (_amount > sushiBal) {
            sushi.transfer(_to, sushiBal);
        } else {
            sushi.transfer(_to, _amount);
        }
    }
}

File 2 of 9 : IReservoir.sol
/*
 * Capital DEX
 *
 * Copyright ©️ 2020 Curio AG (Company Number FL-0002.594.728-9)
 * Incorporated and registered in Liechtenstein.
 *
 * Copyright ©️ 2020 Curio Capital AG (Company Number CHE-211.446.654)
 * Incorporated and registered in Zug, Switzerland.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.0;

/**
 * @dev Interface of Reservoir contract.
 */
interface IReservoir {
    function drip(uint256 requestedTokens)
        external
        returns (uint256 sentTokens);
}

File 3 of 9 : IDexWhitelist.sol
/*
 * Capital DEX
 *
 * Copyright ©️ 2020 Curio AG (Company Number FL-0002.594.728-9)
 * Incorporated and registered in Liechtenstein.
 *
 * Copyright ©️ 2020 Curio Capital AG (Company Number CHE-211.446.654)
 * Incorporated and registered in Zug, Switzerland.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.0;

/**
 * @dev Interface of DexWhitelist contract.
 */
interface IDexWhitelist {
    function isInvestorAddressActive(address _addr)
        external
        view
        returns (bool);

    /// @dev Returns success if address is in investor WL or liquidity WL is not active
    function isLiquidityAddressActive(address _addr)
        external
        view
        returns (bool);

    /// @dev Returns success if address is in investor WL or swap WL is not active
    function isSwapAddressActive(address _addr)
        external
        view
        returns (bool);

    /// @dev Returns success if address is in investor WL or swap WL is not active
    function isFarmAddressActive(address _addr)
        external
        view
        returns (bool);

    /// @dev Returns success if address is in token WL or token WL is not active
    function isTokenAddressActive(address _addr)
        external
        view
        returns (bool);
}

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

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

import "../GSN/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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

pragma solidity >=0.6.0 <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);
}

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_sushi","type":"address"},{"internalType":"contract IReservoir","name":"_sushiReservoir","type":"address"},{"internalType":"uint256","name":"_sushiPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"},{"internalType":"contract IDexWhitelist","name":"_whitelist","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","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":false,"internalType":"uint256","name":"sushiPerBlock","type":"uint256"}],"name":"SetSushiPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"reservoir","type":"address"}],"name":"SetSushiReservoir","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whitelist","type":"address"}],"name":"SetWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingSushi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accSushiPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sushiPerBlock","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"setSushiPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReservoir","name":"_sushiReservoir","type":"address"}],"name":"setSushiReservoir","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDexWhitelist","name":"_whitelist","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sushi","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sushiPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sushiReservoir","outputs":[{"internalType":"contract IReservoir","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract IDexWhitelist","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060065534801561001557600080fd5b50604051611dec380380611dec833981810160405260c081101561003857600080fd5b508051602082015160408301516060840151608085015160a090950151939492939192909160006100676100ff565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b039788166001600160a01b031991821617909155600980549688169682169690961790955560039390935560025560075560088054919093169116179055610103565b3390565b611cda806101126000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806364482f79116100de5780638dbb1e3a11610097578063b0bcf42a11610071578063b0bcf42a14610404578063e2bbb1581461040c578063f249a2311461042f578063f2fde38b146104545761018e565b80638dbb1e3a1461039457806393e59dc1146103b757806393f1a40b146103bf5761018e565b806364482f7914610305578063715018a61461033057806375971dbe14610338578063854cff2f1461035e5780638aa28550146103845780638da5cb5b1461038c5761018e565b80631eaaa0451161014b57806348cd4cb11161012557806348cd4cb1146102bb57806351eb05a6146102c35780635312ea8e146102e0578063630b5ba1146102fd5761018e565b80631eaaa0451461025a5780632ba658f814610290578063441a3e70146102985761018e565b8063081e3eda146101935780630a087903146101ad5780631526fe27146101d157806317caf6f11461021e578063195426ec146102265780631aed655314610252575b600080fd5b61019b61047a565b60408051918252519081900360200190f35b6101b5610480565b604080516001600160a01b039092168252519081900360200190f35b6101ee600480360360208110156101e757600080fd5b503561048f565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61019b6104d0565b61019b6004803603604081101561023c57600080fd5b50803590602001356001600160a01b03166104d6565b61019b61064c565b61028e6004803603606081101561027057600080fd5b508035906001600160a01b0360208201351690604001351515610652565b005b6101b561084c565b61028e600480360360408110156102ae57600080fd5b508035906020013561085b565b61019b610a71565b61028e600480360360208110156102d957600080fd5b5035610a77565b61028e600480360360208110156102f657600080fd5b5035610c1e565b61028e610d7d565b61028e6004803603606081101561031b57600080fd5b50803590602081013590604001351515610da0565b61028e610e71565b61028e6004803603602081101561034e57600080fd5b50356001600160a01b0316610f13565b61028e6004803603602081101561037457600080fd5b50356001600160a01b0316610fbf565b61019b61106b565b6101b5611070565b61019b600480360360408110156103aa57600080fd5b508035906020013561107f565b6101b56110e5565b6103eb600480360360408110156103d557600080fd5b50803590602001356001600160a01b03166110f4565b6040805192835260208301919091528051918290030190f35b61019b611118565b61028e6004803603604081101561042257600080fd5b508035906020013561111e565b61028e6004803603604081101561044557600080fd5b508035906020013515156112f3565b61028e6004803603602081101561046a57600080fd5b50356001600160a01b0316611395565b60045490565b6001546001600160a01b031681565b6004818154811061049c57fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60065481565b600080600484815481106104e657fe5b600091825260208083208784526005825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b15801561056457600080fd5b505afa158015610578573d6000803e3d6000fd5b505050506040513d602081101561058e57600080fd5b50516002850154909150431180156105a557508015155b156106115760006105ba85600201544361107f565b905060006105ed6006546105e788600101546105e16003548761148d90919063ffffffff16565b9061148d565b906114ed565b905061060c610605846105e78464e8d4a5100061148d565b859061152f565b935050505b61063f836001015461063964e8d4a510006105e786886000015461148d90919063ffffffff16565b90611589565b9450505050505b92915050565b60025481565b61065a6115cb565b6000546001600160a01b039081169116146106aa576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16156107025760405162461bcd60e51b815260040180806020018281038252602d815260200180611c0d602d913960400191505060405180910390fd5b6001600160a01b0382166000908152600a60205260409020805460ff19166001179055801561073357610733610d7d565b6000600754431161074657600754610748565b435b600654909150610758908561152f565b600655604080516080810182526001600160a01b03948516815260208101958652908101918252600060608201818152600480546001810182559281905292517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9290930291820180546001600160a01b031916939096169290921790945593517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c840155517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19d8301555090517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19e90910155565b6009546001600160a01b031681565b6008546001600160a01b03161561091e57600854604080516312c5955b60e21b815233600482015290516001600160a01b0390921691634b16556c91602480820192602092909190829003018186803b1580156108b757600080fd5b505afa1580156108cb573d6000803e3d6000fd5b505050506040513d60208110156108e157600080fd5b505161091e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc56022913960400191505060405180910390fd5b60006004838154811061092d57fe5b6000918252602080832086845260058252604080852033865290925292208054600490920290920192508311156109a0576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6109a984610a77565b60006109d7826001015461063964e8d4a510006105e78760030154876000015461148d90919063ffffffff16565b905080156109e9576109e933826115cf565b8315610a135781546109fb9085611589565b82558254610a13906001600160a01b03163386611760565b60038301548254610a2e9164e8d4a51000916105e79161148d565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60075481565b600060048281548110610a8657fe5b9060005260206000209060040201905080600201544311610aa75750610c1b565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610af157600080fd5b505afa158015610b05573d6000803e3d6000fd5b505050506040513d6020811015610b1b57600080fd5b5051905080610b31575043600290910155610c1b565b6000610b4183600201544361107f565b90506000610b686006546105e786600101546105e16003548761148d90919063ffffffff16565b60095460408051632c1935bd60e11b81526004810184905290519293506001600160a01b03909116916358326b7a916024808201926020929091908290030181600087803b158015610bb957600080fd5b505af1158015610bcd573d6000803e3d6000fd5b505050506040513d6020811015610be357600080fd5b50519050610c08610bfd846105e78464e8d4a5100061148d565b60038601549061152f565b6003850155505043600290920191909155505b50565b6008546001600160a01b031615610ce157600854604080516312c5955b60e21b815233600482015290516001600160a01b0390921691634b16556c91602480820192602092909190829003018186803b158015610c7a57600080fd5b505afa158015610c8e573d6000803e3d6000fd5b505050506040513d6020811015610ca457600080fd5b5051610ce15760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc56022913960400191505060405180910390fd5b600060048281548110610cf057fe5b600091825260208083208584526005825260408085203380875293528420805485825560018201959095556004909302018054909450919291610d40916001600160a01b03919091169083611760565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b60045460005b81811015610d9c57610d9481610a77565b600101610d83565b5050565b610da86115cb565b6000546001600160a01b03908116911614610df8576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b8015610e0657610e06610d7d565b610e4382610e3d60048681548110610e1a57fe5b90600052602060002090600402016001015460065461158990919063ffffffff16565b9061152f565b6006819055508160048481548110610e5757fe5b906000526020600020906004020160010181905550505050565b610e796115cb565b6000546001600160a01b03908116911614610ec9576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610f1b6115cb565b6000546001600160a01b03908116911614610f6b576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b600980546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f9c05070408ec517fa890a56717c2d2cde2a4917fb725bb4d30a2c6c39949dda79181900360200190a150565b610fc76115cb565b6000546001600160a01b03908116911614611017576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b600880546001600160a01b0383166001600160a01b0319909116811790915560408051918252517fd32d0f461b8ce7c58d1dba051f34482d3166f332fe35873a915b9acd2b5d27f39181900360200190a150565b600a81565b6000546001600160a01b031690565b600060025482116110a057611099600a6105e18486611589565b9050610646565b60025483106110b3576110998284611589565b6110996110cb6002548461158990919063ffffffff16565b610e3d600a6105e18760025461158990919063ffffffff16565b6008546001600160a01b031681565b60056020908152600092835260408084209091529082529020805460019091015482565b60035481565b6008546001600160a01b0316156111e157600854604080516312c5955b60e21b815233600482015290516001600160a01b0390921691634b16556c91602480820192602092909190829003018186803b15801561117a57600080fd5b505afa15801561118e573d6000803e3d6000fd5b505050506040513d60208110156111a457600080fd5b50516111e15760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc56022913960400191505060405180910390fd5b6000600483815481106111f057fe5b6000918252602080832086845260058252604080852033865290925292206004909102909101915061122184610a77565b80541561126a576000611256826001015461063964e8d4a510006105e78760030154876000015461148d90919063ffffffff16565b905080156112685761126833826115cf565b505b8215611296578154611287906001600160a01b03163330866117b2565b8054611293908461152f565b81555b600382015481546112b19164e8d4a51000916105e79161148d565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6112fb6115cb565b6000546001600160a01b0390811691161461134b576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b801561135957611359610d7d565b60038290556040805183815290517f8cf1d8c02984a9e2da1be82c20ba28a4303ad0c62d1bfdbe9a363abca98948bc9181900360200190a15050565b61139d6115cb565b6000546001600160a01b039081169116146113ed576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b6001600160a01b0381166114325760405162461bcd60e51b8152600401808060200182810382526026815260200180611b9f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008261149c57506000610646565b828202828482816114a957fe5b04146114e65760405162461bcd60e51b8152600401808060200182810382526021815260200180611c3a6021913960400191505060405180910390fd5b9392505050565b60006114e683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611812565b6000828201838110156114e6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006114e683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b4565b3390565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561161a57600080fd5b505afa15801561162e573d6000803e3d6000fd5b505050506040513d602081101561164457600080fd5b50519050808211156116d8576001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156116a657600080fd5b505af11580156116ba573d6000803e3d6000fd5b505050506040513d60208110156116d057600080fd5b5061175b9050565b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561172e57600080fd5b505af1158015611742573d6000803e3d6000fd5b505050506040513d602081101561175857600080fd5b50505b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261175b90849061190e565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261180c90859061190e565b50505050565b6000818361189e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186357818101518382015260200161184b565b50505050905090810190601f1680156118905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816118aa57fe5b0495945050505050565b600081848411156119065760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561186357818101518382015260200161184b565b505050900390565b6060611963826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119bf9092919063ffffffff16565b80519091501561175b5780806020019051602081101561198257600080fd5b505161175b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611c7b602a913960400191505060405180910390fd5b60606119ce84846000856119d6565b949350505050565b606082471015611a175760405162461bcd60e51b8152600401808060200182810382526026815260200180611be76026913960400191505060405180910390fd5b611a2085611b32565b611a71576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611ab05780518252601f199092019160209182019101611a91565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b12576040519150601f19603f3d011682016040523d82523d6000602084013e611b17565b606091505b5091509150611b27828286611b38565b979650505050505050565b3b151590565b60608315611b475750816114e6565b825115611b575782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561186357818101518382015260200161184b56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d61737465724368656656323a20574c207065726d697373696f6e2064656e696564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4d61737465724368656656323a204c5020746f6b656e2068617320616c7265616479206265656e206164646564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220204ced4430e6223f131271ac402442118e6bcb78224ee86104f9887f54d5529064736f6c634300060c0033000000000000000000000000f56b164efd3cfc02ba739b719b6526a6fa1ca32a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000403fbf9e8bb284b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b2c747aed3e54da0ad14d41b710cc40f88e51aa9

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806364482f79116100de5780638dbb1e3a11610097578063b0bcf42a11610071578063b0bcf42a14610404578063e2bbb1581461040c578063f249a2311461042f578063f2fde38b146104545761018e565b80638dbb1e3a1461039457806393e59dc1146103b757806393f1a40b146103bf5761018e565b806364482f7914610305578063715018a61461033057806375971dbe14610338578063854cff2f1461035e5780638aa28550146103845780638da5cb5b1461038c5761018e565b80631eaaa0451161014b57806348cd4cb11161012557806348cd4cb1146102bb57806351eb05a6146102c35780635312ea8e146102e0578063630b5ba1146102fd5761018e565b80631eaaa0451461025a5780632ba658f814610290578063441a3e70146102985761018e565b8063081e3eda146101935780630a087903146101ad5780631526fe27146101d157806317caf6f11461021e578063195426ec146102265780631aed655314610252575b600080fd5b61019b61047a565b60408051918252519081900360200190f35b6101b5610480565b604080516001600160a01b039092168252519081900360200190f35b6101ee600480360360208110156101e757600080fd5b503561048f565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61019b6104d0565b61019b6004803603604081101561023c57600080fd5b50803590602001356001600160a01b03166104d6565b61019b61064c565b61028e6004803603606081101561027057600080fd5b508035906001600160a01b0360208201351690604001351515610652565b005b6101b561084c565b61028e600480360360408110156102ae57600080fd5b508035906020013561085b565b61019b610a71565b61028e600480360360208110156102d957600080fd5b5035610a77565b61028e600480360360208110156102f657600080fd5b5035610c1e565b61028e610d7d565b61028e6004803603606081101561031b57600080fd5b50803590602081013590604001351515610da0565b61028e610e71565b61028e6004803603602081101561034e57600080fd5b50356001600160a01b0316610f13565b61028e6004803603602081101561037457600080fd5b50356001600160a01b0316610fbf565b61019b61106b565b6101b5611070565b61019b600480360360408110156103aa57600080fd5b508035906020013561107f565b6101b56110e5565b6103eb600480360360408110156103d557600080fd5b50803590602001356001600160a01b03166110f4565b6040805192835260208301919091528051918290030190f35b61019b611118565b61028e6004803603604081101561042257600080fd5b508035906020013561111e565b61028e6004803603604081101561044557600080fd5b508035906020013515156112f3565b61028e6004803603602081101561046a57600080fd5b50356001600160a01b0316611395565b60045490565b6001546001600160a01b031681565b6004818154811061049c57fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60065481565b600080600484815481106104e657fe5b600091825260208083208784526005825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b15801561056457600080fd5b505afa158015610578573d6000803e3d6000fd5b505050506040513d602081101561058e57600080fd5b50516002850154909150431180156105a557508015155b156106115760006105ba85600201544361107f565b905060006105ed6006546105e788600101546105e16003548761148d90919063ffffffff16565b9061148d565b906114ed565b905061060c610605846105e78464e8d4a5100061148d565b859061152f565b935050505b61063f836001015461063964e8d4a510006105e786886000015461148d90919063ffffffff16565b90611589565b9450505050505b92915050565b60025481565b61065a6115cb565b6000546001600160a01b039081169116146106aa576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16156107025760405162461bcd60e51b815260040180806020018281038252602d815260200180611c0d602d913960400191505060405180910390fd5b6001600160a01b0382166000908152600a60205260409020805460ff19166001179055801561073357610733610d7d565b6000600754431161074657600754610748565b435b600654909150610758908561152f565b600655604080516080810182526001600160a01b03948516815260208101958652908101918252600060608201818152600480546001810182559281905292517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9290930291820180546001600160a01b031916939096169290921790945593517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c840155517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19d8301555090517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19e90910155565b6009546001600160a01b031681565b6008546001600160a01b03161561091e57600854604080516312c5955b60e21b815233600482015290516001600160a01b0390921691634b16556c91602480820192602092909190829003018186803b1580156108b757600080fd5b505afa1580156108cb573d6000803e3d6000fd5b505050506040513d60208110156108e157600080fd5b505161091e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc56022913960400191505060405180910390fd5b60006004838154811061092d57fe5b6000918252602080832086845260058252604080852033865290925292208054600490920290920192508311156109a0576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6109a984610a77565b60006109d7826001015461063964e8d4a510006105e78760030154876000015461148d90919063ffffffff16565b905080156109e9576109e933826115cf565b8315610a135781546109fb9085611589565b82558254610a13906001600160a01b03163386611760565b60038301548254610a2e9164e8d4a51000916105e79161148d565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b60075481565b600060048281548110610a8657fe5b9060005260206000209060040201905080600201544311610aa75750610c1b565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610af157600080fd5b505afa158015610b05573d6000803e3d6000fd5b505050506040513d6020811015610b1b57600080fd5b5051905080610b31575043600290910155610c1b565b6000610b4183600201544361107f565b90506000610b686006546105e786600101546105e16003548761148d90919063ffffffff16565b60095460408051632c1935bd60e11b81526004810184905290519293506001600160a01b03909116916358326b7a916024808201926020929091908290030181600087803b158015610bb957600080fd5b505af1158015610bcd573d6000803e3d6000fd5b505050506040513d6020811015610be357600080fd5b50519050610c08610bfd846105e78464e8d4a5100061148d565b60038601549061152f565b6003850155505043600290920191909155505b50565b6008546001600160a01b031615610ce157600854604080516312c5955b60e21b815233600482015290516001600160a01b0390921691634b16556c91602480820192602092909190829003018186803b158015610c7a57600080fd5b505afa158015610c8e573d6000803e3d6000fd5b505050506040513d6020811015610ca457600080fd5b5051610ce15760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc56022913960400191505060405180910390fd5b600060048281548110610cf057fe5b600091825260208083208584526005825260408085203380875293528420805485825560018201959095556004909302018054909450919291610d40916001600160a01b03919091169083611760565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b60045460005b81811015610d9c57610d9481610a77565b600101610d83565b5050565b610da86115cb565b6000546001600160a01b03908116911614610df8576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b8015610e0657610e06610d7d565b610e4382610e3d60048681548110610e1a57fe5b90600052602060002090600402016001015460065461158990919063ffffffff16565b9061152f565b6006819055508160048481548110610e5757fe5b906000526020600020906004020160010181905550505050565b610e796115cb565b6000546001600160a01b03908116911614610ec9576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610f1b6115cb565b6000546001600160a01b03908116911614610f6b576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b600980546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f9c05070408ec517fa890a56717c2d2cde2a4917fb725bb4d30a2c6c39949dda79181900360200190a150565b610fc76115cb565b6000546001600160a01b03908116911614611017576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b600880546001600160a01b0383166001600160a01b0319909116811790915560408051918252517fd32d0f461b8ce7c58d1dba051f34482d3166f332fe35873a915b9acd2b5d27f39181900360200190a150565b600a81565b6000546001600160a01b031690565b600060025482116110a057611099600a6105e18486611589565b9050610646565b60025483106110b3576110998284611589565b6110996110cb6002548461158990919063ffffffff16565b610e3d600a6105e18760025461158990919063ffffffff16565b6008546001600160a01b031681565b60056020908152600092835260408084209091529082529020805460019091015482565b60035481565b6008546001600160a01b0316156111e157600854604080516312c5955b60e21b815233600482015290516001600160a01b0390921691634b16556c91602480820192602092909190829003018186803b15801561117a57600080fd5b505afa15801561118e573d6000803e3d6000fd5b505050506040513d60208110156111a457600080fd5b50516111e15760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc56022913960400191505060405180910390fd5b6000600483815481106111f057fe5b6000918252602080832086845260058252604080852033865290925292206004909102909101915061122184610a77565b80541561126a576000611256826001015461063964e8d4a510006105e78760030154876000015461148d90919063ffffffff16565b905080156112685761126833826115cf565b505b8215611296578154611287906001600160a01b03163330866117b2565b8054611293908461152f565b81555b600382015481546112b19164e8d4a51000916105e79161148d565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6112fb6115cb565b6000546001600160a01b0390811691161461134b576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b801561135957611359610d7d565b60038290556040805183815290517f8cf1d8c02984a9e2da1be82c20ba28a4303ad0c62d1bfdbe9a363abca98948bc9181900360200190a15050565b61139d6115cb565b6000546001600160a01b039081169116146113ed576040805162461bcd60e51b81526020600482018190526024820152600080516020611c5b833981519152604482015290519081900360640190fd5b6001600160a01b0381166114325760405162461bcd60e51b8152600401808060200182810382526026815260200180611b9f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008261149c57506000610646565b828202828482816114a957fe5b04146114e65760405162461bcd60e51b8152600401808060200182810382526021815260200180611c3a6021913960400191505060405180910390fd5b9392505050565b60006114e683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611812565b6000828201838110156114e6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006114e683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b4565b3390565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561161a57600080fd5b505afa15801561162e573d6000803e3d6000fd5b505050506040513d602081101561164457600080fd5b50519050808211156116d8576001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156116a657600080fd5b505af11580156116ba573d6000803e3d6000fd5b505050506040513d60208110156116d057600080fd5b5061175b9050565b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561172e57600080fd5b505af1158015611742573d6000803e3d6000fd5b505050506040513d602081101561175857600080fd5b50505b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261175b90849061190e565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261180c90859061190e565b50505050565b6000818361189e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186357818101518382015260200161184b565b50505050905090810190601f1680156118905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816118aa57fe5b0495945050505050565b600081848411156119065760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561186357818101518382015260200161184b565b505050900390565b6060611963826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119bf9092919063ffffffff16565b80519091501561175b5780806020019051602081101561198257600080fd5b505161175b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611c7b602a913960400191505060405180910390fd5b60606119ce84846000856119d6565b949350505050565b606082471015611a175760405162461bcd60e51b8152600401808060200182810382526026815260200180611be76026913960400191505060405180910390fd5b611a2085611b32565b611a71576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611ab05780518252601f199092019160209182019101611a91565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b12576040519150601f19603f3d011682016040523d82523d6000602084013e611b17565b606091505b5091509150611b27828286611b38565b979650505050505050565b3b151590565b60608315611b475750816114e6565b825115611b575782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561186357818101518382015260200161184b56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d61737465724368656656323a20574c207065726d697373696f6e2064656e696564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4d61737465724368656656323a204c5020746f6b656e2068617320616c7265616479206265656e206164646564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220204ced4430e6223f131271ac402442118e6bcb78224ee86104f9887f54d5529064736f6c634300060c0033

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

000000000000000000000000f56b164efd3cfc02ba739b719b6526a6fa1ca32a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000403fbf9e8bb284b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b2c747aed3e54da0ad14d41b710cc40f88e51aa9

-----Decoded View---------------
Arg [0] : _sushi (address): 0xF56b164efd3CFc02BA739b719B6526A6FA1cA32a
Arg [1] : _sushiReservoir (address): 0x0000000000000000000000000000000000000000
Arg [2] : _sushiPerBlock (uint256): 289351851851851851
Arg [3] : _startBlock (uint256): 0
Arg [4] : _bonusEndBlock (uint256): 0
Arg [5] : _whitelist (address): 0xB2C747Aed3e54da0ad14D41B710CC40F88E51aA9

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000f56b164efd3cfc02ba739b719b6526a6fa1ca32a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000403fbf9e8bb284b
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000b2c747aed3e54da0ad14d41b710cc40f88e51aa9


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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