ETH Price: $3,249.47 (+0.36%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...164917862023-01-26 15:08:23728 days ago1674745703IN
0x94cC627D...52A75F345
0 ETH0.0007735326.98253344

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CvxCrvStakingWrapperStrategy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CvxCrvStakingWrapperStrategy.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;

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

import "../../interfaces/ICvxCrvStakingWrapper.sol";
import "../../interfaces/IZap.sol";

import "./ConcentratorStrategyBase.sol";

contract CvxCrvStakingWrapperStrategy is ConcentratorStrategyBase, Ownable {
  using SafeERC20 for IERC20;

  /// @inheritdoc IConcentratorStrategy
  // solhint-disable const-name-snakecase
  string public constant override name = "CvxCrvStakingWrapper";

  /// @dev The address of cvxCRV token.
  address private constant cvxCRV = 0x62B9c7356A2Dc64a1969e19C23e4f579F9810Aa7;

  /// @dev The address of CRV token.
  address private constant CRV = 0xD533a949740bb3306d119CC777fa900bA034cd52;

  /// @dev The address of CVX token.
  address private constant CVX = 0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B;

  /// @dev The address of 3CRV token.
  address private constant THREE_CRV = 0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490;

  /// @notice The address of CvxCrvStakingWrapper contract.
  address public immutable wrapper;

  constructor(address _operator, address _wrapper) {
    wrapper = _wrapper;

    address[] memory _rewards = new address[](3);
    _rewards[0] = CRV;
    _rewards[1] = CVX;
    _rewards[2] = THREE_CRV;

    _initialize(_operator, _rewards);

    IERC20(cvxCRV).safeApprove(_wrapper, uint256(-1));
  }

  /// @inheritdoc IConcentratorStrategy
  function deposit(address, uint256 _amount) external override onlyOperator {
    ICvxCrvStakingWrapper(wrapper).stake(_amount, address(this));
  }

  /// @inheritdoc IConcentratorStrategy
  function withdraw(address _recipient, uint256 _amount) external override onlyOperator {
    ICvxCrvStakingWrapper(wrapper).withdraw(_amount);
    IERC20(cvxCRV).safeTransfer(_recipient, _amount);
  }

  /// @inheritdoc IConcentratorStrategy
  function harvest(address _zapper, address _intermediate) external override onlyOperator returns (uint256 _harvested) {
    // 1. claim rewards from staking wrapper contract.
    address[] memory _rewards = rewards;
    uint256[] memory _amounts = new uint256[](rewards.length);
    for (uint256 i = 0; i < rewards.length; i++) {
      _amounts[i] = IERC20(_rewards[i]).balanceOf(address(this));
    }
    ICvxCrvStakingWrapper(wrapper).getReward(address(this));
    for (uint256 i = 0; i < rewards.length; i++) {
      _amounts[i] = IERC20(_rewards[i]).balanceOf(address(this)) - _amounts[i];
    }

    // 2. zap all rewards to intermediate token.
    for (uint256 i = 0; i < rewards.length; i++) {
      address _rewardToken = _rewards[i];
      uint256 _amount = _amounts[i];
      if (_rewardToken == _intermediate) {
        _harvested += _amount;
      } else if (_amount > 0) {
        IERC20(_rewardToken).safeTransfer(_zapper, _amount);
        _harvested += IZap(_zapper).zap(_rewardToken, _amount, _intermediate, 0);
      }
    }

    // 3. transfer intermediate token back to operator.
    _transferTokenBack(_intermediate, _harvested);
  }

  /// @notice Set the reward weight for 3CRV group.
  /// @dev The best weight can be computed as
  ///   S0 = sum_{u != me} bal[u] * (1 - w[u])
  ///   S1 = sum_{u != me} bal[u] * w[u]
  ///   R0 is the USD value of reward group 0, R1 is the USD value of reward group 1
  ///   We want to maximize
  ///               bal[me] * (1 - x)             bal[me] * x
  ///   f(x) = R0 * ---------------------- + R1 * ----------------, where 0 <= x <= 1
  ///               S0 + bal[me] * (1 - x)        S1 + bal[me] * x
  ///   The global optimal x* is the root of f'(x) = 0, which means x* is the root of
  ///     R1 * S1 * (S0 + bal[me] * (1 - x))^2 = R0 * S0 * (S1 + bal[me] * x)^2
  ///   Assume k = sqrt(R1 * S1 / R0 / S0),
  ///          k * (bal[me] + S0) - S1
  ///     x* = -----------------------
  ///             bal[me] * (1 + k)
  function setRewardWeight(uint256 _weight) external onlyOwner {
    ICvxCrvStakingWrapper(wrapper).setRewardWeight(_weight);
  }
}

File 2 of 13 : ICvxCrvStakingWrapper.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;
pragma abicoder v2;

// solhint-disable func-name-mixedcase

interface ICvxCrvStakingWrapper {
  struct EarnedData {
    address token;
    uint256 amount;
  }

  function user_checkpoint(address _account) external returns (bool);

  // run earned as a mutable function to claim everything before calculating earned rewards
  function earned(address _account) external returns (EarnedData[] memory claimable);

  // set a user's reward weight to determine how much of each reward group to receive
  function setRewardWeight(uint256 _weight) external;

  function balanceOf(address) external view returns (uint256);

  // get user's weighted balance for specified reward group
  function userRewardBalance(address _address, uint256 _rewardGroup) external view returns (uint256);

  function userRewardWeight(address _address) external view returns (uint256);

  // get weighted supply for specified reward group
  function rewardSupply(uint256 _rewardGroup) external view returns (uint256);

  // claim
  function getReward(address _account) external;

  // claim and forward
  function getReward(address _account, address _forwardTo) external;

  // deposit vanilla crv
  function deposit(uint256 _amount, address _to) external;

  // stake cvxcrv
  function stake(uint256 _amount, address _to) external;

  // backwards compatibility for other systems (note: amount and address reversed)
  function stakeFor(address _to, uint256 _amount) external;

  // withdraw to convex deposit token
  function withdraw(uint256 _amount) external;
}

File 3 of 13 : IZap.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;

interface IZap {
  function zap(
    address _fromToken,
    uint256 _amountIn,
    address _toToken,
    uint256 _minOut
  ) external payable returns (uint256);

  function zapWithRoutes(
    address _fromToken,
    uint256 _amountIn,
    address _toToken,
    uint256[] calldata _routes,
    uint256 _minOut
  ) external payable returns (uint256);

  function zapFrom(
    address _fromToken,
    uint256 _amountIn,
    address _toToken,
    uint256 _minOut
  ) external payable returns (uint256);
}

File 4 of 13 : ConcentratorStrategyBase.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";

import "../interfaces/IConcentratorStrategy.sol";

// solhint-disable reason-string
// solhint-disable no-empty-blocks

abstract contract ConcentratorStrategyBase is IConcentratorStrategy, Initializable {
  using SafeERC20 for IERC20;

  /// @notice The address of operator.
  address public operator;

  /// @notice The list of rewards token.
  address[] public rewards;

  /// @dev reserved slots.
  uint256[48] private __gap;

  modifier onlyOperator() {
    require(msg.sender == operator, "ConcentratorStrategy: only operator");
    _;
  }

  // fallback function to receive eth.
  receive() external payable {}

  function _initialize(address _operator, address[] memory _rewards) internal {
    _checkRewards(_rewards);

    operator = _operator;
    rewards = _rewards;
  }

  /// @inheritdoc IConcentratorStrategy
  function updateRewards(address[] memory _rewards) external override onlyOperator {
    _checkRewards(_rewards);

    delete rewards;
    rewards = _rewards;
  }

  /// @inheritdoc IConcentratorStrategy
  function execute(
    address _to,
    uint256 _value,
    bytes calldata _data
  ) external payable override onlyOperator returns (bool, bytes memory) {
    // solhint-disable-next-line avoid-low-level-calls
    (bool success, bytes memory result) = _to.call{ value: _value }(_data);
    return (success, result);
  }

  /// @inheritdoc IConcentratorStrategy
  function prepareMigrate(address _newStrategy) external virtual override onlyOperator {}

  /// @inheritdoc IConcentratorStrategy
  function finishMigrate(address _newStrategy) external virtual override onlyOperator {}

  /// @dev Internal function to validate rewards list.
  /// @param _rewards The address list of reward tokens.
  function _checkRewards(address[] memory _rewards) internal pure {
    for (uint256 i = 0; i < _rewards.length; i++) {
      require(_rewards[i] != address(0), "ConcentratorStrategy: zero reward token");
      for (uint256 j = 0; j < i; j++) {
        require(_rewards[i] != _rewards[j], "ConcentratorStrategy: duplicated reward token");
      }
    }
  }

  function _transferTokenBack(address _token, uint256 _amount) internal {
    // 2. transfer intermediate token back to operator.
    if (_token == address(0)) {
      // solhint-disable-next-line avoid-low-level-calls
      (bool _success, ) = msg.sender.call{ value: _amount }("");
      require(_success, "ConcentratorStrategy: transfer ETH failed");
    } else {
      IERC20(_token).safeTransfer(msg.sender, _amount);
    }
  }
}

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

pragma solidity ^0.7.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 6 of 13 : IConcentratorStrategy.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;

interface IConcentratorStrategy {
  /// @notice Return then name of the strategy.
  function name() external view returns (string memory);

  /// @notice Update the list of reward tokens.
  /// @param _rewards The address list of reward tokens to update.
  function updateRewards(address[] memory _rewards) external;

  /// @notice Deposit token to corresponding strategy.
  /// @dev Requirements:
  ///   + Caller should make sure the token is already transfered into the strategy contract.
  ///   + Caller should make sure the deposit amount is greater than zero.
  ///
  /// @param _recipient The address of recipient who will receive the share.
  /// @param _amount The amount of token to deposit.
  function deposit(address _recipient, uint256 _amount) external;

  /// @notice Withdraw underlying token or yield token from corresponding strategy.
  /// @dev Requirements:
  ///   + Caller should make sure the withdraw amount is greater than zero.
  ///
  /// @param _recipient The address of recipient who will receive the token.
  /// @param _amount The amount of token to withdraw.
  function withdraw(address _recipient, uint256 _amount) external;

  /// @notice Harvest possible rewards from strategy.
  ///
  /// @param _zapper The address of zap contract used to zap rewards.
  /// @param _intermediate The address of intermediate token to zap.
  /// @return amount The amount of corresponding reward token.
  function harvest(address _zapper, address _intermediate) external returns (uint256 amount);

  /// @notice Emergency function to execute arbitrary call.
  /// @dev This function should be only used in case of emergency. It should never be called explicitly
  ///  in any contract in normal case.
  ///
  /// @param _to The address of target contract to call.
  /// @param _value The value passed to the target contract.
  /// @param _data The calldata pseed to the target contract.
  function execute(
    address _to,
    uint256 _value,
    bytes calldata _data
  ) external payable returns (bool, bytes memory);

  /// @notice Do some extra work before migration.
  /// @param _newStrategy The address of new strategy.
  function prepareMigrate(address _newStrategy) external;

  /// @notice Do some extra work after migration.
  /// @param _newStrategy The address of new strategy.
  function finishMigrate(address _newStrategy) external;
}

File 7 of 13 : Initializable.sol
// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;

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 a proxied contract can't have 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.
 *
 * 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 {UpgradeableProxy-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.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

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

pragma solidity ^0.7.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.7.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 10 of 13 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.7.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_wrapper","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_newStrategy","type":"address"}],"name":"finishMigrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_zapper","type":"address"},{"internalType":"address","name":"_intermediate","type":"address"}],"name":"harvest","outputs":[{"internalType":"uint256","name":"_harvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newStrategy","type":"address"}],"name":"prepareMigrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_weight","type":"uint256"}],"name":"setRewardWeight","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewards","type":"address[]"}],"name":"updateRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrapper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040516200210538038062002105833981810160405260408110156200003757600080fd5b50805160209091015160006200004c620001d7565b603280546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350606081901b6001600160601b031916608090815260408051600380825292810190915260009181602001602082028036833701905050905073d533a949740bb3306d119cc777fa900ba034cd5281600081518110620000f557fe5b60200260200101906001600160a01b031690816001600160a01b031681525050734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b816001815181106200013857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050736c3f90f043a72fa612cbac8115ee7e52bde6e490816002815181106200017b57fe5b6001600160a01b03909216602092830291909101909101526200019f8382620001db565b620001ce7362b9c7356a2dc64a1969e19c23e4f579f9810aa78360001962000222602090811b6200102c17901c565b505050620007c3565b3390565b620001e68162000341565b6000805462010000600160b01b031916620100006001600160a01b0385160217905580516200021d90600190602084019062000742565b505050565b801580620002ac575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200027c57600080fd5b505afa15801562000291573d6000803e3d6000fd5b505050506040513d6020811015620002a857600080fd5b5051155b620002e95760405162461bcd60e51b8152600401808060200182810382526036815260200180620020cf6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b179091526200021d9185916200045416565b60005b8151811015620004505760006001600160a01b03168282815181106200036657fe5b60200260200101516001600160a01b03161415620003b65760405162461bcd60e51b81526004018080602001828103825260278152602001806200207e6027913960400191505060405180910390fd5b60005b818110156200044657828181518110620003cf57fe5b60200260200101516001600160a01b0316838381518110620003ed57fe5b60200260200101516001600160a01b031614156200043d5760405162461bcd60e51b815260040180806020018281038252602d8152602001806200202b602d913960400191505060405180910390fd5b600101620003b9565b5060010162000344565b5050565b6000620004b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200051060201b62001144179092919060201c565b8051909150156200021d57808060200190516020811015620004d157600080fd5b50516200021d5760405162461bcd60e51b815260040180806020018281038252602a815260200180620020a5602a913960400191505060405180910390fd5b60606200052184846000856200052b565b90505b9392505050565b6060824710156200056e5760405162461bcd60e51b8152600401808060200182810382526026815260200180620020586026913960400191505060405180910390fd5b620005798562000692565b620005cb576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106200060b5780518252601f199092019160209182019101620005ea565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146200066f576040519150601f19603f3d011682016040523d82523d6000602084013e62000674565b606091505b5090925090506200068782828662000698565b979650505050505050565b3b151590565b60608315620006a957508162000524565b825115620006ba5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000706578181015183820152602001620006ec565b50505050905090810190601f168015620007345780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b8280548282559060005260206000209081019282156200079a579160200282015b828111156200079a57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000763565b50620007a8929150620007ac565b5090565b5b80821115620007a85760008155600101620007ad565b60805160601c611836620007f56000398061064452806108e35280610c1e5280610d7f5280610f8e52506118366000f3fe6080604052600436106100ec5760003560e01c806388242e5d1161008a578063c15f5f8d11610059578063c15f5f8d14610463578063f2fde38b1461048d578063f301af42146104c0578063f3fef3a3146104ea576100f3565b806388242e5d1461029e5780638da5cb5b14610333578063ac210cc714610348578063b61d27f61461035d576100f3565b8063570ca735116100c6578063570ca7351461026d578063663c261b1461029e57806366cc1857146102d1578063715018a61461031e576100f3565b806306fdde03146100f857806319388d701461018257806347e7ef2414610234576100f3565b366100f357005b600080fd5b34801561010457600080fd5b5061010d610523565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018e57600080fd5b50610232600480360360208110156101a557600080fd5b8101906020810181356401000000008111156101c057600080fd5b8201836020820111156101d257600080fd5b803590602001918460208302840111640100000000831117156101f457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610553945050505050565b005b34801561024057600080fd5b506102326004803603604081101561025757600080fd5b506001600160a01b0381351690602001356105ce565b34801561027957600080fd5b506102826106a7565b604080516001600160a01b039092168252519081900360200190f35b3480156102aa57600080fd5b50610232600480360360208110156102c157600080fd5b50356001600160a01b03166106bc565b3480156102dd57600080fd5b5061030c600480360360408110156102f457600080fd5b506001600160a01b038135811691602001351661070e565b60408051918252519081900360200190f35b34801561032a57600080fd5b50610232610b4f565b34801561033f57600080fd5b50610282610c0d565b34801561035457600080fd5b50610282610c1c565b6103e26004803603606081101561037357600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103a357600080fd5b8201836020820111156103b557600080fd5b803590602001918460018302840111640100000000831117156103d757600080fd5b509092509050610c40565b60405180831515815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561042757818101518382015260200161040f565b50505050905090810190601f1680156104545780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b34801561046f57600080fd5b506102326004803603602081101561048657600080fd5b5035610d09565b34801561049957600080fd5b50610232600480360360208110156104b057600080fd5b50356001600160a01b0316610dfe565b3480156104cc57600080fd5b50610282600480360360208110156104e357600080fd5b5035610f13565b3480156104f657600080fd5b506102326004803603604081101561050d57600080fd5b506001600160a01b038135169060200135610f3d565b6040518060400160405280601481526020017321bb3c21b93b29ba30b5b4b733abb930b83832b960611b81525081565b6000546201000090046001600160a01b031633146105a25760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b6105ab8161115d565b6105b76001600061161c565b80516105ca90600190602084019061163a565b5050565b6000546201000090046001600160a01b0316331461061d5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b60408051637acb775760e01b81526004810183905230602482015290516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691637acb775791604480830192600092919082900301818387803b15801561068b57600080fd5b505af115801561069f573d6000803e3d6000fd5b505050505050565b6000546201000090046001600160a01b031681565b6000546201000090046001600160a01b0316331461070b5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b50565b600080546201000090046001600160a01b0316331461075e5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b600060018054806020026020016040519081016040528092919081815260200182805480156107b657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610798575b50505050509050600060018054905067ffffffffffffffff811180156107db57600080fd5b50604051908082528060200260200182016040528015610805578160200160208202803683370190505b50905060005b6001548110156108c25782818151811061082157fe5b60200260200101516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561087557600080fd5b505afa158015610889573d6000803e3d6000fd5b505050506040513d602081101561089f57600080fd5b505182518390839081106108af57fe5b602090810291909101015260010161080b565b5060408051630c00007b60e41b815230600482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163c00007b091602480830192600092919082900301818387803b15801561092a57600080fd5b505af115801561093e573d6000803e3d6000fd5b5050505060005b600154811015610a145781818151811061095b57fe5b602002602001015183828151811061096f57fe5b60200260200101516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156109c357600080fd5b505afa1580156109d7573d6000803e3d6000fd5b505050506040513d60208110156109ed57600080fd5b5051835191900390839083908110610a0157fe5b6020908102919091010152600101610945565b5060005b600154811015610b3c576000838281518110610a3057fe5b602002602001015190506000838381518110610a4857fe5b60200260200101519050866001600160a01b0316826001600160a01b03161415610a755794850194610b32565b8015610b3257610a8f6001600160a01b0383168983611261565b876001600160a01b03166349df439183838a60006040518563ffffffff1660e01b815260040180856001600160a01b03168152602001848152602001836001600160a01b03168152602001828152602001945050505050602060405180830381600087803b158015610b0057600080fd5b505af1158015610b14573d6000803e3d6000fd5b505050506040513d6020811015610b2a57600080fd5b505195909501945b5050600101610a18565b50610b4784846112b3565b505092915050565b610b57611362565b6001600160a01b0316610b68610c0d565b6001600160a01b031614610bc3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6032546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603280546001600160a01b0319169055565b6032546001600160a01b031690565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080546060906201000090046001600160a01b03163314610c935760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b600080876001600160a01b0316878787604051808383808284376040519201945060009350909150508083038185875af1925050503d8060008114610cf4576040519150601f19603f3d011682016040523d82523d6000602084013e610cf9565b606091505b5090999098509650505050505050565b610d11611362565b6001600160a01b0316610d22610c0d565b6001600160a01b031614610d7d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c15f5f8d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610de357600080fd5b505af1158015610df7573d6000803e3d6000fd5b5050505050565b610e06611362565b6001600160a01b0316610e17610c0d565b6001600160a01b031614610e72576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610eb75760405162461bcd60e51b81526004018080602001828103825260268152602001806116e26026913960400191505060405180910390fd5b6032546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603280546001600160a01b0319166001600160a01b0392909216919091179055565b60018181548110610f2357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546201000090046001600160a01b03163314610f8c5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610ff257600080fd5b505af1158015611006573d6000803e3d6000fd5b506105ca92507362b9c7356a2dc64a1969e19c23e4f579f9810aa7915084905083611261565b8015806110b2575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561108457600080fd5b505afa158015611098573d6000803e3d6000fd5b505050506040513d60208110156110ae57600080fd5b5051155b6110ed5760405162461bcd60e51b81526004018080602001828103825260368152602001806117cb6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261113f908490611366565b505050565b60606111538484600085611417565b90505b9392505050565b60005b81518110156105ca5760006001600160a01b031682828151811061118057fe5b60200260200101516001600160a01b031614156111ce5760405162461bcd60e51b81526004018080602001828103825260278152602001806117516027913960400191505060405180910390fd5b60005b81811015611258578281815181106111e557fe5b60200260200101516001600160a01b031683838151811061120257fe5b60200260200101516001600160a01b031614156112505760405162461bcd60e51b815260040180806020018281038252602d8152602001806116b5602d913960400191505060405180910390fd5b6001016111d1565b50600101611160565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261113f908490611366565b6001600160a01b03821661134e57604051600090339083908381818185875af1925050503d8060008114611303576040519150601f19603f3d011682016040523d82523d6000602084013e611308565b606091505b50509050806113485760405162461bcd60e51b81526004018080602001828103825260298152602001806117786029913960400191505060405180910390fd5b506105ca565b6105ca6001600160a01b0383163383611261565b3390565b60006113bb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111449092919063ffffffff16565b80519091501561113f578080602001905160208110156113da57600080fd5b505161113f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806117a1602a913960400191505060405180910390fd5b6060824710156114585760405162461bcd60e51b815260040180806020018281038252602681526020018061172b6026913960400191505060405180910390fd5b61146185611572565b6114b2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106114f05780518252601f1990920191602091820191016114d1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611552576040519150601f19603f3d011682016040523d82523d6000602084013e611557565b606091505b5091509150611567828286611578565b979650505050505050565b3b151590565b60608315611587575081611156565b8251156115975782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115e15781810151838201526020016115c9565b50505050905090810190601f16801561160e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508054600082559060005260206000209081019061070b919061169f565b82805482825590600052602060002090810192821561168f579160200282015b8281111561168f57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061165a565b5061169b92915061169f565b5090565b5b8082111561169b57600081556001016116a056fe436f6e63656e747261746f7253747261746567793a206475706c6963617465642072657761726420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373436f6e63656e747261746f7253747261746567793a206f6e6c79206f70657261746f72416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c436f6e63656e747261746f7253747261746567793a207a65726f2072657761726420746f6b656e436f6e63656e747261746f7253747261746567793a207472616e7366657220455448206661696c65645361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122024bf1d68d39e7cb123e52c8ba352ad5ba3118469f7b9b50bc1da1fb45b93c62364736f6c63430007060033436f6e63656e747261746f7253747261746567793a206475706c6963617465642072657761726420746f6b656e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c436f6e63656e747261746f7253747261746567793a207a65726f2072657761726420746f6b656e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000002b95a1dcc3d405535f9ed33c219ab38e8d7e0884000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe434

Deployed Bytecode

0x6080604052600436106100ec5760003560e01c806388242e5d1161008a578063c15f5f8d11610059578063c15f5f8d14610463578063f2fde38b1461048d578063f301af42146104c0578063f3fef3a3146104ea576100f3565b806388242e5d1461029e5780638da5cb5b14610333578063ac210cc714610348578063b61d27f61461035d576100f3565b8063570ca735116100c6578063570ca7351461026d578063663c261b1461029e57806366cc1857146102d1578063715018a61461031e576100f3565b806306fdde03146100f857806319388d701461018257806347e7ef2414610234576100f3565b366100f357005b600080fd5b34801561010457600080fd5b5061010d610523565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018e57600080fd5b50610232600480360360208110156101a557600080fd5b8101906020810181356401000000008111156101c057600080fd5b8201836020820111156101d257600080fd5b803590602001918460208302840111640100000000831117156101f457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610553945050505050565b005b34801561024057600080fd5b506102326004803603604081101561025757600080fd5b506001600160a01b0381351690602001356105ce565b34801561027957600080fd5b506102826106a7565b604080516001600160a01b039092168252519081900360200190f35b3480156102aa57600080fd5b50610232600480360360208110156102c157600080fd5b50356001600160a01b03166106bc565b3480156102dd57600080fd5b5061030c600480360360408110156102f457600080fd5b506001600160a01b038135811691602001351661070e565b60408051918252519081900360200190f35b34801561032a57600080fd5b50610232610b4f565b34801561033f57600080fd5b50610282610c0d565b34801561035457600080fd5b50610282610c1c565b6103e26004803603606081101561037357600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103a357600080fd5b8201836020820111156103b557600080fd5b803590602001918460018302840111640100000000831117156103d757600080fd5b509092509050610c40565b60405180831515815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561042757818101518382015260200161040f565b50505050905090810190601f1680156104545780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b34801561046f57600080fd5b506102326004803603602081101561048657600080fd5b5035610d09565b34801561049957600080fd5b50610232600480360360208110156104b057600080fd5b50356001600160a01b0316610dfe565b3480156104cc57600080fd5b50610282600480360360208110156104e357600080fd5b5035610f13565b3480156104f657600080fd5b506102326004803603604081101561050d57600080fd5b506001600160a01b038135169060200135610f3d565b6040518060400160405280601481526020017321bb3c21b93b29ba30b5b4b733abb930b83832b960611b81525081565b6000546201000090046001600160a01b031633146105a25760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b6105ab8161115d565b6105b76001600061161c565b80516105ca90600190602084019061163a565b5050565b6000546201000090046001600160a01b0316331461061d5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b60408051637acb775760e01b81526004810183905230602482015290516001600160a01b037f000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe4341691637acb775791604480830192600092919082900301818387803b15801561068b57600080fd5b505af115801561069f573d6000803e3d6000fd5b505050505050565b6000546201000090046001600160a01b031681565b6000546201000090046001600160a01b0316331461070b5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b50565b600080546201000090046001600160a01b0316331461075e5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b600060018054806020026020016040519081016040528092919081815260200182805480156107b657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610798575b50505050509050600060018054905067ffffffffffffffff811180156107db57600080fd5b50604051908082528060200260200182016040528015610805578160200160208202803683370190505b50905060005b6001548110156108c25782818151811061082157fe5b60200260200101516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561087557600080fd5b505afa158015610889573d6000803e3d6000fd5b505050506040513d602081101561089f57600080fd5b505182518390839081106108af57fe5b602090810291909101015260010161080b565b5060408051630c00007b60e41b815230600482015290516001600160a01b037f000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe434169163c00007b091602480830192600092919082900301818387803b15801561092a57600080fd5b505af115801561093e573d6000803e3d6000fd5b5050505060005b600154811015610a145781818151811061095b57fe5b602002602001015183828151811061096f57fe5b60200260200101516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156109c357600080fd5b505afa1580156109d7573d6000803e3d6000fd5b505050506040513d60208110156109ed57600080fd5b5051835191900390839083908110610a0157fe5b6020908102919091010152600101610945565b5060005b600154811015610b3c576000838281518110610a3057fe5b602002602001015190506000838381518110610a4857fe5b60200260200101519050866001600160a01b0316826001600160a01b03161415610a755794850194610b32565b8015610b3257610a8f6001600160a01b0383168983611261565b876001600160a01b03166349df439183838a60006040518563ffffffff1660e01b815260040180856001600160a01b03168152602001848152602001836001600160a01b03168152602001828152602001945050505050602060405180830381600087803b158015610b0057600080fd5b505af1158015610b14573d6000803e3d6000fd5b505050506040513d6020811015610b2a57600080fd5b505195909501945b5050600101610a18565b50610b4784846112b3565b505092915050565b610b57611362565b6001600160a01b0316610b68610c0d565b6001600160a01b031614610bc3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6032546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603280546001600160a01b0319169055565b6032546001600160a01b031690565b7f000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe43481565b600080546060906201000090046001600160a01b03163314610c935760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b600080876001600160a01b0316878787604051808383808284376040519201945060009350909150508083038185875af1925050503d8060008114610cf4576040519150601f19603f3d011682016040523d82523d6000602084013e610cf9565b606091505b5090999098509650505050505050565b610d11611362565b6001600160a01b0316610d22610c0d565b6001600160a01b031614610d7d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7f000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe4346001600160a01b031663c15f5f8d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610de357600080fd5b505af1158015610df7573d6000803e3d6000fd5b5050505050565b610e06611362565b6001600160a01b0316610e17610c0d565b6001600160a01b031614610e72576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610eb75760405162461bcd60e51b81526004018080602001828103825260268152602001806116e26026913960400191505060405180910390fd5b6032546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603280546001600160a01b0319166001600160a01b0392909216919091179055565b60018181548110610f2357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546201000090046001600160a01b03163314610f8c5760405162461bcd60e51b81526004018080602001828103825260238152602001806117086023913960400191505060405180910390fd5b7f000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe4346001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610ff257600080fd5b505af1158015611006573d6000803e3d6000fd5b506105ca92507362b9c7356a2dc64a1969e19c23e4f579f9810aa7915084905083611261565b8015806110b2575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561108457600080fd5b505afa158015611098573d6000803e3d6000fd5b505050506040513d60208110156110ae57600080fd5b5051155b6110ed5760405162461bcd60e51b81526004018080602001828103825260368152602001806117cb6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261113f908490611366565b505050565b60606111538484600085611417565b90505b9392505050565b60005b81518110156105ca5760006001600160a01b031682828151811061118057fe5b60200260200101516001600160a01b031614156111ce5760405162461bcd60e51b81526004018080602001828103825260278152602001806117516027913960400191505060405180910390fd5b60005b81811015611258578281815181106111e557fe5b60200260200101516001600160a01b031683838151811061120257fe5b60200260200101516001600160a01b031614156112505760405162461bcd60e51b815260040180806020018281038252602d8152602001806116b5602d913960400191505060405180910390fd5b6001016111d1565b50600101611160565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261113f908490611366565b6001600160a01b03821661134e57604051600090339083908381818185875af1925050503d8060008114611303576040519150601f19603f3d011682016040523d82523d6000602084013e611308565b606091505b50509050806113485760405162461bcd60e51b81526004018080602001828103825260298152602001806117786029913960400191505060405180910390fd5b506105ca565b6105ca6001600160a01b0383163383611261565b3390565b60006113bb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111449092919063ffffffff16565b80519091501561113f578080602001905160208110156113da57600080fd5b505161113f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806117a1602a913960400191505060405180910390fd5b6060824710156114585760405162461bcd60e51b815260040180806020018281038252602681526020018061172b6026913960400191505060405180910390fd5b61146185611572565b6114b2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106114f05780518252601f1990920191602091820191016114d1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611552576040519150601f19603f3d011682016040523d82523d6000602084013e611557565b606091505b5091509150611567828286611578565b979650505050505050565b3b151590565b60608315611587575081611156565b8251156115975782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115e15781810151838201526020016115c9565b50505050905090810190601f16801561160e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508054600082559060005260206000209081019061070b919061169f565b82805482825590600052602060002090810192821561168f579160200282015b8281111561168f57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061165a565b5061169b92915061169f565b5090565b5b8082111561169b57600081556001016116a056fe436f6e63656e747261746f7253747261746567793a206475706c6963617465642072657761726420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373436f6e63656e747261746f7253747261746567793a206f6e6c79206f70657261746f72416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c436f6e63656e747261746f7253747261746567793a207a65726f2072657761726420746f6b656e436f6e63656e747261746f7253747261746567793a207472616e7366657220455448206661696c65645361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122024bf1d68d39e7cb123e52c8ba352ad5ba3118469f7b9b50bc1da1fb45b93c62364736f6c63430007060033

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

0000000000000000000000002b95a1dcc3d405535f9ed33c219ab38e8d7e0884000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe434

-----Decoded View---------------
Arg [0] : _operator (address): 0x2b95A1Dcc3D405535f9ed33c219ab38E8d7e0884
Arg [1] : _wrapper (address): 0xaa0C3f5F7DFD688C6E646F66CD2a6B66ACdbE434

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002b95a1dcc3d405535f9ed33c219ab38e8d7e0884
Arg [1] : 000000000000000000000000aa0c3f5f7dfd688c6e646f66cd2a6b66acdbe434


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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