MATIC Price: $1.00 (-2.28%)
Gas: 76 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Harvest261709662022-03-21 2:06:07739 days ago1647828367IN
0x825B726f...ce20AEc13
0 MATIC0.0037733732
Harvest258882522022-03-13 5:40:40747 days ago1647150040IN
0x825B726f...ce20AEc13
0 MATIC0.0038055532.27287
Harvest258650552022-03-12 13:40:30747 days ago1647092430IN
0x825B726f...ce20AEc13
0 MATIC0.0283586335.01589
Harvest258632292022-03-12 12:27:02747 days ago1647088022IN
0x825B726f...ce20AEc13
0 MATIC0.0243771130.06999969
Harvest258393422022-03-11 20:26:50748 days ago1647030410IN
0x825B726f...ce20AEc13
0 MATIC0.0295850635.53423953
Harvest258237102022-03-11 8:34:23748 days ago1646987663IN
0x825B726f...ce20AEc13
0 MATIC0.0324271640
Harvest257775352022-03-09 20:35:02750 days ago1646858102IN
0x825B726f...ce20AEc13
0 MATIC0.032492240
Set Keeper257712172022-03-09 16:36:44750 days ago1646843804IN
0x825B726f...ce20AEc13
0 MATIC0.0017575360.21859212
Harvest257255052022-03-08 12:37:16751 days ago1646743036IN
0x825B726f...ce20AEc13
0 MATIC0.032492240
Harvest256727012022-03-07 4:35:42753 days ago1646627742IN
0x825B726f...ce20AEc13
0 MATIC0.032492240
Harvest256274402022-03-06 0:35:27754 days ago1646526927IN
0x825B726f...ce20AEc13
0 MATIC0.033288240
Harvest255834862022-03-04 20:34:58755 days ago1646426098IN
0x825B726f...ce20AEc13
0 MATIC0.032300240
Harvest255385632022-03-03 16:37:16756 days ago1646325436IN
0x825B726f...ce20AEc13
0 MATIC0.033176240
Harvest254883842022-03-02 8:36:38757 days ago1646210198IN
0x825B726f...ce20AEc13
0 MATIC0.032492240
Harvest254450742022-03-01 4:35:37759 days ago1646109337IN
0x825B726f...ce20AEc13
0 MATIC0.032380240
Harvest253809242022-02-27 8:37:22760 days ago1645951042IN
0x825B726f...ce20AEc13
0 MATIC0.032412240
Harvest253381862022-02-26 0:35:27762 days ago1645835727IN
0x825B726f...ce20AEc13
0 MATIC0.033288240
Harvest252906922022-02-24 12:37:29763 days ago1645706249IN
0x825B726f...ce20AEc13
0 MATIC0.0320670840
Harvest252543592022-02-23 8:36:11764 days ago1645605371IN
0x825B726f...ce20AEc13
0 MATIC0.0323774840
Harvest252120222022-02-22 0:37:14766 days ago1645490234IN
0x825B726f...ce20AEc13
0 MATIC0.0323774840
Harvest250542832022-02-17 16:31:32770 days ago1645115492IN
0x825B726f...ce20AEc13
0 MATIC0.0324094840
Harvest248859712022-02-13 8:33:24774 days ago1644741204IN
0x825B726f...ce20AEc13
0 MATIC0.0322974840
Harvest248395612022-02-12 4:32:16776 days ago1644640336IN
0x825B726f...ce20AEc13
0 MATIC0.0336266141.4
Harvest247947072022-02-11 0:31:47777 days ago1644539507IN
0x825B726f...ce20AEc13
0 MATIC0.0324894840
Harvest247487422022-02-09 20:31:19778 days ago1644438679IN
0x825B726f...ce20AEc13
0 MATIC0.0324894840
View all transactions

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StrategyPolygonSushiLP

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 15 : StrategyPolygonSushiLP.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.0;

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

import "../../interfaces/common/IUniswapRouterETH.sol";
import "../../interfaces/common/IUniswapV2Pair.sol";
import "../../interfaces/sushi/IRewarder.sol";
import "../../interfaces/sushi/IMiniChefV2.sol";
import "../Common/StratManager.sol";
import "../Common/FeeManager.sol";

contract StrategyPolygonSushiLP is StratManager, FeeManager {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    // Tokens used
    address public native;
    address public output;
    address public want;
    address public lpToken0;
    address public lpToken1;

    // Third party contracts
    address public chef;
    uint256 public poolId;

    uint256 public lastHarvest;
    bool public harvestOnDeposit;

    // Routes
    address[] public outputToNativeRoute;
    address[] public nativeToOutputRoute;
    address[] public outputToLp0Route;
    address[] public outputToLp1Route;

    event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl);
    event Deposit(uint256 tvl);
    event Withdraw(uint256 tvl);

    constructor(
        address _want,
        uint256 _poolId,
        address _chef,
        address _vault,
        address _unirouter,
        address _keeper,
        address _strategist,
        address _beefyFeeRecipient,
        address[] memory _outputToNativeRoute,
        address[] memory _outputToLp0Route,
        address[] memory _outputToLp1Route
    ) public StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) {
        want = _want;
        poolId = _poolId;
        chef = _chef;

        require(_outputToNativeRoute.length >= 2, "need output to native");
        output = _outputToNativeRoute[0];
        native = _outputToNativeRoute[_outputToNativeRoute.length - 1];
        outputToNativeRoute = _outputToNativeRoute;
        
        // setup lp routing
        lpToken0 = IUniswapV2Pair(want).token0();
        require(_outputToLp0Route[0] == output, "first != output");
        require(_outputToLp0Route[_outputToLp0Route.length - 1] == lpToken0, "last != lptoken0");
        outputToLp0Route = _outputToLp0Route;

        lpToken1 = IUniswapV2Pair(want).token1();
        require(_outputToLp1Route[0] == output, "first != output");
        require(_outputToLp1Route[_outputToLp1Route.length - 1] == lpToken1, "last != lptoken1");
        outputToLp1Route = _outputToLp1Route;

        nativeToOutputRoute = new address[](_outputToNativeRoute.length);
        for (uint i = 0; i < _outputToNativeRoute.length; i++) {
            uint idx = _outputToNativeRoute.length - 1 - i;
            nativeToOutputRoute[i] = outputToNativeRoute[idx];
        }

        _giveAllowances();
    }

    // puts the funds to work
    function deposit() public whenNotPaused {
        uint256 wantBal = IERC20(want).balanceOf(address(this));

        if (wantBal > 0) {
            IMiniChefV2(chef).deposit(poolId, wantBal, address(this));
            emit Deposit(balanceOf());
        }
    }

    function withdraw(uint256 _amount) external {
        require(msg.sender == vault, "!vault");

        uint256 wantBal = IERC20(want).balanceOf(address(this));

        if (wantBal < _amount) {
            IMiniChefV2(chef).withdraw(poolId, _amount.sub(wantBal), address(this));
            wantBal = IERC20(want).balanceOf(address(this));
        }

        if (wantBal > _amount) {
            wantBal = _amount;
        }

        if (tx.origin != owner() && !paused()) {
            uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX);
            wantBal = wantBal.sub(withdrawalFeeAmount);
        }

        IERC20(want).safeTransfer(vault, wantBal);

        emit Withdraw(balanceOf());
    }

    function beforeDeposit() external override {
        if (harvestOnDeposit) {
            require(msg.sender == vault, "!vault");
            _harvest(tx.origin);
        }
    }

    function harvest() external virtual {
        _harvest(tx.origin);
    }

    function harvest(address callFeeRecipient) external virtual {
        _harvest(callFeeRecipient);
    }

    function managerHarvest() external onlyManager {
        _harvest(tx.origin);
    }

    // compounds earnings and charges performance fee
    function _harvest(address callFeeRecipient) internal whenNotPaused {
        IMiniChefV2(chef).harvest(poolId, address(this));
        uint256 outputBal = IERC20(output).balanceOf(address(this));
        if (outputBal > 0) {
            chargeFees(callFeeRecipient);
            addLiquidity();
            uint256 wantHarvested = balanceOfWant();
            deposit();

            lastHarvest = block.timestamp;
            emit StratHarvest(msg.sender, wantHarvested, balanceOf());
        }
    }

    // performance fees
    function chargeFees(address callFeeRecipient) internal {
        // v2 harvester rewards are in both output and native, convert native to output
        uint256 toOutput = IERC20(native).balanceOf(address(this));
        if (toOutput > 0) {
            IUniswapRouterETH(unirouter).swapExactTokensForTokens(toOutput, 0, nativeToOutputRoute, address(this), now);
        }
        
        uint256 toNative = IERC20(output).balanceOf(address(this)).mul(45).div(1000);
        IUniswapRouterETH(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), now);

        uint256 nativeBal = IERC20(native).balanceOf(address(this));

        uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE);
        IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount);

        uint256 beefyFeeAmount = nativeBal.mul(beefyFee).div(MAX_FEE);
        IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount);

        uint256 strategistFee = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE);
        IERC20(native).safeTransfer(strategist, strategistFee);
    }

    // Adds liquidity to AMM and gets more LP tokens.
    function addLiquidity() internal {
        uint256 outputHalf = IERC20(output).balanceOf(address(this)).div(2);

        if (lpToken0 != output) {
            IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp0Route, address(this), now);
        }

        if (lpToken1 != output) {
            IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp1Route, address(this), now);
        }

        uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this));
        uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this));
        IUniswapRouterETH(unirouter).addLiquidity(lpToken0, lpToken1, lp0Bal, lp1Bal, 1, 1, address(this), now);
    }

    // calculate the total underlaying 'want' held by the strat.
    function balanceOf() public view returns (uint256) {
        return balanceOfWant().add(balanceOfPool());
    }

    // it calculates how much 'want' this contract holds.
    function balanceOfWant() public view returns (uint256) {
        return IERC20(want).balanceOf(address(this));
    }

    // it calculates how much 'want' the strategy has working in the farm.
    function balanceOfPool() public view returns (uint256) {
        (uint256 _amount, ) = IMiniChefV2(chef).userInfo(poolId, address(this));	
        return _amount;
    }

    // returns rewards unharvested
    function rewardsAvailable() public view returns (uint256) {
        return IMiniChefV2(chef).pendingSushi(poolId, address(this));
    }

    // native reward amount for calling harvest
    function callReward() public view returns (uint256) {
        uint256 nativeOut;
        address rewarder = IMiniChefV2(chef).rewarder(poolId);
        if (rewarder != address(0)) {
            nativeOut = IRewarder(rewarder).pendingToken(poolId, address(this));
        }

        uint256 outputBal = rewardsAvailable();
        try IUniswapRouterETH(unirouter).getAmountsOut(outputBal, outputToNativeRoute)
                returns (uint256[] memory amountOut)
            {
                nativeOut += amountOut[amountOut.length -1];
            }
            catch {}

        return nativeOut.mul(45).div(1000).mul(callFee).div(MAX_FEE);
    }

    function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager {
        harvestOnDeposit = _harvestOnDeposit;

        if (harvestOnDeposit) {
            setWithdrawalFee(0);
        } else {
            setWithdrawalFee(10);
        }
    }

    // called as part of strat migration. Sends all the available funds back to the vault.
    function retireStrat() external {
        require(msg.sender == vault, "!vault");

        IMiniChefV2(chef).emergencyWithdraw(poolId, address(this));

        uint256 wantBal = IERC20(want).balanceOf(address(this));
        IERC20(want).transfer(vault, wantBal);
    }

    // pauses deposits and withdraws all funds from third party systems.
    function panic() public onlyManager {
        pause();
        IMiniChefV2(chef).emergencyWithdraw(poolId, address(this));
    }

    function pause() public onlyManager {
        _pause();

        _removeAllowances();
    }

    function unpause() external onlyManager {
        _unpause();

        _giveAllowances();

        deposit();
    }

    function _giveAllowances() internal {
        IERC20(want).safeApprove(chef, uint256(-1));
        IERC20(output).safeApprove(unirouter, uint256(-1));
        // needed for v2 harvester
        IERC20(native).safeApprove(unirouter, uint256(-1));

        IERC20(lpToken0).safeApprove(unirouter, 0);
        IERC20(lpToken0).safeApprove(unirouter, uint256(-1));

        IERC20(lpToken1).safeApprove(unirouter, 0);
        IERC20(lpToken1).safeApprove(unirouter, uint256(-1));
    }

    function _removeAllowances() internal {
        IERC20(want).safeApprove(chef, 0);
        IERC20(output).safeApprove(unirouter, 0);
        IERC20(native).safeApprove(unirouter, 0);
        IERC20(lpToken0).safeApprove(unirouter, 0);
        IERC20(lpToken1).safeApprove(unirouter, 0);
    }

    function outputToNative() external view returns (address[] memory) {
        return outputToNativeRoute;
    }

    function nativeToOutput() external view returns (address[] memory) {
        return nativeToOutputRoute;
    }

    function outputToLp0() external view returns (address[] memory) {
        return outputToLp0Route;
    }

    function outputToLp1() external view returns (address[] memory) {
        return outputToLp1Route;
    }
}

File 2 of 15 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 3 of 15 : 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 4 of 15 : 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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 5 of 15 : IUniswapRouterETH.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.9.0;

interface IUniswapRouterETH {
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn, 
        uint amountOutMin, 
        address[] calldata path, 
        address to, 
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);

    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}

File 6 of 15 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IUniswapV2Pair {
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function burn(address to) external returns (uint amount0, uint amount1);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}

File 7 of 15 : IRewarder.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IRewarder {
    function poolLength() external view returns (uint256);
    function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256);
    function pendingToken(uint256 _pid, address _user) external view returns (uint256);
    function deposit(uint256 pid, uint256 amount, address to) external;
    function withdraw(uint256 pid, uint256 amount, address to) external;
    function harvest(uint256 pid, address to) external;
    function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external;
    function emergencyWithdraw(uint256 pid, address to) external;
}

File 8 of 15 : IMiniChefV2.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IMiniChefV2 {
    function poolLength() external view returns (uint256);
    function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256);
    function pendingSushi(uint256 _pid, address _user) external view returns (uint256);
    function deposit(uint256 pid, uint256 amount, address to) external;
    function withdraw(uint256 pid, uint256 amount, address to) external;
    function harvest(uint256 pid, address to) external;
    function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external;
    function emergencyWithdraw(uint256 pid, address to) external;
    function rewarder(uint256 pid) external view returns (address);
}

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

pragma solidity ^0.6.12;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";

contract StratManager is Ownable, Pausable {
    /**
     * @dev Beefy Contracts:
     * {keeper} - Address to manage a few lower risk features of the strat
     * {strategist} - Address of the strategy author/deployer where strategist fee will go.
     * {vault} - Address of the vault that controls the strategy's funds.
     * {unirouter} - Address of exchange to execute swaps.
     */
    address public keeper;
    address public strategist;
    address public unirouter;
    address public vault;
    address public beefyFeeRecipient;

    /**
     * @dev Initializes the base strategy.
     * @param _keeper address to use as alternative owner.
     * @param _strategist address where strategist fees go.
     * @param _unirouter router to use for swaps
     * @param _vault address of parent vault.
     * @param _beefyFeeRecipient address where to send Beefy's fees.
     */
    constructor(
        address _keeper,
        address _strategist,
        address _unirouter,
        address _vault,
        address _beefyFeeRecipient
    ) public {
        keeper = _keeper;
        strategist = _strategist;
        unirouter = _unirouter;
        vault = _vault;
        beefyFeeRecipient = _beefyFeeRecipient;
    }

    // checks that caller is either owner or keeper.
    modifier onlyManager() {
        require(msg.sender == owner() || msg.sender == keeper, "!manager");
        _;
    }

    /**
     * @dev Updates address of the strat keeper.
     * @param _keeper new keeper address.
     */
    function setKeeper(address _keeper) external onlyManager {
        keeper = _keeper;
    }

    /**
     * @dev Updates address where strategist fee earnings will go.
     * @param _strategist new strategist address.
     */
    function setStrategist(address _strategist) external {
        require(msg.sender == strategist, "!strategist");
        strategist = _strategist;
    }

    /**
     * @dev Updates router that will be used for swaps.
     * @param _unirouter new unirouter address.
     */
    function setUnirouter(address _unirouter) external onlyOwner {
        unirouter = _unirouter;
    }

    /**
     * @dev Updates parent vault.
     * @param _vault new vault address.
     */
    function setVault(address _vault) external onlyOwner {
        vault = _vault;
    }

    /**
     * @dev Updates beefy fee recipient.
     * @param _beefyFeeRecipient new beefy fee recipient address.
     */
    function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner {
        beefyFeeRecipient = _beefyFeeRecipient;
    }

    /**
     * @dev Function to synchronize balances before new user deposit.
     * Can be overridden in the strategy.
     */
    function beforeDeposit() external virtual {}
}

File 10 of 15 : FeeManager.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

import "./StratManager.sol";

abstract contract FeeManager is StratManager {
    uint constant public STRATEGIST_FEE = 112;
    uint constant public MAX_FEE = 1000;
    uint constant public MAX_CALL_FEE = 111;

    uint constant public WITHDRAWAL_FEE_CAP = 50;
    uint constant public WITHDRAWAL_MAX = 10000;

    uint public withdrawalFee = 10;

    uint public callFee = 111;
    uint public beefyFee = MAX_FEE - STRATEGIST_FEE - callFee;

    function setCallFee(uint256 _fee) public onlyManager {
        require(_fee <= MAX_CALL_FEE, "!cap");
        
        callFee = _fee;
        beefyFee = MAX_FEE - STRATEGIST_FEE - callFee;
    }

    function setWithdrawalFee(uint256 _fee) public onlyManager {
        require(_fee <= WITHDRAWAL_FEE_CAP, "!cap");

        withdrawalFee = _fee;
    }
}

File 11 of 15 : 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 12 of 15 : 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 13 of 15 : 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);
    }

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

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

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

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

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

File 14 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 15 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_chef","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_beefyFeeRecipient","type":"address"},{"internalType":"address[]","name":"_outputToNativeRoute","type":"address[]"},{"internalType":"address[]","name":"_outputToLp0Route","type":"address[]"},{"internalType":"address[]","name":"_outputToLp1Route","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeToOutput","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nativeToOutputRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToLp0","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp0Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToLp1","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600a600655606f6007556103096008553480156200002157600080fd5b50604051620041d0380380620041d083398181016040526101608110156200004857600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0180519751999b989a96999598949793969295919491939282019284640100000000821115620000a157600080fd5b908301906020820185811115620000b757600080fd5b8251866020820283011164010000000082111715620000d557600080fd5b82525081516020918201928201910280838360005b8381101562000104578181015183820152602001620000ea565b50505050905001604052602001805160405193929190846401000000008211156200012e57600080fd5b9083019060208201858111156200014457600080fd5b82518660208202830111640100000000821117156200016257600080fd5b82525081516020918201928201910280838360005b838110156200019157818101518382015260200162000177565b5050505090500160405260200180516040519392919084640100000000821115620001bb57600080fd5b908301906020820185811115620001d157600080fd5b8251866020820283011164010000000082111715620001ef57600080fd5b82525081516020918201928201910280838360005b838110156200021e57818101518382015260200162000204565b505050509050016040525050508585888a876000620002426200081660201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b03199081166001600160a01b03978816179091556002805482169587169590951785556003805482169487169490941790935560048054841692861692909217909155600580548316918516919091179055600b805482168f8516179055600f8d9055600e8054909116928c1692909217909155835110156200036e576040805162461bcd60e51b815260206004820152601560248201527f6e656564206f757470757420746f206e61746976650000000000000000000000604482015290519081900360640190fd5b826000815181106200037c57fe5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600184510381518110620003bb57fe5b602090810291909101810151600980546001600160a01b0319166001600160a01b039092169190911790558351620003fa916012919086019062000d68565b50600b60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044a57600080fd5b505afa1580156200045f573d6000803e3d6000fd5b505050506040513d60208110156200047657600080fd5b5051600c80546001600160a01b0319166001600160a01b03928316179055600a5483519116908390600090620004a857fe5b60200260200101516001600160a01b031614620004fe576040805162461bcd60e51b815260206004820152600f60248201526e199a5c9cdd08084f481bdd5d1c1d5d608a1b604482015290519081900360640190fd5b600c5482516001600160a01b0390911690839060001981019081106200052057fe5b60200260200101516001600160a01b03161462000577576040805162461bcd60e51b815260206004820152601060248201526f06c61737420213d206c70746f6b656e360841b604482015290519081900360640190fd5b81516200058c90601490602085019062000d68565b50600b60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015620005dc57600080fd5b505afa158015620005f1573d6000803e3d6000fd5b505050506040513d60208110156200060857600080fd5b5051600d80546001600160a01b0319166001600160a01b03928316179055600a54825191169082906000906200063a57fe5b60200260200101516001600160a01b03161462000690576040805162461bcd60e51b815260206004820152600f60248201526e199a5c9cdd08084f481bdd5d1c1d5d608a1b604482015290519081900360640190fd5b600d5481516001600160a01b039091169082906000198101908110620006b257fe5b60200260200101516001600160a01b03161462000709576040805162461bcd60e51b815260206004820152601060248201526f6c61737420213d206c70746f6b656e3160801b604482015290519081900360640190fd5b80516200071e90601590602084019062000d68565b5082516001600160401b03811180156200073757600080fd5b5060405190808252806020026020018201604052801562000762578160200160208202803683370190505b508051620007799160139160209091019062000d68565b5060005b8351811015620007fa57600081600186510303905060128181548110620007a057fe5b600091825260209091200154601380546001600160a01b039092169184908110620007c757fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055506001016200077d565b50620008056200081a565b505050505050505050505062000df3565b3390565b600e54600b5462000847916001600160a01b03918216911660001962000955602090811b62001d6017901c565b600354600a5462000874916001600160a01b03918216911660001962000955602090811b62001d6017901c565b600354600954620008a1916001600160a01b03918216911660001962000955602090811b62001d6017901c565b600354600c54620008cd916001600160a01b039182169116600062000955602090811b62001d6017901c565b600354600c54620008fa916001600160a01b03918216911660001962000955602090811b62001d6017901c565b600354600d5462000926916001600160a01b039182169116600062000955602090811b62001d6017901c565b600354600d5462000953916001600160a01b03918216911660001962000955602090811b62001d6017901c565b565b801580620009df575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015620009af57600080fd5b505afa158015620009c4573d6000803e3d6000fd5b505050506040513d6020811015620009db57600080fd5b5051155b62000a1c5760405162461bcd60e51b81526004018080602001828103825260368152602001806200419a6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b1790915262000a7491859162000a7916565b505050565b606062000ad5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031662000b3560201b62001e73179092919060201c565b80519091501562000a745780806020019051602081101562000af657600080fd5b505162000a745760405162461bcd60e51b815260040180806020018281038252602a81526020018062004170602a913960400191505060405180910390fd5b606062000b46848460008562000b50565b90505b9392505050565b60608247101562000b935760405162461bcd60e51b81526004018080602001828103825260268152602001806200414a6026913960400191505060405180910390fd5b62000b9e8562000cb8565b62000bf0576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831062000c315780518252601f19909201916020918201910162000c10565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000c95576040519150601f19603f3d011682016040523d82523d6000602084013e62000c9a565b606091505b50909250905062000cad82828662000cbe565b979650505050505050565b3b151590565b6060831562000ccf57508162000b49565b82511562000ce05782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000d2c57818101518382015260200162000d12565b50505050905090810190601f16801562000d5a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821562000dc0579160200282015b8281111562000dc057825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000d89565b5062000dce92915062000dd2565b5090565b5b8082111562000dce5780546001600160a01b031916815560010162000dd3565b6133478062000e036000396000f3fe608060405234801561001057600080fd5b50600436106103835760003560e01c80637d38ca65116101de578063be12a9781161010f578063dfbdc437116100ad578063f2fde38b1161007c578063f2fde38b1461070d578063fb61778714610733578063fbfa77cf1461073b578063fd63a8871461074357610383565b8063dfbdc437146106ed578063e7a7250a146106f5578063f1a392da146106fd578063f20eaeb81461070557610383565b8063d0e30db0116100e9578063d0e30db0146106af578063d3102589146106b7578063d801d946146106bf578063d92f3d73146106c757610383565b8063be12a97814610664578063c1a3d44c14610681578063c7b9d5301461068957610383565b806390321e1a1161017c578063a68833e511610156578063a68833e514610611578063ac1e502514610637578063aced166114610654578063bc063e1a1461065c57610383565b806390321e1a146105f957806397fd323d14610601578063989ef4e31461060957610383565b80638912cb8b116101b85780638912cb8b146105d95780638bc7e8c4146105e15780638da5cb5b146105e95780638e145459146105f157610383565b80637d38ca65146105c15780638456cb59146105c9578063877562b6146105d157610383565b8063326d3e58116102b8578063573fef0a116102565780636817031b116102305780636817031b14610565578063715018a61461058b578063722713f714610593578063748747e61461059b57610383565b8063573fef0a146105395780635c975abb146105415780635ee167c01461055d57610383565b80633f4ba83a116102925780633f4ba83a146105195780634641257d146105215780634700d3051461052957806354518b1a1461053157610383565b8063326d3e58146104ec57806336c6cf21146104f45780633e0dc34e1461051157610383565b80631f1fcd5111610325578063257ae0de116102ff578063257ae0de146104a257806326465826146104aa5780632ad5a53f146104c75780632e1a7d4d146104cf57610383565b80631f1fcd511461048a5780631fc8bc5d146104925780631fe4a6861461049a57610383565b80630e8fbb5a116103615780630e8fbb5a14610441578063115880861461046057806311b0b42d1461047a57806313e120b11461048257610383565b806305200c9c146103885780630587f785146103c15780630e5c011e14610419575b600080fd5b6103a56004803603602081101561039e57600080fd5b5035610760565b604080516001600160a01b039092168252519081900360200190f35b6103c9610787565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156104055781810151838201526020016103ed565b505050509050019250505060405180910390f35b61043f6004803603602081101561042f57600080fd5b50356001600160a01b03166107e9565b005b61043f6004803603602081101561045757600080fd5b503515156107f5565b610468610893565b60408051918252519081900360200190f35b6103a561091a565b6103c9610929565b6103a5610989565b6103a5610998565b6103a56109a7565b6103a56109b6565b61043f600480360360208110156104c057600080fd5b50356109c5565b610468610a7f565b61043f600480360360208110156104e557600080fd5b5035610a84565b6103c9610d1b565b6103a56004803603602081101561050a57600080fd5b5035610d7b565b610468610d88565b61043f610d8e565b61043f610e15565b61043f610e1e565b610468610f03565b61043f610f09565b610549610f5c565b604080519115158252519081900360200190f35b6103a5610f6c565b61043f6004803603602081101561057b57600080fd5b50356001600160a01b0316610f7b565b61043f610fff565b6104686110ab565b61043f600480360360208110156105b157600080fd5b50356001600160a01b03166110cb565b61046861115a565b61043f61115f565b6103a56111dc565b6105496111eb565b6104686111f4565b6103a56111fa565b6103a5611209565b610468611218565b61046861121e565b6103c9611500565b61043f6004803603602081101561062757600080fd5b50356001600160a01b0316611560565b61043f6004803603602081101561064d57600080fd5b50356115e4565b6103a5611695565b6104686116a4565b6103a56004803603602081101561067a57600080fd5b50356116aa565b6104686116b7565b61043f6004803603602081101561069f57600080fd5b50356001600160a01b0316611733565b61043f6117a2565b610468611920565b61043f611926565b61043f600480360360208110156106dd57600080fd5b50356001600160a01b0316611993565b610468611a17565b610468611a1c565b610468611a71565b6103a5611a77565b61043f6004803603602081101561072357600080fd5b50356001600160a01b0316611a86565b61043f611b88565b6103a5611d44565b6103a56004803603602081101561075957600080fd5b5035611d53565b6013818154811061076d57fe5b6000918252602090912001546001600160a01b0316905081565b606060158054806020026020016040519081016040528092919081815260200182805480156107df57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116107c1575b5050505050905090565b6107f281611e8c565b50565b6107fd6111fa565b6001600160a01b0316336001600160a01b0316148061082657506001546001600160a01b031633145b610862576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6011805460ff1916821515179081905560ff16156108895761088460006115e4565b6107f2565b6107f2600a6115e4565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b1580156108e857600080fd5b505afa1580156108fc573d6000803e3d6000fd5b505050506040513d604081101561091257600080fd5b505191505090565b6009546001600160a01b031681565b606060128054806020026020016040519081016040528092919081815260200182805480156107df576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107c1575050505050905090565b600b546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b6109cd6111fa565b6001600160a01b0316336001600160a01b031614806109f657506001546001600160a01b031633145b610a32576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610a71576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b03163314610acc576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b1757600080fd5b505afa158015610b2b573d6000803e3d6000fd5b505050506040513d6020811015610b4157600080fd5b5051905081811015610c4f57600e54600f546001600160a01b0390911690630ad58d2f90610b6f858561203a565b306040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b031681526020019350505050600060405180830381600087803b158015610bbd57600080fd5b505af1158015610bd1573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610c2057600080fd5b505afa158015610c34573d6000803e3d6000fd5b505050506040513d6020811015610c4a57600080fd5b505190505b81811115610c5a5750805b610c626111fa565b6001600160a01b0316326001600160a01b031614158015610c885750610c86610f5c565b155b15610cc0576000610cb0612710610caa6006548561209c90919063ffffffff16565b906120f5565b9050610cbc828261203a565b9150505b600454600b54610cdd916001600160a01b0391821691168361215c565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610d066110ab565b60408051918252519081900360200190a15050565b606060138054806020026020016040519081016040528092919081815260200182805480156107df576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107c1575050505050905090565b6014818154811061076d57fe5b600f5481565b610d966111fa565b6001600160a01b0316336001600160a01b03161480610dbf57506001546001600160a01b031633145b610dfb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610e036121ae565b610e0b612251565b610e136117a2565b565b610e1332611e8c565b610e266111fa565b6001600160a01b0316336001600160a01b03161480610e4f57506001546001600160a01b031633145b610e8b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610e9361115f565b600e54600f54604080516302f940c760e41b81526004810192909252306024830152516001600160a01b0390921691632f940c709160448082019260009290919082900301818387803b158015610ee957600080fd5b505af1158015610efd573d6000803e3d6000fd5b50505050565b61271081565b60115460ff1615610e13576004546001600160a01b03163314610e15576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600c546001600160a01b031681565b610f83612328565b6001600160a01b0316610f946111fa565b6001600160a01b031614610fdd576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b611007612328565b6001600160a01b03166110186111fa565b6001600160a01b031614611061576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006110c66110b8610893565b6110c06116b7565b9061232c565b905090565b6110d36111fa565b6001600160a01b0316336001600160a01b031614806110fc57506001546001600160a01b031633145b611138576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6111676111fa565b6001600160a01b0316336001600160a01b0316148061119057506001546001600160a01b031633145b6111cc576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6111d4612386565b610e1361240f565b600d546001600160a01b031681565b60115460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6000806000600e60009054906101000a90046001600160a01b03166001600160a01b031663c346253d600f546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561127e57600080fd5b505afa158015611292573d6000803e3d6000fd5b505050506040513d60208110156112a857600080fd5b505190506001600160a01b0381161561133a57600f54604080516312390ebd60e21b81526004810192909252306024830152516001600160a01b038316916348e43af4916044808301926020929190829003018186803b15801561130b57600080fd5b505afa15801561131f573d6000803e3d6000fd5b505050506040513d602081101561133557600080fd5b505191505b6000611344611a1c565b6003546040805163d06ca61f60e01b8152600481018481526024820192835260128054604484018190529596506001600160a01b039094169463d06ca61f94879490939091606490910190849080156113c657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113a8575b5050935050505060006040518083038186803b1580156113e557600080fd5b505afa9250505080156114a557506040513d6000823e601f3d908101601f19168201604052602081101561141857600080fd5b8101908080516040519392919084600160201b82111561143757600080fd5b90830190602082018581111561144c57600080fd5b82518660208202830111600160201b8211171561146857600080fd5b82525081516020918201928201910280838360005b8381101561149557818101518382015260200161147d565b5050505090500160405250505060015b6114ae576114cc565b806001825103815181106114be57fe5b602002602001015184019350505b6114f86103e8610caa6007546114f26103e8610caa602d8a61209c90919063ffffffff16565b9061209c565b935050505090565b606060148054806020026020016040519081016040528092919081815260200182805480156107df576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107c1575050505050905090565b611568612328565b6001600160a01b03166115796111fa565b6001600160a01b0316146115c2576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6115ec6111fa565b6001600160a01b0316336001600160a01b0316148061161557506001546001600160a01b031633145b611651576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115611690576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b6012818154811061076d57fe5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561170257600080fd5b505afa158015611716573d6000803e3d6000fd5b505050506040513d602081101561172c57600080fd5b5051905090565b6002546001600160a01b03163314611780576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6117aa610f5c565b156117ef576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561183a57600080fd5b505afa15801561184e573d6000803e3d6000fd5b505050506040513d602081101561186457600080fd5b5051905080156107f257600e54600f5460408051638dbdbe6d60e01b8152600481019290925260248201849052306044830152516001600160a01b0390921691638dbdbe6d9160648082019260009290919082900301818387803b1580156118cb57600080fd5b505af11580156118df573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661190c6110ab565b60408051918252519081900360200190a150565b60085481565b61192e6111fa565b6001600160a01b0316336001600160a01b0316148061195757506001546001600160a01b031633145b610e15576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61199b612328565b6001600160a01b03166119ac6111fa565b6001600160a01b0316146119f5576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b600e54600f546040805163065509bb60e21b81526004810192909252306024830152516000926001600160a01b03169163195426ec916044808301926020929190829003018186803b15801561170257600080fd5b60105481565b600a546001600160a01b031681565b611a8e612328565b6001600160a01b0316611a9f6111fa565b6001600160a01b031614611ae8576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b6001600160a01b038116611b2d5760405162461bcd60e51b81526004018080602001828103825260268152602001806132256026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611bd0576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f54604080516302f940c760e41b81526004810192909252306024830152516001600160a01b0390921691632f940c709160448082019260009290919082900301818387803b158015611c2657600080fd5b505af1158015611c3a573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611c8b57600080fd5b505afa158015611c9f573d6000803e3d6000fd5b505050506040513d6020811015611cb557600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b158015611d1557600080fd5b505af1158015611d29573d6000803e3d6000fd5b505050506040513d6020811015611d3f57600080fd5b505050565b6004546001600160a01b031681565b6015818154811061076d57fe5b801580611de6575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611db857600080fd5b505afa158015611dcc573d6000803e3d6000fd5b505050506040513d6020811015611de257600080fd5b5051155b611e215760405162461bcd60e51b81526004018080602001828103825260368152602001806132dc6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611d3f9084906124a5565b6060611e828484600085612556565b90505b9392505050565b611e94610f5c565b15611ed9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600e54600f5460408051630c7e663b60e11b81526004810192909252306024830152516001600160a01b03909216916318fccc769160448082019260009290919082900301818387803b158015611f2f57600080fd5b505af1158015611f43573d6000803e3d6000fd5b5050600a54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611f9457600080fd5b505afa158015611fa8573d6000803e3d6000fd5b505050506040513d6020811015611fbe57600080fd5b50519050801561203657611fd1826126b2565b611fd9612c07565b6000611fe36116b7565b9050611fed6117a2565b42601055337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f924108261201c6110ab565b6040805192835260208301919091528051918290030190a2505b5050565b600082821115612091576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b6000826120ab57506000612096565b828202828482816120b857fe5b0414611e855760405162461bcd60e51b81526004018080602001828103825260218152602001806132716021913960400191505060405180910390fd5b600080821161214b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161215457fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611d3f9084906124a5565b6121b6610f5c565b6121fe576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612234612328565b604080516001600160a01b039092168252519081900360200190a1565b600e54600b54612270916001600160a01b039182169116600019611d60565b600354600a5461228f916001600160a01b039182169116600019611d60565b6003546009546122ae916001600160a01b039182169116600019611d60565b600354600c546122cc916001600160a01b0391821691166000611d60565b600354600c546122eb916001600160a01b039182169116600019611d60565b600354600d54612309916001600160a01b0391821691166000611d60565b600354600d54610e13916001600160a01b039182169116600019611d60565b3390565b600082820183811015611e85576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61238e610f5c565b156123d3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612234612328565b600e54600b5461242d916001600160a01b0391821691166000611d60565b600354600a5461244b916001600160a01b0391821691166000611d60565b600354600954612469916001600160a01b0391821691166000611d60565b600354600c54612487916001600160a01b0391821691166000611d60565b600354600d54610e13916001600160a01b0391821691166000611d60565b60606124fa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e739092919063ffffffff16565b805190915015611d3f5780806020019051602081101561251957600080fd5b5051611d3f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806132b2602a913960400191505060405180910390fd5b6060824710156125975760405162461bcd60e51b815260040180806020018281038252602681526020018061324b6026913960400191505060405180910390fd5b6125a08561317a565b6125f1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126305780518252601f199092019160209182019101612611565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612692576040519150601f19603f3d011682016040523d82523d6000602084013e612697565b606091505b50915091506126a7828286613180565b979650505050505050565b600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156126fd57600080fd5b505afa158015612711573d6000803e3d6000fd5b505050506040513d602081101561272757600080fd5b5051905080156128b8576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526013805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c490910190869080156127cb57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116127ad575b50509650505050505050600060405180830381600087803b1580156127ef57600080fd5b505af1158015612803573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561282c57600080fd5b8101908080516040519392919084600160201b82111561284b57600080fd5b90830190602082018581111561286057600080fd5b82518660208202830111600160201b8211171561287c57600080fd5b82525081516020918201928201910280838360005b838110156128a9578181015183820152602001612891565b50505050905001604052505050505b600a54604080516370a0823160e01b81523060048201529051600092612947926103e892610caa92602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561291557600080fd5b505afa158015612929573d6000803e3d6000fd5b505050506040513d602081101561293f57600080fd5b50519061209c565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601230426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156129f357602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116129d5575b50509650505050505050600060405180830381600087803b158015612a1757600080fd5b505af1158015612a2b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612a5457600080fd5b8101908080516040519392919084600160201b821115612a7357600080fd5b908301906020820185811115612a8857600080fd5b82518660208202830111600160201b82111715612aa457600080fd5b82525081516020918201928201910280838360005b83811015612ad1578181015183820152602001612ab9565b505050509190910160408181526009546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612b2c57600080fd5b505afa158015612b40573d6000803e3d6000fd5b505050506040513d6020811015612b5657600080fd5b5051600754909150600090612b74906103e890610caa90859061209c565b600954909150612b8e906001600160a01b0316868361215c565b6000612bab6103e8610caa6008548661209c90919063ffffffff16565b600554600954919250612bcb916001600160a01b0390811691168361215c565b6000612bde6103e8610caa86607061209c565b600254600954919250612bfe916001600160a01b0390811691168361215c565b50505050505050565b600a54604080516370a0823160e01b81523060048201529051600092612c8e926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612c5c57600080fd5b505afa158015612c70573d6000803e3d6000fd5b505050506040513d6020811015612c8657600080fd5b5051906120f5565b600a54600c549192506001600160a01b03918216911614612e30576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612d4357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612d25575b50509650505050505050600060405180830381600087803b158015612d6757600080fd5b505af1158015612d7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612da457600080fd5b8101908080516040519392919084600160201b821115612dc357600080fd5b908301906020820185811115612dd857600080fd5b82518660208202830111600160201b82111715612df457600080fd5b82525081516020918201928201910280838360005b83811015612e21578181015183820152602001612e09565b50505050905001604052505050505b600a54600d546001600160a01b03908116911614612fcf576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526015805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612ee257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612ec4575b50509650505050505050600060405180830381600087803b158015612f0657600080fd5b505af1158015612f1a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612f4357600080fd5b8101908080516040519392919084600160201b821115612f6257600080fd5b908301906020820185811115612f7757600080fd5b82518660208202830111600160201b82111715612f9357600080fd5b82525081516020918201928201910280838360005b83811015612fc0578181015183820152602001612fa8565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561301a57600080fd5b505afa15801561302e573d6000803e3d6000fd5b505050506040513d602081101561304457600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561309757600080fd5b505afa1580156130ab573d6000803e3d6000fd5b505050506040513d60208110156130c157600080fd5b5051600354600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b15801561314957600080fd5b505af115801561315d573d6000803e3d6000fd5b505050506040513d606081101561317357600080fd5b5050505050565b3b151590565b6060831561318f575081611e85565b82511561319f5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156131e95781810151838201526020016131d1565b50505050905090810190601f1680156132165780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220b36e00e4a102ea7860cd7dd30ff3d2b7bd8fa5edb4b887c264c0f50d4f6d8b0364736f6c634300060c0033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000009803c7ae526049210a1725f7487af26fe2c2461400000000000000000000000000000000000000000000000000000000000000310000000000000000000000000769fd68dfb93167989c6f7254cd0d766fb2841f00000000000000000000000019afd39f0f8a2deed37ed74f6a126b68432d4bc70000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d0000000000000000000000003e85701ba493b6f51d6c301b91b758ec8685fa3c0000000000000000000000006fb16f7f2c1f1bda14d4277530a92d4404b7fb7e000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000002f800db0fdb5223b3c3f354886d907a671414a7f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000002f800db0fdb5223b3c3f354886d907a671414a7f0000000000000000000000004e78011ce80ee02d2c3e649fb657e45898257815

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103835760003560e01c80637d38ca65116101de578063be12a9781161010f578063dfbdc437116100ad578063f2fde38b1161007c578063f2fde38b1461070d578063fb61778714610733578063fbfa77cf1461073b578063fd63a8871461074357610383565b8063dfbdc437146106ed578063e7a7250a146106f5578063f1a392da146106fd578063f20eaeb81461070557610383565b8063d0e30db0116100e9578063d0e30db0146106af578063d3102589146106b7578063d801d946146106bf578063d92f3d73146106c757610383565b8063be12a97814610664578063c1a3d44c14610681578063c7b9d5301461068957610383565b806390321e1a1161017c578063a68833e511610156578063a68833e514610611578063ac1e502514610637578063aced166114610654578063bc063e1a1461065c57610383565b806390321e1a146105f957806397fd323d14610601578063989ef4e31461060957610383565b80638912cb8b116101b85780638912cb8b146105d95780638bc7e8c4146105e15780638da5cb5b146105e95780638e145459146105f157610383565b80637d38ca65146105c15780638456cb59146105c9578063877562b6146105d157610383565b8063326d3e58116102b8578063573fef0a116102565780636817031b116102305780636817031b14610565578063715018a61461058b578063722713f714610593578063748747e61461059b57610383565b8063573fef0a146105395780635c975abb146105415780635ee167c01461055d57610383565b80633f4ba83a116102925780633f4ba83a146105195780634641257d146105215780634700d3051461052957806354518b1a1461053157610383565b8063326d3e58146104ec57806336c6cf21146104f45780633e0dc34e1461051157610383565b80631f1fcd5111610325578063257ae0de116102ff578063257ae0de146104a257806326465826146104aa5780632ad5a53f146104c75780632e1a7d4d146104cf57610383565b80631f1fcd511461048a5780631fc8bc5d146104925780631fe4a6861461049a57610383565b80630e8fbb5a116103615780630e8fbb5a14610441578063115880861461046057806311b0b42d1461047a57806313e120b11461048257610383565b806305200c9c146103885780630587f785146103c15780630e5c011e14610419575b600080fd5b6103a56004803603602081101561039e57600080fd5b5035610760565b604080516001600160a01b039092168252519081900360200190f35b6103c9610787565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156104055781810151838201526020016103ed565b505050509050019250505060405180910390f35b61043f6004803603602081101561042f57600080fd5b50356001600160a01b03166107e9565b005b61043f6004803603602081101561045757600080fd5b503515156107f5565b610468610893565b60408051918252519081900360200190f35b6103a561091a565b6103c9610929565b6103a5610989565b6103a5610998565b6103a56109a7565b6103a56109b6565b61043f600480360360208110156104c057600080fd5b50356109c5565b610468610a7f565b61043f600480360360208110156104e557600080fd5b5035610a84565b6103c9610d1b565b6103a56004803603602081101561050a57600080fd5b5035610d7b565b610468610d88565b61043f610d8e565b61043f610e15565b61043f610e1e565b610468610f03565b61043f610f09565b610549610f5c565b604080519115158252519081900360200190f35b6103a5610f6c565b61043f6004803603602081101561057b57600080fd5b50356001600160a01b0316610f7b565b61043f610fff565b6104686110ab565b61043f600480360360208110156105b157600080fd5b50356001600160a01b03166110cb565b61046861115a565b61043f61115f565b6103a56111dc565b6105496111eb565b6104686111f4565b6103a56111fa565b6103a5611209565b610468611218565b61046861121e565b6103c9611500565b61043f6004803603602081101561062757600080fd5b50356001600160a01b0316611560565b61043f6004803603602081101561064d57600080fd5b50356115e4565b6103a5611695565b6104686116a4565b6103a56004803603602081101561067a57600080fd5b50356116aa565b6104686116b7565b61043f6004803603602081101561069f57600080fd5b50356001600160a01b0316611733565b61043f6117a2565b610468611920565b61043f611926565b61043f600480360360208110156106dd57600080fd5b50356001600160a01b0316611993565b610468611a17565b610468611a1c565b610468611a71565b6103a5611a77565b61043f6004803603602081101561072357600080fd5b50356001600160a01b0316611a86565b61043f611b88565b6103a5611d44565b6103a56004803603602081101561075957600080fd5b5035611d53565b6013818154811061076d57fe5b6000918252602090912001546001600160a01b0316905081565b606060158054806020026020016040519081016040528092919081815260200182805480156107df57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116107c1575b5050505050905090565b6107f281611e8c565b50565b6107fd6111fa565b6001600160a01b0316336001600160a01b0316148061082657506001546001600160a01b031633145b610862576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6011805460ff1916821515179081905560ff16156108895761088460006115e4565b6107f2565b6107f2600a6115e4565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b1580156108e857600080fd5b505afa1580156108fc573d6000803e3d6000fd5b505050506040513d604081101561091257600080fd5b505191505090565b6009546001600160a01b031681565b606060128054806020026020016040519081016040528092919081815260200182805480156107df576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107c1575050505050905090565b600b546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b6109cd6111fa565b6001600160a01b0316336001600160a01b031614806109f657506001546001600160a01b031633145b610a32576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610a71576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b03163314610acc576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b1757600080fd5b505afa158015610b2b573d6000803e3d6000fd5b505050506040513d6020811015610b4157600080fd5b5051905081811015610c4f57600e54600f546001600160a01b0390911690630ad58d2f90610b6f858561203a565b306040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b031681526020019350505050600060405180830381600087803b158015610bbd57600080fd5b505af1158015610bd1573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610c2057600080fd5b505afa158015610c34573d6000803e3d6000fd5b505050506040513d6020811015610c4a57600080fd5b505190505b81811115610c5a5750805b610c626111fa565b6001600160a01b0316326001600160a01b031614158015610c885750610c86610f5c565b155b15610cc0576000610cb0612710610caa6006548561209c90919063ffffffff16565b906120f5565b9050610cbc828261203a565b9150505b600454600b54610cdd916001600160a01b0391821691168361215c565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610d066110ab565b60408051918252519081900360200190a15050565b606060138054806020026020016040519081016040528092919081815260200182805480156107df576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107c1575050505050905090565b6014818154811061076d57fe5b600f5481565b610d966111fa565b6001600160a01b0316336001600160a01b03161480610dbf57506001546001600160a01b031633145b610dfb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610e036121ae565b610e0b612251565b610e136117a2565b565b610e1332611e8c565b610e266111fa565b6001600160a01b0316336001600160a01b03161480610e4f57506001546001600160a01b031633145b610e8b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610e9361115f565b600e54600f54604080516302f940c760e41b81526004810192909252306024830152516001600160a01b0390921691632f940c709160448082019260009290919082900301818387803b158015610ee957600080fd5b505af1158015610efd573d6000803e3d6000fd5b50505050565b61271081565b60115460ff1615610e13576004546001600160a01b03163314610e15576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600c546001600160a01b031681565b610f83612328565b6001600160a01b0316610f946111fa565b6001600160a01b031614610fdd576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b611007612328565b6001600160a01b03166110186111fa565b6001600160a01b031614611061576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006110c66110b8610893565b6110c06116b7565b9061232c565b905090565b6110d36111fa565b6001600160a01b0316336001600160a01b031614806110fc57506001546001600160a01b031633145b611138576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6111676111fa565b6001600160a01b0316336001600160a01b0316148061119057506001546001600160a01b031633145b6111cc576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6111d4612386565b610e1361240f565b600d546001600160a01b031681565b60115460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6000806000600e60009054906101000a90046001600160a01b03166001600160a01b031663c346253d600f546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561127e57600080fd5b505afa158015611292573d6000803e3d6000fd5b505050506040513d60208110156112a857600080fd5b505190506001600160a01b0381161561133a57600f54604080516312390ebd60e21b81526004810192909252306024830152516001600160a01b038316916348e43af4916044808301926020929190829003018186803b15801561130b57600080fd5b505afa15801561131f573d6000803e3d6000fd5b505050506040513d602081101561133557600080fd5b505191505b6000611344611a1c565b6003546040805163d06ca61f60e01b8152600481018481526024820192835260128054604484018190529596506001600160a01b039094169463d06ca61f94879490939091606490910190849080156113c657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113a8575b5050935050505060006040518083038186803b1580156113e557600080fd5b505afa9250505080156114a557506040513d6000823e601f3d908101601f19168201604052602081101561141857600080fd5b8101908080516040519392919084600160201b82111561143757600080fd5b90830190602082018581111561144c57600080fd5b82518660208202830111600160201b8211171561146857600080fd5b82525081516020918201928201910280838360005b8381101561149557818101518382015260200161147d565b5050505090500160405250505060015b6114ae576114cc565b806001825103815181106114be57fe5b602002602001015184019350505b6114f86103e8610caa6007546114f26103e8610caa602d8a61209c90919063ffffffff16565b9061209c565b935050505090565b606060148054806020026020016040519081016040528092919081815260200182805480156107df576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107c1575050505050905090565b611568612328565b6001600160a01b03166115796111fa565b6001600160a01b0316146115c2576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6115ec6111fa565b6001600160a01b0316336001600160a01b0316148061161557506001546001600160a01b031633145b611651576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115611690576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b6012818154811061076d57fe5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561170257600080fd5b505afa158015611716573d6000803e3d6000fd5b505050506040513d602081101561172c57600080fd5b5051905090565b6002546001600160a01b03163314611780576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6117aa610f5c565b156117ef576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561183a57600080fd5b505afa15801561184e573d6000803e3d6000fd5b505050506040513d602081101561186457600080fd5b5051905080156107f257600e54600f5460408051638dbdbe6d60e01b8152600481019290925260248201849052306044830152516001600160a01b0390921691638dbdbe6d9160648082019260009290919082900301818387803b1580156118cb57600080fd5b505af11580156118df573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661190c6110ab565b60408051918252519081900360200190a150565b60085481565b61192e6111fa565b6001600160a01b0316336001600160a01b0316148061195757506001546001600160a01b031633145b610e15576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61199b612328565b6001600160a01b03166119ac6111fa565b6001600160a01b0316146119f5576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b600e54600f546040805163065509bb60e21b81526004810192909252306024830152516000926001600160a01b03169163195426ec916044808301926020929190829003018186803b15801561170257600080fd5b60105481565b600a546001600160a01b031681565b611a8e612328565b6001600160a01b0316611a9f6111fa565b6001600160a01b031614611ae8576040805162461bcd60e51b81526020600482018190526024820152600080516020613292833981519152604482015290519081900360640190fd5b6001600160a01b038116611b2d5760405162461bcd60e51b81526004018080602001828103825260268152602001806132256026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611bd0576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f54604080516302f940c760e41b81526004810192909252306024830152516001600160a01b0390921691632f940c709160448082019260009290919082900301818387803b158015611c2657600080fd5b505af1158015611c3a573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611c8b57600080fd5b505afa158015611c9f573d6000803e3d6000fd5b505050506040513d6020811015611cb557600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b158015611d1557600080fd5b505af1158015611d29573d6000803e3d6000fd5b505050506040513d6020811015611d3f57600080fd5b505050565b6004546001600160a01b031681565b6015818154811061076d57fe5b801580611de6575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611db857600080fd5b505afa158015611dcc573d6000803e3d6000fd5b505050506040513d6020811015611de257600080fd5b5051155b611e215760405162461bcd60e51b81526004018080602001828103825260368152602001806132dc6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611d3f9084906124a5565b6060611e828484600085612556565b90505b9392505050565b611e94610f5c565b15611ed9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600e54600f5460408051630c7e663b60e11b81526004810192909252306024830152516001600160a01b03909216916318fccc769160448082019260009290919082900301818387803b158015611f2f57600080fd5b505af1158015611f43573d6000803e3d6000fd5b5050600a54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611f9457600080fd5b505afa158015611fa8573d6000803e3d6000fd5b505050506040513d6020811015611fbe57600080fd5b50519050801561203657611fd1826126b2565b611fd9612c07565b6000611fe36116b7565b9050611fed6117a2565b42601055337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f924108261201c6110ab565b6040805192835260208301919091528051918290030190a2505b5050565b600082821115612091576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b6000826120ab57506000612096565b828202828482816120b857fe5b0414611e855760405162461bcd60e51b81526004018080602001828103825260218152602001806132716021913960400191505060405180910390fd5b600080821161214b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161215457fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611d3f9084906124a5565b6121b6610f5c565b6121fe576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612234612328565b604080516001600160a01b039092168252519081900360200190a1565b600e54600b54612270916001600160a01b039182169116600019611d60565b600354600a5461228f916001600160a01b039182169116600019611d60565b6003546009546122ae916001600160a01b039182169116600019611d60565b600354600c546122cc916001600160a01b0391821691166000611d60565b600354600c546122eb916001600160a01b039182169116600019611d60565b600354600d54612309916001600160a01b0391821691166000611d60565b600354600d54610e13916001600160a01b039182169116600019611d60565b3390565b600082820183811015611e85576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61238e610f5c565b156123d3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612234612328565b600e54600b5461242d916001600160a01b0391821691166000611d60565b600354600a5461244b916001600160a01b0391821691166000611d60565b600354600954612469916001600160a01b0391821691166000611d60565b600354600c54612487916001600160a01b0391821691166000611d60565b600354600d54610e13916001600160a01b0391821691166000611d60565b60606124fa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e739092919063ffffffff16565b805190915015611d3f5780806020019051602081101561251957600080fd5b5051611d3f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806132b2602a913960400191505060405180910390fd5b6060824710156125975760405162461bcd60e51b815260040180806020018281038252602681526020018061324b6026913960400191505060405180910390fd5b6125a08561317a565b6125f1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126305780518252601f199092019160209182019101612611565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612692576040519150601f19603f3d011682016040523d82523d6000602084013e612697565b606091505b50915091506126a7828286613180565b979650505050505050565b600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156126fd57600080fd5b505afa158015612711573d6000803e3d6000fd5b505050506040513d602081101561272757600080fd5b5051905080156128b8576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526013805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c490910190869080156127cb57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116127ad575b50509650505050505050600060405180830381600087803b1580156127ef57600080fd5b505af1158015612803573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561282c57600080fd5b8101908080516040519392919084600160201b82111561284b57600080fd5b90830190602082018581111561286057600080fd5b82518660208202830111600160201b8211171561287c57600080fd5b82525081516020918201928201910280838360005b838110156128a9578181015183820152602001612891565b50505050905001604052505050505b600a54604080516370a0823160e01b81523060048201529051600092612947926103e892610caa92602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561291557600080fd5b505afa158015612929573d6000803e3d6000fd5b505050506040513d602081101561293f57600080fd5b50519061209c565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601230426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156129f357602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116129d5575b50509650505050505050600060405180830381600087803b158015612a1757600080fd5b505af1158015612a2b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612a5457600080fd5b8101908080516040519392919084600160201b821115612a7357600080fd5b908301906020820185811115612a8857600080fd5b82518660208202830111600160201b82111715612aa457600080fd5b82525081516020918201928201910280838360005b83811015612ad1578181015183820152602001612ab9565b505050509190910160408181526009546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612b2c57600080fd5b505afa158015612b40573d6000803e3d6000fd5b505050506040513d6020811015612b5657600080fd5b5051600754909150600090612b74906103e890610caa90859061209c565b600954909150612b8e906001600160a01b0316868361215c565b6000612bab6103e8610caa6008548661209c90919063ffffffff16565b600554600954919250612bcb916001600160a01b0390811691168361215c565b6000612bde6103e8610caa86607061209c565b600254600954919250612bfe916001600160a01b0390811691168361215c565b50505050505050565b600a54604080516370a0823160e01b81523060048201529051600092612c8e926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612c5c57600080fd5b505afa158015612c70573d6000803e3d6000fd5b505050506040513d6020811015612c8657600080fd5b5051906120f5565b600a54600c549192506001600160a01b03918216911614612e30576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612d4357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612d25575b50509650505050505050600060405180830381600087803b158015612d6757600080fd5b505af1158015612d7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612da457600080fd5b8101908080516040519392919084600160201b821115612dc357600080fd5b908301906020820185811115612dd857600080fd5b82518660208202830111600160201b82111715612df457600080fd5b82525081516020918201928201910280838360005b83811015612e21578181015183820152602001612e09565b50505050905001604052505050505b600a54600d546001600160a01b03908116911614612fcf576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526015805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612ee257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612ec4575b50509650505050505050600060405180830381600087803b158015612f0657600080fd5b505af1158015612f1a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612f4357600080fd5b8101908080516040519392919084600160201b821115612f6257600080fd5b908301906020820185811115612f7757600080fd5b82518660208202830111600160201b82111715612f9357600080fd5b82525081516020918201928201910280838360005b83811015612fc0578181015183820152602001612fa8565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561301a57600080fd5b505afa15801561302e573d6000803e3d6000fd5b505050506040513d602081101561304457600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561309757600080fd5b505afa1580156130ab573d6000803e3d6000fd5b505050506040513d60208110156130c157600080fd5b5051600354600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b15801561314957600080fd5b505af115801561315d573d6000803e3d6000fd5b505050506040513d606081101561317357600080fd5b5050505050565b3b151590565b6060831561318f575081611e85565b82511561319f5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156131e95781810151838201526020016131d1565b50505050905090810190601f1680156132165780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220b36e00e4a102ea7860cd7dd30ff3d2b7bd8fa5edb4b887c264c0f50d4f6d8b0364736f6c634300060c0033

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

0000000000000000000000009803c7ae526049210a1725f7487af26fe2c2461400000000000000000000000000000000000000000000000000000000000000310000000000000000000000000769fd68dfb93167989c6f7254cd0d766fb2841f00000000000000000000000019afd39f0f8a2deed37ed74f6a126b68432d4bc70000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d0000000000000000000000003e85701ba493b6f51d6c301b91b758ec8685fa3c0000000000000000000000006fb16f7f2c1f1bda14d4277530a92d4404b7fb7e000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000002f800db0fdb5223b3c3f354886d907a671414a7f00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000002f800db0fdb5223b3c3f354886d907a671414a7f0000000000000000000000004e78011ce80ee02d2c3e649fb657e45898257815

-----Decoded View---------------
Arg [0] : _want (address): 0x9803c7aE526049210a1725F7487AF26fE2c24614
Arg [1] : _poolId (uint256): 49
Arg [2] : _chef (address): 0x0769fd68dFb93167989C6f7254cd0D766Fb2841F
Arg [3] : _vault (address): 0x19AfD39F0f8A2deeD37Ed74F6a126b68432D4bc7
Arg [4] : _unirouter (address): 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
Arg [5] : _keeper (address): 0x10aee6B5594942433e7Fc2783598c979B030eF3D
Arg [6] : _strategist (address): 0x3E85701BA493b6F51d6c301b91b758EC8685fA3c
Arg [7] : _beefyFeeRecipient (address): 0x6FB16F7F2C1f1BDA14d4277530A92d4404b7Fb7e
Arg [8] : _outputToNativeRoute (address[]): 0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a,0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270
Arg [9] : _outputToLp0Route (address[]): 0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a,0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619,0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174,0x2F800Db0fdb5223b3C3f354886d907A671414A7F
Arg [10] : _outputToLp1Route (address[]): 0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a,0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619,0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174,0x2F800Db0fdb5223b3C3f354886d907A671414A7F,0x4e78011Ce80ee02d2c3e649Fb657E45898257815

-----Encoded View---------------
25 Constructor Arguments found :
Arg [0] : 0000000000000000000000009803c7ae526049210a1725f7487af26fe2c24614
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [2] : 0000000000000000000000000769fd68dfb93167989c6f7254cd0d766fb2841f
Arg [3] : 00000000000000000000000019afd39f0f8a2deed37ed74f6a126b68432d4bc7
Arg [4] : 0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [5] : 00000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Arg [6] : 0000000000000000000000003e85701ba493b6f51d6c301b91b758ec8685fa3c
Arg [7] : 0000000000000000000000006fb16f7f2c1f1bda14d4277530a92d4404b7fb7e
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a
Arg [13] : 0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [15] : 0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a
Arg [16] : 0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619
Arg [17] : 0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174
Arg [18] : 0000000000000000000000002f800db0fdb5223b3c3f354886d907a671414a7f
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [20] : 0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a
Arg [21] : 0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619
Arg [22] : 0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174
Arg [23] : 0000000000000000000000002f800db0fdb5223b3c3f354886d907a671414a7f
Arg [24] : 0000000000000000000000004e78011ce80ee02d2c3e649fb657e45898257815


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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.