Source Code
Latest 25 from a total of 27 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Panic | 8614370 | 416 days ago | IN | 0 GLMR | 0.20678984 | ||||
| Set Harvest On D... | 3134089 | 1049 days ago | IN | 0 GLMR | 0.0031112 | ||||
| Harvest | 3134087 | 1049 days ago | IN | 0 GLMR | 0.07314813 | ||||
| Harvest | 1549404 | 1275 days ago | IN | 0 GLMR | 0.07196259 | ||||
| Harvest | 1542587 | 1276 days ago | IN | 0 GLMR | 0.06987309 | ||||
| Harvest | 1535758 | 1277 days ago | IN | 0 GLMR | 0.06936027 | ||||
| Harvest | 1528912 | 1278 days ago | IN | 0 GLMR | 0.06987309 | ||||
| Set Keeper | 1521616 | 1279 days ago | IN | 0 GLMR | 0.00270723 | ||||
| Harvest | 1510731 | 1280 days ago | IN | 0 GLMR | 0.07405209 | ||||
| Harvest | 1488028 | 1284 days ago | IN | 0 GLMR | 0.06987309 | ||||
| Harvest | 1474433 | 1286 days ago | IN | 0 GLMR | 0.07299673 | ||||
| Harvest | 1466454 | 1287 days ago | IN | 0 GLMR | 0.07090723 | ||||
| Harvest | 1448247 | 1290 days ago | IN | 0 GLMR | 0.07299673 | ||||
| Harvest | 1426674 | 1293 days ago | IN | 0 GLMR | 0.07299673 | ||||
| Harvest | 1419412 | 1294 days ago | IN | 0 GLMR | 0.0675307 | ||||
| Harvest | 1409328 | 1295 days ago | IN | 0 GLMR | 0.0695207 | ||||
| Harvest | 1401612 | 1296 days ago | IN | 0 GLMR | 0.0675307 | ||||
| Harvest | 1391187 | 1298 days ago | IN | 0 GLMR | 0.07056351 | ||||
| Harvest | 1360488 | 1302 days ago | IN | 0 GLMR | 0.0695207 | ||||
| Transfer Ownersh... | 1302003 | 1311 days ago | IN | 0 GLMR | 0.00263717 | ||||
| Set Harvest On D... | 1301998 | 1311 days ago | IN | 0 GLMR | 0.00391465 | ||||
| Harvest | 1301991 | 1311 days ago | IN | 0 GLMR | 0.0679941 | ||||
| Unpause | 1301985 | 1311 days ago | IN | 0 GLMR | 0.03534343 | ||||
| Panic | 1301980 | 1311 days ago | IN | 0 GLMR | 0.01229533 | ||||
| Harvest | 1301938 | 1311 days ago | IN | 0 GLMR | 0.07353052 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StrategyStellaswapMetaStable
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)
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
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/solar/ISolarStableRouter.sol";
import "../../interfaces/common/IWrappedNative.sol";
import "../../interfaces/solar/ISolarChef.sol";
import "../Common/StratManager.sol";
import "../Common/FeeManager.sol";
contract StrategyStellaswapMetaStable is StratManager, FeeManager {
using SafeERC20 for IERC20;
using SafeMath for uint256;
// Tokens used
address public native;
address public output;
address public want;
address public input;
//set here because of slots limit in the constructor
address public base = address(0xdA782836B65edC4E6811c7702C5E21786203Ba9d);
// Third party contracts
address public chef;
uint256 public poolId;
address public stableRouter;
// set here because of slots limit in constructor
address public baseRouter = address(0x422b5b7A15FB12c518AA29f9def640b4773427f8);
uint256 public depositIndex;
uint256 public baseDepositIndex;
bool public harvestOnDeposit;
uint256 public lastHarvest;
// Routes
address[] public outputToNativeRoute;
address[] public outputToInputRoute;
address[][] public rewardToOutputRoute;
event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl);
event Deposit(uint256 tvl);
event Withdraw(uint256 tvl);
event ChargedFees(uint256 callFees, uint256 beefyFees, uint256 strategistFees);
constructor(
address _want,
uint256 _poolId,
address _chef,
address _vault,
address _unirouter,
address _stableRouter,
address _keeper,
address _strategist,
address _beefyFeeRecipient,
address[] memory _outputToNativeRoute,
address[] memory _outputToInputRoute
) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public {
want = _want;
poolId = _poolId;
chef = _chef;
stableRouter = _stableRouter;
output = _outputToNativeRoute[0];
native = _outputToNativeRoute[_outputToNativeRoute.length - 1];
input = _outputToInputRoute[_outputToInputRoute.length - 1];
baseDepositIndex = ISolarStableRouter(baseRouter).getTokenIndex(input);
depositIndex = ISolarStableRouter(stableRouter).getTokenIndex(base);
outputToNativeRoute = _outputToNativeRoute;
outputToInputRoute = _outputToInputRoute;
_giveAllowances();
}
// puts the funds to work
function deposit() public whenNotPaused {
uint256 wantBal = IERC20(want).balanceOf(address(this));
if (wantBal > 0) {
ISolarChef(chef).deposit(poolId, wantBal);
emit Deposit(balanceOf());
}
}
function withdraw(uint256 _amount) external {
require(msg.sender == vault, "!vault");
uint256 wantBal = IERC20(want).balanceOf(address(this));
if (wantBal < _amount) {
ISolarChef(chef).withdraw(poolId, _amount.sub(wantBal));
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 {
ISolarChef(chef).deposit(poolId, 0);
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 {
if (rewardToOutputRoute.length != 0) {
for (uint i; i < rewardToOutputRoute.length; i++) {
if (rewardToOutputRoute[i][0] == native) {
uint256 nativeBal = address(this).balance;
if (nativeBal > 0) {
IWrappedNative(native).deposit{value: nativeBal}();
}
}
uint256 rewardBal = IERC20(rewardToOutputRoute[i][0]).balanceOf(address(this));
if (rewardBal > 0) {
IUniswapRouterETH(unirouter).swapExactTokensForTokens(rewardBal, 0, rewardToOutputRoute[i], 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 strategistFeeAmount = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE);
IERC20(native).safeTransfer(strategist, strategistFeeAmount);
emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFeeAmount);
}
// Adds liquidity to AMM and gets more LP tokens.
function addLiquidity() internal {
uint256 outputBal = IERC20(output).balanceOf(address(this));
IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputBal, 0, outputToInputRoute, address(this), now);
uint256 numberOfTokens = ISolarStableRouter(baseRouter).getNumberOfTokens();
uint256[] memory inputs = new uint256[](numberOfTokens);
inputs[baseDepositIndex] = IERC20(input).balanceOf(address(this));
ISolarStableRouter(baseRouter).addLiquidity(inputs, 1, now);
numberOfTokens = ISolarStableRouter(stableRouter).getNumberOfTokens();
inputs = new uint256[](numberOfTokens);
inputs[depositIndex] = IERC20(base).balanceOf(address(this));
ISolarStableRouter(stableRouter).addLiquidity(inputs, 1, 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,,,) = ISolarChef(chef).userInfo(poolId, address(this));
return _amount;
}
function rewardsAvailable() public view returns (address[] memory, uint256[] memory) {
(address[] memory addresses,,,uint256[] memory amounts) = ISolarChef(chef).pendingTokens(poolId, address(this));
return (addresses, amounts);
}
function callReward() public view returns (uint256) {
(address[] memory rewardAdd, uint256[] memory rewardBal) = rewardsAvailable();
uint256 nativeBal;
try IUniswapRouterETH(unirouter).getAmountsOut(rewardBal[0], outputToNativeRoute)
returns (uint256[] memory amountOut) {
nativeBal = amountOut[amountOut.length - 1];
} catch {}
if (rewardToOutputRoute.length != 0) {
for (uint i; i < rewardToOutputRoute.length; i++) {
for (uint j = 1; j < rewardAdd.length; j++) {
if (rewardAdd[j] == rewardToOutputRoute[i][0]) {
try IUniswapRouterETH(unirouter).getAmountsOut(rewardBal[j], rewardToOutputRoute[i])
returns (uint256[] memory initialAmountOut) {
uint256 outputBal = initialAmountOut[initialAmountOut.length - 1];
try IUniswapRouterETH(unirouter).getAmountsOut(outputBal, outputToNativeRoute)
returns (uint256[] memory finalAmountOut) {
nativeBal = nativeBal.add(finalAmountOut[finalAmountOut.length - 1]);
} catch {}
} catch {}
}
}
}
}
return nativeBal.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");
ISolarChef(chef).emergencyWithdraw(poolId);
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();
ISolarChef(chef).emergencyWithdraw(poolId);
}
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));
IERC20(input).safeApprove(baseRouter, uint256(-1));
IERC20(base).safeApprove(stableRouter, uint256(-1));
if (rewardToOutputRoute.length != 0) {
for (uint i; i < rewardToOutputRoute.length; i++) {
IERC20(rewardToOutputRoute[i][0]).safeApprove(unirouter, 0);
IERC20(rewardToOutputRoute[i][0]).safeApprove(unirouter, uint256(-1));
}
}
}
function _removeAllowances() internal {
IERC20(want).safeApprove(chef, 0);
IERC20(output).safeApprove(unirouter, 0);
IERC20(input).safeApprove(baseRouter, 0);
IERC20(base).safeApprove(stableRouter, 0);
if (rewardToOutputRoute.length != 0) {
for (uint i; i < rewardToOutputRoute.length; i++) {
IERC20(rewardToOutputRoute[i][0]).safeApprove(unirouter, 0);
}
}
}
function addRewardRoute(address[] memory _rewardToOutputRoute) external onlyOwner {
IERC20(_rewardToOutputRoute[0]).safeApprove(unirouter, 0);
IERC20(_rewardToOutputRoute[0]).safeApprove(unirouter, uint256(-1));
rewardToOutputRoute.push(_rewardToOutputRoute);
}
function removeLastRewardRoute() external onlyManager {
address reward = rewardToOutputRoute[rewardToOutputRoute.length - 1][0];
IERC20(reward).safeApprove(unirouter, 0);
rewardToOutputRoute.pop();
}
function outputToNative() external view returns (address[] memory) {
return outputToNativeRoute;
}
function outputToInput() external view returns (address[] memory) {
return outputToInputRoute;
}
function rewardToOutput() external view returns (address[][] memory) {
return rewardToOutputRoute;
}
receive () external payable {}
}// 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 { }
}// 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");
}
}
}// 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;
}
}// 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);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
interface ISolarStableRouter {
function addLiquidity(
uint256[] calldata amounts,
uint256 minToMint,
uint256 deadline
) external returns (uint256);
function getNumberOfTokens() external view returns (uint256);
function getTokenIndex(address tokenAddress) external view returns (uint8);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
interface IWrappedNative is IERC20 {
function deposit() external payable;
function withdraw(uint wad) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
interface ISolarChef {
function deposit(uint256 _pid, uint256 _amount) external;
function withdraw(uint256 _pid, uint256 _amount) external;
function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256, uint256, uint256);
function emergencyWithdraw(uint256 _pid) external;
function pendingTokens(uint256 _pid, address _user)
external
view
returns (address[] calldata addresses, string calldata symbols, uint256[] calldata decimals, uint256[] calldata amounts);
}// 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 {}
}// 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;
}
}// 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;
}
}// 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);
}// 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);
}
}
}
}// 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;
}
}// 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());
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"_stableRouter","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":"_outputToInputRoute","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"callFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"beefyFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"strategistFees","type":"uint256"}],"name":"ChargedFees","type":"event"},{"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":[{"internalType":"address[]","name":"_rewardToOutputRoute","type":"address[]"}],"name":"addRewardRoute","outputs":[],"stateMutability":"nonpayable","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":"base","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseDepositIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"depositIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"input","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"native","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":"outputToInput","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToInputRoute","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":"removeLastRewardRoute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToOutput","outputs":[{"internalType":"address[][]","name":"","type":"address[][]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardToOutputRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"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":"stableRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600a600655606f600755610309600855600d80546001600160a01b031990811673da782836b65edc4e6811c7702c5e21786203ba9d179091556011805490911673422b5b7a15fb12c518aa29f9def640b4773427f81790553480156200006957600080fd5b506040516200487e3803806200487e8339810160408190526200008c916200091f565b8484888a8660006200009d6200038e565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19168155600180546001600160a01b03199081166001600160a01b0398891617909155600280548216968816969096179095556003805486169487169490941790935560048054851692861692909217909155600580548416918516919091179055600b805483168f8516179055600f8d9055600e805483168d85161790556010805490921692891692909217905582518391906200018b57fe5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600183510381518110620001ca57fe5b6020026020010151600960006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001825103815181106200020957fe5b6020908102919091010151600c80546001600160a01b0319166001600160a01b0392831617908190556011546040516319b02f4960e21b8152908316926366c0bd24926200025d9291169060040162000ab3565b60206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000a72565b60ff16601355601054600d546040516319b02f4960e21b81526001600160a01b03928316926366c0bd2492620002ed9291169060040162000ab3565b60206040518083038186803b1580156200030657600080fd5b505afa1580156200031b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000341919062000a72565b60ff1660125581516200035c906016906020850190620007d4565b50805162000372906017906020840190620007d4565b506200037d62000392565b505050505050505050505062000c86565b3390565b600e54600b54620003bf916001600160a01b039182169116600019620004f2602090811b62001f8e17901c565b600354600a54620003ec916001600160a01b039182169116600019620004f2602090811b62001f8e17901c565b601154600c5462000419916001600160a01b039182169116600019620004f2602090811b62001f8e17901c565b601054600d5462000446916001600160a01b039182169116600019620004f2602090811b62001f8e17901c565b60185415620004f05760005b601854811015620004ee5760035460188054620004c0926001600160a01b031691600091859081106200048157fe5b906000526020600020016000815481106200049857fe5b600091825260209182902001546001600160a01b031692919062001f8e620004f2821b17901c565b60035460188054620004e5926001600160a01b03169160001991859081106200048157fe5b60010162000452565b505b565b801580620005815750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e906200052b903090869060040162000ac7565b60206040518083038186803b1580156200054457600080fd5b505afa15801562000559573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200057f919062000a59565b155b620005a95760405162461bcd60e51b8152600401620005a09062000bf6565b60405180910390fd5b620006048363095ea7b360e01b8484604051602401620005cb92919062000ae1565b60408051808303601f190181529190526020810180516001600160e01b0319939093166001600160e01b03938416179052906200060916565b505050565b606062000665826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620006a560201b6200208d179092919060201c565b80519091501562000604578080602001905181019062000686919062000a37565b620006045760405162461bcd60e51b8152600401620005a09062000bac565b6060620006b68484600085620006c0565b90505b9392505050565b606082471015620006e55760405162461bcd60e51b8152600401620005a09062000b2f565b620006f08562000790565b6200070f5760405162461bcd60e51b8152600401620005a09062000b75565b60006060866001600160a01b031685876040516200072e919062000a95565b60006040518083038185875af1925050503d80600081146200076d576040519150601f19603f3d011682016040523d82523d6000602084013e62000772565b606091505b5090925090506200078582828662000796565b979650505050505050565b3b151590565b60608315620007a7575081620006b9565b825115620007b85782518084602001fd5b8160405162461bcd60e51b8152600401620005a0919062000afa565b8280548282559060005260206000209081019282156200082c579160200282015b828111156200082c57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620007f5565b506200083a9291506200083e565b5090565b5b808211156200083a5780546001600160a01b03191681556001016200083f565b80516001600160a01b03811681146200087757600080fd5b92915050565b600082601f8301126200088e578081fd5b81516001600160401b0380821115620008a5578283fd5b602080830260405182828201018181108582111715620008c3578687fd5b604052848152945081850192508582018187018301881015620008e557600080fd5b600091505b848210156200091457620008ff88826200085f565b845292820192600191909101908201620008ea565b505050505092915050565b60008060008060008060008060008060006101608c8e03121562000941578687fd5b6200094d8d8d6200085f565b9a5060208c01519950620009658d60408e016200085f565b9850620009768d60608e016200085f565b9750620009878d60808e016200085f565b9650620009988d60a08e016200085f565b9550620009a98d60c08e016200085f565b9450620009ba8d60e08e016200085f565b9350620009cc8d6101008e016200085f565b6101208d01519093506001600160401b03811115620009e9578283fd5b620009f78e828f016200087d565b6101408e015190935090506001600160401b0381111562000a16578182fd5b62000a248e828f016200087d565b9150509295989b509295989b9093969950565b60006020828403121562000a49578081fd5b81518015158114620006b9578182fd5b60006020828403121562000a6b578081fd5b5051919050565b60006020828403121562000a84578081fd5b815160ff81168114620006b9578182fd5b6000825162000aa981846020870162000c53565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b600060208252825180602084015262000b1b81604085016020870162000c53565b601f01601f19169190910160400192915050565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000606082015260800190565b60005b8381101562000c7057818101518382015260200162000c56565b8381111562000c80576000848401525b50505050565b613be88062000c966000396000f3fe6080604052600436106103a65760003560e01c80638912cb8b116101e7578063c7b9d5301161010d578063eaed3f4f116100a0578063f2fde38b1161006f578063f2fde38b14610946578063fa5c9edd14610966578063fb61778714610988578063fbfa77cf1461099d576103ad565b8063eaed3f4f146108f2578063eb1319b114610907578063f1a392da1461091c578063f20eaeb814610931576103ad565b8063d801d946116100dc578063d801d94614610885578063d92f3d731461089a578063dfbdc437146108ba578063e7a7250a146108cf576103ad565b8063c7b9d5301461081b578063cc2894801461083b578063d0e30db01461085b578063d310258914610870576103ad565b8063a39219f911610185578063b86ced7011610154578063b86ced70146107bc578063bc063e1a146107d1578063be12a978146107e6578063c1a3d44c14610806576103ad565b8063a39219f914610752578063a68833e514610767578063ac1e502514610787578063aced1661146107a7576103ad565b80638e145459116101c15780638e145459146106f357806390321e1a1461070857806396813fca1461071d57806397fd323d1461073d576103ad565b80638912cb8b146106b45780638bc7e8c4146106c95780638da5cb5b146106de576103ad565b80634641257d116102cc5780635c975abb1161026a578063748747e611610239578063748747e6146106555780637b898939146106755780637d38ca651461068a5780638456cb591461069f576103ad565b80635c975abb146105e95780636817031b1461060b578063715018a61461062b578063722713f714610640576103ad565b80635001f3b5116102a65780635001f3b5146105955780635035d47c146105aa57806354518b1a146105bf578063573fef0a146105d4576103ad565b80634641257d146105565780634700d3051461056b5780634c3677c814610580576103ad565b80631fc8bc5d116103445780632ad5a53f116103135780632ad5a53f146104f75780632e1a7d4d1461050c5780633e0dc34e1461052c5780633f4ba83a14610541576103ad565b80631fc8bc5d146104985780631fe4a686146104ad578063257ae0de146104c257806326465826146104d7576103ad565b806311b0b42d1161038057806311b0b42d1461041f57806313e120b1146104415780631bf50af2146104635780631f1fcd5114610483576103ad565b80630e5c011e146103b25780630e8fbb5a146103d457806311588086146103f4576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103d26103cd36600461325d565b6109b2565b005b3480156103e057600080fd5b506103d26103ef366004613456565b6109be565b34801561040057600080fd5b50610409610a45565b6040516104169190613a83565b60405180910390f35b34801561042b57600080fd5b50610434610ad7565b60405161041691906135dd565b34801561044d57600080fd5b50610456610ae6565b6040516104169190613624565b34801561046f57600080fd5b5061043461047e36600461348e565b610b48565b34801561048f57600080fd5b50610434610b6f565b3480156104a457600080fd5b50610434610b7e565b3480156104b957600080fd5b50610434610b8d565b3480156104ce57600080fd5b50610434610b9c565b3480156104e357600080fd5b506103d26104f236600461348e565b610bab565b34801561050357600080fd5b50610409610c27565b34801561051857600080fd5b506103d261052736600461348e565b610c2c565b34801561053857600080fd5b50610409610ea5565b34801561054d57600080fd5b506103d2610eab565b34801561056257600080fd5b506103d2610f12565b34801561057757600080fd5b506103d2610f1b565b34801561058c57600080fd5b50610434610fd5565b3480156105a157600080fd5b50610434610fe4565b3480156105b657600080fd5b50610409610ff3565b3480156105cb57600080fd5b50610409610ff9565b3480156105e057600080fd5b506103d2610fff565b3480156105f557600080fd5b506105fe611034565b60405161041691906136ea565b34801561061757600080fd5b506103d261062636600461325d565b611044565b34801561063757600080fd5b506103d26110a5565b34801561064c57600080fd5b5061040961112e565b34801561066157600080fd5b506103d261067036600461325d565b61114e565b34801561068157600080fd5b506104096111bd565b34801561069657600080fd5b506104096111c3565b3480156106ab57600080fd5b506103d26111c8565b3480156106c057600080fd5b506105fe611225565b3480156106d557600080fd5b5061040961122e565b3480156106ea57600080fd5b50610434611234565b3480156106ff57600080fd5b50610434611243565b34801561071457600080fd5b50610409611252565b34801561072957600080fd5b506104346107383660046134be565b611258565b34801561074957600080fd5b50610409611296565b34801561075e57600080fd5b506103d26115c8565b34801561077357600080fd5b506103d261078236600461325d565b611697565b34801561079357600080fd5b506103d26107a236600461348e565b6116f8565b3480156107b357600080fd5b5061043461176b565b3480156107c857600080fd5b5061043461177a565b3480156107dd57600080fd5b50610409611789565b3480156107f257600080fd5b5061043461080136600461348e565b61178f565b34801561081257600080fd5b5061040961179c565b34801561082757600080fd5b506103d261083636600461325d565b61181d565b34801561084757600080fd5b506103d2610856366004613279565b611869565b34801561086757600080fd5b506103d2611951565b34801561087c57600080fd5b50610409611aa5565b34801561089157600080fd5b506103d2611aab565b3480156108a657600080fd5b506103d26108b536600461325d565b611af8565b3480156108c657600080fd5b50610409611b59565b3480156108db57600080fd5b506108e4611b5e565b604051610416929190613637565b3480156108fe57600080fd5b50610434611bfe565b34801561091357600080fd5b50610456611c0d565b34801561092857600080fd5b50610409611c6d565b34801561093d57600080fd5b50610434611c73565b34801561095257600080fd5b506103d261096136600461325d565b611c82565b34801561097257600080fd5b5061097b611d42565b6040516104169190613665565b34801561099457600080fd5b506103d2611de5565b3480156109a957600080fd5b50610434611f7f565b6109bb816120a6565b50565b6109c6611234565b6001600160a01b0316336001600160a01b031614806109ef57506001546001600160a01b031633145b610a145760405162461bcd60e51b8152600401610a0b906139c1565b60405180910390fd5b6014805460ff1916821515179081905560ff1615610a3b57610a3660006116f8565b6109bb565b6109bb600a6116f8565b600e54600f546040516393f1a40b60e01b815260009283926001600160a01b03909116916393f1a40b91610a7d913090600401613a8c565b60806040518083038186803b158015610a9557600080fd5b505afa158015610aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd91906134df565b5091935050505090565b6009546001600160a01b031681565b60606016805480602002602001604051908101604052809291908181526020018280548015610b3e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610b20575b5050505050905090565b60178181548110610b5557fe5b6000918252602090912001546001600160a01b0316905081565b600b546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610bb3611234565b6001600160a01b0316336001600160a01b03161480610bdc57506001546001600160a01b031633145b610bf85760405162461bcd60e51b8152600401610a0b906139c1565b606f811115610c195760405162461bcd60e51b8152600401610a0b906138d6565b600781905561037803600855565b606f81565b6004546001600160a01b03163314610c565760405162461bcd60e51b8152600401610a0b90613935565b600b546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610c879030906004016135dd565b60206040518083038186803b158015610c9f57600080fd5b505afa158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906134a6565b905081811015610dd557600e54600f546001600160a01b039091169063441a3e7090610d038585612206565b6040518363ffffffff1660e01b8152600401610d20929190613abc565b600060405180830381600087803b158015610d3a57600080fd5b505af1158015610d4e573d6000803e3d6000fd5b5050600b546040516370a0823160e01b81526001600160a01b0390911692506370a082319150610d829030906004016135dd565b60206040518083038186803b158015610d9a57600080fd5b505afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd291906134a6565b90505b81811115610de05750805b610de8611234565b6001600160a01b0316326001600160a01b031614158015610e0e5750610e0c611034565b155b15610e46576000610e36612710610e306006548561223390919063ffffffff16565b9061226d565b9050610e428282612206565b9150505b600454600b54610e63916001600160a01b0391821691168361229f565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610e8c61112e565b604051610e999190613a83565b60405180910390a15050565b600f5481565b610eb3611234565b6001600160a01b0316336001600160a01b03161480610edc57506001546001600160a01b031633145b610ef85760405162461bcd60e51b8152600401610a0b906139c1565b610f006122be565b610f0861232f565b610f10611951565b565b610f10326120a6565b610f23611234565b6001600160a01b0316336001600160a01b03161480610f4c57506001546001600160a01b031633145b610f685760405162461bcd60e51b8152600401610a0b906139c1565b610f706111c8565b600e54600f54604051632989754760e11b81526001600160a01b0390921691635312ea8e91610fa191600401613a83565b600060405180830381600087803b158015610fbb57600080fd5b505af1158015610fcf573d6000803e3d6000fd5b50505050565b6010546001600160a01b031681565b600d546001600160a01b031681565b60135481565b61271081565b60145460ff1615610f10576004546001600160a01b03163314610f125760405162461bcd60e51b8152600401610a0b90613935565b600054600160a01b900460ff1690565b61104c61243f565b6001600160a01b031661105d611234565b6001600160a01b0316146110835760405162461bcd60e51b8152600401610a0b90613955565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6110ad61243f565b6001600160a01b03166110be611234565b6001600160a01b0316146110e45760405162461bcd60e51b8152600401610a0b90613955565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061114961113b610a45565b61114361179c565b90612443565b905090565b611156611234565b6001600160a01b0316336001600160a01b0316148061117f57506001546001600160a01b031633145b61119b5760405162461bcd60e51b8152600401610a0b906139c1565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60125481565b607081565b6111d0611234565b6001600160a01b0316336001600160a01b031614806111f957506001546001600160a01b031633145b6112155760405162461bcd60e51b8152600401610a0b906139c1565b61121d612468565b610f106124c9565b60145460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6018828154811061126557fe5b90600052602060002001818154811061127a57fe5b6000918252602090912001546001600160a01b03169150829050565b60006060806112a3611b5e565b915091506000600360009054906101000a90046001600160a01b03166001600160a01b031663d06ca61f836000815181106112da57fe5b602002602001015160166040518363ffffffff1660e01b8152600401611301929190613aa3565b60006040518083038186803b15801561131957600080fd5b505afa92505050801561134e57506040513d6000823e601f3d908101601f1916820160405261134b919081019061341b565b60015b61135757611373565b8060018251038151811061136757fe5b60200260200101519150505b601854156115945760005b6018548110156115925760015b845181101561158957601882815481106113a157fe5b906000526020600020016000815481106113b757fe5b60009182526020909120015485516001600160a01b03909116908690839081106113dd57fe5b60200260200101516001600160a01b031614156115815760035484516001600160a01b039091169063d06ca61f9086908490811061141757fe5b60200260200101516018858154811061142c57fe5b906000526020600020016040518363ffffffff1660e01b8152600401611453929190613aa3565b60006040518083038186803b15801561146b57600080fd5b505afa9250505080156114a057506040513d6000823e601f3d908101601f1916820160405261149d919081019061341b565b60015b6114a957611581565b6000816001835103815181106114bb57fe5b602090810291909101015160035460405163d06ca61f60e01b81529192506001600160a01b03169063d06ca61f906114fa908490601690600401613aa3565b60006040518083038186803b15801561151257600080fd5b505afa92505050801561154757506040513d6000823e601f3d908101601f19168201604052611544919081019061341b565b60015b6115505761157e565b61157a8160018351038151811061156357fe5b60200260200101518761244390919063ffffffff16565b9550505b50505b60010161138b565b5060010161137e565b505b6115c06103e8610e306007546115ba6103e8610e30602d8861223390919063ffffffff16565b90612233565b935050505090565b6115d0611234565b6001600160a01b0316336001600160a01b031614806115f957506001546001600160a01b031633145b6116155760405162461bcd60e51b8152600401610a0b906139c1565b6018805460009190600019810190811061162b57fe5b9060005260206000200160008154811061164157fe5b60009182526020822001546003546001600160a01b03918216935061166b92849290911690611f8e565b601880548061167657fe5b60019003818190600052602060002001600061169291906130c5565b905550565b61169f61243f565b6001600160a01b03166116b0611234565b6001600160a01b0316146116d65760405162461bcd60e51b8152600401610a0b90613955565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b611700611234565b6001600160a01b0316336001600160a01b0316148061172957506001546001600160a01b031633145b6117455760405162461bcd60e51b8152600401610a0b906139c1565b60328111156117665760405162461bcd60e51b8152600401610a0b906138d6565b600655565b6001546001600160a01b031681565b6011546001600160a01b031681565b6103e881565b60168181548110610b5557fe5b600b546040516370a0823160e01b81526000916001600160a01b0316906370a08231906117cd9030906004016135dd565b60206040518083038186803b1580156117e557600080fd5b505afa1580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114991906134a6565b6002546001600160a01b031633146118475760405162461bcd60e51b8152600401610a0b90613756565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61187161243f565b6001600160a01b0316611882611234565b6001600160a01b0316146118a85760405162461bcd60e51b8152600401610a0b90613955565b60035481516118e8916001600160a01b031690600090849082906118c857fe5b60200260200101516001600160a01b0316611f8e9092919063ffffffff16565b600354815161190a916001600160a01b0316906000199084906000906118c857fe5b60188054600181018255600091909152815161194d917fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e019060208401906130e3565b5050565b611959611034565b156119765760405162461bcd60e51b8152600401610a0b906138ac565b600b546040516370a0823160e01b81526000916001600160a01b0316906370a08231906119a79030906004016135dd565b60206040518083038186803b1580156119bf57600080fd5b505afa1580156119d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f791906134a6565b905080156109bb57600e54600f54604051631c57762b60e31b81526001600160a01b039092169163e2bbb15891611a32918590600401613abc565b600060405180830381600087803b158015611a4c57600080fd5b505af1158015611a60573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611a8d61112e565b604051611a9a9190613a83565b60405180910390a150565b60085481565b611ab3611234565b6001600160a01b0316336001600160a01b03161480611adc57506001546001600160a01b031633145b610f125760405162461bcd60e51b8152600401610a0b906139c1565b611b0061243f565b6001600160a01b0316611b11611234565b6001600160a01b031614611b375760405162461bcd60e51b8152600401610a0b90613955565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b600e54600f5460405160016232bd9d60e01b031981526060928392839283926001600160a01b03169163ffcd426391611b9c91903090600401613a8c565b60006040518083038186803b158015611bb457600080fd5b505afa158015611bc8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bf09190810190613311565b929650919450505050509091565b600c546001600160a01b031681565b60606017805480602002602001604051908101604052809291908181526020018280548015610b3e576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610b20575050505050905090565b60155481565b600a546001600160a01b031681565b611c8a61243f565b6001600160a01b0316611c9b611234565b6001600160a01b031614611cc15760405162461bcd60e51b8152600401610a0b90613955565b6001600160a01b038116611ce75760405162461bcd60e51b8152600401610a0b9061377b565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60606018805480602002602001604051908101604052809291908181526020016000905b82821015611ddc57600084815260209081902083018054604080518285028101850190915281815292830182828015611dc857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611daa575b505050505081526020019060010190611d66565b50505050905090565b6004546001600160a01b03163314611e0f5760405162461bcd60e51b8152600401610a0b90613935565b600e54600f54604051632989754760e11b81526001600160a01b0390921691635312ea8e91611e4091600401613a83565b600060405180830381600087803b158015611e5a57600080fd5b505af1158015611e6e573d6000803e3d6000fd5b5050600b546040516370a0823160e01b8152600093506001600160a01b0390911691506370a0823190611ea59030906004016135dd565b60206040518083038186803b158015611ebd57600080fd5b505afa158015611ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef591906134a6565b600b546004805460405163a9059cbb60e01b81529394506001600160a01b039283169363a9059cbb93611f2d9392169186910161360b565b602060405180830381600087803b158015611f4757600080fd5b505af1158015611f5b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194d9190613472565b6004546001600160a01b031681565b8015806120165750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e90611fc490309086906004016135f1565b60206040518083038186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201491906134a6565b155b6120325760405162461bcd60e51b8152600401610a0b90613a2d565b6120888363095ea7b360e01b848460405160240161205192919061360b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612580565b505050565b606061209c848460008561260f565b90505b9392505050565b600e54600f54604051631c57762b60e31b81526001600160a01b039092169163e2bbb158916120da91600090600401613abc565b600060405180830381600087803b1580156120f457600080fd5b505af1158015612108573d6000803e3d6000fd5b5050600a546040516370a0823160e01b8152600093506001600160a01b0390911691506370a082319061213f9030906004016135dd565b60206040518083038186803b15801561215757600080fd5b505afa15801561216b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218f91906134a6565b9050801561194d576121a0826126d0565b6121a8612ba3565b60006121b261179c565b90506121bc611951565b42601555337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826121eb61112e565b6040516121f9929190613abc565b60405180910390a2505050565b6000828211156122285760405162461bcd60e51b8152600401610a0b906137f8565b508082035b92915050565b6000826122425750600061222d565b8282028284828161224f57fe5b041461209f5760405162461bcd60e51b8152600401610a0b906138f4565b600080821161228e5760405162461bcd60e51b8152600401610a0b90613875565b81838161229757fe5b049392505050565b6120888363a9059cbb60e01b848460405160240161205192919061360b565b6122c6611034565b6122e25760405162461bcd60e51b8152600401610a0b90613728565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61231861243f565b60405161232591906135dd565b60405180910390a1565b600e54600b5461234e916001600160a01b039182169116600019611f8e565b600354600a5461236d916001600160a01b039182169116600019611f8e565b601154600c5461238c916001600160a01b039182169116600019611f8e565b601054600d546123ab916001600160a01b039182169116600019611f8e565b60185415610f105760005b6018548110156109bb5760035460188054612414926001600160a01b031691600091859081106123e257fe5b906000526020600020016000815481106123f857fe5b6000918252602090912001546001600160a01b03169190611f8e565b60035460188054612437926001600160a01b03169160001991859081106123e257fe5b6001016123b6565b3390565b60008282018381101561209f5760405162461bcd60e51b8152600401610a0b906137c1565b612470611034565b1561248d5760405162461bcd60e51b8152600401610a0b906138ac565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861231861243f565b600e54600b546124e7916001600160a01b0391821691166000611f8e565b600354600a54612505916001600160a01b0391821691166000611f8e565b601154600c54612523916001600160a01b0391821691166000611f8e565b601054600d54612541916001600160a01b0391821691166000611f8e565b60185415610f105760005b6018548110156109bb5760035460188054612578926001600160a01b031691600091859081106123e257fe5b60010161254c565b60606125d5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661208d9092919063ffffffff16565b80519091501561208857808060200190518101906125f39190613472565b6120885760405162461bcd60e51b8152600401610a0b906139e3565b6060824710156126315760405162461bcd60e51b8152600401610a0b9061382f565b61263a85613086565b6126565760405162461bcd60e51b8152600401610a0b9061398a565b60006060866001600160a01b0316858760405161267391906135c1565b60006040518083038185875af1925050503d80600081146126b0576040519150601f19603f3d011682016040523d82523d6000602084013e6126b5565b606091505b50915091506126c582828661308c565b979650505050505050565b601854156129145760005b60185481101561291257600954601880546001600160a01b03909216918390811061270257fe5b9060005260206000200160008154811061271857fe5b6000918252602090912001546001600160a01b031614156127a6574780156127a457600960009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561278a57600080fd5b505af115801561279e573d6000803e3d6000fd5b50505050505b505b6000601882815481106127b557fe5b906000526020600020016000815481106127cb57fe5b6000918252602090912001546040516370a0823160e01b81526001600160a01b03909116906370a08231906128049030906004016135dd565b60206040518083038186803b15801561281c57600080fd5b505afa158015612830573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285491906134a6565b9050801561290957600354601880546001600160a01b03909216916338ed1739918491600091908790811061288557fe5b9060005260206000200130426040518663ffffffff1660e01b81526004016128b1959493929190613aca565b600060405180830381600087803b1580156128cb57600080fd5b505af11580156128df573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612907919081019061341b565b505b506001016126db565b505b600a546040516370a0823160e01b81526000916129a4916103e891610e3091602d916001600160a01b0316906370a08231906129549030906004016135dd565b60206040518083038186803b15801561296c57600080fd5b505afa158015612980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ba91906134a6565b6003546040516338ed173960e01b81529192506001600160a01b0316906338ed1739906129df90849060009060169030904290600401613aca565b600060405180830381600087803b1580156129f957600080fd5b505af1158015612a0d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a35919081019061341b565b506009546040516370a0823160e01b81526000916001600160a01b0316906370a0823190612a679030906004016135dd565b60206040518083038186803b158015612a7f57600080fd5b505afa158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab791906134a6565b90506000612ad66103e8610e306007548561223390919063ffffffff16565b600954909150612af0906001600160a01b0316858361229f565b6000612b0d6103e8610e306008548661223390919063ffffffff16565b600554600954919250612b2d916001600160a01b0390811691168361229f565b6000612b406103e8610e30866070612233565b600254600954919250612b60916001600160a01b0390811691168361229f565b7fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a838383604051612b9393929190613b06565b60405180910390a1505050505050565b600a546040516370a0823160e01b81526000916001600160a01b0316906370a0823190612bd49030906004016135dd565b60206040518083038186803b158015612bec57600080fd5b505afa158015612c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2491906134a6565b6003546040516338ed173960e01b81529192506001600160a01b0316906338ed173990612c5f90849060009060179030904290600401613aca565b600060405180830381600087803b158015612c7957600080fd5b505af1158015612c8d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612cb5919081019061341b565b506011546040805163efeecb5160e01b815290516000926001600160a01b03169163efeecb51916004808301926020929190829003018186803b158015612cfb57600080fd5b505afa158015612d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d3391906134a6565b905060608167ffffffffffffffff81118015612d4e57600080fd5b50604051908082528060200260200182016040528015612d78578160200160208202803683370190505b50600c546040516370a0823160e01b81529192506001600160a01b0316906370a0823190612daa9030906004016135dd565b60206040518083038186803b158015612dc257600080fd5b505afa158015612dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dfa91906134a6565b8160135481518110612e0857fe5b6020908102919091010152601154604051634d49e87d60e01b81526001600160a01b0390911690634d49e87d90612e4890849060019042906004016136c5565b602060405180830381600087803b158015612e6257600080fd5b505af1158015612e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9a91906134a6565b50601060009054906101000a90046001600160a01b03166001600160a01b031663efeecb516040518163ffffffff1660e01b815260040160206040518083038186803b158015612ee957600080fd5b505afa158015612efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f2191906134a6565b91508167ffffffffffffffff81118015612f3a57600080fd5b50604051908082528060200260200182016040528015612f64578160200160208202803683370190505b50600d546040516370a0823160e01b81529192506001600160a01b0316906370a0823190612f969030906004016135dd565b60206040518083038186803b158015612fae57600080fd5b505afa158015612fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fe691906134a6565b8160125481518110612ff457fe5b6020908102919091010152601054604051634d49e87d60e01b81526001600160a01b0390911690634d49e87d9061303490849060019042906004016136c5565b602060405180830381600087803b15801561304e57600080fd5b505af1158015613062573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcf91906134a6565b3b151590565b6060831561309b57508161209f565b8251156130ab5782518084602001fd5b8160405162461bcd60e51b8152600401610a0b91906136f5565b50805460008255906000526020600020908101906109bb9190613148565b828054828255906000526020600020908101928215613138579160200282015b8281111561313857825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613103565b5061314492915061315d565b5090565b5b808211156131445760008155600101613149565b5b808211156131445780546001600160a01b031916815560010161315e565b803561222d81613b8f565b600082601f830112613197578081fd5b81516131aa6131a582613b43565b613b1c565b8181529150602080830190848101818402860182018710156131cb57600080fd5b60005b848110156131ea578151845292820192908201906001016131ce565b505050505092915050565b600082601f830112613205578081fd5b815167ffffffffffffffff81111561321b578182fd5b61322e601f8201601f1916602001613b1c565b915080825283602082850101111561324557600080fd5b613256816020840160208601613b63565b5092915050565b60006020828403121561326e578081fd5b813561209f81613b8f565b6000602080838503121561328b578182fd5b823567ffffffffffffffff8111156132a1578283fd5b8301601f810185136132b1578283fd5b80356132bf6131a582613b43565b81815283810190838501858402850186018910156132db578687fd5b8694505b83851015613305576132f1898261317c565b8352600194909401939185019185016132df565b50979650505050505050565b60008060008060808587031215613326578283fd5b845167ffffffffffffffff8082111561333d578485fd5b818701915087601f830112613350578485fd5b815161335e6131a582613b43565b80828252602080830192508086018c82838702890101111561337e57898afd5b8996505b848710156133a957805161339581613b8f565b845260019690960195928101928101613382565b508a015190985093505050808211156133c0578485fd5b6133cc888389016131f5565b945060408701519150808211156133e1578384fd5b6133ed88838901613187565b93506060870151915080821115613402578283fd5b5061340f87828801613187565b91505092959194509250565b60006020828403121561342c578081fd5b815167ffffffffffffffff811115613442578182fd5b61344e84828501613187565b949350505050565b600060208284031215613467578081fd5b813561209f81613ba4565b600060208284031215613483578081fd5b815161209f81613ba4565b60006020828403121561349f578081fd5b5035919050565b6000602082840312156134b7578081fd5b5051919050565b600080604083850312156134d0578182fd5b50508035926020909101359150565b600080600080608085870312156134f4578384fd5b505082516020840151604085015160609095015191969095509092509050565b6000815180845260208085019450808401835b8381101561354c5781516001600160a01b031687529582019590820190600101613527565b509495945050505050565b6000815480845260208085019450838352808320835b8381101561354c5781546001600160a01b03168752958201956001918201910161356d565b6000815180845260208085019450808401835b8381101561354c578151875295820195908201906001016135a5565b600082516135d3818460208701613b63565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b60006020825261209f6020830184613514565b60006040825261364a6040830185613514565b828103602084015261365c8185613592565b95945050505050565b6000602080830181845280855180835260408601915060408482028701019250838701855b828110156136b857603f198886030184526136a6858351613514565b9450928501929085019060010161368a565b5092979650505050505050565b6000606082526136d86060830186613592565b60208301949094525060400152919050565b901515815260200190565b6000602082528251806020840152613714816040850160208701613b63565b601f01601f19169190910160400192915050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600b908201526a085cdd1c985d1959da5cdd60aa1b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252600490820152630216361760e41b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526008908201526710b6b0b730b3b2b960c11b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606082015260800190565b90815260200190565b9182526001600160a01b0316602082015260400190565b60008382526040602083015261209c6040830184613557565b918252602082015260400190565b600086825285602083015260a06040830152613ae960a0830186613557565b6001600160a01b0394909416606083015250608001529392505050565b9283526020830191909152604082015260600190565b60405181810167ffffffffffffffff81118282101715613b3b57600080fd5b604052919050565b600067ffffffffffffffff821115613b59578081fd5b5060209081020190565b60005b83811015613b7e578181015183820152602001613b66565b83811115610fcf5750506000910152565b6001600160a01b03811681146109bb57600080fd5b80151581146109bb57600080fdfea2646970667358221220a12bc5a0b5052026a9a47a8d3d7abedd11ba929f5ee79be776ac99157b54bb1064736f6c634300060c0033000000000000000000000000a0aa99f71033378864ed6e499eb03612264e319a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000f3a5454496e26ac57da879bf3285fa85debf038800000000000000000000000086d49190a41167804f41e5f4c8db6fd937e43277000000000000000000000000d0a01ec574d1fc6652edf79cb2f880fd47d34ab10000000000000000000000007fbe3126c03444d43fc403626ec81e3e809e6b46000000000000000000000000340465d9d2ebde78f15a3870884757584f97abb4000000000000000000000000c75e1b127e288f1a33606a52ab5c91bbe64eaafe000000000000000000000000adb9ddfa24e326dc9d337561f6c7ba2a6ecec697000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000e358838ce72d5e61e0018a2ffac4bec5f4c88d2000000000000000000000000acc15dc74880c9944775448304b263d191c6077f00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000e358838ce72d5e61e0018a2ffac4bec5f4c88d2000000000000000000000000acc15dc74880c9944775448304b263d191c6077f0000000000000000000000008f552a71efe5eefc207bf75485b356a0b3f01ec9
Deployed Bytecode
0x6080604052600436106103a65760003560e01c80638912cb8b116101e7578063c7b9d5301161010d578063eaed3f4f116100a0578063f2fde38b1161006f578063f2fde38b14610946578063fa5c9edd14610966578063fb61778714610988578063fbfa77cf1461099d576103ad565b8063eaed3f4f146108f2578063eb1319b114610907578063f1a392da1461091c578063f20eaeb814610931576103ad565b8063d801d946116100dc578063d801d94614610885578063d92f3d731461089a578063dfbdc437146108ba578063e7a7250a146108cf576103ad565b8063c7b9d5301461081b578063cc2894801461083b578063d0e30db01461085b578063d310258914610870576103ad565b8063a39219f911610185578063b86ced7011610154578063b86ced70146107bc578063bc063e1a146107d1578063be12a978146107e6578063c1a3d44c14610806576103ad565b8063a39219f914610752578063a68833e514610767578063ac1e502514610787578063aced1661146107a7576103ad565b80638e145459116101c15780638e145459146106f357806390321e1a1461070857806396813fca1461071d57806397fd323d1461073d576103ad565b80638912cb8b146106b45780638bc7e8c4146106c95780638da5cb5b146106de576103ad565b80634641257d116102cc5780635c975abb1161026a578063748747e611610239578063748747e6146106555780637b898939146106755780637d38ca651461068a5780638456cb591461069f576103ad565b80635c975abb146105e95780636817031b1461060b578063715018a61461062b578063722713f714610640576103ad565b80635001f3b5116102a65780635001f3b5146105955780635035d47c146105aa57806354518b1a146105bf578063573fef0a146105d4576103ad565b80634641257d146105565780634700d3051461056b5780634c3677c814610580576103ad565b80631fc8bc5d116103445780632ad5a53f116103135780632ad5a53f146104f75780632e1a7d4d1461050c5780633e0dc34e1461052c5780633f4ba83a14610541576103ad565b80631fc8bc5d146104985780631fe4a686146104ad578063257ae0de146104c257806326465826146104d7576103ad565b806311b0b42d1161038057806311b0b42d1461041f57806313e120b1146104415780631bf50af2146104635780631f1fcd5114610483576103ad565b80630e5c011e146103b25780630e8fbb5a146103d457806311588086146103f4576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103d26103cd36600461325d565b6109b2565b005b3480156103e057600080fd5b506103d26103ef366004613456565b6109be565b34801561040057600080fd5b50610409610a45565b6040516104169190613a83565b60405180910390f35b34801561042b57600080fd5b50610434610ad7565b60405161041691906135dd565b34801561044d57600080fd5b50610456610ae6565b6040516104169190613624565b34801561046f57600080fd5b5061043461047e36600461348e565b610b48565b34801561048f57600080fd5b50610434610b6f565b3480156104a457600080fd5b50610434610b7e565b3480156104b957600080fd5b50610434610b8d565b3480156104ce57600080fd5b50610434610b9c565b3480156104e357600080fd5b506103d26104f236600461348e565b610bab565b34801561050357600080fd5b50610409610c27565b34801561051857600080fd5b506103d261052736600461348e565b610c2c565b34801561053857600080fd5b50610409610ea5565b34801561054d57600080fd5b506103d2610eab565b34801561056257600080fd5b506103d2610f12565b34801561057757600080fd5b506103d2610f1b565b34801561058c57600080fd5b50610434610fd5565b3480156105a157600080fd5b50610434610fe4565b3480156105b657600080fd5b50610409610ff3565b3480156105cb57600080fd5b50610409610ff9565b3480156105e057600080fd5b506103d2610fff565b3480156105f557600080fd5b506105fe611034565b60405161041691906136ea565b34801561061757600080fd5b506103d261062636600461325d565b611044565b34801561063757600080fd5b506103d26110a5565b34801561064c57600080fd5b5061040961112e565b34801561066157600080fd5b506103d261067036600461325d565b61114e565b34801561068157600080fd5b506104096111bd565b34801561069657600080fd5b506104096111c3565b3480156106ab57600080fd5b506103d26111c8565b3480156106c057600080fd5b506105fe611225565b3480156106d557600080fd5b5061040961122e565b3480156106ea57600080fd5b50610434611234565b3480156106ff57600080fd5b50610434611243565b34801561071457600080fd5b50610409611252565b34801561072957600080fd5b506104346107383660046134be565b611258565b34801561074957600080fd5b50610409611296565b34801561075e57600080fd5b506103d26115c8565b34801561077357600080fd5b506103d261078236600461325d565b611697565b34801561079357600080fd5b506103d26107a236600461348e565b6116f8565b3480156107b357600080fd5b5061043461176b565b3480156107c857600080fd5b5061043461177a565b3480156107dd57600080fd5b50610409611789565b3480156107f257600080fd5b5061043461080136600461348e565b61178f565b34801561081257600080fd5b5061040961179c565b34801561082757600080fd5b506103d261083636600461325d565b61181d565b34801561084757600080fd5b506103d2610856366004613279565b611869565b34801561086757600080fd5b506103d2611951565b34801561087c57600080fd5b50610409611aa5565b34801561089157600080fd5b506103d2611aab565b3480156108a657600080fd5b506103d26108b536600461325d565b611af8565b3480156108c657600080fd5b50610409611b59565b3480156108db57600080fd5b506108e4611b5e565b604051610416929190613637565b3480156108fe57600080fd5b50610434611bfe565b34801561091357600080fd5b50610456611c0d565b34801561092857600080fd5b50610409611c6d565b34801561093d57600080fd5b50610434611c73565b34801561095257600080fd5b506103d261096136600461325d565b611c82565b34801561097257600080fd5b5061097b611d42565b6040516104169190613665565b34801561099457600080fd5b506103d2611de5565b3480156109a957600080fd5b50610434611f7f565b6109bb816120a6565b50565b6109c6611234565b6001600160a01b0316336001600160a01b031614806109ef57506001546001600160a01b031633145b610a145760405162461bcd60e51b8152600401610a0b906139c1565b60405180910390fd5b6014805460ff1916821515179081905560ff1615610a3b57610a3660006116f8565b6109bb565b6109bb600a6116f8565b600e54600f546040516393f1a40b60e01b815260009283926001600160a01b03909116916393f1a40b91610a7d913090600401613a8c565b60806040518083038186803b158015610a9557600080fd5b505afa158015610aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd91906134df565b5091935050505090565b6009546001600160a01b031681565b60606016805480602002602001604051908101604052809291908181526020018280548015610b3e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610b20575b5050505050905090565b60178181548110610b5557fe5b6000918252602090912001546001600160a01b0316905081565b600b546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610bb3611234565b6001600160a01b0316336001600160a01b03161480610bdc57506001546001600160a01b031633145b610bf85760405162461bcd60e51b8152600401610a0b906139c1565b606f811115610c195760405162461bcd60e51b8152600401610a0b906138d6565b600781905561037803600855565b606f81565b6004546001600160a01b03163314610c565760405162461bcd60e51b8152600401610a0b90613935565b600b546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610c879030906004016135dd565b60206040518083038186803b158015610c9f57600080fd5b505afa158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906134a6565b905081811015610dd557600e54600f546001600160a01b039091169063441a3e7090610d038585612206565b6040518363ffffffff1660e01b8152600401610d20929190613abc565b600060405180830381600087803b158015610d3a57600080fd5b505af1158015610d4e573d6000803e3d6000fd5b5050600b546040516370a0823160e01b81526001600160a01b0390911692506370a082319150610d829030906004016135dd565b60206040518083038186803b158015610d9a57600080fd5b505afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd291906134a6565b90505b81811115610de05750805b610de8611234565b6001600160a01b0316326001600160a01b031614158015610e0e5750610e0c611034565b155b15610e46576000610e36612710610e306006548561223390919063ffffffff16565b9061226d565b9050610e428282612206565b9150505b600454600b54610e63916001600160a01b0391821691168361229f565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610e8c61112e565b604051610e999190613a83565b60405180910390a15050565b600f5481565b610eb3611234565b6001600160a01b0316336001600160a01b03161480610edc57506001546001600160a01b031633145b610ef85760405162461bcd60e51b8152600401610a0b906139c1565b610f006122be565b610f0861232f565b610f10611951565b565b610f10326120a6565b610f23611234565b6001600160a01b0316336001600160a01b03161480610f4c57506001546001600160a01b031633145b610f685760405162461bcd60e51b8152600401610a0b906139c1565b610f706111c8565b600e54600f54604051632989754760e11b81526001600160a01b0390921691635312ea8e91610fa191600401613a83565b600060405180830381600087803b158015610fbb57600080fd5b505af1158015610fcf573d6000803e3d6000fd5b50505050565b6010546001600160a01b031681565b600d546001600160a01b031681565b60135481565b61271081565b60145460ff1615610f10576004546001600160a01b03163314610f125760405162461bcd60e51b8152600401610a0b90613935565b600054600160a01b900460ff1690565b61104c61243f565b6001600160a01b031661105d611234565b6001600160a01b0316146110835760405162461bcd60e51b8152600401610a0b90613955565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6110ad61243f565b6001600160a01b03166110be611234565b6001600160a01b0316146110e45760405162461bcd60e51b8152600401610a0b90613955565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061114961113b610a45565b61114361179c565b90612443565b905090565b611156611234565b6001600160a01b0316336001600160a01b0316148061117f57506001546001600160a01b031633145b61119b5760405162461bcd60e51b8152600401610a0b906139c1565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60125481565b607081565b6111d0611234565b6001600160a01b0316336001600160a01b031614806111f957506001546001600160a01b031633145b6112155760405162461bcd60e51b8152600401610a0b906139c1565b61121d612468565b610f106124c9565b60145460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6018828154811061126557fe5b90600052602060002001818154811061127a57fe5b6000918252602090912001546001600160a01b03169150829050565b60006060806112a3611b5e565b915091506000600360009054906101000a90046001600160a01b03166001600160a01b031663d06ca61f836000815181106112da57fe5b602002602001015160166040518363ffffffff1660e01b8152600401611301929190613aa3565b60006040518083038186803b15801561131957600080fd5b505afa92505050801561134e57506040513d6000823e601f3d908101601f1916820160405261134b919081019061341b565b60015b61135757611373565b8060018251038151811061136757fe5b60200260200101519150505b601854156115945760005b6018548110156115925760015b845181101561158957601882815481106113a157fe5b906000526020600020016000815481106113b757fe5b60009182526020909120015485516001600160a01b03909116908690839081106113dd57fe5b60200260200101516001600160a01b031614156115815760035484516001600160a01b039091169063d06ca61f9086908490811061141757fe5b60200260200101516018858154811061142c57fe5b906000526020600020016040518363ffffffff1660e01b8152600401611453929190613aa3565b60006040518083038186803b15801561146b57600080fd5b505afa9250505080156114a057506040513d6000823e601f3d908101601f1916820160405261149d919081019061341b565b60015b6114a957611581565b6000816001835103815181106114bb57fe5b602090810291909101015160035460405163d06ca61f60e01b81529192506001600160a01b03169063d06ca61f906114fa908490601690600401613aa3565b60006040518083038186803b15801561151257600080fd5b505afa92505050801561154757506040513d6000823e601f3d908101601f19168201604052611544919081019061341b565b60015b6115505761157e565b61157a8160018351038151811061156357fe5b60200260200101518761244390919063ffffffff16565b9550505b50505b60010161138b565b5060010161137e565b505b6115c06103e8610e306007546115ba6103e8610e30602d8861223390919063ffffffff16565b90612233565b935050505090565b6115d0611234565b6001600160a01b0316336001600160a01b031614806115f957506001546001600160a01b031633145b6116155760405162461bcd60e51b8152600401610a0b906139c1565b6018805460009190600019810190811061162b57fe5b9060005260206000200160008154811061164157fe5b60009182526020822001546003546001600160a01b03918216935061166b92849290911690611f8e565b601880548061167657fe5b60019003818190600052602060002001600061169291906130c5565b905550565b61169f61243f565b6001600160a01b03166116b0611234565b6001600160a01b0316146116d65760405162461bcd60e51b8152600401610a0b90613955565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b611700611234565b6001600160a01b0316336001600160a01b0316148061172957506001546001600160a01b031633145b6117455760405162461bcd60e51b8152600401610a0b906139c1565b60328111156117665760405162461bcd60e51b8152600401610a0b906138d6565b600655565b6001546001600160a01b031681565b6011546001600160a01b031681565b6103e881565b60168181548110610b5557fe5b600b546040516370a0823160e01b81526000916001600160a01b0316906370a08231906117cd9030906004016135dd565b60206040518083038186803b1580156117e557600080fd5b505afa1580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114991906134a6565b6002546001600160a01b031633146118475760405162461bcd60e51b8152600401610a0b90613756565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61187161243f565b6001600160a01b0316611882611234565b6001600160a01b0316146118a85760405162461bcd60e51b8152600401610a0b90613955565b60035481516118e8916001600160a01b031690600090849082906118c857fe5b60200260200101516001600160a01b0316611f8e9092919063ffffffff16565b600354815161190a916001600160a01b0316906000199084906000906118c857fe5b60188054600181018255600091909152815161194d917fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e019060208401906130e3565b5050565b611959611034565b156119765760405162461bcd60e51b8152600401610a0b906138ac565b600b546040516370a0823160e01b81526000916001600160a01b0316906370a08231906119a79030906004016135dd565b60206040518083038186803b1580156119bf57600080fd5b505afa1580156119d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f791906134a6565b905080156109bb57600e54600f54604051631c57762b60e31b81526001600160a01b039092169163e2bbb15891611a32918590600401613abc565b600060405180830381600087803b158015611a4c57600080fd5b505af1158015611a60573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611a8d61112e565b604051611a9a9190613a83565b60405180910390a150565b60085481565b611ab3611234565b6001600160a01b0316336001600160a01b03161480611adc57506001546001600160a01b031633145b610f125760405162461bcd60e51b8152600401610a0b906139c1565b611b0061243f565b6001600160a01b0316611b11611234565b6001600160a01b031614611b375760405162461bcd60e51b8152600401610a0b90613955565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b600e54600f5460405160016232bd9d60e01b031981526060928392839283926001600160a01b03169163ffcd426391611b9c91903090600401613a8c565b60006040518083038186803b158015611bb457600080fd5b505afa158015611bc8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bf09190810190613311565b929650919450505050509091565b600c546001600160a01b031681565b60606017805480602002602001604051908101604052809291908181526020018280548015610b3e576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610b20575050505050905090565b60155481565b600a546001600160a01b031681565b611c8a61243f565b6001600160a01b0316611c9b611234565b6001600160a01b031614611cc15760405162461bcd60e51b8152600401610a0b90613955565b6001600160a01b038116611ce75760405162461bcd60e51b8152600401610a0b9061377b565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60606018805480602002602001604051908101604052809291908181526020016000905b82821015611ddc57600084815260209081902083018054604080518285028101850190915281815292830182828015611dc857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611daa575b505050505081526020019060010190611d66565b50505050905090565b6004546001600160a01b03163314611e0f5760405162461bcd60e51b8152600401610a0b90613935565b600e54600f54604051632989754760e11b81526001600160a01b0390921691635312ea8e91611e4091600401613a83565b600060405180830381600087803b158015611e5a57600080fd5b505af1158015611e6e573d6000803e3d6000fd5b5050600b546040516370a0823160e01b8152600093506001600160a01b0390911691506370a0823190611ea59030906004016135dd565b60206040518083038186803b158015611ebd57600080fd5b505afa158015611ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef591906134a6565b600b546004805460405163a9059cbb60e01b81529394506001600160a01b039283169363a9059cbb93611f2d9392169186910161360b565b602060405180830381600087803b158015611f4757600080fd5b505af1158015611f5b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194d9190613472565b6004546001600160a01b031681565b8015806120165750604051636eb1769f60e11b81526001600160a01b0384169063dd62ed3e90611fc490309086906004016135f1565b60206040518083038186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201491906134a6565b155b6120325760405162461bcd60e51b8152600401610a0b90613a2d565b6120888363095ea7b360e01b848460405160240161205192919061360b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612580565b505050565b606061209c848460008561260f565b90505b9392505050565b600e54600f54604051631c57762b60e31b81526001600160a01b039092169163e2bbb158916120da91600090600401613abc565b600060405180830381600087803b1580156120f457600080fd5b505af1158015612108573d6000803e3d6000fd5b5050600a546040516370a0823160e01b8152600093506001600160a01b0390911691506370a082319061213f9030906004016135dd565b60206040518083038186803b15801561215757600080fd5b505afa15801561216b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218f91906134a6565b9050801561194d576121a0826126d0565b6121a8612ba3565b60006121b261179c565b90506121bc611951565b42601555337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826121eb61112e565b6040516121f9929190613abc565b60405180910390a2505050565b6000828211156122285760405162461bcd60e51b8152600401610a0b906137f8565b508082035b92915050565b6000826122425750600061222d565b8282028284828161224f57fe5b041461209f5760405162461bcd60e51b8152600401610a0b906138f4565b600080821161228e5760405162461bcd60e51b8152600401610a0b90613875565b81838161229757fe5b049392505050565b6120888363a9059cbb60e01b848460405160240161205192919061360b565b6122c6611034565b6122e25760405162461bcd60e51b8152600401610a0b90613728565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61231861243f565b60405161232591906135dd565b60405180910390a1565b600e54600b5461234e916001600160a01b039182169116600019611f8e565b600354600a5461236d916001600160a01b039182169116600019611f8e565b601154600c5461238c916001600160a01b039182169116600019611f8e565b601054600d546123ab916001600160a01b039182169116600019611f8e565b60185415610f105760005b6018548110156109bb5760035460188054612414926001600160a01b031691600091859081106123e257fe5b906000526020600020016000815481106123f857fe5b6000918252602090912001546001600160a01b03169190611f8e565b60035460188054612437926001600160a01b03169160001991859081106123e257fe5b6001016123b6565b3390565b60008282018381101561209f5760405162461bcd60e51b8152600401610a0b906137c1565b612470611034565b1561248d5760405162461bcd60e51b8152600401610a0b906138ac565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861231861243f565b600e54600b546124e7916001600160a01b0391821691166000611f8e565b600354600a54612505916001600160a01b0391821691166000611f8e565b601154600c54612523916001600160a01b0391821691166000611f8e565b601054600d54612541916001600160a01b0391821691166000611f8e565b60185415610f105760005b6018548110156109bb5760035460188054612578926001600160a01b031691600091859081106123e257fe5b60010161254c565b60606125d5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661208d9092919063ffffffff16565b80519091501561208857808060200190518101906125f39190613472565b6120885760405162461bcd60e51b8152600401610a0b906139e3565b6060824710156126315760405162461bcd60e51b8152600401610a0b9061382f565b61263a85613086565b6126565760405162461bcd60e51b8152600401610a0b9061398a565b60006060866001600160a01b0316858760405161267391906135c1565b60006040518083038185875af1925050503d80600081146126b0576040519150601f19603f3d011682016040523d82523d6000602084013e6126b5565b606091505b50915091506126c582828661308c565b979650505050505050565b601854156129145760005b60185481101561291257600954601880546001600160a01b03909216918390811061270257fe5b9060005260206000200160008154811061271857fe5b6000918252602090912001546001600160a01b031614156127a6574780156127a457600960009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561278a57600080fd5b505af115801561279e573d6000803e3d6000fd5b50505050505b505b6000601882815481106127b557fe5b906000526020600020016000815481106127cb57fe5b6000918252602090912001546040516370a0823160e01b81526001600160a01b03909116906370a08231906128049030906004016135dd565b60206040518083038186803b15801561281c57600080fd5b505afa158015612830573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285491906134a6565b9050801561290957600354601880546001600160a01b03909216916338ed1739918491600091908790811061288557fe5b9060005260206000200130426040518663ffffffff1660e01b81526004016128b1959493929190613aca565b600060405180830381600087803b1580156128cb57600080fd5b505af11580156128df573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612907919081019061341b565b505b506001016126db565b505b600a546040516370a0823160e01b81526000916129a4916103e891610e3091602d916001600160a01b0316906370a08231906129549030906004016135dd565b60206040518083038186803b15801561296c57600080fd5b505afa158015612980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ba91906134a6565b6003546040516338ed173960e01b81529192506001600160a01b0316906338ed1739906129df90849060009060169030904290600401613aca565b600060405180830381600087803b1580156129f957600080fd5b505af1158015612a0d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a35919081019061341b565b506009546040516370a0823160e01b81526000916001600160a01b0316906370a0823190612a679030906004016135dd565b60206040518083038186803b158015612a7f57600080fd5b505afa158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab791906134a6565b90506000612ad66103e8610e306007548561223390919063ffffffff16565b600954909150612af0906001600160a01b0316858361229f565b6000612b0d6103e8610e306008548661223390919063ffffffff16565b600554600954919250612b2d916001600160a01b0390811691168361229f565b6000612b406103e8610e30866070612233565b600254600954919250612b60916001600160a01b0390811691168361229f565b7fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a838383604051612b9393929190613b06565b60405180910390a1505050505050565b600a546040516370a0823160e01b81526000916001600160a01b0316906370a0823190612bd49030906004016135dd565b60206040518083038186803b158015612bec57600080fd5b505afa158015612c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2491906134a6565b6003546040516338ed173960e01b81529192506001600160a01b0316906338ed173990612c5f90849060009060179030904290600401613aca565b600060405180830381600087803b158015612c7957600080fd5b505af1158015612c8d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612cb5919081019061341b565b506011546040805163efeecb5160e01b815290516000926001600160a01b03169163efeecb51916004808301926020929190829003018186803b158015612cfb57600080fd5b505afa158015612d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d3391906134a6565b905060608167ffffffffffffffff81118015612d4e57600080fd5b50604051908082528060200260200182016040528015612d78578160200160208202803683370190505b50600c546040516370a0823160e01b81529192506001600160a01b0316906370a0823190612daa9030906004016135dd565b60206040518083038186803b158015612dc257600080fd5b505afa158015612dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dfa91906134a6565b8160135481518110612e0857fe5b6020908102919091010152601154604051634d49e87d60e01b81526001600160a01b0390911690634d49e87d90612e4890849060019042906004016136c5565b602060405180830381600087803b158015612e6257600080fd5b505af1158015612e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9a91906134a6565b50601060009054906101000a90046001600160a01b03166001600160a01b031663efeecb516040518163ffffffff1660e01b815260040160206040518083038186803b158015612ee957600080fd5b505afa158015612efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f2191906134a6565b91508167ffffffffffffffff81118015612f3a57600080fd5b50604051908082528060200260200182016040528015612f64578160200160208202803683370190505b50600d546040516370a0823160e01b81529192506001600160a01b0316906370a0823190612f969030906004016135dd565b60206040518083038186803b158015612fae57600080fd5b505afa158015612fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fe691906134a6565b8160125481518110612ff457fe5b6020908102919091010152601054604051634d49e87d60e01b81526001600160a01b0390911690634d49e87d9061303490849060019042906004016136c5565b602060405180830381600087803b15801561304e57600080fd5b505af1158015613062573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcf91906134a6565b3b151590565b6060831561309b57508161209f565b8251156130ab5782518084602001fd5b8160405162461bcd60e51b8152600401610a0b91906136f5565b50805460008255906000526020600020908101906109bb9190613148565b828054828255906000526020600020908101928215613138579160200282015b8281111561313857825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613103565b5061314492915061315d565b5090565b5b808211156131445760008155600101613149565b5b808211156131445780546001600160a01b031916815560010161315e565b803561222d81613b8f565b600082601f830112613197578081fd5b81516131aa6131a582613b43565b613b1c565b8181529150602080830190848101818402860182018710156131cb57600080fd5b60005b848110156131ea578151845292820192908201906001016131ce565b505050505092915050565b600082601f830112613205578081fd5b815167ffffffffffffffff81111561321b578182fd5b61322e601f8201601f1916602001613b1c565b915080825283602082850101111561324557600080fd5b613256816020840160208601613b63565b5092915050565b60006020828403121561326e578081fd5b813561209f81613b8f565b6000602080838503121561328b578182fd5b823567ffffffffffffffff8111156132a1578283fd5b8301601f810185136132b1578283fd5b80356132bf6131a582613b43565b81815283810190838501858402850186018910156132db578687fd5b8694505b83851015613305576132f1898261317c565b8352600194909401939185019185016132df565b50979650505050505050565b60008060008060808587031215613326578283fd5b845167ffffffffffffffff8082111561333d578485fd5b818701915087601f830112613350578485fd5b815161335e6131a582613b43565b80828252602080830192508086018c82838702890101111561337e57898afd5b8996505b848710156133a957805161339581613b8f565b845260019690960195928101928101613382565b508a015190985093505050808211156133c0578485fd5b6133cc888389016131f5565b945060408701519150808211156133e1578384fd5b6133ed88838901613187565b93506060870151915080821115613402578283fd5b5061340f87828801613187565b91505092959194509250565b60006020828403121561342c578081fd5b815167ffffffffffffffff811115613442578182fd5b61344e84828501613187565b949350505050565b600060208284031215613467578081fd5b813561209f81613ba4565b600060208284031215613483578081fd5b815161209f81613ba4565b60006020828403121561349f578081fd5b5035919050565b6000602082840312156134b7578081fd5b5051919050565b600080604083850312156134d0578182fd5b50508035926020909101359150565b600080600080608085870312156134f4578384fd5b505082516020840151604085015160609095015191969095509092509050565b6000815180845260208085019450808401835b8381101561354c5781516001600160a01b031687529582019590820190600101613527565b509495945050505050565b6000815480845260208085019450838352808320835b8381101561354c5781546001600160a01b03168752958201956001918201910161356d565b6000815180845260208085019450808401835b8381101561354c578151875295820195908201906001016135a5565b600082516135d3818460208701613b63565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b60006020825261209f6020830184613514565b60006040825261364a6040830185613514565b828103602084015261365c8185613592565b95945050505050565b6000602080830181845280855180835260408601915060408482028701019250838701855b828110156136b857603f198886030184526136a6858351613514565b9450928501929085019060010161368a565b5092979650505050505050565b6000606082526136d86060830186613592565b60208301949094525060400152919050565b901515815260200190565b6000602082528251806020840152613714816040850160208701613b63565b601f01601f19169190910160400192915050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600b908201526a085cdd1c985d1959da5cdd60aa1b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252600490820152630216361760e41b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526008908201526710b6b0b730b3b2b960c11b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526036908201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60408201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606082015260800190565b90815260200190565b9182526001600160a01b0316602082015260400190565b60008382526040602083015261209c6040830184613557565b918252602082015260400190565b600086825285602083015260a06040830152613ae960a0830186613557565b6001600160a01b0394909416606083015250608001529392505050565b9283526020830191909152604082015260600190565b60405181810167ffffffffffffffff81118282101715613b3b57600080fd5b604052919050565b600067ffffffffffffffff821115613b59578081fd5b5060209081020190565b60005b83811015613b7e578181015183820152602001613b66565b83811115610fcf5750506000910152565b6001600160a01b03811681146109bb57600080fd5b80151581146109bb57600080fdfea2646970667358221220a12bc5a0b5052026a9a47a8d3d7abedd11ba929f5ee79be776ac99157b54bb1064736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a0aa99f71033378864ed6e499eb03612264e319a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000f3a5454496e26ac57da879bf3285fa85debf038800000000000000000000000086d49190a41167804f41e5f4c8db6fd937e43277000000000000000000000000d0a01ec574d1fc6652edf79cb2f880fd47d34ab10000000000000000000000007fbe3126c03444d43fc403626ec81e3e809e6b46000000000000000000000000340465d9d2ebde78f15a3870884757584f97abb4000000000000000000000000c75e1b127e288f1a33606a52ab5c91bbe64eaafe000000000000000000000000adb9ddfa24e326dc9d337561f6c7ba2a6ecec697000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000e358838ce72d5e61e0018a2ffac4bec5f4c88d2000000000000000000000000acc15dc74880c9944775448304b263d191c6077f00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000e358838ce72d5e61e0018a2ffac4bec5f4c88d2000000000000000000000000acc15dc74880c9944775448304b263d191c6077f0000000000000000000000008f552a71efe5eefc207bf75485b356a0b3f01ec9
-----Decoded View---------------
Arg [0] : _want (address): 0xA0AA99F71033378864Ed6E499eb03612264e319a
Arg [1] : _poolId (uint256): 16
Arg [2] : _chef (address): 0xF3a5454496E26ac57da879bf3285Fa85DEBF0388
Arg [3] : _vault (address): 0x86D49190A41167804f41e5f4C8DB6fd937E43277
Arg [4] : _unirouter (address): 0xd0A01ec574D1fC6652eDF79cb2F880fd47D34Ab1
Arg [5] : _stableRouter (address): 0x7FbE3126C03444D43fC403626ec81E3e809E6b46
Arg [6] : _keeper (address): 0x340465d9D2EbDE78F15a3870884757584F97aBB4
Arg [7] : _strategist (address): 0xc75E1B127E288f1a33606a52AB5C91BBe64EaAfe
Arg [8] : _beefyFeeRecipient (address): 0xaDB9DDFA24E326dC9d337561f6c7ba2a6Ecec697
Arg [9] : _outputToNativeRoute (address[]): 0x0E358838ce72d5e61E0018a2ffaC4bEC5F4c88d2,0xAcc15dC74880C9944775448304B263D191c6077F
Arg [10] : _outputToInputRoute (address[]): 0x0E358838ce72d5e61E0018a2ffaC4bEC5F4c88d2,0xAcc15dC74880C9944775448304B263D191c6077F,0x8f552a71EFE5eeFc207Bf75485b356A0b3f01eC9
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0aa99f71033378864ed6e499eb03612264e319a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [2] : 000000000000000000000000f3a5454496e26ac57da879bf3285fa85debf0388
Arg [3] : 00000000000000000000000086d49190a41167804f41e5f4c8db6fd937e43277
Arg [4] : 000000000000000000000000d0a01ec574d1fc6652edf79cb2f880fd47d34ab1
Arg [5] : 0000000000000000000000007fbe3126c03444d43fc403626ec81e3e809e6b46
Arg [6] : 000000000000000000000000340465d9d2ebde78f15a3870884757584f97abb4
Arg [7] : 000000000000000000000000c75e1b127e288f1a33606a52ab5c91bbe64eaafe
Arg [8] : 000000000000000000000000adb9ddfa24e326dc9d337561f6c7ba2a6ecec697
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [10] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000e358838ce72d5e61e0018a2ffac4bec5f4c88d2
Arg [13] : 000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 0000000000000000000000000e358838ce72d5e61e0018a2ffac4bec5f4c88d2
Arg [16] : 000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
Arg [17] : 0000000000000000000000008f552a71efe5eefc207bf75485b356a0b3f01ec9
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.