Source Code
Latest 25 from a total of 51 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Panic | 128901483 | 373 days ago | IN | 0 ETH | 0.000001397308 | ||||
| Harvest | 111937815 | 765 days ago | IN | 0 ETH | 0.000138698873 | ||||
| Harvest | 111862120 | 767 days ago | IN | 0 ETH | 0.00007491015 | ||||
| Harvest | 111808152 | 768 days ago | IN | 0 ETH | 0.000069822987 | ||||
| Harvest | 111757763 | 769 days ago | IN | 0 ETH | 0.000276642733 | ||||
| Harvest | 111712758 | 771 days ago | IN | 0 ETH | 0.000089289696 | ||||
| Harvest | 111629948 | 772 days ago | IN | 0 ETH | 0.000126166449 | ||||
| Harvest | 111584965 | 773 days ago | IN | 0 ETH | 0.00011522408 | ||||
| Harvest | 111539956 | 775 days ago | IN | 0 ETH | 0.00041305663 | ||||
| Harvest | 111455355 | 776 days ago | IN | 0 ETH | 0.000103008334 | ||||
| Harvest | 111286122 | 780 days ago | IN | 0 ETH | 0.00037630839 | ||||
| Harvest | 111129534 | 784 days ago | IN | 0 ETH | 0.000039096785 | ||||
| Harvest | 111084531 | 785 days ago | IN | 0 ETH | 0.000285224643 | ||||
| Harvest | 111039554 | 786 days ago | IN | 0 ETH | 0.000289290403 | ||||
| Harvest | 110996321 | 787 days ago | IN | 0 ETH | 0.000054129722 | ||||
| Harvest | 110875736 | 790 days ago | IN | 0 ETH | 0.000054771013 | ||||
| Harvest | 110783922 | 792 days ago | IN | 0 ETH | 0.000046564747 | ||||
| Harvest | 110738929 | 793 days ago | IN | 0 ETH | 0.000059089981 | ||||
| Harvest | 110693936 | 794 days ago | IN | 0 ETH | 0.000315196266 | ||||
| Harvest | 110648956 | 795 days ago | IN | 0 ETH | 0.000306571829 | ||||
| Harvest | 110603962 | 796 days ago | IN | 0 ETH | 0.000307052319 | ||||
| Harvest | 110524773 | 798 days ago | IN | 0 ETH | 0.000060941687 | ||||
| Harvest | 110413154 | 801 days ago | IN | 0 ETH | 0.000084756513 | ||||
| Harvest | 110332146 | 802 days ago | IN | 0 ETH | 0.000409760502 | ||||
| Harvest | 110247524 | 804 days ago | IN | 0 ETH | 0.000127812151 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555741 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH | ||||
| 107555729 | 867 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StrategyExactlySupply
Compiler Version
v0.8.19+commit.7dd6d404
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.8.0;
import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol";
import "../../utils/UniswapV3Utils.sol";
import "../../interfaces/common/ISolidlyRouter.sol";
import "../../interfaces/exactly/IExactlyMarket.sol";
import "../../interfaces/exactly/IExactlyRewardsController.sol";
import "../Common/StratFeeManagerInitializable.sol";
contract StrategyExactlySupply is StratFeeManagerInitializable {
using SafeERC20 for IERC20;
struct Routes {
address[] nativeToWantRoute;
uint24[] nativeToWantFees;
}
struct RewardRoute {
bytes uniswapRoute;
ISolidlyRouter.Route[] solidlyRoute;
}
// Tokens used
address public want;
address public native;
address public eToken;
address[] public rewards;
// Third party contracts
address public rewardsController;
address public veloRouter;
// Routes
bytes public nativeToWantPath;
mapping (address => RewardRoute) public rewardRoutes;
bool public harvestOnDeposit;
uint256 public lastHarvest;
/**
* @dev Events that the contract emits
*/
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);
function initialize(
address _eToken,
address _rewardsController,
address _veloRouter,
Routes calldata _routes,
CommonAddresses calldata _commonAddresses
) public initializer {
__StratFeeManager_init(_commonAddresses);
eToken = _eToken;
rewardsController = _rewardsController;
veloRouter = _veloRouter;
native = _routes.nativeToWantRoute[0];
want = _routes.nativeToWantRoute[_routes.nativeToWantRoute.length - 1];
nativeToWantPath = UniswapV3Utils.routeToPath(_routes.nativeToWantRoute, _routes.nativeToWantFees);
_giveAllowances();
}
/**
* @dev Puts the funds to work
*/
function deposit() public whenNotPaused {
uint256 wantBal = balanceOfWant();
if (wantBal > 0) {
IExactlyMarket(eToken).deposit(wantBal, address(this));
emit Deposit(balanceOf());
}
}
/**
* @dev Withdraws funds and sends them back to the vault
* @param _amount How much {want} to withdraw.
*/
function withdraw(uint256 _amount) external {
require(msg.sender == vault, "!vault");
uint256 wantBal = balanceOfWant();
if (wantBal < _amount) {
IExactlyMarket(eToken).withdraw(_amount - wantBal, address(this), address(this));
wantBal = balanceOfWant();
}
if (wantBal > _amount) {
wantBal = _amount;
}
if (tx.origin != owner() && !paused()) {
uint256 withdrawalFeeAmount = wantBal * withdrawalFee / WITHDRAWAL_MAX;
wantBal = wantBal - 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);
}
/**
* @dev Compounds earnings and charges performance fee
*/
function _harvest(address callFeeRecipient) internal whenNotPaused {
IExactlyRewardsController(rewardsController).claimAll(address(this));
for (uint i; i < rewards.length;) {
if (IERC20(rewards[i]).balanceOf(address(this)) > 0) {
swapToNative();
chargeFees(callFeeRecipient);
swapToWant();
uint256 wantHarvested = balanceOfWant();
deposit();
lastHarvest = block.timestamp;
emit StratHarvest(msg.sender, wantHarvested, balanceOf());
break;
}
unchecked { ++i; }
}
}
function swapToNative() internal {
for (uint i; i < rewards.length;) {
uint256 bal = IERC20(rewards[i]).balanceOf(address(this));
if (bal > 0) {
if (rewardRoutes[rewards[i]].uniswapRoute.length != 0) {
UniswapV3Utils.swap(unirouter, rewardRoutes[rewards[i]].uniswapRoute, bal);
} else {
ISolidlyRouter(veloRouter).swapExactTokensForTokens(bal, 0, rewardRoutes[rewards[i]].solidlyRoute, address(this), block.timestamp);
}
}
unchecked { ++i; }
}
}
/**
* @dev Performance fees
*/
function chargeFees(address callFeeRecipient) internal {
IFeeConfig.FeeCategory memory fees = getFees();
uint256 nativeBal = IERC20(native).balanceOf(address(this)) * fees.total / DIVISOR;
uint256 callFeeAmount = nativeBal * fees.call / DIVISOR;
IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount);
uint256 beefyFeeAmount = nativeBal * fees.beefy / DIVISOR;
IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount);
uint256 strategistFeeAmount = nativeBal * fees.strategist / DIVISOR;
IERC20(native).safeTransfer(strategist, strategistFeeAmount);
emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFeeAmount);
}
function swapToWant() internal {
if (native != want) {
uint256 toWant = IERC20(native).balanceOf(address(this));
UniswapV3Utils.swap(unirouter, nativeToWantPath, toWant);
}
}
// calculate the total underlaying 'want' held by the strat.
function balanceOf() public view returns (uint256) {
return balanceOfWant() + 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 supplyBal,) = IExactlyMarket(eToken).accountSnapshot(address(this));
return supplyBal;
}
// returns rewards unharvested
function rewardsAvailable() external view returns (uint256) {
return IExactlyRewardsController(rewardsController).allClaimable(address(this), rewards[0]);
}
// native reward amount for calling harvest
function callReward() external pure returns (uint256) {
return 0;
}
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");
uint256 eTokenBal = IERC20(eToken).balanceOf(address(this));
if (eTokenBal > 0) IExactlyMarket(eToken).redeem(eTokenBal, address(this), address(this));
uint256 wantBal = balanceOfWant();
IERC20(want).transfer(vault, wantBal);
}
// pauses deposits and withdraws all funds from third party systems.
function panic() public onlyManager {
uint256 eTokenBal = IERC20(eToken).balanceOf(address(this));
if (eTokenBal > 0) IExactlyMarket(eToken).redeem(eTokenBal, address(this), address(this));
pause();
}
function pause() public onlyManager {
_pause();
_removeAllowances();
}
function unpause() external onlyManager {
_unpause();
_giveAllowances();
deposit();
}
function _giveAllowances() internal {
IERC20(want).safeApprove(eToken, type(uint).max);
IERC20(native).safeApprove(unirouter, type(uint).max);
for (uint i; i < rewards.length;) {
address token = rewards[i];
if (rewardRoutes[token].uniswapRoute.length != 0) {
IERC20(token).safeApprove(unirouter, type(uint).max);
} else {
IERC20(token).safeApprove(veloRouter, type(uint).max);
}
unchecked { ++i; }
}
}
function _removeAllowances() internal {
IERC20(want).safeApprove(eToken, 0);
IERC20(native).safeApprove(unirouter, 0);
for (uint i; i < rewards.length;) {
address token = rewards[i];
if (rewardRoutes[token].uniswapRoute.length != 0) {
IERC20(token).safeApprove(unirouter, 0);
} else {
IERC20(token).safeApprove(veloRouter, 0);
}
unchecked { ++i; }
}
}
function nativeToWant() public view returns (address[] memory) {
return UniswapV3Utils.pathToRoute(nativeToWantPath);
}
function rewardToNative(uint256 _id) public view returns (address[] memory) {
if (rewardRoutes[rewards[_id]].uniswapRoute.length != 0) {
return UniswapV3Utils.pathToRoute(rewardRoutes[rewards[_id]].uniswapRoute);
} else {
address[] memory route = new address[](rewardRoutes[rewards[_id]].solidlyRoute.length + 1);
route[0] = rewardRoutes[rewards[_id]].solidlyRoute[0].from;
for (uint i; i < rewardRoutes[rewards[_id]].solidlyRoute.length; ++i) {
route[i + 1] = rewardRoutes[rewards[_id]].solidlyRoute[i].to;
}
return route;
}
}
function addReward(address _token, bytes calldata _uniswapRoute, ISolidlyRouter.Route[] calldata _solidlyRoute) external onlyOwner {
require(_token != want, "Reward is want");
if (_uniswapRoute.length != 0) {
IERC20(_token).safeApprove(unirouter, type(uint).max);
rewardRoutes[_token].uniswapRoute = _uniswapRoute;
} else {
IERC20(_token).safeApprove(veloRouter, type(uint).max);
for (uint i; i < _solidlyRoute.length; ++i) {
rewardRoutes[_token].solidlyRoute.push(_solidlyRoute[i]);
}
}
rewards.push(_token);
}
function resetRewards() external onlyManager {
for (uint i; i < rewards.length;) {
address token = rewards[i];
if (rewardRoutes[token].uniswapRoute.length != 0) {
IERC20(token).safeApprove(unirouter, 0);
} else {
IERC20(token).safeApprove(veloRouter, 0);
}
delete rewardRoutes[token];
unchecked { ++i; }
}
delete rewards;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions 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 {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @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.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
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());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IFeeConfig {
struct FeeCategory {
uint256 total;
uint256 beefy;
uint256 call;
uint256 strategist;
string label;
bool active;
}
struct AllFees {
FeeCategory performance;
uint256 deposit;
uint256 withdraw;
}
function getFees(address strategy) external view returns (FeeCategory memory);
function stratFeeId(address strategy) external view returns (uint256);
function setStratFeeId(uint256 feeId) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
pragma experimental ABIEncoderV2;
interface ISolidlyRouter {
// Routes
struct Routes {
address from;
address to;
bool stable;
}
struct Route {
address from;
address to;
bool stable;
address factory;
}
function addLiquidity(
address tokenA,
address tokenB,
bool stable,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
bool stable,
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,
bool stable,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
bool stable,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokensSimple(
uint amountIn,
uint amountOutMin,
address tokenFrom,
address tokenTo,
bool stable,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
Routes[] memory route,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
Route[] memory route,
address to,
uint deadline
) external returns (uint[] memory amounts);
function getAmountOut(uint amountIn, address tokenIn, address tokenOut) external view returns (uint amount, bool stable);
function getAmountsOut(uint amountIn, Routes[] memory routes) external view returns (uint[] memory amounts);
function getAmountsOut(uint amountIn, Route[] memory routes) external view returns (uint[] memory amounts);
function quoteAddLiquidity(
address tokenA,
address tokenB,
bool stable,
uint amountADesired,
uint amountBDesired
) external view returns (uint amountA, uint amountB, uint liquidity);
function quoteAddLiquidity(
address tokenA,
address tokenB,
bool stable,
address _factory,
uint amountADesired,
uint amountBDesired
) external view returns (uint amountA, uint amountB, uint liquidity);
function defaultFactory() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0;
pragma experimental ABIEncoderV2;
interface IUniswapRouterV3WithDeadline {
struct ExactInputSingleParams {
address tokenIn;
address tokenOut;
uint24 fee;
address recipient;
uint256 deadline;
uint256 amountIn;
uint256 amountOutMinimum;
uint160 sqrtPriceLimitX96;
}
/// @notice Swaps `amountIn` of one token for as much as possible of another token
/// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
/// @return amountOut The amount of the received token
function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);
struct ExactInputParams {
bytes path;
address recipient;
uint256 deadline;
uint256 amountIn;
uint256 amountOutMinimum;
}
/// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
/// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
/// @return amountOut The amount of the received token
function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);
struct ExactOutputSingleParams {
address tokenIn;
address tokenOut;
uint24 fee;
address recipient;
uint256 deadline;
uint256 amountOut;
uint256 amountInMaximum;
uint160 sqrtPriceLimitX96;
}
/// @notice Swaps as little as possible of one token for `amountOut` of another token
/// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
/// @return amountIn The amount of the input token
function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);
struct ExactOutputParams {
bytes path;
address recipient;
uint256 deadline;
uint256 amountOut;
uint256 amountInMaximum;
}
/// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
/// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
/// @return amountIn The amount of the input token
function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IExactlyMarket {
function deposit(uint256 assets, address receiver) external returns (uint256 shares);
function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares);
function borrow(uint256 assets, address receiver, address borrower) external returns (uint256 borrowShares);
function repay(uint256 assets, address borrower) external returns (uint256 actualRepay, uint256 borrowShares);
function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets);
function accountSnapshot(address account) external view returns (uint256 supply, uint256 borrow);
function auditor() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IExactlyRewardsController {
function claimAll(address to) external returns (address[] memory rewardList, uint256[] memory claimedAmounts);
function allClaimable(
address account,
address reward
) external view returns (uint256 unclaimedRewards);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "../../interfaces/common/IFeeConfig.sol";
contract StratFeeManagerInitializable is OwnableUpgradeable, PausableUpgradeable {
struct CommonAddresses {
address vault;
address unirouter;
address keeper;
address strategist;
address beefyFeeRecipient;
address beefyFeeConfig;
}
// common addresses for the strategy
address public vault;
address public unirouter;
address public keeper;
address public strategist;
address public beefyFeeRecipient;
IFeeConfig public beefyFeeConfig;
uint256 constant DIVISOR = 1 ether;
uint256 constant public WITHDRAWAL_FEE_CAP = 50;
uint256 constant public WITHDRAWAL_MAX = 10000;
uint256 internal withdrawalFee;
event SetStratFeeId(uint256 feeId);
event SetWithdrawalFee(uint256 withdrawalFee);
event SetVault(address vault);
event SetUnirouter(address unirouter);
event SetKeeper(address keeper);
event SetStrategist(address strategist);
event SetBeefyFeeRecipient(address beefyFeeRecipient);
event SetBeefyFeeConfig(address beefyFeeConfig);
function __StratFeeManager_init(CommonAddresses calldata _commonAddresses) internal onlyInitializing {
__Ownable_init();
__Pausable_init();
vault = _commonAddresses.vault;
unirouter = _commonAddresses.unirouter;
keeper = _commonAddresses.keeper;
strategist = _commonAddresses.strategist;
beefyFeeRecipient = _commonAddresses.beefyFeeRecipient;
beefyFeeConfig = IFeeConfig(_commonAddresses.beefyFeeConfig);
withdrawalFee = 10;
}
// checks that caller is either owner or keeper.
modifier onlyManager() {
_checkManager();
_;
}
function _checkManager() internal view {
require(msg.sender == owner() || msg.sender == keeper, "!manager");
}
// fetch fees from config contract
function getFees() internal view returns (IFeeConfig.FeeCategory memory) {
return beefyFeeConfig.getFees(address(this));
}
// fetch fees from config contract and dynamic deposit/withdraw fees
function getAllFees() external view returns (IFeeConfig.AllFees memory) {
return IFeeConfig.AllFees(getFees(), depositFee(), withdrawFee());
}
function getStratFeeId() external view returns (uint256) {
return beefyFeeConfig.stratFeeId(address(this));
}
function setStratFeeId(uint256 _feeId) external onlyManager {
beefyFeeConfig.setStratFeeId(_feeId);
emit SetStratFeeId(_feeId);
}
// adjust withdrawal fee
function setWithdrawalFee(uint256 _fee) public onlyManager {
require(_fee <= WITHDRAWAL_FEE_CAP, "!cap");
withdrawalFee = _fee;
emit SetWithdrawalFee(_fee);
}
// set new vault (only for strategy upgrades)
function setVault(address _vault) external onlyOwner {
vault = _vault;
emit SetVault(_vault);
}
// set new unirouter
function setUnirouter(address _unirouter) external onlyOwner {
unirouter = _unirouter;
emit SetUnirouter(_unirouter);
}
// set new keeper to manage strat
function setKeeper(address _keeper) external onlyManager {
keeper = _keeper;
emit SetKeeper(_keeper);
}
// set new strategist address to receive strat fees
function setStrategist(address _strategist) external {
require(msg.sender == strategist, "!strategist");
strategist = _strategist;
emit SetStrategist(_strategist);
}
// set new beefy fee address to receive beefy fees
function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner {
beefyFeeRecipient = _beefyFeeRecipient;
emit SetBeefyFeeRecipient(_beefyFeeRecipient);
}
// set new fee config address to fetch fees
function setBeefyFeeConfig(address _beefyFeeConfig) external onlyOwner {
beefyFeeConfig = IFeeConfig(_beefyFeeConfig);
emit SetBeefyFeeConfig(_beefyFeeConfig);
}
function depositFee() public virtual view returns (uint256) {
return 0;
}
function withdrawFee() public virtual view returns (uint256) {
return paused() ? 0 : withdrawalFee;
}
function beforeDeposit() external virtual {}
}// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint24(bytes memory _bytes, uint256 _start) internal pure returns (uint24) { require(_start + 3 >= _start, 'toUint24_overflow'); require(_bytes.length >= _start + 3, 'toUint24_outOfBounds'); uint24 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x3), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.6.0;
import './BytesLib.sol';
/// @title Functions for manipulating path data for multihop swaps
library Path {
using BytesLib for bytes;
/// @dev The length of the bytes encoded address
uint256 private constant ADDR_SIZE = 20;
/// @dev The length of the bytes encoded fee
uint256 private constant FEE_SIZE = 3;
/// @dev The offset of a single token address and pool fee
uint256 private constant NEXT_OFFSET = ADDR_SIZE + FEE_SIZE;
/// @dev The offset of an encoded pool key
uint256 private constant POP_OFFSET = NEXT_OFFSET + ADDR_SIZE;
/// @dev The minimum length of an encoding that contains 2 or more pools
uint256 private constant MULTIPLE_POOLS_MIN_LENGTH = POP_OFFSET + NEXT_OFFSET;
/// @notice Returns true iff the path contains two or more pools
/// @param path The encoded swap path
/// @return True if path contains two or more pools, otherwise false
function hasMultiplePools(bytes memory path) internal pure returns (bool) {
return path.length >= MULTIPLE_POOLS_MIN_LENGTH;
}
/// @notice Returns the number of pools in the path
/// @param path The encoded swap path
/// @return The number of pools in the path
function numPools(bytes memory path) internal pure returns (uint256) {
// Ignore the first token address. From then on every fee and token offset indicates a pool.
return ((path.length - ADDR_SIZE) / NEXT_OFFSET);
}
/// @notice Decodes the first pool in path
/// @param path The bytes encoded swap path
/// @return tokenA The first token of the given pool
/// @return tokenB The second token of the given pool
/// @return fee The fee level of the pool
function decodeFirstPool(bytes memory path)
internal
pure
returns (
address tokenA,
address tokenB,
uint24 fee
)
{
tokenA = path.toAddress(0);
fee = path.toUint24(ADDR_SIZE);
tokenB = path.toAddress(NEXT_OFFSET);
}
/// @notice Gets the segment corresponding to the first pool in the path
/// @param path The bytes encoded swap path
/// @return The segment containing all data necessary to target the first pool in the path
function getFirstPool(bytes memory path) internal pure returns (bytes memory) {
return path.slice(0, POP_OFFSET);
}
/// @notice Skips a token + fee element from the buffer and returns the remainder
/// @param path The swap path
/// @return The remaining token + fee elements in the path
function skipToken(bytes memory path) internal pure returns (bytes memory) {
return path.slice(NEXT_OFFSET, path.length - NEXT_OFFSET);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './Path.sol';
import "../interfaces/common/IUniswapRouterV3WithDeadline.sol";
library UniswapV3Utils {
using Path for bytes;
// Swap along an encoded path using known amountIn
function swap(
address _router,
bytes memory _path,
uint256 _amountIn
) internal returns (uint256 amountOut) {
IUniswapRouterV3WithDeadline.ExactInputParams memory params = IUniswapRouterV3WithDeadline.ExactInputParams({
path: _path,
recipient: address(this),
deadline: block.timestamp,
amountIn: _amountIn,
amountOutMinimum: 0
});
return IUniswapRouterV3WithDeadline(_router).exactInput(params);
}
// Swap along a token route using known fees and amountIn
function swap(
address _router,
address[] memory _route,
uint24[] memory _fee,
uint256 _amountIn
) internal returns (uint256 amountOut) {
return swap(_router, routeToPath(_route, _fee), _amountIn);
}
// Convert encoded path to token route
function pathToRoute(bytes memory _path) internal pure returns (address[] memory) {
uint256 numPools = _path.numPools();
address[] memory route = new address[](numPools + 1);
for (uint256 i; i < numPools; i++) {
(address tokenA, address tokenB,) = _path.decodeFirstPool();
route[i] = tokenA;
route[i + 1] = tokenB;
_path = _path.skipToken();
}
return route;
}
// Convert token route to encoded path
// uint24 type for fees so path is packed tightly
function routeToPath(
address[] memory _route,
uint24[] memory _fee
) internal pure returns (bytes memory path) {
path = abi.encodePacked(_route[0]);
uint256 feeLength = _fee.length;
for (uint256 i = 0; i < feeLength; i++) {
path = abi.encodePacked(path, _fee[i], _route[i+1]);
}
}
}{
"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[{"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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":false,"internalType":"address","name":"beefyFeeConfig","type":"address"}],"name":"SetBeefyFeeConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beefyFeeRecipient","type":"address"}],"name":"SetBeefyFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"keeper","type":"address"}],"name":"SetKeeper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeId","type":"uint256"}],"name":"SetStratFeeId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"strategist","type":"address"}],"name":"SetStrategist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"unirouter","type":"address"}],"name":"SetUnirouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vault","type":"address"}],"name":"SetVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"withdrawalFee","type":"uint256"}],"name":"SetWithdrawalFee","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":"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":"_token","type":"address"},{"internalType":"bytes","name":"_uniswapRoute","type":"bytes"},{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"internalType":"struct ISolidlyRouter.Route[]","name":"_solidlyRoute","type":"tuple[]"}],"name":"addReward","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":"beefyFeeConfig","outputs":[{"internalType":"contract IFeeConfig","name":"","type":"address"}],"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":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllFees","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"beefy","type":"uint256"},{"internalType":"uint256","name":"call","type":"uint256"},{"internalType":"uint256","name":"strategist","type":"uint256"},{"internalType":"string","name":"label","type":"string"},{"internalType":"bool","name":"active","type":"bool"}],"internalType":"struct IFeeConfig.FeeCategory","name":"performance","type":"tuple"},{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"withdraw","type":"uint256"}],"internalType":"struct IFeeConfig.AllFees","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStratFeeId","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":[{"internalType":"address","name":"_eToken","type":"address"},{"internalType":"address","name":"_rewardsController","type":"address"},{"internalType":"address","name":"_veloRouter","type":"address"},{"components":[{"internalType":"address[]","name":"nativeToWantRoute","type":"address[]"},{"internalType":"uint24[]","name":"nativeToWantFees","type":"uint24[]"}],"internalType":"struct StrategyExactlySupply.Routes","name":"_routes","type":"tuple"},{"components":[{"internalType":"address","name":"vault","type":"address"},{"internalType":"address","name":"unirouter","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"address","name":"strategist","type":"address"},{"internalType":"address","name":"beefyFeeRecipient","type":"address"},{"internalType":"address","name":"beefyFeeConfig","type":"address"}],"internalType":"struct StratFeeManagerInitializable.CommonAddresses","name":"_commonAddresses","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"nativeToWant","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeToWantPath","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardRoutes","outputs":[{"internalType":"bytes","name":"uniswapRoute","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"rewardToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeConfig","type":"address"}],"name":"setBeefyFeeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","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":"uint256","name":"_feeId","type":"uint256"}],"name":"setStratFeeId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"veloRouter","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":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50613f98806100206000396000f3fe608060405234801561001057600080fd5b506004361061035d5760003560e01c80638da5cb5b116101d3578063d5ef98ea11610104578063e941fa78116100a2578063f301af421161007c578063f301af4214610677578063fb6177871461068a578063fbe7515214610692578063fbfa77cf146106a557600080fd5b8063e941fa7814610653578063f1a392da1461065b578063f2fde38b1461066457600080fd5b8063deebc062116100de578063deebc0621461061b578063dfbdc43714610630578063e6dac09c14610638578063e7a7250a1461064b57600080fd5b8063d5ef98ea146105ed578063d801d94614610600578063d92f3d731461060857600080fd5b8063ad29f5da11610171578063c7b9d5301161014b578063c7b9d530146105b7578063cb9ead65146105ca578063d0e30db0146105dd578063d1777758146105e557600080fd5b8063ad29f5da14610592578063b20feaaf1461059a578063c1a3d44c146105af57600080fd5b806397fd323d116101ad57806397fd323d14610495578063a68833e514610559578063ac1e50251461056c578063aced16611461057f57600080fd5b80638da5cb5b146105225780638e14545914610533578063953d9cf11461054657600080fd5b80634746fb55116102ad578063715018a61161024b578063835c658f11610225578063835c658f146104e55780638456cb59146105055780638912cb8b1461050d5780638cfc02501461051a57600080fd5b8063715018a6146104c2578063722713f7146104ca578063748747e6146104d257600080fd5b80635c975abb116102875780635c975abb1461047e57806367a52793146104955780636817031b1461049c5780636bb65f53146104af57600080fd5b80634746fb551461045a57806354518b1a1461046d578063573fef0a1461047657600080fd5b80631fe4a6861161031a5780633e55f932116102f45780633e55f9321461042f5780633f4ba83a146104425780634641257d1461044a5780634700d3051461045257600080fd5b80631fe4a686146103f6578063257ae0de146104095780632e1a7d4d1461041c57600080fd5b80630e5c011e146103625780630e8fbb5a14610377578063106fdbd01461038a578063115880861461039d57806311b0b42d146103b85780631f1fcd51146103e3575b600080fd5b6103756103703660046133b4565b6106b8565b005b6103756103853660046133df565b6106c4565b6103756103983660046133b4565b6106f9565b6103a5610756565b6040519081526020015b60405180910390f35b609f546103cb906001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b609e546103cb906001600160a01b031681565b609a546103cb906001600160a01b031681565b6098546103cb906001600160a01b031681565b61037561042a3660046133fc565b6107cd565b61037561043d3660046133fc565b610960565b6103756109f7565b610375610a19565b610375610a22565b609c546103cb906001600160a01b031681565b6103a561271081565b610375610b25565b60655460ff165b60405190151581526020016103af565b60006103a5565b6103756104aa3660046133b4565b610b5a565b60a2546103cb906001600160a01b031681565b610375610bb0565b6103a5610bc2565b6103756104e03660046133b4565b610be3565b6104f86104f33660046133b4565b610c39565b6040516103af9190613465565b610375610cd7565b60a6546104859060ff1681565b6103a5610cef565b6033546001600160a01b03166103cb565b609b546103cb906001600160a01b031681565b60a0546103cb906001600160a01b031681565b6103756105673660046133b4565b610d5d565b61037561057a3660046133fc565b610db3565b6099546103cb906001600160a01b031681565b610375610e2a565b6105a2610f15565b6040516103af9190613478565b6103a5610f4b565b6103756105c53660046133b4565b610f7c565b6103756105d83660046134f5565b611012565b6103756111a2565b6104f8611269565b60a3546103cb906001600160a01b031681565b6103756112f7565b6103756106163660046133b4565b6112ff565b610623611355565b6040516103af91906135d2565b6103a5603281565b61037561064636600461361f565b6113ea565b6103a561168d565b6103a56116f7565b6103a560a75481565b6103756106723660046133b4565b611716565b6103cb6106853660046133fc565b61178c565b6103756117b6565b6106236106a03660046133fc565b61195d565b6097546103cb906001600160a01b031681565b6106c181611c27565b50565b6106cc611dc5565b60a6805460ff191682151590811790915560ff16156106ef576106c16000610db3565b6106c1600a610db3565b610701611e1f565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a05460405163014a296f60e01b815230600482015260009182916001600160a01b039091169063014a296f906024016040805180830381865afa1580156107a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c691906136b6565b5092915050565b6097546001600160a01b031633146108005760405162461bcd60e51b81526004016107f7906136da565b60405180910390fd5b600061080a610f4b565b9050818110156108aa5760a0546001600160a01b031663b460af9461082f8385613710565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303816000875af115801561087a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089e9190613723565b506108a7610f4b565b90505b818111156108b55750805b6033546001600160a01b031632148015906108d3575060655460ff16155b15610905576000612710609d54836108eb919061373c565b6108f59190613753565b90506109018183613710565b9150505b609754609e54610922916001600160a01b03918216911683611e79565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d61094b610bc2565b60405190815260200160405180910390a15050565b610968611dc5565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b1580156109ae57600080fd5b505af11580156109c2573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f8160405161074b91815260200190565b6109ff611dc5565b610a07611edc565b610a0f611f2e565b610a176111a2565b565b610a1732611c27565b610a2a611dc5565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610a73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a979190613723565b90508015610b1d5760a054604051635d043b2960e11b815260048101839052306024820181905260448201526001600160a01b039091169063ba087652906064016020604051808303816000875af1158015610af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1b9190613723565b505b6106c1610cd7565b60a65460ff1615610a17576097546001600160a01b03163314610a195760405162461bcd60e51b81526004016107f7906136da565b610b62611e1f565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f309060200161074b565b610bb8611e1f565b610a17600061200e565b6000610bcc610756565b610bd4610f4b565b610bde9190613775565b905090565b610beb611dc5565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b9060200161074b565b60a560205260009081526040902080548190610c5490613788565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8090613788565b8015610ccd5780601f10610ca257610100808354040283529160200191610ccd565b820191906000526020600020905b815481529060010190602001808311610cb057829003601f168201915b5050505050905081565b610cdf611dc5565b610ce7612060565b610a1761209d565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf104622906024015b602060405180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bde9190613723565b610d65611e1f565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac859060200161074b565b610dbb611dc5565b6032811115610df55760405162461bcd60e51b81526004016107f7906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af9060200161074b565b610e32611dc5565b60005b60a154811015610f0857600060a18281548110610e5457610e546137c2565b60009182526020808320909101546001600160a01b031680835260a59091526040909120805491925090610e8790613788565b159050610eae57609854610ea9906001600160a01b0383811691166000612179565b610ec9565b60a354610ec9906001600160a01b0383811691166000612179565b6001600160a01b038116600090815260a56020526040812090610eec8282613275565b610efa6001830160006132af565b505081600101915050610e35565b50610a1760a160006132d0565b610f1d6132ee565b6040518060600160405280610f3061228e565b815260200160008152602001610f446116f7565b9052919050565b609e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401610d1c565b609a546001600160a01b03163314610fc45760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b60448201526064016107f7565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec54129060200161074b565b61101a611e1f565b609e546001600160a01b03908116908616036110695760405162461bcd60e51b815260206004820152600e60248201526d14995dd85c99081a5cc81dd85b9d60921b60448201526064016107f7565b82156110b45760985461108b906001600160a01b038781169116600019612179565b6001600160a01b038516600090815260a5602052604090206110ae848683613834565b5061114b565b60a3546110d0906001600160a01b038781169116600019612179565b60005b81811015611149576001600160a01b038616600090815260a560205260409020600101838383818110611108576111086137c2565b8354600181018555600094855260209094206080909102929092019260030290910190506111368282613914565b50508061114290613988565b90506110d3565b505b505060a180546001810182556000919091527faadc37b8ba5645e62f4546802db221593a94729ccbfc5a97d01365a88f6498780180546001600160a01b0319166001600160a01b0394909416939093179092555050565b6111aa612339565b60006111b4610f4b565b905080156106c15760a054604051636e553f6560e01b8152600481018390523060248201526001600160a01b0390911690636e553f65906044016020604051808303816000875af115801561120d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112319190613723565b507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661125b610bc2565b60405190815260200161074b565b60a4805461127690613788565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613788565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b505050505081565b610a19611dc5565b611307611e1f565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa9060200161074b565b6060610bde60a4805461136790613788565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613788565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505061237f565b600054610100900460ff161580801561140a5750600054600160ff909116105b806114245750303b158015611424575060005460ff166001145b6114875760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107f7565b6000805460ff1916600117905580156114aa576000805461ff0019166101001790555b6114b38261248a565b60a080546001600160a01b038089166001600160a01b03199283161790925560a2805488841690831617905560a38054928716929091169190911790556114fa83806139a1565b600081811061150b5761150b6137c2565b905060200201602081019061152091906133b4565b609f80546001600160a01b0319166001600160a01b039290921691909117905561154a83806139a1565b600161155686806139a1565b611561929150613710565b818110611570576115706137c2565b905060200201602081019061158591906133b4565b609e80546001600160a01b0319166001600160a01b03929092169190911790556116286115b284806139a1565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506115f19250505060208601866139a1565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506125e692505050565b60a49061163590826139f1565b5061163e611f2e565b8015611685576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15b505050505050565b60a25460a180546000926001600160a01b031691638acbf3de9130919085906116b8576116b86137c2565b60009182526020909120015460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015291166024820152604401610d1c565b600061170560655460ff1690565b6117105750609d5490565b50600090565b61171e611e1f565b6001600160a01b0381166117835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b6106c18161200e565b60a1818154811061179c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6097546001600160a01b031633146117e05760405162461bcd60e51b81526004016107f7906136da565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611829573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184d9190613723565b905080156118d35760a054604051635d043b2960e11b815260048101839052306024820181905260448201526001600160a01b039091169063ba087652906064016020604051808303816000875af11580156118ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d19190613723565b505b60006118dd610f4b565b609e5460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af1158015611934573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119589190613abb565b505050565b606060a5600060a18481548110611976576119766137c2565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546119a590613788565b1590506119fb576119f560a5600060a185815481106119c6576119c66137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020805461136790613788565b92915050565b600060a5600060a18581548110611a1457611a146137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020600190810154611a4791613775565b6001600160401b03811115611a5e57611a5e6137d8565b604051908082528060200260200182016040528015611a87578160200160208202803683370190505b50905060a5600060a18581548110611aa157611aa16137c2565b60009182526020808320909101546001600160a01b0316835282019290925260400181206001018054909190611ad957611ad96137c2565b6000918252602082206003909102015482516001600160a01b03909116918391611b0557611b056137c2565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b60a5600060a18681548110611b3f57611b3f6137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020600101548110156107c65760a5600060a18681548110611b8557611b856137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020600101805482908110611bbe57611bbe6137c2565b6000918252602090912060016003909202018101546001600160a01b0316908390611bea908490613775565b81518110611bfa57611bfa6137c2565b6001600160a01b0390921660209283029190910190910152611c1b81613988565b9050611b28565b919050565b611c2f612339565b60a2546040516377329f3560e01b81523060048201526001600160a01b03909116906377329f35906024016000604051808303816000875af1158015611c79573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ca19190810190613bbe565b505060005b60a154811015611dc157600060a18281548110611cc557611cc56137c2565b6000918252602090912001546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3a9190613723565b1115611db957611d486126ca565b611d518261297b565b611d59612b1f565b6000611d63610f4b565b9050611d6d6111a2565b4260a755337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611d9c610bc2565b6040805192835260208301919091520160405180910390a2505050565b600101611ca6565b5050565b6033546001600160a01b0316331480611de857506099546001600160a01b031633145b610a175760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b60448201526064016107f7565b6033546001600160a01b03163314610a175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107f7565b6040516001600160a01b03831660248201526044810182905261195890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612bc7565b611ee4612c99565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60a054609e54611f4d916001600160a01b039182169116600019612179565b609854609f54611f6c916001600160a01b039182169116600019612179565b60005b60a1548110156106c157600060a18281548110611f8e57611f8e6137c2565b60009182526020808320909101546001600160a01b031680835260a59091526040909120805491925090611fc190613788565b159050611fe957609854611fe4906001600160a01b038381169116600019612179565b612005565b60a354612005906001600160a01b038381169116600019612179565b50600101611f6f565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612068612339565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f113390565b60a054609e546120bb916001600160a01b0391821691166000612179565b609854609f546120d9916001600160a01b0391821691166000612179565b60005b60a1548110156106c157600060a182815481106120fb576120fb6137c2565b60009182526020808320909101546001600160a01b031680835260a5909152604090912080549192509061212e90613788565b15905061215557609854612150906001600160a01b0383811691166000612179565b612170565b60a354612170906001600160a01b0383811691166000612179565b506001016120dc565b8015806121f35750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156121cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f19190613723565b155b61225e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016107f7565b6040516001600160a01b03831660248201526044810182905261195890849063095ea7b360e01b90606401611ea5565b6122c96040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa158015612311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bde9190810190613c82565b60655460ff1615610a175760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107f7565b6060600061238c83612ce2565b9050600061239b826001613775565b6001600160401b038111156123b2576123b26137d8565b6040519080825280602002602001820160405280156123db578160200160208202803683370190505b50905060005b82811015612482576000806123f587612d08565b50915091508184848151811061240d5761240d6137c2565b6001600160a01b03909216602092830291909101909101528084612432856001613775565b81518110612442576124426137c2565b60200260200101906001600160a01b031690816001600160a01b03168152505061246b87612d44565b96505050808061247a90613988565b9150506123e1565b509392505050565b600054610100900460ff166124b15760405162461bcd60e51b81526004016107f790613d77565b6124b9612d75565b6124c1612da4565b6124ce60208201826133b4565b609780546001600160a01b0319166001600160a01b03929092169190911790556124fe60408201602083016133b4565b609880546001600160a01b0319166001600160a01b039290921691909117905561252e60608201604083016133b4565b609980546001600160a01b0319166001600160a01b039290921691909117905561255e60808201606083016133b4565b609a80546001600160a01b0319166001600160a01b039290921691909117905561258e60a08201608083016133b4565b609b80546001600160a01b0319166001600160a01b03929092169190911790556125be60c0820160a083016133b4565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b6060826000815181106125fb576125fb6137c2565b602002602001015160405160200161262b919060609190911b6bffffffffffffffffffffffff1916815260140190565b60408051601f19818403018152919052825190915060005b818110156126c2578284828151811061265e5761265e6137c2565b6020026020010151868360016126749190613775565b81518110612684576126846137c2565b602002602001015160405160200161269e93929190613dc2565b604051602081830303815290604052925080806126ba90613988565b915050612643565b505092915050565b60005b60a1548110156106c157600060a182815481106126ec576126ec6137c2565b6000918252602090912001546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561273d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127619190613723565b905080156129725760a5600060a18481548110612780576127806137c2565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546127af90613788565b15905061289b5760985460a18054612895926001600160a01b03169160a59160009190879081106127e2576127e26137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020805461281190613788565b80601f016020809104026020016040519081016040528092919081815260200182805461283d90613788565b801561288a5780601f1061285f5761010080835404028352916020019161288a565b820191906000526020600020905b81548152906001019060200180831161286d57829003601f168201915b505050505083612dd3565b50612972565b60a360009054906101000a90046001600160a01b03166001600160a01b031663cac88ea982600060a5600060a188815481106128d9576128d96137c2565b60009182526020808320909101546001600160a01b03168352820192909252604090810190912090516001600160e01b031960e086901b1681526129299392916001019030904290600401613e0e565b6000604051808303816000875af1158015612948573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526129709190810190613eba565b505b506001016126cd565b600061298561228e565b8051609f546040516370a0823160e01b8152306004820152929350600092670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129de573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a029190613723565b612a0c919061373c565b612a169190613753565b90506000670de0b6b3a7640000836040015183612a33919061373c565b612a3d9190613753565b609f54909150612a57906001600160a01b03168583611e79565b6000670de0b6b3a7640000846020015184612a72919061373c565b612a7c9190613753565b609b54609f54919250612a9c916001600160a01b03908116911683611e79565b6000670de0b6b3a7640000856060015185612ab7919061373c565b612ac19190613753565b609a54609f54919250612ae1916001600160a01b03908116911683611e79565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600161167c565b609e54609f546001600160a01b03908116911614610a1757609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba49190613723565b60985460a48054929350611dc1926001600160a01b039092169161281190613788565b6000612c1c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e749092919063ffffffff16565b8051909150156119585780806020019051810190612c3a9190613abb565b6119585760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107f7565b60655460ff16610a175760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107f7565b6000612cf060036014613775565b60148351612cfe9190613710565b6119f59190613753565b60008080612d168482612e8b565b9250612d23846014612ef0565b9050612d3b612d3460036014613775565b8590612e8b565b91509193909250565b60606119f5612d5560036014613775565b612d6160036014613775565b8451612d6d9190613710565b849190612f9b565b600054610100900460ff16612d9c5760405162461bcd60e51b81526004016107f790613d77565b610a176130a8565b600054610100900460ff16612dcb5760405162461bcd60e51b81526004016107f790613d77565b610a176130d8565b6040805160a081018252838152306020820152428183015260608101839052600060808201819052915163c04b8d5960e01b81526001600160a01b0386169063c04b8d5990612e26908490600401613eee565b6020604051808303816000875af1158015612e45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e699190613723565b9150505b9392505050565b6060612e83848460008561310b565b949350505050565b6000612e98826014613775565b83511015612ee05760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b60448201526064016107f7565b500160200151600160601b900490565b600081612efe816003613775565b1015612f405760405162461bcd60e51b8152602060048201526011602482015270746f55696e7432345f6f766572666c6f7760781b60448201526064016107f7565b612f4b826003613775565b83511015612f925760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b60448201526064016107f7565b50016003015190565b606081612fa981601f613775565b1015612fe85760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016107f7565b612ff28284613775565b845110156130365760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016107f7565b606082158015613055576040519150600082526020820160405261309f565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561308e578051835260209283019201613076565b5050858452601f01601f1916604052505b50949350505050565b600054610100900460ff166130cf5760405162461bcd60e51b81526004016107f790613d77565b610a173361200e565b600054610100900460ff166130ff5760405162461bcd60e51b81526004016107f790613d77565b6065805460ff19169055565b60608247101561316c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107f7565b6001600160a01b0385163b6131c35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107f7565b600080866001600160a01b031685876040516131df9190613f46565b60006040518083038185875af1925050503d806000811461321c576040519150601f19603f3d011682016040523d82523d6000602084013e613221565b606091505b509150915061323182828661323c565b979650505050505050565b6060831561324b575081612e6d565b82511561325b5782518084602001fd5b8160405162461bcd60e51b81526004016107f79190613465565b50805461328190613788565b6000825580601f10613291575050565b601f0160209004906000526020600020908101906106c19190613348565b50805460008255600302906000526020600020908101906106c19190613361565b50805460008255906000526020600020908101906106c19190613348565b60405180606001604052806133346040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b5b8082111561335d5760008155600101613349565b5090565b5b8082111561335d5780546001600160a01b031990811682556001820180546001600160a81b03191690556002820180549091169055600301613362565b6001600160a01b03811681146106c157600080fd5b6000602082840312156133c657600080fd5b8135612e6d8161339f565b80151581146106c157600080fd5b6000602082840312156133f157600080fd5b8135612e6d816133d1565b60006020828403121561340e57600080fd5b5035919050565b60005b83811015613430578181015183820152602001613418565b50506000910152565b60008151808452613451816020860160208601613415565b601f01601f19169290920160200192915050565b602081526000612e6d6020830184613439565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526134c7610140850182613439565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b60008060008060006060868803121561350d57600080fd5b85356135188161339f565b945060208601356001600160401b038082111561353457600080fd5b818801915088601f83011261354857600080fd5b81358181111561355757600080fd5b89602082850101111561356957600080fd5b60208301965080955050604088013591508082111561358757600080fd5b818801915088601f83011261359b57600080fd5b8135818111156135aa57600080fd5b8960208260071b85010111156135bf57600080fd5b9699959850939650602001949392505050565b6020808252825182820181905260009190848201906040850190845b818110156136135783516001600160a01b0316835292840192918401916001016135ee565b50909695505050505050565b600080600080600085870361014081121561363957600080fd5b86356136448161339f565b955060208701356136548161339f565b945060408701356136648161339f565b935060608701356001600160401b0381111561367f57600080fd5b87016040818a03121561369157600080fd5b925060c0607f19820112156136a557600080fd5b506080860190509295509295909350565b600080604083850312156136c957600080fd5b505080516020909101519092909150565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b818103818111156119f5576119f56136fa565b60006020828403121561373557600080fd5b5051919050565b80820281158282048414176119f5576119f56136fa565b60008261377057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156119f5576119f56136fa565b600181811c9082168061379c57607f821691505b6020821081036137bc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f82111561195857600081815260208120601f850160051c810160208610156138155750805b601f850160051c820191505b8181101561168557828155600101613821565b6001600160401b0383111561384b5761384b6137d8565b61385f836138598354613788565b836137ee565b6000601f841160018114613893576000851561387b5750838201355b600019600387901b1c1916600186901b1783556138ed565b600083815260209020601f19861690835b828110156138c457868501358255602094850194600190920191016138a4565b50868210156138e15760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b80546001600160a01b0319166001600160a01b0392909216919091179055565b813561391f8161339f565b61392981836138f4565b5060018101602083013561393c8161339f565b61394681836138f4565b506040830135613955816133d1565b815460ff60a01b191690151560a01b60ff60a01b16179055606082013561397b8161339f565b61195881600284016138f4565b60006001820161399a5761399a6136fa565b5060010190565b6000808335601e198436030181126139b857600080fd5b8301803591506001600160401b038211156139d257600080fd5b6020019150600581901b36038213156139ea57600080fd5b9250929050565b81516001600160401b03811115613a0a57613a0a6137d8565b613a1e81613a188454613788565b846137ee565b602080601f831160018114613a535760008415613a3b5750858301515b600019600386901b1c1916600185901b178555611685565b600085815260208120601f198616915b82811015613a8257888601518255948401946001909101908401613a63565b5085821015613aa05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8051611c22816133d1565b600060208284031215613acd57600080fd5b8151612e6d816133d1565b60405160c081016001600160401b0381118282101715613afa57613afa6137d8565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613b2857613b286137d8565b604052919050565b60006001600160401b03821115613b4957613b496137d8565b5060051b60200190565b600082601f830112613b6457600080fd5b81516020613b79613b7483613b30565b613b00565b82815260059290921b84018101918181019086841115613b9857600080fd5b8286015b84811015613bb35780518352918301918301613b9c565b509695505050505050565b60008060408385031215613bd157600080fd5b82516001600160401b0380821115613be857600080fd5b818501915085601f830112613bfc57600080fd5b81516020613c0c613b7483613b30565b82815260059290921b84018101918181019089841115613c2b57600080fd5b948201945b83861015613c52578551613c438161339f565b82529482019490820190613c30565b91880151919650909350505080821115613c6b57600080fd5b50613c7885828601613b53565b9150509250929050565b60006020808385031215613c9557600080fd5b82516001600160401b0380821115613cac57600080fd5b9084019060c08287031215613cc057600080fd5b613cc8613ad8565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115613cfa57600080fd5b8301601f81018813613d0b57600080fd5b805183811115613d1d57613d1d6137d8565b613d2f601f8201601f19168701613b00565b93508084528886828401011115613d4557600080fd5b613d5481878601888501613415565b5050816080820152613d6860a08401613ab0565b60a08201529695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008451613dd4818460208901613415565b60e89490941b6001600160e81b0319169190930190815260609190911b6bffffffffffffffffffffffff1916600382015260170192915050565b600060a0808301888452602088818601526040838187015282895480855260c0880191508a60005283600020945060005b81811015613e8d5785546001600160a01b03908116845260018781015480831688870152891c60ff161515868601526002880154909116606085015260039096019560809093019201613e3f565b50506001600160a01b03891660608801529450613eaa9350505050565b8260808301529695505050505050565b600060208284031215613ecc57600080fd5b81516001600160401b03811115613ee257600080fd5b612e8384828501613b53565b602081526000825160a06020840152613f0a60c0840182613439565b905060018060a01b0360208501511660408401526040840151606084015260608401516080840152608084015160a08401528091505092915050565b60008251613f58818460208701613415565b919091019291505056fea2646970667358221220a1f406b05cf4ea2d4614ce099cf04678eff11e10501dfc85aaf21447bd76ffd064736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061035d5760003560e01c80638da5cb5b116101d3578063d5ef98ea11610104578063e941fa78116100a2578063f301af421161007c578063f301af4214610677578063fb6177871461068a578063fbe7515214610692578063fbfa77cf146106a557600080fd5b8063e941fa7814610653578063f1a392da1461065b578063f2fde38b1461066457600080fd5b8063deebc062116100de578063deebc0621461061b578063dfbdc43714610630578063e6dac09c14610638578063e7a7250a1461064b57600080fd5b8063d5ef98ea146105ed578063d801d94614610600578063d92f3d731461060857600080fd5b8063ad29f5da11610171578063c7b9d5301161014b578063c7b9d530146105b7578063cb9ead65146105ca578063d0e30db0146105dd578063d1777758146105e557600080fd5b8063ad29f5da14610592578063b20feaaf1461059a578063c1a3d44c146105af57600080fd5b806397fd323d116101ad57806397fd323d14610495578063a68833e514610559578063ac1e50251461056c578063aced16611461057f57600080fd5b80638da5cb5b146105225780638e14545914610533578063953d9cf11461054657600080fd5b80634746fb55116102ad578063715018a61161024b578063835c658f11610225578063835c658f146104e55780638456cb59146105055780638912cb8b1461050d5780638cfc02501461051a57600080fd5b8063715018a6146104c2578063722713f7146104ca578063748747e6146104d257600080fd5b80635c975abb116102875780635c975abb1461047e57806367a52793146104955780636817031b1461049c5780636bb65f53146104af57600080fd5b80634746fb551461045a57806354518b1a1461046d578063573fef0a1461047657600080fd5b80631fe4a6861161031a5780633e55f932116102f45780633e55f9321461042f5780633f4ba83a146104425780634641257d1461044a5780634700d3051461045257600080fd5b80631fe4a686146103f6578063257ae0de146104095780632e1a7d4d1461041c57600080fd5b80630e5c011e146103625780630e8fbb5a14610377578063106fdbd01461038a578063115880861461039d57806311b0b42d146103b85780631f1fcd51146103e3575b600080fd5b6103756103703660046133b4565b6106b8565b005b6103756103853660046133df565b6106c4565b6103756103983660046133b4565b6106f9565b6103a5610756565b6040519081526020015b60405180910390f35b609f546103cb906001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b609e546103cb906001600160a01b031681565b609a546103cb906001600160a01b031681565b6098546103cb906001600160a01b031681565b61037561042a3660046133fc565b6107cd565b61037561043d3660046133fc565b610960565b6103756109f7565b610375610a19565b610375610a22565b609c546103cb906001600160a01b031681565b6103a561271081565b610375610b25565b60655460ff165b60405190151581526020016103af565b60006103a5565b6103756104aa3660046133b4565b610b5a565b60a2546103cb906001600160a01b031681565b610375610bb0565b6103a5610bc2565b6103756104e03660046133b4565b610be3565b6104f86104f33660046133b4565b610c39565b6040516103af9190613465565b610375610cd7565b60a6546104859060ff1681565b6103a5610cef565b6033546001600160a01b03166103cb565b609b546103cb906001600160a01b031681565b60a0546103cb906001600160a01b031681565b6103756105673660046133b4565b610d5d565b61037561057a3660046133fc565b610db3565b6099546103cb906001600160a01b031681565b610375610e2a565b6105a2610f15565b6040516103af9190613478565b6103a5610f4b565b6103756105c53660046133b4565b610f7c565b6103756105d83660046134f5565b611012565b6103756111a2565b6104f8611269565b60a3546103cb906001600160a01b031681565b6103756112f7565b6103756106163660046133b4565b6112ff565b610623611355565b6040516103af91906135d2565b6103a5603281565b61037561064636600461361f565b6113ea565b6103a561168d565b6103a56116f7565b6103a560a75481565b6103756106723660046133b4565b611716565b6103cb6106853660046133fc565b61178c565b6103756117b6565b6106236106a03660046133fc565b61195d565b6097546103cb906001600160a01b031681565b6106c181611c27565b50565b6106cc611dc5565b60a6805460ff191682151590811790915560ff16156106ef576106c16000610db3565b6106c1600a610db3565b610701611e1f565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a05460405163014a296f60e01b815230600482015260009182916001600160a01b039091169063014a296f906024016040805180830381865afa1580156107a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c691906136b6565b5092915050565b6097546001600160a01b031633146108005760405162461bcd60e51b81526004016107f7906136da565b60405180910390fd5b600061080a610f4b565b9050818110156108aa5760a0546001600160a01b031663b460af9461082f8385613710565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303816000875af115801561087a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089e9190613723565b506108a7610f4b565b90505b818111156108b55750805b6033546001600160a01b031632148015906108d3575060655460ff16155b15610905576000612710609d54836108eb919061373c565b6108f59190613753565b90506109018183613710565b9150505b609754609e54610922916001600160a01b03918216911683611e79565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d61094b610bc2565b60405190815260200160405180910390a15050565b610968611dc5565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b1580156109ae57600080fd5b505af11580156109c2573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f8160405161074b91815260200190565b6109ff611dc5565b610a07611edc565b610a0f611f2e565b610a176111a2565b565b610a1732611c27565b610a2a611dc5565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610a73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a979190613723565b90508015610b1d5760a054604051635d043b2960e11b815260048101839052306024820181905260448201526001600160a01b039091169063ba087652906064016020604051808303816000875af1158015610af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1b9190613723565b505b6106c1610cd7565b60a65460ff1615610a17576097546001600160a01b03163314610a195760405162461bcd60e51b81526004016107f7906136da565b610b62611e1f565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f309060200161074b565b610bb8611e1f565b610a17600061200e565b6000610bcc610756565b610bd4610f4b565b610bde9190613775565b905090565b610beb611dc5565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b9060200161074b565b60a560205260009081526040902080548190610c5490613788565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8090613788565b8015610ccd5780601f10610ca257610100808354040283529160200191610ccd565b820191906000526020600020905b815481529060010190602001808311610cb057829003601f168201915b5050505050905081565b610cdf611dc5565b610ce7612060565b610a1761209d565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf104622906024015b602060405180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bde9190613723565b610d65611e1f565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac859060200161074b565b610dbb611dc5565b6032811115610df55760405162461bcd60e51b81526004016107f7906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af9060200161074b565b610e32611dc5565b60005b60a154811015610f0857600060a18281548110610e5457610e546137c2565b60009182526020808320909101546001600160a01b031680835260a59091526040909120805491925090610e8790613788565b159050610eae57609854610ea9906001600160a01b0383811691166000612179565b610ec9565b60a354610ec9906001600160a01b0383811691166000612179565b6001600160a01b038116600090815260a56020526040812090610eec8282613275565b610efa6001830160006132af565b505081600101915050610e35565b50610a1760a160006132d0565b610f1d6132ee565b6040518060600160405280610f3061228e565b815260200160008152602001610f446116f7565b9052919050565b609e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401610d1c565b609a546001600160a01b03163314610fc45760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b60448201526064016107f7565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec54129060200161074b565b61101a611e1f565b609e546001600160a01b03908116908616036110695760405162461bcd60e51b815260206004820152600e60248201526d14995dd85c99081a5cc81dd85b9d60921b60448201526064016107f7565b82156110b45760985461108b906001600160a01b038781169116600019612179565b6001600160a01b038516600090815260a5602052604090206110ae848683613834565b5061114b565b60a3546110d0906001600160a01b038781169116600019612179565b60005b81811015611149576001600160a01b038616600090815260a560205260409020600101838383818110611108576111086137c2565b8354600181018555600094855260209094206080909102929092019260030290910190506111368282613914565b50508061114290613988565b90506110d3565b505b505060a180546001810182556000919091527faadc37b8ba5645e62f4546802db221593a94729ccbfc5a97d01365a88f6498780180546001600160a01b0319166001600160a01b0394909416939093179092555050565b6111aa612339565b60006111b4610f4b565b905080156106c15760a054604051636e553f6560e01b8152600481018390523060248201526001600160a01b0390911690636e553f65906044016020604051808303816000875af115801561120d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112319190613723565b507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661125b610bc2565b60405190815260200161074b565b60a4805461127690613788565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613788565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b505050505081565b610a19611dc5565b611307611e1f565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa9060200161074b565b6060610bde60a4805461136790613788565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613788565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505061237f565b600054610100900460ff161580801561140a5750600054600160ff909116105b806114245750303b158015611424575060005460ff166001145b6114875760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107f7565b6000805460ff1916600117905580156114aa576000805461ff0019166101001790555b6114b38261248a565b60a080546001600160a01b038089166001600160a01b03199283161790925560a2805488841690831617905560a38054928716929091169190911790556114fa83806139a1565b600081811061150b5761150b6137c2565b905060200201602081019061152091906133b4565b609f80546001600160a01b0319166001600160a01b039290921691909117905561154a83806139a1565b600161155686806139a1565b611561929150613710565b818110611570576115706137c2565b905060200201602081019061158591906133b4565b609e80546001600160a01b0319166001600160a01b03929092169190911790556116286115b284806139a1565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506115f19250505060208601866139a1565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506125e692505050565b60a49061163590826139f1565b5061163e611f2e565b8015611685576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15b505050505050565b60a25460a180546000926001600160a01b031691638acbf3de9130919085906116b8576116b86137c2565b60009182526020909120015460405160e084901b6001600160e01b03191681526001600160a01b03928316600482015291166024820152604401610d1c565b600061170560655460ff1690565b6117105750609d5490565b50600090565b61171e611e1f565b6001600160a01b0381166117835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b6106c18161200e565b60a1818154811061179c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6097546001600160a01b031633146117e05760405162461bcd60e51b81526004016107f7906136da565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611829573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184d9190613723565b905080156118d35760a054604051635d043b2960e11b815260048101839052306024820181905260448201526001600160a01b039091169063ba087652906064016020604051808303816000875af11580156118ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d19190613723565b505b60006118dd610f4b565b609e5460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af1158015611934573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119589190613abb565b505050565b606060a5600060a18481548110611976576119766137c2565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546119a590613788565b1590506119fb576119f560a5600060a185815481106119c6576119c66137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020805461136790613788565b92915050565b600060a5600060a18581548110611a1457611a146137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020600190810154611a4791613775565b6001600160401b03811115611a5e57611a5e6137d8565b604051908082528060200260200182016040528015611a87578160200160208202803683370190505b50905060a5600060a18581548110611aa157611aa16137c2565b60009182526020808320909101546001600160a01b0316835282019290925260400181206001018054909190611ad957611ad96137c2565b6000918252602082206003909102015482516001600160a01b03909116918391611b0557611b056137c2565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b60a5600060a18681548110611b3f57611b3f6137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020600101548110156107c65760a5600060a18681548110611b8557611b856137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020600101805482908110611bbe57611bbe6137c2565b6000918252602090912060016003909202018101546001600160a01b0316908390611bea908490613775565b81518110611bfa57611bfa6137c2565b6001600160a01b0390921660209283029190910190910152611c1b81613988565b9050611b28565b919050565b611c2f612339565b60a2546040516377329f3560e01b81523060048201526001600160a01b03909116906377329f35906024016000604051808303816000875af1158015611c79573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ca19190810190613bbe565b505060005b60a154811015611dc157600060a18281548110611cc557611cc56137c2565b6000918252602090912001546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3a9190613723565b1115611db957611d486126ca565b611d518261297b565b611d59612b1f565b6000611d63610f4b565b9050611d6d6111a2565b4260a755337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611d9c610bc2565b6040805192835260208301919091520160405180910390a2505050565b600101611ca6565b5050565b6033546001600160a01b0316331480611de857506099546001600160a01b031633145b610a175760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b60448201526064016107f7565b6033546001600160a01b03163314610a175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107f7565b6040516001600160a01b03831660248201526044810182905261195890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612bc7565b611ee4612c99565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60a054609e54611f4d916001600160a01b039182169116600019612179565b609854609f54611f6c916001600160a01b039182169116600019612179565b60005b60a1548110156106c157600060a18281548110611f8e57611f8e6137c2565b60009182526020808320909101546001600160a01b031680835260a59091526040909120805491925090611fc190613788565b159050611fe957609854611fe4906001600160a01b038381169116600019612179565b612005565b60a354612005906001600160a01b038381169116600019612179565b50600101611f6f565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612068612339565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f113390565b60a054609e546120bb916001600160a01b0391821691166000612179565b609854609f546120d9916001600160a01b0391821691166000612179565b60005b60a1548110156106c157600060a182815481106120fb576120fb6137c2565b60009182526020808320909101546001600160a01b031680835260a5909152604090912080549192509061212e90613788565b15905061215557609854612150906001600160a01b0383811691166000612179565b612170565b60a354612170906001600160a01b0383811691166000612179565b506001016120dc565b8015806121f35750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156121cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f19190613723565b155b61225e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016107f7565b6040516001600160a01b03831660248201526044810182905261195890849063095ea7b360e01b90606401611ea5565b6122c96040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa158015612311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bde9190810190613c82565b60655460ff1615610a175760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107f7565b6060600061238c83612ce2565b9050600061239b826001613775565b6001600160401b038111156123b2576123b26137d8565b6040519080825280602002602001820160405280156123db578160200160208202803683370190505b50905060005b82811015612482576000806123f587612d08565b50915091508184848151811061240d5761240d6137c2565b6001600160a01b03909216602092830291909101909101528084612432856001613775565b81518110612442576124426137c2565b60200260200101906001600160a01b031690816001600160a01b03168152505061246b87612d44565b96505050808061247a90613988565b9150506123e1565b509392505050565b600054610100900460ff166124b15760405162461bcd60e51b81526004016107f790613d77565b6124b9612d75565b6124c1612da4565b6124ce60208201826133b4565b609780546001600160a01b0319166001600160a01b03929092169190911790556124fe60408201602083016133b4565b609880546001600160a01b0319166001600160a01b039290921691909117905561252e60608201604083016133b4565b609980546001600160a01b0319166001600160a01b039290921691909117905561255e60808201606083016133b4565b609a80546001600160a01b0319166001600160a01b039290921691909117905561258e60a08201608083016133b4565b609b80546001600160a01b0319166001600160a01b03929092169190911790556125be60c0820160a083016133b4565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b6060826000815181106125fb576125fb6137c2565b602002602001015160405160200161262b919060609190911b6bffffffffffffffffffffffff1916815260140190565b60408051601f19818403018152919052825190915060005b818110156126c2578284828151811061265e5761265e6137c2565b6020026020010151868360016126749190613775565b81518110612684576126846137c2565b602002602001015160405160200161269e93929190613dc2565b604051602081830303815290604052925080806126ba90613988565b915050612643565b505092915050565b60005b60a1548110156106c157600060a182815481106126ec576126ec6137c2565b6000918252602090912001546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561273d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127619190613723565b905080156129725760a5600060a18481548110612780576127806137c2565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546127af90613788565b15905061289b5760985460a18054612895926001600160a01b03169160a59160009190879081106127e2576127e26137c2565b60009182526020808320909101546001600160a01b031683528201929092526040019020805461281190613788565b80601f016020809104026020016040519081016040528092919081815260200182805461283d90613788565b801561288a5780601f1061285f5761010080835404028352916020019161288a565b820191906000526020600020905b81548152906001019060200180831161286d57829003601f168201915b505050505083612dd3565b50612972565b60a360009054906101000a90046001600160a01b03166001600160a01b031663cac88ea982600060a5600060a188815481106128d9576128d96137c2565b60009182526020808320909101546001600160a01b03168352820192909252604090810190912090516001600160e01b031960e086901b1681526129299392916001019030904290600401613e0e565b6000604051808303816000875af1158015612948573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526129709190810190613eba565b505b506001016126cd565b600061298561228e565b8051609f546040516370a0823160e01b8152306004820152929350600092670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129de573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a029190613723565b612a0c919061373c565b612a169190613753565b90506000670de0b6b3a7640000836040015183612a33919061373c565b612a3d9190613753565b609f54909150612a57906001600160a01b03168583611e79565b6000670de0b6b3a7640000846020015184612a72919061373c565b612a7c9190613753565b609b54609f54919250612a9c916001600160a01b03908116911683611e79565b6000670de0b6b3a7640000856060015185612ab7919061373c565b612ac19190613753565b609a54609f54919250612ae1916001600160a01b03908116911683611e79565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600161167c565b609e54609f546001600160a01b03908116911614610a1757609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba49190613723565b60985460a48054929350611dc1926001600160a01b039092169161281190613788565b6000612c1c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e749092919063ffffffff16565b8051909150156119585780806020019051810190612c3a9190613abb565b6119585760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107f7565b60655460ff16610a175760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107f7565b6000612cf060036014613775565b60148351612cfe9190613710565b6119f59190613753565b60008080612d168482612e8b565b9250612d23846014612ef0565b9050612d3b612d3460036014613775565b8590612e8b565b91509193909250565b60606119f5612d5560036014613775565b612d6160036014613775565b8451612d6d9190613710565b849190612f9b565b600054610100900460ff16612d9c5760405162461bcd60e51b81526004016107f790613d77565b610a176130a8565b600054610100900460ff16612dcb5760405162461bcd60e51b81526004016107f790613d77565b610a176130d8565b6040805160a081018252838152306020820152428183015260608101839052600060808201819052915163c04b8d5960e01b81526001600160a01b0386169063c04b8d5990612e26908490600401613eee565b6020604051808303816000875af1158015612e45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e699190613723565b9150505b9392505050565b6060612e83848460008561310b565b949350505050565b6000612e98826014613775565b83511015612ee05760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b60448201526064016107f7565b500160200151600160601b900490565b600081612efe816003613775565b1015612f405760405162461bcd60e51b8152602060048201526011602482015270746f55696e7432345f6f766572666c6f7760781b60448201526064016107f7565b612f4b826003613775565b83511015612f925760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b60448201526064016107f7565b50016003015190565b606081612fa981601f613775565b1015612fe85760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016107f7565b612ff28284613775565b845110156130365760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016107f7565b606082158015613055576040519150600082526020820160405261309f565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561308e578051835260209283019201613076565b5050858452601f01601f1916604052505b50949350505050565b600054610100900460ff166130cf5760405162461bcd60e51b81526004016107f790613d77565b610a173361200e565b600054610100900460ff166130ff5760405162461bcd60e51b81526004016107f790613d77565b6065805460ff19169055565b60608247101561316c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107f7565b6001600160a01b0385163b6131c35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107f7565b600080866001600160a01b031685876040516131df9190613f46565b60006040518083038185875af1925050503d806000811461321c576040519150601f19603f3d011682016040523d82523d6000602084013e613221565b606091505b509150915061323182828661323c565b979650505050505050565b6060831561324b575081612e6d565b82511561325b5782518084602001fd5b8160405162461bcd60e51b81526004016107f79190613465565b50805461328190613788565b6000825580601f10613291575050565b601f0160209004906000526020600020908101906106c19190613348565b50805460008255600302906000526020600020908101906106c19190613361565b50805460008255906000526020600020908101906106c19190613348565b60405180606001604052806133346040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b5b8082111561335d5760008155600101613349565b5090565b5b8082111561335d5780546001600160a01b031990811682556001820180546001600160a81b03191690556002820180549091169055600301613362565b6001600160a01b03811681146106c157600080fd5b6000602082840312156133c657600080fd5b8135612e6d8161339f565b80151581146106c157600080fd5b6000602082840312156133f157600080fd5b8135612e6d816133d1565b60006020828403121561340e57600080fd5b5035919050565b60005b83811015613430578181015183820152602001613418565b50506000910152565b60008151808452613451816020860160208601613415565b601f01601f19169290920160200192915050565b602081526000612e6d6020830184613439565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526134c7610140850182613439565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b60008060008060006060868803121561350d57600080fd5b85356135188161339f565b945060208601356001600160401b038082111561353457600080fd5b818801915088601f83011261354857600080fd5b81358181111561355757600080fd5b89602082850101111561356957600080fd5b60208301965080955050604088013591508082111561358757600080fd5b818801915088601f83011261359b57600080fd5b8135818111156135aa57600080fd5b8960208260071b85010111156135bf57600080fd5b9699959850939650602001949392505050565b6020808252825182820181905260009190848201906040850190845b818110156136135783516001600160a01b0316835292840192918401916001016135ee565b50909695505050505050565b600080600080600085870361014081121561363957600080fd5b86356136448161339f565b955060208701356136548161339f565b945060408701356136648161339f565b935060608701356001600160401b0381111561367f57600080fd5b87016040818a03121561369157600080fd5b925060c0607f19820112156136a557600080fd5b506080860190509295509295909350565b600080604083850312156136c957600080fd5b505080516020909101519092909150565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b818103818111156119f5576119f56136fa565b60006020828403121561373557600080fd5b5051919050565b80820281158282048414176119f5576119f56136fa565b60008261377057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156119f5576119f56136fa565b600181811c9082168061379c57607f821691505b6020821081036137bc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f82111561195857600081815260208120601f850160051c810160208610156138155750805b601f850160051c820191505b8181101561168557828155600101613821565b6001600160401b0383111561384b5761384b6137d8565b61385f836138598354613788565b836137ee565b6000601f841160018114613893576000851561387b5750838201355b600019600387901b1c1916600186901b1783556138ed565b600083815260209020601f19861690835b828110156138c457868501358255602094850194600190920191016138a4565b50868210156138e15760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b80546001600160a01b0319166001600160a01b0392909216919091179055565b813561391f8161339f565b61392981836138f4565b5060018101602083013561393c8161339f565b61394681836138f4565b506040830135613955816133d1565b815460ff60a01b191690151560a01b60ff60a01b16179055606082013561397b8161339f565b61195881600284016138f4565b60006001820161399a5761399a6136fa565b5060010190565b6000808335601e198436030181126139b857600080fd5b8301803591506001600160401b038211156139d257600080fd5b6020019150600581901b36038213156139ea57600080fd5b9250929050565b81516001600160401b03811115613a0a57613a0a6137d8565b613a1e81613a188454613788565b846137ee565b602080601f831160018114613a535760008415613a3b5750858301515b600019600386901b1c1916600185901b178555611685565b600085815260208120601f198616915b82811015613a8257888601518255948401946001909101908401613a63565b5085821015613aa05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8051611c22816133d1565b600060208284031215613acd57600080fd5b8151612e6d816133d1565b60405160c081016001600160401b0381118282101715613afa57613afa6137d8565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613b2857613b286137d8565b604052919050565b60006001600160401b03821115613b4957613b496137d8565b5060051b60200190565b600082601f830112613b6457600080fd5b81516020613b79613b7483613b30565b613b00565b82815260059290921b84018101918181019086841115613b9857600080fd5b8286015b84811015613bb35780518352918301918301613b9c565b509695505050505050565b60008060408385031215613bd157600080fd5b82516001600160401b0380821115613be857600080fd5b818501915085601f830112613bfc57600080fd5b81516020613c0c613b7483613b30565b82815260059290921b84018101918181019089841115613c2b57600080fd5b948201945b83861015613c52578551613c438161339f565b82529482019490820190613c30565b91880151919650909350505080821115613c6b57600080fd5b50613c7885828601613b53565b9150509250929050565b60006020808385031215613c9557600080fd5b82516001600160401b0380821115613cac57600080fd5b9084019060c08287031215613cc057600080fd5b613cc8613ad8565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115613cfa57600080fd5b8301601f81018813613d0b57600080fd5b805183811115613d1d57613d1d6137d8565b613d2f601f8201601f19168701613b00565b93508084528886828401011115613d4557600080fd5b613d5481878601888501613415565b5050816080820152613d6860a08401613ab0565b60a08201529695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008451613dd4818460208901613415565b60e89490941b6001600160e81b0319169190930190815260609190911b6bffffffffffffffffffffffff1916600382015260170192915050565b600060a0808301888452602088818601526040838187015282895480855260c0880191508a60005283600020945060005b81811015613e8d5785546001600160a01b03908116845260018781015480831688870152891c60ff161515868601526002880154909116606085015260039096019560809093019201613e3f565b50506001600160a01b03891660608801529450613eaa9350505050565b8260808301529695505050505050565b600060208284031215613ecc57600080fd5b81516001600160401b03811115613ee257600080fd5b612e8384828501613b53565b602081526000825160a06020840152613f0a60c0840182613439565b905060018060a01b0360208501511660408401526040840151606084015260608401516080840152608084015160a08401528091505092915050565b60008251613f58818460208701613415565b919091019291505056fea2646970667358221220a1f406b05cf4ea2d4614ce099cf04678eff11e10501dfc85aaf21447bd76ffd064736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.