ETH Price: $2,137.67 (-15.81%)
Gas: 1.05 Gwei

Contract

0x01Fcb5Bc16e8d945bA276DCCFeE068231DA4cE33
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Checkpoint108510952020-09-13 3:10:071632 days ago1599966607IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.0158182121
Checkpoint108510952020-09-13 3:10:071632 days ago1599966607IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.01886099121
Checkpoint108510912020-09-13 3:08:521632 days ago1599966532IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.01886099121
Increase Amount108510912020-09-13 3:08:521632 days ago1599966532IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.03272735121
Checkpoint108482562020-09-12 16:36:571633 days ago1599928617IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.01886099121
Increase Amount108482532020-09-12 16:35:481633 days ago1599928548IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.03091235121
Checkpoint108306302020-09-09 23:54:571635 days ago1599695697IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.01886099121
Increase Amount108306242020-09-09 23:53:481635 days ago1599695628IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.03091235121
Checkpoint108283622020-09-09 15:39:511636 days ago1599665991IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.0311752200
Create Lock108283572020-09-09 15:39:281636 days ago1599665968IN
0x01Fcb5Bc...31DA4cE33
0 ETH0.0612844200

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CRVStrategySwerveUSDTMainnet

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 150 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-08
*/

// File: @openzeppelin/contracts/math/Math.sol

pragma solidity ^0.5.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.5.5;

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @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].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

pragma solidity ^0.5.0;




/**
 * @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 ERC20;` 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));
    }

    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.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "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: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

// File: contracts/strategies/curve/interfaces/Gauge.sol

pragma solidity 0.5.16;

interface Gauge {
    function deposit(uint) external;
    function balanceOf(address) external view returns (uint);
    function withdraw(uint) external;
    function user_checkpoint(address) external;
}

interface VotingEscrow {
    function create_lock(uint256 v, uint256 time) external;
    function increase_amount(uint256 _value) external;
    function increase_unlock_time(uint256 _unlock_time) external;
    function withdraw() external;
}

interface Mintr {
    function mint(address) external;
}

// File: contracts/strategies/curve/interfaces/ISwerveFi.sol

pragma solidity 0.5.16;

interface ISwerveFi {
  function get_virtual_price() external view returns (uint);
  function add_liquidity(
    uint256[4] calldata amounts,
    uint256 min_mint_amount
  ) external;
  function remove_liquidity_imbalance(
    uint256[4] calldata amounts,
    uint256 max_burn_amount
  ) external;
  function remove_liquidity(
    uint256 _amount,
    uint256[4] calldata amounts
  ) external;
  function exchange(
    int128 from, int128 to, uint256 _from_amount, uint256 _min_to_amount
  ) external;
  function calc_token_amount(
    uint256[4] calldata amounts,
    bool deposit
  ) external view returns(uint);
  function calc_withdraw_one_coin(
    uint256 _token_amount, int128 i) external view returns (uint256);
  function remove_liquidity_one_coin(uint256 _token_amount, int128 i,
    uint256 min_amount) external;
}

// File: contracts/strategies/curve/interfaces/yVault.sol

pragma solidity 0.5.16;

interface yERC20 {
  function deposit(uint256 _amount) external;
  function withdraw(uint256 _amount) external;
  function getPricePerFullShare() external view returns (uint256);
}

// File: contracts/strategies/curve/interfaces/IPriceConvertor.sol

pragma solidity 0.5.16;

interface IPriceConvertor {
  function yCrvToUnderlying(uint256 _token_amount, uint256 i) external view returns (uint256);
}

// File: contracts/hardworkInterface/IController.sol

pragma solidity 0.5.16;

interface IController {
    // [Grey list]
    // An EOA can safely interact with the system no matter what.
    // If you're using Metamask, you're using an EOA.
    // Only smart contracts may be affected by this grey list.
    //
    // This contract will not be able to ban any EOA from the system
    // even if an EOA is being added to the greyList, he/she will still be able
    // to interact with the whole system as if nothing happened.
    // Only smart contracts will be affected by being added to the greyList.
    // This grey list is only used in Vault.sol, see the code there for reference
    function greyList(address _target) external returns(bool);

    function addVaultAndStrategy(address _vault, address _strategy) external;
    function doHardWork(address _vault) external;
    function hasVault(address _vault) external returns(bool);

    function salvage(address _token, uint256 amount) external;
    function salvageStrategy(address _strategy, address _token, uint256 amount) external;

    function notifyFee(address _underlying, uint256 fee) external;
    function profitSharingNumerator() external view returns (uint256);
    function profitSharingDenominator() external view returns (uint256);
}

// File: contracts/Storage.sol

pragma solidity 0.5.16;

contract Storage {

  address public governance;
  address public controller;

  constructor() public {
    governance = msg.sender;
  }

  modifier onlyGovernance() {
    require(isGovernance(msg.sender), "Not governance");
    _;
  }

  function setGovernance(address _governance) public onlyGovernance {
    require(_governance != address(0), "new governance shouldn't be empty");
    governance = _governance;
  }

  function setController(address _controller) public onlyGovernance {
    require(_controller != address(0), "new controller shouldn't be empty");
    controller = _controller;
  }

  function isGovernance(address account) public view returns (bool) {
    return account == governance;
  }

  function isController(address account) public view returns (bool) {
    return account == controller;
  }
}

// File: contracts/Governable.sol

pragma solidity 0.5.16;


contract Governable {

  Storage public store;

  constructor(address _store) public {
    require(_store != address(0), "new storage shouldn't be empty");
    store = Storage(_store);
  }

  modifier onlyGovernance() {
    require(store.isGovernance(msg.sender), "Not governance");
    _;
  }

  function setStorage(address _store) public onlyGovernance {
    require(_store != address(0), "new storage shouldn't be empty");
    store = Storage(_store);
  }

  function governance() public view returns (address) {
    return store.governance();
  }
}

// File: contracts/Controllable.sol

pragma solidity 0.5.16;


contract Controllable is Governable {

  constructor(address _storage) Governable(_storage) public {
  }

  modifier onlyController() {
    require(store.isController(msg.sender), "Not a controller");
    _;
  }

  modifier onlyControllerOrGovernance(){
    require((store.isController(msg.sender) || store.isGovernance(msg.sender)),
      "The caller must be controller or governance");
    _;
  }

  function controller() public view returns (address) {
    return store.controller();
  }
}

// File: contracts/strategies/ProfitNotifier.sol

pragma solidity 0.5.16;






contract ProfitNotifier is Controllable {
  using SafeMath for uint256;
  using SafeERC20 for IERC20;

  uint256 public profitSharingNumerator;
  uint256 public profitSharingDenominator;
  address public underlying;

  event ProfitLog(
    uint256 oldBalance,
    uint256 newBalance,
    uint256 feeAmount,
    uint256 timestamp
  );

  constructor(
    address _storage,
    address _underlying
  ) public Controllable(_storage){
    underlying = _underlying;
    // persist in the state for immutability of the fee
    profitSharingNumerator = 30; //IController(controller()).profitSharingNumerator();
    profitSharingDenominator = 100; //IController(controller()).profitSharingDenominator();
    require(profitSharingNumerator < profitSharingDenominator, "invalid profit share");
  }

  function notifyProfit(uint256 oldBalance, uint256 newBalance) internal {
    if (newBalance > oldBalance) {
      uint256 profit = newBalance.sub(oldBalance);
      uint256 feeAmount = profit.mul(profitSharingNumerator).div(profitSharingDenominator);
      emit ProfitLog(oldBalance, newBalance, feeAmount, block.timestamp);

      IERC20(underlying).safeApprove(controller(), 0);
      IERC20(underlying).safeApprove(controller(), feeAmount);
      IController(controller()).notifyFee(
        underlying,
        feeAmount
      );
    } else {
      emit ProfitLog(oldBalance, newBalance, 0, block.timestamp);
    }
  }
}

// File: contracts/hardworkInterface/IVault.sol

pragma solidity 0.5.16;


interface IVault {
    // the IERC20 part is the share

    function underlyingBalanceInVault() external view returns (uint256);
    function underlyingBalanceWithInvestment() external view returns (uint256);

    function governance() external view returns (address);
    function controller() external view returns (address);
    function underlying() external view returns (address);
    function strategy() external view returns (address);

    function setStrategy(address _strategy) external;
    function setVaultFractionToInvest(uint256 numerator, uint256 denominator) external;

    function deposit(uint256 amountWei) external;
    function depositFor(uint256 amountWei, address holder) external;

    function withdrawAll() external;
    function withdraw(uint256 numberOfShares) external;
    function getPricePerFullShare() external view returns (uint256);

    function underlyingBalanceWithInvestmentForHolder(address holder) view external returns (uint256);

    // hard work should be callable only by the controller (by the hard worker) or by governance
    function doHardWork() external;
    function rebalance() external;
}

// File: contracts/hardworkInterface/IStrategy.sol

pragma solidity 0.5.16;


interface IStrategy {
    
    function unsalvagableTokens(address tokens) external view returns (bool);
    
    function governance() external view returns (address);
    function controller() external view returns (address);
    function underlying() external view returns (address);
    function vault() external view returns (address);

    function withdrawAllToVault() external;
    function withdrawToVault(uint256 amount) external;

    function investedUnderlyingBalance() external view returns (uint256); // itsNotMuch()

    // should only be called by controller
    function salvage(address recipient, address token, uint256 amount) external;

    function doHardWork() external;
    function depositArbCheck() external view returns(bool);
}

// File: contracts/uniswap/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.5.0;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: contracts/uniswap/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.5.0;


interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: contracts/strategies/curve/CRVStrategySwerve.sol

pragma solidity 0.5.16;

















// This is an exact clone of the WBTC strategy
// Naming was not adjusted for easy diff
contract CRVStrategySwerve is IStrategy, ProfitNotifier {

  enum TokenIndex {DAI, USDC, USDT, TUSD}

  using SafeERC20 for IERC20;
  using Address for address;
  using SafeMath for uint256;

  // wbtc token address (or ren if we want both)
  address public wbtc;

  // the matching enum record used to determine the index
  TokenIndex tokenIndex;

  // our vault holding the wbtc asset
  address public vault;

  // our vault for depositing the mixToken tokens
  address public mixVault;

  // the address of mixToken token
  address public mixToken;

  // the address of the Curve protocol's pool for REN + WBTC
  address public curve;

  // these tokens cannot be claimed by the governance
  mapping(address => bool) public unsalvagableTokens;

  // the wbtc gauge in Curve
  address public gauge;

  // the reward minter
  address public mintr;

  // the address for the CRV token
  address public crv;

  // uniswap router address
  address public uni;

  // price checkpoint preventing attacks
  uint256 public wbtcPriceCheckpoint;

  // a unit for the price checkpoint
  uint256 public mixTokenUnit;

  // settable arbitrage tolerance
  uint256 public arbTolerance = 3;

  // liquidation path to be used
  address[] public uniswap_CRV2WBTC;

  // a flag for disabling selling for simplified emergency exit
  bool public sell = true;

  // minimum CRV amount to be liquidation
  uint256 public sellFloor = 30e18;

  event Liquidating(uint256 amount);
  event ProfitsNotCollected();


  modifier restricted() {
    require(msg.sender == vault || msg.sender == controller()
      || msg.sender == governance(),
      "The sender has to be the controller, governance, or vault");
    _;
  }

  constructor(
    address _storage,
    address _wbtc,
    address _vault,
    uint256 _tokenIndex,
    address _mixToken,
    address _curvePool,
    address _crv,
    address _weth,
    address _gauge,
    address _mintr,
    address _uniswap
  )
  ProfitNotifier(_storage, _wbtc) public {
    vault = _vault;
    wbtc = _wbtc;
    tokenIndex = TokenIndex(_tokenIndex);
    mixToken = _mixToken;
    curve = _curvePool;
    gauge = _gauge;
    crv = _crv;
    uni = _uniswap;
    mintr = _mintr;

    uniswap_CRV2WBTC = [_crv, _weth, _wbtc];

    // set these tokens to be not salvageable
    unsalvagableTokens[wbtc] = true;
    unsalvagableTokens[mixToken] = true;
    unsalvagableTokens[crv] = true;

    mixTokenUnit = 10 ** 18;
    
    // starting with a stable price, the mainnet will override this value
    wbtcPriceCheckpoint = mixTokenUnit;
  }

  function depositArbCheck() public view returns(bool) {
    uint256 currentPrice = wbtcValueFromMixToken(mixTokenUnit);
    if (currentPrice > wbtcPriceCheckpoint) {
      return currentPrice.mul(100).div(wbtcPriceCheckpoint) > 100 - arbTolerance;
    } else {
      return wbtcPriceCheckpoint.mul(100).div(currentPrice) > 100 - arbTolerance;
    }
  }

  function setArbTolerance(uint256 tolerance) external onlyGovernance {
    require(tolerance <= 100, "at most 100");
    arbTolerance = tolerance;
  }

  /**
  * Uses the Curve protocol to convert the wbtc asset into to mixed renwbtc token.
  */
  function mixFromWBTC() internal {
    uint256 wbtcBalance = IERC20(wbtc).balanceOf(address(this));
    if (wbtcBalance > 0) {
      IERC20(wbtc).safeApprove(curve, 0);
      IERC20(wbtc).safeApprove(curve, wbtcBalance);
      // we can accept 0 as minimum because this is called only by a trusted role
      uint256 minimum = 0;
      uint256[4] memory coinAmounts = wrapCoinAmount(wbtcBalance);
      ISwerveFi(curve).add_liquidity(
        coinAmounts, minimum
      );
    }
    // now we have the mixed token
  }

  /**
  * Uses the Curve protocol to convert the mixed token back into the wbtc asset. If it cannot
  * acquire the limit amount, it will acquire the maximum it can.
  */
  function mixToWBTC(uint256 wbtcLimit) internal {
    uint256 mixTokenBalance = IERC20(mixToken).balanceOf(address(this));

    // this is the maximum number of wbtc we can get for our mixed token
    uint256 wbtcMaximumAmount = wbtcValueFromMixToken(mixTokenBalance);
    if (wbtcMaximumAmount == 0) {
      return;
    }

    if (wbtcLimit < wbtcMaximumAmount) {
      // we want less than what we can get, we ask for the exact amount
      // now we can remove the liquidity
      uint256[4] memory tokenAmounts = wrapCoinAmount(wbtcLimit);
      IERC20(mixToken).safeApprove(curve, 0);
      IERC20(mixToken).safeApprove(curve, mixTokenBalance);
      ISwerveFi(curve).remove_liquidity_imbalance(
        tokenAmounts, mixTokenBalance
      );
    } else {
      // we want more than we can get, so we withdraw everything
      IERC20(mixToken).safeApprove(curve, 0);
      IERC20(mixToken).safeApprove(curve, mixTokenBalance);
      ISwerveFi(curve).remove_liquidity_one_coin(mixTokenBalance, int128(tokenIndex), 0);
    }
    // now we have wbtc asset
  }

  /**
  * Withdraws an wbtc asset from the strategy to the vault in the specified amount by asking
  * by removing imbalanced liquidity from the Curve protocol. The rest is deposited back to the
  * Curve protocol pool. If the amount requested cannot be obtained, the method will get as much
  * as we have.
  */
  function withdrawToVault(uint256 amountWbtc) external restricted {
    // withdraw all from gauge
    Gauge(gauge).withdraw(Gauge(gauge).balanceOf(address(this)));
    // convert the mix to WBTC, but get at most amountWbtc
    mixToWBTC(amountWbtc);
    // we can transfer the asset to the vault
    uint256 actualBalance = IERC20(wbtc).balanceOf(address(this));
    if (actualBalance > 0) {
      IERC20(wbtc).safeTransfer(vault, Math.min(amountWbtc, actualBalance));
    }

    // invest back the rest
    investAllUnderlying();
  }

  /**
  * Withdraws all assets from the vault.
  */
  function withdrawAllToVault() external restricted {
    // withdraw all from gauge
    Gauge(gauge).withdraw(Gauge(gauge).balanceOf(address(this)));
    // convert the mix to WBTC, we want the entire balance
    mixToWBTC(uint256(~0));
    // we can transfer the asset to the vault
    uint256 actualBalance = IERC20(wbtc).balanceOf(address(this));
    if (actualBalance > 0) {
      IERC20(wbtc).safeTransfer(vault, actualBalance);
    }
  }

  /**
  * Invests all wbtc assets into our mixToken vault.
  */
  function investAllUnderlying() internal {
    // convert the entire balance not yet invested into mixToken first
    mixFromWBTC();

    // then deposit into the mixToken vault
    uint256 mixTokenBalance = IERC20(mixToken).balanceOf(address(this));
    if (mixTokenBalance > 0) {
      IERC20(mixToken).safeApprove(gauge, 0);
      IERC20(mixToken).safeApprove(gauge, mixTokenBalance);
      Gauge(gauge).deposit(mixTokenBalance);
    }
  }

  /**
  * The hard work only invests all wbtc assets, and then tells the controller to call hard
  * work on the mixToken vault.
  */
  function doHardWork() public restricted {
    claimAndLiquidateCrv();
    investAllUnderlying();
    wbtcPriceCheckpoint = wbtcValueFromMixToken(mixTokenUnit);
  }

  /**
  * Salvages a token. We cannot salvage mixToken tokens, CRV, or wbtc assets.
  */
  function salvage(address recipient, address token, uint256 amount) public onlyGovernance {
    // To make sure that governance cannot come in and take away the coins
    require(!unsalvagableTokens[token], "token is defined as not salvageable");
    IERC20(token).safeTransfer(recipient, amount);
  }

  /**
  * Returns the wbtc invested balance. The is the wbtc amount in this stragey, plus the gauge
  * amount of the mixed token converted back to wbtc.
  */
  function investedUnderlyingBalance() public view returns (uint256) {
    uint256 gaugeBalance = Gauge(gauge).balanceOf(address(this));
    uint256 wbtcBalance = IERC20(wbtc).balanceOf(address(this));
    if (gaugeBalance == 0) {
      // !!! if we have 0 balance in gauge, the conversion to wbtc reverts in Curve
      // !!! this if-statement is necessary to avoid transaction reverts
      return wbtcBalance;
    }
    uint256 investedBalance = wbtcValueFromMixToken(gaugeBalance);
    return investedBalance.add(wbtcBalance);
  }

  function wbtcValueFromMixToken(uint256 mixTokenBalance) public view returns (uint256) {
    return ISwerveFi(curve).calc_withdraw_one_coin(mixTokenBalance,
      int128(tokenIndex));
  }

  /**
  * Wraps the coin amount in the array for interacting with the Curve protocol
  */
  function wrapCoinAmount(uint256 amount) internal view returns (uint256[4] memory) {
    uint256[4] memory amounts = [uint256(0), uint256(0), uint256(0), uint256(0)];
    amounts[uint56(tokenIndex)] = amount;
    return amounts;
  }

  /**
  * Claims the CRV crop, converts it to WBTC/renWBTC on Uniswap
  */
  function claimAndLiquidateCrv() internal {
    if (!sell) {
      // Profits can be disabled for possible simplified and rapid exit
      emit ProfitsNotCollected();
      return;
    }
    Mintr(mintr).mint(gauge);
    // claiming rewards and liquidating them
    uint256 crvBalance = IERC20(crv).balanceOf(address(this));
    emit Liquidating(crvBalance);
    if (crvBalance > sellFloor) {
      uint256 wbtcBalanceBefore = IERC20(wbtc).balanceOf(address(this));
      IERC20(crv).safeApprove(uni, 0);
      IERC20(crv).safeApprove(uni, crvBalance);
      // we can accept 1 as the minimum because this will be called only by a trusted worker
      IUniswapV2Router02(uni).swapExactTokensForTokens(
        crvBalance, 1, uniswap_CRV2WBTC, address(this), block.timestamp
      );

      // now we have WBTC
      notifyProfit(wbtcBalanceBefore, IERC20(wbtc).balanceOf(address(this)));
    }
  }

  /**
  * Can completely disable claiming CRV rewards and selling. Good for emergency withdraw in the
  * simplest possible way.
  */
  function setSell(bool s) public onlyGovernance {
    sell = s;
  }

  /**
  * Sets the minimum amount of CRV needed to trigger a sale.
  */
  function setSellFloor(uint256 floor) public onlyGovernance {
    sellFloor = floor;
  }

  /**
  * Creates a Swerve lock
  */
  function createLock(address lockToken, address escrow, uint256 value,
    uint256 unlockTime) public onlyGovernance {
    IERC20(lockToken).safeApprove(escrow, 0);
    IERC20(lockToken).safeApprove(escrow, value);
    VotingEscrow(escrow).create_lock(value, unlockTime);
  }

  /**
  * Checkpoints the Swerve lock balance
  */
  function checkpoint(address _gauge) public onlyGovernance {
    Gauge(_gauge).user_checkpoint(address(this));
  }

  /**
  * Increases the lock amount for Swerve
  */
  function increaseAmount(address lockToken, address escrow, uint256 value) public onlyGovernance {
    IERC20(lockToken).safeApprove(escrow, 0);
    IERC20(lockToken).safeApprove(escrow, value);
    VotingEscrow(escrow).increase_amount(value);
  }

  /**
  * Increases the unlock time for Swerve
  */
  function increaseUnlockTime(address escrow, uint256 unlock_time) public onlyGovernance {
    VotingEscrow(escrow).increase_unlock_time(unlock_time);
  }

  /**
  * Withdraws an expired lock
  */
  function withdrawLock(address lockToken, address escrow) public onlyGovernance {
    uint256 balanceBefore = IERC20(lockToken).balanceOf(address(this));
    VotingEscrow(escrow).withdraw();
    uint256 balanceAfter = IERC20(lockToken).balanceOf(address(this));
    if (balanceAfter > balanceBefore) {
      IERC20(lockToken).safeTransfer(msg.sender, balanceAfter.sub(balanceBefore));
    }
  }
}

// File: contracts/strategies/curve/PriceConvertor.sol

pragma solidity 0.5.16;


interface IConvertor {
  function calc_withdraw_one_coin(uint256 _token_amount, int128 i) external view returns (uint256);
}

contract PriceConvertor is IPriceConvertor {

  IConvertor public zap = IConvertor(0xbBC81d23Ea2c3ec7e56D39296F0cbB648873a5d3);

  function yCrvToUnderlying(uint256 _token_amount, uint256 i) public view returns (uint256) {
    // this returning the DAI amount, not yDAI
    return zap.calc_withdraw_one_coin(_token_amount, int128(i));
  }
}

contract MockPriceConvertor is IPriceConvertor {
  function yCrvToUnderlying(uint256 _token_amount, uint256 /* i */) public view returns (uint256) {
    // counting 1:1
    return _token_amount;
  }
}

// File: contracts/strategies/curve/CRVStrategySwerveUSDTMainnet.sol

pragma solidity 0.5.16;



/**
* Adds the mainnet addresses to the CRVStrategyWBTC
*/
contract CRVStrategySwerveUSDTMainnet is CRVStrategySwerve {

  // token addresses
  // using USDT here
  address constant public __usdt = address(0xdAC17F958D2ee523a2206206994597C13D831ec7);
  // mixed token (swerve combo Swerve.fi DAI/USDC/USDT/TUSD (swUSD))
  address constant public __stableMix = address(0x77C6E4a580c0dCE4E5c7a17d0bc077188a83A059);
  // the dao reward token for swerve
  address constant public __swrv = address(0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433);
  address constant public __weth = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
  // swerve gauge
  address constant public __gauge = address(0xb4d0C929cD3A1FbDc6d57E7D3315cF0C4d6B4bFa);
  // swerve minter
  address constant public __mintr = address(0x2c988c3974AD7E604E276AE0294a7228DEf67974); // _mintr

  // protocols
  // delegate to zap
  address constant public __poolZap = address(0xa746c67eB7915Fa832a4C2076D403D4B68085431);
  address constant public __uniswap = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

  uint256 constant public __tokenIndex = 2;

  constructor(
    address _storage,
    address _vault
  )
  CRVStrategySwerve(
    _storage,
    __usdt,
    _vault,
    __tokenIndex, // token index for USDT
    __stableMix,
    __poolZap, // curve protocol's pool for WBTC
    __swrv, // the reward DAO token address
    __weth,
    __gauge,
    __mintr,
    __uniswap // uniswap
  )
  public {
    wbtcPriceCheckpoint = wbtcValueFromMixToken(mixTokenUnit);
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_storage","type":"address"},{"internalType":"address","name":"_vault","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Liquidating","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ProfitLog","type":"event"},{"anonymous":false,"inputs":[],"name":"ProfitsNotCollected","type":"event"},{"constant":true,"inputs":[],"name":"__gauge","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__mintr","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__poolZap","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__stableMix","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__swrv","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__tokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__uniswap","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"__weth","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"arbTolerance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_gauge","type":"address"}],"name":"checkpoint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"lockToken","type":"address"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"}],"name":"createLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"curve","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"depositArbCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"doHardWork","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gauge","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"lockToken","type":"address"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"increaseAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"escrow","type":"address"},{"internalType":"uint256","name":"unlock_time","type":"uint256"}],"name":"increaseUnlockTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"investedUnderlyingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintr","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mixToken","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mixTokenUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mixVault","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"profitSharingDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"profitSharingNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"salvage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellFloor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tolerance","type":"uint256"}],"name":"setArbTolerance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"s","type":"bool"}],"name":"setSell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"floor","type":"uint256"}],"name":"setSellFloor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_store","type":"address"}],"name":"setStorage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"store","outputs":[{"internalType":"contract Storage","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uni","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uniswap_CRV2WBTC","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unsalvagableTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wbtc","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wbtcPriceCheckpoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"mixTokenBalance","type":"uint256"}],"name":"wbtcValueFromMixToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAllToVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"lockToken","type":"address"},{"internalType":"address","name":"escrow","type":"address"}],"name":"withdrawLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amountWbtc","type":"uint256"}],"name":"withdrawToVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405260036010556012805460ff191660011790556801a055690d9db800006013553480156200003057600080fd5b506040516200320e3803806200320e833981810160405260408110156200005657600080fd5b5080516020909101518173dac17f958d2ee523a2206206994597c13d831ec78260027377c6e4a580c0dce4e5c7a17d0bc077188a83a05973a746c67eb7915fa832a4c2076d403d4b6808543173b8baa0e4287890a5f79863ab62b7f175cecbd43373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa732c988c3974ad7e604e276ae0294a7228def67974737a250d5630b4cf539739df2c5dacb4c659f2488d8a8a81806001600160a01b0381166200016b576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b039283166001600160a01b03199182161790915560038054948316948216949094178455601e60015560646002556005805482168f841617905560048054909116918f1691909117905550899150811115620001ce57fe5b6004805460ff60a01b1916600160a01b836003811115620001eb57fe5b0217905550600780546001600160a01b03199081166001600160a01b038a811691909117909255600880548216898416179055600a80548216868416179055600c80548216888416908117909155600d80548316858516179055600b805490921685841617909155604080516060810182529182528683166020830152918c169181019190915262000282906011906003620003b1565b50506004546001600160a01b039081166000908152600960205260408082208054600160ff199182168117909255600754851684528284208054821683179055600c549094168352912080549092161790555050670de0b6b3a7640000600f819055600e819055620002fe98509650506200030a945050505050565b600e5550620004459050565b6008546004546000916001600160a01b03169063cc2b27d7908490600160a01b900460ff1660038111156200033b57fe5b6040518363ffffffff1660e01b81526004018083815260200182600f0b600f0b81526020019250505060206040518083038186803b1580156200037d57600080fd5b505afa15801562000392573d6000803e3d6000fd5b505050506040513d6020811015620003a957600080fd5b505192915050565b82805482825590600052602060002090810192821562000409579160200282015b828111156200040957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620003d2565b50620004179291506200041b565b5090565b6200044291905b80821115620004175780546001600160a01b031916815560010162000422565b90565b612db980620004556000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80638e39520c11610167578063bfd131f1116100ce578063eb5594d811610087578063eb5594d814610591578063edc9af9514610599578063f03312ff146105a1578063f6a8d50a146105be578063f77c4791146105fa578063fbfa77cf1461060257610295565b8063bfd131f114610528578063c2a2a07b14610530578063cb5f06cd14610538578063ce8c42e814610564578063d1e61dcb14610581578063ded078381461058957610295565b8063a6f19c8411610120578063a6f19c84146104ae578063a972985e146104b6578063b076a53a146104dc578063b60f151a146104fb578063ba09591e14610503578063be85ba331461052057610295565b80638e39520c146104325780639137c1a714610468578063924689651461048e578063975057e7146104965780639aa9c43a1461049e578063a1dab23e146104a657610295565b80634fa5d8541161020b5780636a4874a1116101c45780636a4874a1146103dc5780636f307dc3146103e45780637165485d146103ec57806372216367146103f457806377be00f31461042257806386d4b3671461042a57610295565b80634fa5d854146103795780635009ae4b146103815780635018594614610389578063554a16ba146103af5780635aa6e675146103cc5780636815e49c146103d457610295565b80632cca0cd61161025d5780632cca0cd6146103045780632e3f1474146103285780633558abf9146103455780633cdc53891461034d578063457100741461035557806345d01e4a1461037157610295565b8063026a0dd01461029a5780630a9de2e1146102b45780631113ef52146102bc5780631b0adc1f146102f45780631c13e96e146102fc575b600080fd5b6102a261060a565b60408051918252519081900360200190f35b6102a2610610565b6102f2600480360360608110156102d257600080fd5b506001600160a01b03813581169160208101359091169060400135610616565b005b6102a2610746565b6102a261074b565b61030c610751565b604080516001600160a01b039092168252519081900360200190f35b6102f26004803603602081101561033e57600080fd5b5035610769565b61030c61086b565b61030c610883565b61035d610892565b604080519115158252519081900360200190f35b6102a261089b565b6102f26109cb565b61030c610a7a565b61035d6004803603602081101561039f57600080fd5b50356001600160a01b0316610a89565b6102a2600480360360208110156103c557600080fd5b5035610a9e565b61030c610b41565b61030c610bc1565b61030c610bd9565b61030c610be8565b61030c610bf7565b6102f26004803603604081101561040a57600080fd5b506001600160a01b0381358116916020013516610c06565b61030c610e43565b61030c610e5b565b6102f26004803603606081101561044857600080fd5b506001600160a01b03813581169160208101359091169060400135610e73565b6102f26004803603602081101561047e57600080fd5b50356001600160a01b0316610fc4565b6102a26110fa565b61030c611100565b61030c61110f565b6102a2611127565b61030c61112d565b6102f2600480360360208110156104cc57600080fd5b50356001600160a01b031661113c565b6102f2600480360360208110156104f257600080fd5b50351515611257565b6102a2611323565b6102f26004803603602081101561051957600080fd5b5035611329565b61030c6113e7565b6102f26113f6565b61035d61160e565b6102f26004803603604081101561054e57600080fd5b506001600160a01b03813516906020013561167d565b6102f26004803603602081101561057a57600080fd5b5035611798565b61030c6119c7565b61030c6119d6565b61030c6119ee565b61030c611a06565b61030c600480360360208110156105b757600080fd5b5035611a15565b6102f2600480360360808110156105d457600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135611a3c565b61030c611b96565b61030c611be5565b60025481565b600e5481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561066157600080fd5b505afa158015610675573d6000803e3d6000fd5b505050506040513d602081101561068b57600080fd5b50516106cf576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff16156107275760405162461bcd60e51b8152600401808060200182810382526023815260200180612ce16023913960400191505060405180910390fd5b6107416001600160a01b038316848363ffffffff611bf416565b505050565b600281565b60105481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156107b457600080fd5b505afa1580156107c8573d6000803e3d6000fd5b505050506040513d60208110156107de57600080fd5b5051610822576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6064811115610866576040805162461bcd60e51b815260206004820152600b60248201526a06174206d6f7374203130360ac1b604482015290519081900360640190fd5b601055565b73b8baa0e4287890a5f79863ab62b7f175cecbd43381565b6004546001600160a01b031681565b60125460ff1681565b600a54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156108eb57600080fd5b505afa1580156108ff573d6000803e3d6000fd5b505050506040513d602081101561091557600080fd5b505160048054604080516370a0823160e01b81523093810193909352519293506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d602081101561099357600080fd5b50519050816109a55791506109c89050565b60006109b083610a9e565b90506109c2818363ffffffff611c4616565b93505050505b90565b6005546001600160a01b03163314806109fc57506109e7611b96565b6001600160a01b0316336001600160a01b0316145b80610a1f5750610a0a610b41565b6001600160a01b0316336001600160a01b0316145b610a5a5760405162461bcd60e51b8152600401808060200182810382526039815260200180612ca86039913960400191505060405180910390fd5b610a62611ca9565b610a6a6120d5565b610a75600f54610a9e565b600e55565b6006546001600160a01b031681565b60096020526000908152604090205460ff1681565b6008546004546000916001600160a01b03169063cc2b27d7908490600160a01b900460ff166003811115610ace57fe5b6040518363ffffffff1660e01b81526004018083815260200182600f0b600f0b81526020019250505060206040518083038186803b158015610b0f57600080fd5b505afa158015610b23573d6000803e3d6000fd5b505050506040513d6020811015610b3957600080fd5b505192915050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9057600080fd5b505afa158015610ba4573d6000803e3d6000fd5b505050506040513d6020811015610bba57600080fd5b5051905090565b73dac17f958d2ee523a2206206994597c13d831ec781565b600c546001600160a01b031681565b6003546001600160a01b031681565b6008546001600160a01b031681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015610c5157600080fd5b505afa158015610c65573d6000803e3d6000fd5b505050506040513d6020811015610c7b57600080fd5b5051610cbf576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b158015610d0957600080fd5b505afa158015610d1d573d6000803e3d6000fd5b505050506040513d6020811015610d3357600080fd5b505160408051633ccfd60b60e01b815290519192506001600160a01b03841691633ccfd60b9160048082019260009290919082900301818387803b158015610d7a57600080fd5b505af1158015610d8e573d6000803e3d6000fd5b5050604080516370a0823160e01b81523060048201529051600093506001600160a01b03871692506370a0823191602480820192602092909190829003018186803b158015610ddc57600080fd5b505afa158015610df0573d6000803e3d6000fd5b505050506040513d6020811015610e0657600080fd5b5051905081811115610e3d57610e3d33610e26838563ffffffff6121f016565b6001600160a01b038716919063ffffffff611bf416565b50505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b732c988c3974ad7e604e276ae0294a7228def6797481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015610ebe57600080fd5b505afa158015610ed2573d6000803e3d6000fd5b505050506040513d6020811015610ee857600080fd5b5051610f2c576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b610f476001600160a01b03841683600063ffffffff61223216565b610f616001600160a01b038416838363ffffffff61223216565b816001600160a01b0316634957677c826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610fa757600080fd5b505af1158015610fbb573d6000803e3d6000fd5b50505050505050565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561100f57600080fd5b505afa158015611023573d6000803e3d6000fd5b505050506040513d602081101561103957600080fd5b505161107d576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0381166110d8576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b6000546001600160a01b031681565b73a746c67eb7915fa832a4c2076d403d4b6808543181565b60135481565b600a546001600160a01b031681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561118757600080fd5b505afa15801561119b573d6000803e3d6000fd5b505050506040513d60208110156111b157600080fd5b50516111f5576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b60408051634b82009360e01b815230600482015290516001600160a01b03831691634b82009391602480830192600092919082900301818387803b15801561123c57600080fd5b505af1158015611250573d6000803e3d6000fd5b5050505050565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156112a257600080fd5b505afa1580156112b6573d6000803e3d6000fd5b505050506040513d60208110156112cc57600080fd5b5051611310576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6012805460ff1916911515919091179055565b60015481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561137457600080fd5b505afa158015611388573d6000803e3d6000fd5b505050506040513d602081101561139e57600080fd5b50516113e2576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b601355565b6007546001600160a01b031681565b6005546001600160a01b03163314806114275750611412611b96565b6001600160a01b0316336001600160a01b0316145b8061144a5750611435610b41565b6001600160a01b0316336001600160a01b0316145b6114855760405162461bcd60e51b8152600401808060200182810382526039815260200180612ca86039913960400191505060405180910390fd5b600a54604080516370a0823160e01b815230600482015290516001600160a01b0390921691632e1a7d4d9183916370a0823191602480820192602092909190829003018186803b1580156114d857600080fd5b505afa1580156114ec573d6000803e3d6000fd5b505050506040513d602081101561150257600080fd5b5051604080516001600160e01b031960e085901b168152600481019290925251602480830192600092919082900301818387803b15801561154257600080fd5b505af1158015611556573d6000803e3d6000fd5b50505050611565600019612345565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b1580156115b457600080fd5b505afa1580156115c8573d6000803e3d6000fd5b505050506040513d60208110156115de57600080fd5b50519050801561160b5760055460045461160b916001600160a01b0391821691168363ffffffff611bf416565b50565b60008061161c600f54610a9e565b9050600e5481111561165d57601054606403611654600e5461164860648561259090919063ffffffff16565b9063ffffffff6125e916565b119150506109c8565b601054606403611654826116486064600e5461259090919063ffffffff16565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156116c857600080fd5b505afa1580156116dc573d6000803e3d6000fd5b505050506040513d60208110156116f257600080fd5b5051611736576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b816001600160a01b031663eff7a612826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561177c57600080fd5b505af1158015611790573d6000803e3d6000fd5b505050505050565b6005546001600160a01b03163314806117c957506117b4611b96565b6001600160a01b0316336001600160a01b0316145b806117ec57506117d7610b41565b6001600160a01b0316336001600160a01b0316145b6118275760405162461bcd60e51b8152600401808060200182810382526039815260200180612ca86039913960400191505060405180910390fd5b600a54604080516370a0823160e01b815230600482015290516001600160a01b0390921691632e1a7d4d9183916370a0823191602480820192602092909190829003018186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d60208110156118a457600080fd5b5051604080516001600160e01b031960e085901b168152600481019290925251602480830192600092919082900301818387803b1580156118e457600080fd5b505af11580156118f8573d6000803e3d6000fd5b5050505061190581612345565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561195457600080fd5b505afa158015611968573d6000803e3d6000fd5b505050506040513d602081101561197e57600080fd5b5051905080156119bb576005546119bb906001600160a01b03166119a2848461262b565b6004546001600160a01b0316919063ffffffff611bf416565b6119c36120d5565b5050565b600b546001600160a01b031681565b73b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa81565b7377c6e4a580c0dce4e5c7a17d0bc077188a83a05981565b600d546001600160a01b031681565b60118181548110611a2257fe5b6000918252602090912001546001600160a01b0316905081565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015611a8757600080fd5b505afa158015611a9b573d6000803e3d6000fd5b505050506040513d6020811015611ab157600080fd5b5051611af5576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b611b106001600160a01b03851684600063ffffffff61223216565b611b2a6001600160a01b038516848463ffffffff61223216565b826001600160a01b03166365fc387383836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015611b7857600080fd5b505af1158015611b8c573d6000803e3d6000fd5b5050505050505050565b60008060009054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9057600080fd5b6005546001600160a01b031681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610741908490612641565b600082820183811015611ca0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b60125460ff16611ce1576040517f444bcec8acce9dc46755761662d6262a490b9f61cca73243c5131d98df078ce390600090a16120d3565b600b54600a54604080516335313c2160e11b81526001600160a01b03928316600482015290519190921691636a62784291602480830192600092919082900301818387803b158015611d3257600080fd5b505af1158015611d46573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611d9757600080fd5b505afa158015611dab573d6000803e3d6000fd5b505050506040513d6020811015611dc157600080fd5b50516040805182815290519192507f875c79c14f0ec82c9ae01b82cfab0d1c5c4079f1500682832fb877a7dec614fb919081900360200190a160135481111561160b5760048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b158015611e5357600080fd5b505afa158015611e67573d6000803e3d6000fd5b505050506040513d6020811015611e7d57600080fd5b5051600d54600c54919250611ea6916001600160a01b039081169116600063ffffffff61223216565b600d54600c54611ec9916001600160a01b0391821691168463ffffffff61223216565b600d546040516338ed173960e01b8152600481018481526001602483018190523060648401819052426084850181905260a0604486019081526011805460a488018190526001600160a01b03909816976338ed1739978b97929594939160c49091019086908015611f6357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611f45575b50509650505050505050600060405180830381600087803b158015611f8757600080fd5b505af1158015611f9b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611fc457600080fd5b8101908080516040519392919084640100000000821115611fe457600080fd5b908301906020820185811115611ff957600080fd5b825186602082028301116401000000008211171561201657600080fd5b82525081516020918201928201910280838360005b8381101561204357818101518382015260200161202b565b50505050919091016040818152600480546370a0823160e01b8452309184019190915290516119c397508896506001600160a01b0390911694506370a08231935060248083019350602092829003018186803b1580156120a257600080fd5b505afa1580156120b6573d6000803e3d6000fd5b505050506040513d60208110156120cc57600080fd5b50516127f9565b565b6120dd61298c565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561212857600080fd5b505afa15801561213c573d6000803e3d6000fd5b505050506040513d602081101561215257600080fd5b50519050801561160b57600a54600754612180916001600160a01b039182169116600063ffffffff61223216565b600a546007546121a3916001600160a01b0391821691168363ffffffff61223216565b600a546040805163b6b55f2560e01b81526004810184905290516001600160a01b039092169163b6b55f259160248082019260009290919082900301818387803b15801561123c57600080fd5b6000611ca083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612adf565b8015806122b8575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561228a57600080fd5b505afa15801561229e573d6000803e3d6000fd5b505050506040513d60208110156122b457600080fd5b5051155b6122f35760405162461bcd60e51b8152600401808060200182810382526036815260200180612d4f6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610741908490612641565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561239057600080fd5b505afa1580156123a4573d6000803e3d6000fd5b505050506040513d60208110156123ba57600080fd5b5051905060006123c982610a9e565b9050806123d757505061160b565b808310156124ce576123e7612c89565b6123f084612b76565b600854600754919250612417916001600160a01b039081169116600063ffffffff61223216565b60085460075461243a916001600160a01b0391821691168563ffffffff61223216565b600854604051630c53debb60e11b81526001600160a01b03909116906318a7bd7690839086906004018083608080838360005b8381101561248557818101518382015260200161246d565b5050505090500182815260200192505050600060405180830381600087803b1580156124b057600080fd5b505af11580156124c4573d6000803e3d6000fd5b5050505050610741565b6008546007546124f2916001600160a01b039182169116600063ffffffff61223216565b600854600754612515916001600160a01b0391821691168463ffffffff61223216565b6008546004546001600160a01b0390911690631a4d01d2908490600160a01b900460ff16600381111561254457fe5b60006040518463ffffffff1660e01b81526004018084815260200183600f0b600f0b81526020018281526020019350505050600060405180830381600087803b158015610fa757600080fd5b60008261259f57506000611ca3565b828202828482816125ac57fe5b0414611ca05760405162461bcd60e51b8152600401808060200182810382526021815260200180612d046021913960400191505060405180910390fd5b6000611ca083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612be8565b600081831061263a5781611ca0565b5090919050565b612653826001600160a01b0316612c4d565b6126a4576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106126e25780518252601f1990920191602091820191016126c3565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612744576040519150601f19603f3d011682016040523d82523d6000602084013e612749565b606091505b5091509150816127a0576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610e3d578080602001905160208110156127bc57600080fd5b5051610e3d5760405162461bcd60e51b815260040180806020018281038252602a815260200180612d25602a913960400191505060405180910390fd5b81811115612942576000612813828463ffffffff6121f016565b905060006128326002546116486001548561259090919063ffffffff16565b604080518681526020810186905280820183905242606082015290519192507f0b34b93979d93253da0e9e54841c680c66377f129a340ef2a37e802865e40588919081900360800190a16128a1612887611b96565b6003546001600160a01b031690600063ffffffff61223216565b6128c56128ac611b96565b6003546001600160a01b0316908363ffffffff61223216565b6128cd611b96565b60035460408051631ee0d7e560e31b81526001600160a01b039283166004820152602481018590529051929091169163f706bf289160448082019260009290919082900301818387803b15801561292357600080fd5b505af1158015612937573d6000803e3d6000fd5b5050505050506119c3565b604080518381526020810183905260008183015242606082015290517f0b34b93979d93253da0e9e54841c680c66377f129a340ef2a37e802865e405889181900360800190a15050565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b1580156129db57600080fd5b505afa1580156129ef573d6000803e3d6000fd5b505050506040513d6020811015612a0557600080fd5b50519050801561160b57600854600454612a33916001600160a01b039182169116600063ffffffff61223216565b600854600454612a56916001600160a01b0391821691168363ffffffff61223216565b6000612a60612c89565b612a6983612b76565b60085460405162a6cbcd60e21b81529192506001600160a01b03169063029b2f3490839085906004018083608080838360005b83811015612ab4578181015183820152602001612a9c565b5050505090500182815260200192505050600060405180830381600087803b158015610fa757600080fd5b60008184841115612b6e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b33578181015183820152602001612b1b565b50505050905090810190601f168015612b605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b612b7e612c89565b612b86612c89565b6040518060800160405280600081526020016000815260200160008152602001600081525090508281600460149054906101000a900460ff166003811115612bca57fe5b66ffffffffffffff1660048110612bdd57fe5b602002015292915050565b60008183612c375760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b33578181015183820152602001612b1b565b506000838581612c4357fe5b0495945050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612c8157508115155b949350505050565b6040518060800160405280600490602082028038833950919291505056fe5468652073656e6465722068617320746f2062652074686520636f6e74726f6c6c65722c20676f7665726e616e63652c206f72207661756c74746f6b656e20697320646566696e6564206173206e6f742073616c7661676561626c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a7231582053b89db7abe078430ed0ccc545a752e65ef30ac9f0e9811173ae77e326b171ed64736f6c63430005100032000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197000000000000000000000000c7ee21406bb581e741fbb8b21f213188433d9f2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c80638e39520c11610167578063bfd131f1116100ce578063eb5594d811610087578063eb5594d814610591578063edc9af9514610599578063f03312ff146105a1578063f6a8d50a146105be578063f77c4791146105fa578063fbfa77cf1461060257610295565b8063bfd131f114610528578063c2a2a07b14610530578063cb5f06cd14610538578063ce8c42e814610564578063d1e61dcb14610581578063ded078381461058957610295565b8063a6f19c8411610120578063a6f19c84146104ae578063a972985e146104b6578063b076a53a146104dc578063b60f151a146104fb578063ba09591e14610503578063be85ba331461052057610295565b80638e39520c146104325780639137c1a714610468578063924689651461048e578063975057e7146104965780639aa9c43a1461049e578063a1dab23e146104a657610295565b80634fa5d8541161020b5780636a4874a1116101c45780636a4874a1146103dc5780636f307dc3146103e45780637165485d146103ec57806372216367146103f457806377be00f31461042257806386d4b3671461042a57610295565b80634fa5d854146103795780635009ae4b146103815780635018594614610389578063554a16ba146103af5780635aa6e675146103cc5780636815e49c146103d457610295565b80632cca0cd61161025d5780632cca0cd6146103045780632e3f1474146103285780633558abf9146103455780633cdc53891461034d578063457100741461035557806345d01e4a1461037157610295565b8063026a0dd01461029a5780630a9de2e1146102b45780631113ef52146102bc5780631b0adc1f146102f45780631c13e96e146102fc575b600080fd5b6102a261060a565b60408051918252519081900360200190f35b6102a2610610565b6102f2600480360360608110156102d257600080fd5b506001600160a01b03813581169160208101359091169060400135610616565b005b6102a2610746565b6102a261074b565b61030c610751565b604080516001600160a01b039092168252519081900360200190f35b6102f26004803603602081101561033e57600080fd5b5035610769565b61030c61086b565b61030c610883565b61035d610892565b604080519115158252519081900360200190f35b6102a261089b565b6102f26109cb565b61030c610a7a565b61035d6004803603602081101561039f57600080fd5b50356001600160a01b0316610a89565b6102a2600480360360208110156103c557600080fd5b5035610a9e565b61030c610b41565b61030c610bc1565b61030c610bd9565b61030c610be8565b61030c610bf7565b6102f26004803603604081101561040a57600080fd5b506001600160a01b0381358116916020013516610c06565b61030c610e43565b61030c610e5b565b6102f26004803603606081101561044857600080fd5b506001600160a01b03813581169160208101359091169060400135610e73565b6102f26004803603602081101561047e57600080fd5b50356001600160a01b0316610fc4565b6102a26110fa565b61030c611100565b61030c61110f565b6102a2611127565b61030c61112d565b6102f2600480360360208110156104cc57600080fd5b50356001600160a01b031661113c565b6102f2600480360360208110156104f257600080fd5b50351515611257565b6102a2611323565b6102f26004803603602081101561051957600080fd5b5035611329565b61030c6113e7565b6102f26113f6565b61035d61160e565b6102f26004803603604081101561054e57600080fd5b506001600160a01b03813516906020013561167d565b6102f26004803603602081101561057a57600080fd5b5035611798565b61030c6119c7565b61030c6119d6565b61030c6119ee565b61030c611a06565b61030c600480360360208110156105b757600080fd5b5035611a15565b6102f2600480360360808110156105d457600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135611a3c565b61030c611b96565b61030c611be5565b60025481565b600e5481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561066157600080fd5b505afa158015610675573d6000803e3d6000fd5b505050506040513d602081101561068b57600080fd5b50516106cf576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff16156107275760405162461bcd60e51b8152600401808060200182810382526023815260200180612ce16023913960400191505060405180910390fd5b6107416001600160a01b038316848363ffffffff611bf416565b505050565b600281565b60105481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156107b457600080fd5b505afa1580156107c8573d6000803e3d6000fd5b505050506040513d60208110156107de57600080fd5b5051610822576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6064811115610866576040805162461bcd60e51b815260206004820152600b60248201526a06174206d6f7374203130360ac1b604482015290519081900360640190fd5b601055565b73b8baa0e4287890a5f79863ab62b7f175cecbd43381565b6004546001600160a01b031681565b60125460ff1681565b600a54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156108eb57600080fd5b505afa1580156108ff573d6000803e3d6000fd5b505050506040513d602081101561091557600080fd5b505160048054604080516370a0823160e01b81523093810193909352519293506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d602081101561099357600080fd5b50519050816109a55791506109c89050565b60006109b083610a9e565b90506109c2818363ffffffff611c4616565b93505050505b90565b6005546001600160a01b03163314806109fc57506109e7611b96565b6001600160a01b0316336001600160a01b0316145b80610a1f5750610a0a610b41565b6001600160a01b0316336001600160a01b0316145b610a5a5760405162461bcd60e51b8152600401808060200182810382526039815260200180612ca86039913960400191505060405180910390fd5b610a62611ca9565b610a6a6120d5565b610a75600f54610a9e565b600e55565b6006546001600160a01b031681565b60096020526000908152604090205460ff1681565b6008546004546000916001600160a01b03169063cc2b27d7908490600160a01b900460ff166003811115610ace57fe5b6040518363ffffffff1660e01b81526004018083815260200182600f0b600f0b81526020019250505060206040518083038186803b158015610b0f57600080fd5b505afa158015610b23573d6000803e3d6000fd5b505050506040513d6020811015610b3957600080fd5b505192915050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9057600080fd5b505afa158015610ba4573d6000803e3d6000fd5b505050506040513d6020811015610bba57600080fd5b5051905090565b73dac17f958d2ee523a2206206994597c13d831ec781565b600c546001600160a01b031681565b6003546001600160a01b031681565b6008546001600160a01b031681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015610c5157600080fd5b505afa158015610c65573d6000803e3d6000fd5b505050506040513d6020811015610c7b57600080fd5b5051610cbf576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b158015610d0957600080fd5b505afa158015610d1d573d6000803e3d6000fd5b505050506040513d6020811015610d3357600080fd5b505160408051633ccfd60b60e01b815290519192506001600160a01b03841691633ccfd60b9160048082019260009290919082900301818387803b158015610d7a57600080fd5b505af1158015610d8e573d6000803e3d6000fd5b5050604080516370a0823160e01b81523060048201529051600093506001600160a01b03871692506370a0823191602480820192602092909190829003018186803b158015610ddc57600080fd5b505afa158015610df0573d6000803e3d6000fd5b505050506040513d6020811015610e0657600080fd5b5051905081811115610e3d57610e3d33610e26838563ffffffff6121f016565b6001600160a01b038716919063ffffffff611bf416565b50505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b732c988c3974ad7e604e276ae0294a7228def6797481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015610ebe57600080fd5b505afa158015610ed2573d6000803e3d6000fd5b505050506040513d6020811015610ee857600080fd5b5051610f2c576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b610f476001600160a01b03841683600063ffffffff61223216565b610f616001600160a01b038416838363ffffffff61223216565b816001600160a01b0316634957677c826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610fa757600080fd5b505af1158015610fbb573d6000803e3d6000fd5b50505050505050565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561100f57600080fd5b505afa158015611023573d6000803e3d6000fd5b505050506040513d602081101561103957600080fd5b505161107d576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0381166110d8576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b6000546001600160a01b031681565b73a746c67eb7915fa832a4c2076d403d4b6808543181565b60135481565b600a546001600160a01b031681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561118757600080fd5b505afa15801561119b573d6000803e3d6000fd5b505050506040513d60208110156111b157600080fd5b50516111f5576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b60408051634b82009360e01b815230600482015290516001600160a01b03831691634b82009391602480830192600092919082900301818387803b15801561123c57600080fd5b505af1158015611250573d6000803e3d6000fd5b5050505050565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156112a257600080fd5b505afa1580156112b6573d6000803e3d6000fd5b505050506040513d60208110156112cc57600080fd5b5051611310576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6012805460ff1916911515919091179055565b60015481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561137457600080fd5b505afa158015611388573d6000803e3d6000fd5b505050506040513d602081101561139e57600080fd5b50516113e2576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b601355565b6007546001600160a01b031681565b6005546001600160a01b03163314806114275750611412611b96565b6001600160a01b0316336001600160a01b0316145b8061144a5750611435610b41565b6001600160a01b0316336001600160a01b0316145b6114855760405162461bcd60e51b8152600401808060200182810382526039815260200180612ca86039913960400191505060405180910390fd5b600a54604080516370a0823160e01b815230600482015290516001600160a01b0390921691632e1a7d4d9183916370a0823191602480820192602092909190829003018186803b1580156114d857600080fd5b505afa1580156114ec573d6000803e3d6000fd5b505050506040513d602081101561150257600080fd5b5051604080516001600160e01b031960e085901b168152600481019290925251602480830192600092919082900301818387803b15801561154257600080fd5b505af1158015611556573d6000803e3d6000fd5b50505050611565600019612345565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b1580156115b457600080fd5b505afa1580156115c8573d6000803e3d6000fd5b505050506040513d60208110156115de57600080fd5b50519050801561160b5760055460045461160b916001600160a01b0391821691168363ffffffff611bf416565b50565b60008061161c600f54610a9e565b9050600e5481111561165d57601054606403611654600e5461164860648561259090919063ffffffff16565b9063ffffffff6125e916565b119150506109c8565b601054606403611654826116486064600e5461259090919063ffffffff16565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156116c857600080fd5b505afa1580156116dc573d6000803e3d6000fd5b505050506040513d60208110156116f257600080fd5b5051611736576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b816001600160a01b031663eff7a612826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561177c57600080fd5b505af1158015611790573d6000803e3d6000fd5b505050505050565b6005546001600160a01b03163314806117c957506117b4611b96565b6001600160a01b0316336001600160a01b0316145b806117ec57506117d7610b41565b6001600160a01b0316336001600160a01b0316145b6118275760405162461bcd60e51b8152600401808060200182810382526039815260200180612ca86039913960400191505060405180910390fd5b600a54604080516370a0823160e01b815230600482015290516001600160a01b0390921691632e1a7d4d9183916370a0823191602480820192602092909190829003018186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d60208110156118a457600080fd5b5051604080516001600160e01b031960e085901b168152600481019290925251602480830192600092919082900301818387803b1580156118e457600080fd5b505af11580156118f8573d6000803e3d6000fd5b5050505061190581612345565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561195457600080fd5b505afa158015611968573d6000803e3d6000fd5b505050506040513d602081101561197e57600080fd5b5051905080156119bb576005546119bb906001600160a01b03166119a2848461262b565b6004546001600160a01b0316919063ffffffff611bf416565b6119c36120d5565b5050565b600b546001600160a01b031681565b73b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa81565b7377c6e4a580c0dce4e5c7a17d0bc077188a83a05981565b600d546001600160a01b031681565b60118181548110611a2257fe5b6000918252602090912001546001600160a01b0316905081565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015611a8757600080fd5b505afa158015611a9b573d6000803e3d6000fd5b505050506040513d6020811015611ab157600080fd5b5051611af5576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b611b106001600160a01b03851684600063ffffffff61223216565b611b2a6001600160a01b038516848463ffffffff61223216565b826001600160a01b03166365fc387383836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015611b7857600080fd5b505af1158015611b8c573d6000803e3d6000fd5b5050505050505050565b60008060009054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9057600080fd5b6005546001600160a01b031681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610741908490612641565b600082820183811015611ca0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b60125460ff16611ce1576040517f444bcec8acce9dc46755761662d6262a490b9f61cca73243c5131d98df078ce390600090a16120d3565b600b54600a54604080516335313c2160e11b81526001600160a01b03928316600482015290519190921691636a62784291602480830192600092919082900301818387803b158015611d3257600080fd5b505af1158015611d46573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611d9757600080fd5b505afa158015611dab573d6000803e3d6000fd5b505050506040513d6020811015611dc157600080fd5b50516040805182815290519192507f875c79c14f0ec82c9ae01b82cfab0d1c5c4079f1500682832fb877a7dec614fb919081900360200190a160135481111561160b5760048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b158015611e5357600080fd5b505afa158015611e67573d6000803e3d6000fd5b505050506040513d6020811015611e7d57600080fd5b5051600d54600c54919250611ea6916001600160a01b039081169116600063ffffffff61223216565b600d54600c54611ec9916001600160a01b0391821691168463ffffffff61223216565b600d546040516338ed173960e01b8152600481018481526001602483018190523060648401819052426084850181905260a0604486019081526011805460a488018190526001600160a01b03909816976338ed1739978b97929594939160c49091019086908015611f6357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611f45575b50509650505050505050600060405180830381600087803b158015611f8757600080fd5b505af1158015611f9b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611fc457600080fd5b8101908080516040519392919084640100000000821115611fe457600080fd5b908301906020820185811115611ff957600080fd5b825186602082028301116401000000008211171561201657600080fd5b82525081516020918201928201910280838360005b8381101561204357818101518382015260200161202b565b50505050919091016040818152600480546370a0823160e01b8452309184019190915290516119c397508896506001600160a01b0390911694506370a08231935060248083019350602092829003018186803b1580156120a257600080fd5b505afa1580156120b6573d6000803e3d6000fd5b505050506040513d60208110156120cc57600080fd5b50516127f9565b565b6120dd61298c565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561212857600080fd5b505afa15801561213c573d6000803e3d6000fd5b505050506040513d602081101561215257600080fd5b50519050801561160b57600a54600754612180916001600160a01b039182169116600063ffffffff61223216565b600a546007546121a3916001600160a01b0391821691168363ffffffff61223216565b600a546040805163b6b55f2560e01b81526004810184905290516001600160a01b039092169163b6b55f259160248082019260009290919082900301818387803b15801561123c57600080fd5b6000611ca083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612adf565b8015806122b8575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561228a57600080fd5b505afa15801561229e573d6000803e3d6000fd5b505050506040513d60208110156122b457600080fd5b5051155b6122f35760405162461bcd60e51b8152600401808060200182810382526036815260200180612d4f6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610741908490612641565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561239057600080fd5b505afa1580156123a4573d6000803e3d6000fd5b505050506040513d60208110156123ba57600080fd5b5051905060006123c982610a9e565b9050806123d757505061160b565b808310156124ce576123e7612c89565b6123f084612b76565b600854600754919250612417916001600160a01b039081169116600063ffffffff61223216565b60085460075461243a916001600160a01b0391821691168563ffffffff61223216565b600854604051630c53debb60e11b81526001600160a01b03909116906318a7bd7690839086906004018083608080838360005b8381101561248557818101518382015260200161246d565b5050505090500182815260200192505050600060405180830381600087803b1580156124b057600080fd5b505af11580156124c4573d6000803e3d6000fd5b5050505050610741565b6008546007546124f2916001600160a01b039182169116600063ffffffff61223216565b600854600754612515916001600160a01b0391821691168463ffffffff61223216565b6008546004546001600160a01b0390911690631a4d01d2908490600160a01b900460ff16600381111561254457fe5b60006040518463ffffffff1660e01b81526004018084815260200183600f0b600f0b81526020018281526020019350505050600060405180830381600087803b158015610fa757600080fd5b60008261259f57506000611ca3565b828202828482816125ac57fe5b0414611ca05760405162461bcd60e51b8152600401808060200182810382526021815260200180612d046021913960400191505060405180910390fd5b6000611ca083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612be8565b600081831061263a5781611ca0565b5090919050565b612653826001600160a01b0316612c4d565b6126a4576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106126e25780518252601f1990920191602091820191016126c3565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612744576040519150601f19603f3d011682016040523d82523d6000602084013e612749565b606091505b5091509150816127a0576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610e3d578080602001905160208110156127bc57600080fd5b5051610e3d5760405162461bcd60e51b815260040180806020018281038252602a815260200180612d25602a913960400191505060405180910390fd5b81811115612942576000612813828463ffffffff6121f016565b905060006128326002546116486001548561259090919063ffffffff16565b604080518681526020810186905280820183905242606082015290519192507f0b34b93979d93253da0e9e54841c680c66377f129a340ef2a37e802865e40588919081900360800190a16128a1612887611b96565b6003546001600160a01b031690600063ffffffff61223216565b6128c56128ac611b96565b6003546001600160a01b0316908363ffffffff61223216565b6128cd611b96565b60035460408051631ee0d7e560e31b81526001600160a01b039283166004820152602481018590529051929091169163f706bf289160448082019260009290919082900301818387803b15801561292357600080fd5b505af1158015612937573d6000803e3d6000fd5b5050505050506119c3565b604080518381526020810183905260008183015242606082015290517f0b34b93979d93253da0e9e54841c680c66377f129a340ef2a37e802865e405889181900360800190a15050565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b1580156129db57600080fd5b505afa1580156129ef573d6000803e3d6000fd5b505050506040513d6020811015612a0557600080fd5b50519050801561160b57600854600454612a33916001600160a01b039182169116600063ffffffff61223216565b600854600454612a56916001600160a01b0391821691168363ffffffff61223216565b6000612a60612c89565b612a6983612b76565b60085460405162a6cbcd60e21b81529192506001600160a01b03169063029b2f3490839085906004018083608080838360005b83811015612ab4578181015183820152602001612a9c565b5050505090500182815260200192505050600060405180830381600087803b158015610fa757600080fd5b60008184841115612b6e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b33578181015183820152602001612b1b565b50505050905090810190601f168015612b605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b612b7e612c89565b612b86612c89565b6040518060800160405280600081526020016000815260200160008152602001600081525090508281600460149054906101000a900460ff166003811115612bca57fe5b66ffffffffffffff1660048110612bdd57fe5b602002015292915050565b60008183612c375760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b33578181015183820152602001612b1b565b506000838581612c4357fe5b0495945050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612c8157508115155b949350505050565b6040518060800160405280600490602082028038833950919291505056fe5468652073656e6465722068617320746f2062652074686520636f6e74726f6c6c65722c20676f7665726e616e63652c206f72207661756c74746f6b656e20697320646566696e6564206173206e6f742073616c7661676561626c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a7231582053b89db7abe078430ed0ccc545a752e65ef30ac9f0e9811173ae77e326b171ed64736f6c63430005100032

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

000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197000000000000000000000000c7ee21406bb581e741fbb8b21f213188433d9f2f

-----Decoded View---------------
Arg [0] : _storage (address): 0xc95CbE4ca30055c787CB784BE99D6a8494d0d197
Arg [1] : _vault (address): 0xc7EE21406BB581e741FBb8B21f213188433D9f2F

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197
Arg [1] : 000000000000000000000000c7ee21406bb581e741fbb8b21f213188433d9f2f


Deployed Bytecode Sourcemap

48538:1516:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48538:1516:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23566:39;;;:::i;:::-;;;;;;;;;;;;;;;;36830:34;;;:::i;43183:304::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43183:304:0;;;;;;;;;;;;;;;;;:::i;:::-;;49572:40;;;:::i;36978:31::-;;;:::i;49028:84::-;;;:::i;:::-;;;;-1:-1:-1;;;;;49028:84:0;;;;;;;;;;;;;;38814:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38814:152:0;;:::i;48939:84::-;;;:::i;36038:19::-;;;:::i;37155:23::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;43656:543;;;:::i;42918:167::-;;;:::i;36268:23::-;;;:::i;36508:50::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36508:50:0;-1:-1:-1;;;;;36508:50:0;;:::i;44205:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44205:189:0;;:::i;22646:90::-;;;:::i;48648:84::-;;;:::i;36709:18::-;;;:::i;23610:25::-;;;:::i;36426:20::-;;;:::i;47188:400::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;47188:400:0;;;;;;;;;;:::i;49478:87::-;;;:::i;49246:85::-;;;:::i;46673:250::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;46673:250:0;;;;;;;;;;;;;;;;;:::i;22476:164::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22476:164:0;-1:-1:-1;;;;;22476:164:0;;:::i;36909:27::-;;;:::i;22192:20::-;;;:::i;49386:87::-;;;:::i;37228:32::-;;;:::i;36595:20::-;;;:::i;46497:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46497:115:0;-1:-1:-1;;;;;46497:115:0;;:::i;45874:68::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45874:68:0;;;;:::i;23524:37::-;;;:::i;46023:89::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46023:89:0;;:::i;36334:23::-;;;:::i;41797:452::-;;;:::i;38450:358::-;;;:::i;46984:154::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;46984:154:0;;;;;;;;:::i;41189:547::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41189:547:0;;:::i;36646:20::-;;;:::i;49136:85::-;;;:::i;48807:89::-;;;:::i;36763:18::-;;;:::i;37050:33::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37050:33:0;;:::i;46158:279::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;46158:279:0;;;;;;;;;;;;;;;;;;;;;;:::i;23229:90::-;;;:::i;36190:20::-;;;:::i;23566:39::-;;;;:::o;36830:34::-;;;;:::o;43183:304::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43364:25:0;;;;;;:18;:25;;;;;;;;43363:26;43355:74;;;;-1:-1:-1;;;43355:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43436:45;-1:-1:-1;;;;;43436:26:0;;43463:9;43474:6;43436:45;:26;:45;:::i;:::-;43183:304;;;:::o;49572:40::-;49611:1;49572:40;:::o;36978:31::-;;;;:::o;49028:84::-;49069:42;49028:84;:::o;38814:152::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;38910:3;38897:9;:16;;38889:40;;;;;-1:-1:-1;;;38889:40:0;;;;;;;;;;;;-1:-1:-1;;;38889:40:0;;;;;;;;;;;;;;;38936:12;:24;38814:152::o;48939:84::-;48980:42;48939:84;:::o;36038:19::-;;;-1:-1:-1;;;;;36038:19:0;;:::o;37155:23::-;;;;;;:::o;43656:543::-;43759:5;;43753:37;;;-1:-1:-1;;;43753:37:0;;43784:4;43753:37;;;;;;43714:7;;;;-1:-1:-1;;;;;43759:5:0;;;;43753:22;;:37;;;;;;;;;;;;;;;43759:5;43753:37;;;5:2:-1;;;;30:1;27;20:12;5:2;43753:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43753:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43753:37:0;43826:4;;;43819:37;;;-1:-1:-1;;;43819:37:0;;43850:4;43819:37;;;;;;;;43753;;-1:-1:-1;43797:19:0;;-1:-1:-1;;;;;43826:4:0;;;;43819:22;;:37;;;;;43753;;43819;;;;;;;43826:4;43819:37;;;5:2:-1;;;;30:1;27;20:12;5:2;43819:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43819:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43819:37:0;;-1:-1:-1;43867:17:0;43863:217;;44061:11;-1:-1:-1;44054:18:0;;-1:-1:-1;44054:18:0;43863:217;44086:23;44112:35;44134:12;44112:21;:35::i;:::-;44086:61;-1:-1:-1;44161:32:0;44086:61;44181:11;44161:32;:19;:32;:::i;:::-;44154:39;;;;;43656:543;;:::o;42918:167::-;37392:5;;-1:-1:-1;;;;;37392:5:0;37378:10;:19;;:49;;;37415:12;:10;:12::i;:::-;-1:-1:-1;;;;;37401:26:0;:10;-1:-1:-1;;;;;37401:26:0;;37378:49;:86;;;;37452:12;:10;:12::i;:::-;-1:-1:-1;;;;;37438:26:0;:10;-1:-1:-1;;;;;37438:26:0;;37378:86;37370:163;;;;-1:-1:-1;;;37370:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42965:22;:20;:22::i;:::-;42994:21;:19;:21::i;:::-;43044:35;43066:12;;43044:21;:35::i;:::-;43022:19;:57;42918:167::o;36268:23::-;;;-1:-1:-1;;;;;36268:23:0;;:::o;36508:50::-;;;;;;;;;;;;;;;:::o;44205:189::-;44315:5;;44376:10;;44282:7;;-1:-1:-1;;;;;44315:5:0;;44305:39;;44345:15;;-1:-1:-1;;;44376:10:0;;;;44369:18;;;;;;;;44305:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44305:83:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44305:83:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44305:83:0;;44205:189;-1:-1:-1;;44205:189:0:o;22646:90::-;22689:7;22712:5;;;;;;;;;-1:-1:-1;;;;;22712:5:0;-1:-1:-1;;;;;22712:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22712:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22712:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22712:18:0;;-1:-1:-1;22646:90:0;:::o;48648:84::-;48689:42;48648:84;:::o;36709:18::-;;;-1:-1:-1;;;;;36709:18:0;;:::o;23610:25::-;;;-1:-1:-1;;;;;23610:25:0;;:::o;36426:20::-;;;-1:-1:-1;;;;;36426:20:0;;:::o;47188:400::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;47298:42;;;-1:-1:-1;;;47298:42:0;;47334:4;47298:42;;;;;;47274:21;;-1:-1:-1;;;;;47298:27:0;;;;;:42;;;;;;;;;;;;;;;:27;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;47298:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47298:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47298:42:0;47347:31;;;-1:-1:-1;;;47347:31:0;;;;47298:42;;-1:-1:-1;;;;;;47347:29:0;;;;;:31;;;;;;;;;;;;;;;;:29;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;47347:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;47408:42:0;;;-1:-1:-1;;;47408:42:0;;47444:4;47408:42;;;;;;47385:20;;-1:-1:-1;;;;;;47408:27:0;;;-1:-1:-1;47408:27:0;;:42;;;;;;;;;;;;;;;:27;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;47408:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47408:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47408:42:0;;-1:-1:-1;47461:28:0;;;47457:126;;;47500:75;47531:10;47543:31;:12;47560:13;47543:31;:16;:31;:::i;:::-;-1:-1:-1;;;;;47500:30:0;;;:75;;:30;:75;:::i;:::-;22463:1;;47188:400;;:::o;49478:87::-;49522:42;49478:87;:::o;49246:85::-;49288:42;49246:85;:::o;46673:250::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;46776:40;-1:-1:-1;;;;;46776:29:0;;46806:6;46814:1;46776:40;:29;:40;:::i;:::-;46823:44;-1:-1:-1;;;;;46823:29:0;;46853:6;46861:5;46823:44;:29;:44;:::i;:::-;46887:6;-1:-1:-1;;;;;46874:36:0;;46911:5;46874:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46874:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46874:43:0;;;;46673:250;;;:::o;22476:164::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22549:20:0;;22541:63;;;;;-1:-1:-1;;;22541:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22611:5;:23;;-1:-1:-1;;;;;;22611:23:0;-1:-1:-1;;;;;22611:23:0;;;;;;;;;;22476:164::o;36909:27::-;;;;:::o;22192:20::-;;;-1:-1:-1;;;;;22192:20:0;;:::o;49386:87::-;49430:42;49386:87;:::o;37228:32::-;;;;:::o;36595:20::-;;;-1:-1:-1;;;;;36595:20:0;;:::o;46497:115::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;46562:44;;;-1:-1:-1;;;46562:44:0;;46600:4;46562:44;;;;;;-1:-1:-1;;;;;46562:29:0;;;;;:44;;;;;-1:-1:-1;;46562:44:0;;;;;;;-1:-1:-1;46562:29:0;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;46562:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46562:44:0;;;;46497:115;:::o;45874:68::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;45928:4;:8;;-1:-1:-1;;45928:8:0;;;;;;;;;;45874:68::o;23524:37::-;;;;:::o;46023:89::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;46089:9;:17;46023:89::o;36334:23::-;;;-1:-1:-1;;;;;36334:23:0;;:::o;41797:452::-;37392:5;;-1:-1:-1;;;;;37392:5:0;37378:10;:19;;:49;;;37415:12;:10;:12::i;:::-;-1:-1:-1;;;;;37401:26:0;:10;-1:-1:-1;;;;;37401:26:0;;37378:49;:86;;;;37452:12;:10;:12::i;:::-;-1:-1:-1;;;;;37438:26:0;:10;-1:-1:-1;;;;;37438:26:0;;37378:86;37370:163;;;;-1:-1:-1;;;37370:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41892:5;;41908:37;;;-1:-1:-1;;;41908:37:0;;41939:4;41908:37;;;;;;-1:-1:-1;;;;;41892:5:0;;;;41886:21;;41892:5;;41908:22;;:37;;;;;;;;;;;;;;;41892:5;41908:37;;;5:2:-1;;;;30:1;27;20:12;5:2;41908:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41908:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41908:37:0;41886:60;;;-1:-1:-1;;;;;;41886:60:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41886:60:0;;;;;;;-1:-1:-1;41886:60:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;41886:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41886:60:0;;;;42013:22;-1:-1:-1;;42013:9:0;:22::i;:::-;42120:4;;;42113:37;;;-1:-1:-1;;;42113:37:0;;42144:4;42113:37;;;;;;;;42089:21;;-1:-1:-1;;;;;42120:4:0;;;;42113:22;;:37;;;;;;;;;;;;;;42120:4;42113:37;;;5:2:-1;;;;30:1;27;20:12;5:2;42113:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42113:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42113:37:0;;-1:-1:-1;42161:17:0;;42157:87;;42215:5;;42196:4;;42189:47;;-1:-1:-1;;;;;42196:4:0;;;;42215:5;42222:13;42189:47;:25;:47;:::i;:::-;37540:1;41797:452::o;38450:358::-;38497:4;38510:20;38533:35;38555:12;;38533:21;:35::i;:::-;38510:58;;38594:19;;38579:12;:34;38575:228;;;38686:12;;38680:3;:18;38631:46;38657:19;;38631:21;38648:3;38631:12;:16;;:21;;;;:::i;:::-;:25;:46;:25;:46;:::i;:::-;:67;38624:74;;;;;38575:228;38783:12;;38777:3;:18;38728:46;38761:12;38728:28;38752:3;38728:19;;:23;;:28;;;;:::i;46984:154::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;47091:6;-1:-1:-1;;;;;47078:41:0;;47120:11;47078:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47078:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47078:54:0;;;;46984:154;;:::o;41189:547::-;37392:5;;-1:-1:-1;;;;;37392:5:0;37378:10;:19;;:49;;;37415:12;:10;:12::i;:::-;-1:-1:-1;;;;;37401:26:0;:10;-1:-1:-1;;;;;37401:26:0;;37378:49;:86;;;;37452:12;:10;:12::i;:::-;-1:-1:-1;;;;;37438:26:0;:10;-1:-1:-1;;;;;37438:26:0;;37378:86;37370:163;;;;-1:-1:-1;;;37370:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41299:5;;41315:37;;;-1:-1:-1;;;41315:37:0;;41346:4;41315:37;;;;;;-1:-1:-1;;;;;41299:5:0;;;;41293:21;;41299:5;;41315:22;;:37;;;;;;;;;;;;;;;41299:5;41315:37;;;5:2:-1;;;;30:1;27;20:12;5:2;41315:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41315:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41315:37:0;41293:60;;;-1:-1:-1;;;;;;41293:60:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41293:60:0;;;;;;;-1:-1:-1;41293:60:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;41293:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41293:60:0;;;;41420:21;41430:10;41420:9;:21::i;:::-;41526:4;;;41519:37;;;-1:-1:-1;;;41519:37:0;;41550:4;41519:37;;;;;;;;41495:21;;-1:-1:-1;;;;;41526:4:0;;;;41519:22;;:37;;;;;;;;;;;;;;41526:4;41519:37;;;5:2:-1;;;;30:1;27;20:12;5:2;41519:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41519:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41519:37:0;;-1:-1:-1;41567:17:0;;41563:109;;41621:5;;41595:69;;-1:-1:-1;;;;;41621:5:0;41628:35;41637:10;41649:13;41628:8;:35::i;:::-;41602:4;;-1:-1:-1;;;;;41602:4:0;;41595:69;;:25;:69;:::i;:::-;41709:21;:19;:21::i;:::-;37540:1;41189:547;:::o;36646:20::-;;;-1:-1:-1;;;;;36646:20:0;;:::o;49136:85::-;49178:42;49136:85;:::o;48807:89::-;48853:42;48807:89;:::o;36763:18::-;;;-1:-1:-1;;;;;36763:18:0;;:::o;37050:33::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37050:33:0;;-1:-1:-1;37050:33:0;:::o;46158:279::-;22407:5;;:30;;;-1:-1:-1;;;22407:30:0;;22426:10;22407:30;;;;;;-1:-1:-1;;;;;22407:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;22407:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22407:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22407:30:0;22399:57;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;-1:-1:-1;;;22399:57:0;;;;;;;;;;;;;;;46282:40;-1:-1:-1;;;;;46282:29:0;;46312:6;46320:1;46282:40;:29;:40;:::i;:::-;46329:44;-1:-1:-1;;;;;46329:29:0;;46359:6;46367:5;46329:44;:29;:44;:::i;:::-;46393:6;-1:-1:-1;;;;;46380:32:0;;46413:5;46420:10;46380:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46380:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46380:51:0;;;;46158:279;;;;:::o;23229:90::-;23272:7;23295:5;;;;;;;;;-1:-1:-1;;;;;23295:5:0;-1:-1:-1;;;;;23295:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;36190:20:0;;;-1:-1:-1;;;;;36190:20:0;;:::o;12973:176::-;13082:58;;;-1:-1:-1;;;;;13082:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;13082:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;13056:85:0;;13075:5;;13056:18;:85::i;1762:181::-;1820:7;1852:5;;;1876:6;;;;1868:46;;;;;-1:-1:-1;;;1868:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934:1;-1:-1:-1;1762:181:0;;;;;:::o;44812:918::-;44865:4;;;;44860:142;;44958:21;;;;;;;44988:7;;44860:142;45014:5;;45026;;45008:24;;;-1:-1:-1;;;45008:24:0;;-1:-1:-1;;;;;45026:5:0;;;45008:24;;;;;;45014:5;;;;;45008:17;;:24;;;;;45014:5;;45008:24;;;;;;;45014:5;;45008:24;;;5:2:-1;;;;30:1;27;20:12;5:2;45008:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;45113:3:0;;45106:36;;;-1:-1:-1;;;45106:36:0;;45136:4;45106:36;;;;;;45085:18;;-1:-1:-1;;;;;;45113:3:0;;;;-1:-1:-1;45106:21:0;;:36;;;;;;;;;;;;;;45113:3;45106:36;;;5:2:-1;;;;30:1;27;20:12;5:2;45106:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45106:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45106:36:0;45154:23;;;;;;;;45106:36;;-1:-1:-1;45154:23:0;;;;;;45106:36;45154:23;;;45201:9;;45188:10;:22;45184:541;;;45256:4;;;45249:37;;;-1:-1:-1;;;45249:37:0;;45280:4;45249:37;;;;;;;;45221:25;;-1:-1:-1;;;;;45256:4:0;;;;45249:22;;:37;;;;;;;;;;;;;;45256:4;45249:37;;;5:2:-1;;;;30:1;27;20:12;5:2;45249:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45249:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45249:37:0;45319:3;;45302;;45249:37;;-1:-1:-1;45295:31:0;;-1:-1:-1;;;;;45302:3:0;;;;45319;;45295:31;:23;:31;:::i;:::-;45359:3;;45342;;45335:40;;-1:-1:-1;;;;;45342:3:0;;;;45359;45364:10;45335:40;:23;:40;:::i;:::-;45497:3;;45478:131;;-1:-1:-1;;;45478:131:0;;;;;;;;45497:3;45478:131;;;;;;45578:4;45478:131;;;;;;45585:15;45478:131;;;;;;;;;;;;;45552:16;45478:131;;;;;;;;-1:-1:-1;;;;;45497:3:0;;;;45478:48;;45537:10;;45552:16;;45578:4;45585:15;45478:131;;;;;;45552:16;;45478:131;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45478:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45478:131:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45478:131:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;45478:131:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;45478:131:0;;;;;;;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;373:25;;-1:-1;45478:131:0;;421:4:-1;412:14;;;;45478:131:0;;;;;412:14:-1;45478:131:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;-1:-1;;;;45478:131:0;;;;;;;;45686:4;;;-1:-1:-1;;;45679:37:0;;45710:4;45679:37;;;;;;;;;45647:70;;-1:-1:-1;45660:17:0;;-1:-1:-1;;;;;;45686:4:0;;;;-1:-1:-1;45679:22:0;;-1:-1:-1;45679:37:0;;;;;-1:-1:-1;45679:37:0;;;;;;;45686:4;45679:37;;;5:2:-1;;;;30:1;27;20:12;5:2;45679:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45679:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45679:37:0;45647:12;:70::i;44812:918::-;:::o;42322:452::-;42441:13;:11;:13::i;:::-;42541:8;;42534:41;;;-1:-1:-1;;;42534:41:0;;42569:4;42534:41;;;;;;42508:23;;-1:-1:-1;;;;;42541:8:0;;42534:26;;:41;;;;;;;;;;;;;;42541:8;42534:41;;;5:2:-1;;;;30:1;27;20:12;5:2;42534:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42534:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42534:41:0;;-1:-1:-1;42586:19:0;;42582:187;;42645:5;;42623:8;;42616:38;;-1:-1:-1;;;;;42623:8:0;;;;42645:5;;42616:38;:28;:38;:::i;:::-;42692:5;;42670:8;;42663:52;;-1:-1:-1;;;;;42670:8:0;;;;42692:5;42699:15;42663:52;:28;:52;:::i;:::-;42730:5;;42724:37;;;-1:-1:-1;;;42724:37:0;;;;;;;;;;-1:-1:-1;;;;;42730:5:0;;;;42724:20;;:37;;;;;42730:5;;42724:37;;;;;;;;42730:5;;42724:37;;;5:2:-1;;;;30:1;27;20:12;2218:136:0;2276:7;2303:43;2307:1;2310;2303:43;;;;;;;;;;;;;;;;;:3;:43::i;13369:621::-;13739:10;;;13738:62;;-1:-1:-1;13755:39:0;;;-1:-1:-1;;;13755:39:0;;13779:4;13755:39;;;;-1:-1:-1;;;;;13755:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;13755:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13755:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13755:39:0;:44;13738:62;13730:152;;;;-1:-1:-1;;;13730:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13919:62;;;-1:-1:-1;;;;;13919:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;13919:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;13893:89:0;;13912:5;;13893:18;:89::i;39779:1085::-;39866:8;;39859:41;;;-1:-1:-1;;;39859:41:0;;39894:4;39859:41;;;;;;39833:23;;-1:-1:-1;;;;;39866:8:0;;39859:26;;:41;;;;;;;;;;;;;;39866:8;39859:41;;;5:2:-1;;;;30:1;27;20:12;5:2;39859:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39859:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39859:41:0;;-1:-1:-1;39983:25:0;40011:38;39859:41;40011:21;:38::i;:::-;39983:66;-1:-1:-1;40060:22:0;40056:51;;40093:7;;;;40056:51;40131:17;40119:9;:29;40115:713;;;40274:30;;:::i;:::-;40307:25;40322:9;40307:14;:25::i;:::-;40370:5;;40348:8;;40274:58;;-1:-1:-1;40341:38:0;;-1:-1:-1;;;;;40348:8:0;;;;40370:5;;40341:38;:28;:38;:::i;:::-;40417:5;;40395:8;;40388:52;;-1:-1:-1;;;;;40395:8:0;;;;40417:5;40424:15;40388:52;:28;:52;:::i;:::-;40459:5;;40449:92;;-1:-1:-1;;;40449:92:0;;-1:-1:-1;;;;;40459:5:0;;;;40449:43;;40503:12;;40517:15;;40449:92;;;40503:12;40449:92;;;40503:12;40459:5;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40449:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40449:92:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40449:92:0;;;;40115:713;;;;40659:5;;40637:8;;40630:38;;-1:-1:-1;;;;;40637:8:0;;;;40659:5;;40630:38;:28;:38;:::i;:::-;40706:5;;40684:8;;40677:52;;-1:-1:-1;;;;;40684:8:0;;;;40706:5;40713:15;40677:52;:28;:52;:::i;:::-;40748:5;;40805:10;;-1:-1:-1;;;;;40748:5:0;;;;40738:42;;40781:15;;-1:-1:-1;;;40805:10:0;;;;40798:18;;;;;;;;40818:1;40738:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;3134:471:0;3192:7;3437:6;3433:47;;-1:-1:-1;3467:1:0;3460:8;;3433:47;3504:5;;;3508:1;3504;:5;:1;3528:5;;;;;:10;3520:56;;;;-1:-1:-1;;;3520:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4073:132;4131:7;4158:39;4162:1;4165;4158:39;;;;;;;;;;;;;;;;;:3;:39::i;424:106::-;482:7;513:1;509;:5;:13;;521:1;509:13;;;-1:-1:-1;517:1:0;;424:106;-1:-1:-1;424:106:0:o;15012:1114::-;15616:27;15624:5;-1:-1:-1;;;;;15616:25:0;;:27::i;:::-;15608:71;;;;;-1:-1:-1;;;15608:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15753:12;15767:23;15802:5;-1:-1:-1;;;;;15794:19:0;15814:4;15794:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;15794:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;15752:67:0;;;;15838:7;15830:52;;;;;-1:-1:-1;;;15830:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15899:17;;:21;15895:224;;16041:10;16030:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16030:30:0;16022:85;;;;-1:-1:-1;;;16022:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24232:637;24327:10;24314;:23;24310:554;;;24348:14;24365:26;:10;24380;24365:26;:14;:26;:::i;:::-;24348:43;;24400:17;24420:64;24459:24;;24420:34;24431:22;;24420:6;:10;;:34;;;;:::i;:64::-;24498:61;;;;;;;;;;;;;;;;;;24543:15;24498:61;;;;;;24400:84;;-1:-1:-1;24498:61:0;;;;;;;;;;24570:47;24601:12;:10;:12::i;:::-;24577:10;;-1:-1:-1;;;;;24577:10:0;;24615:1;24570:47;:30;:47;:::i;:::-;24626:55;24657:12;:10;:12::i;:::-;24633:10;;-1:-1:-1;;;;;24633:10:0;;24671:9;24626:55;:30;:55;:::i;:::-;24702:12;:10;:12::i;:::-;24736:10;;24690:85;;;-1:-1:-1;;;24690:85:0;;-1:-1:-1;;;;;24736:10:0;;;24690:85;;;;;;;;;;;;:35;;;;;;;:85;;;;;24736:10;;24690:85;;;;;;;;24736:10;24690:35;:85;;;5:2:-1;;;;30:1;27;20:12;5:2;24690:85:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24690:85:0;;;;24310:554;;;;;24803:53;;;;;;;;;;;;24837:1;24803:53;;;;24840:15;24803:53;;;;;;;;;;;;;;;24232:637;;:::o;39069:529::-;39137:4;;;39130:37;;;-1:-1:-1;;;39130:37:0;;39161:4;39130:37;;;;;;;;39108:19;;-1:-1:-1;;;;;39137:4:0;;;;39130:22;;:37;;;;;;;;;;;;;;39137:4;39130:37;;;5:2:-1;;;;30:1;27;20:12;5:2;39130:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39130:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39130:37:0;;-1:-1:-1;39178:15:0;;39174:383;;39229:5;;39211:4;;39204:34;;-1:-1:-1;;;;;39211:4:0;;;;39229:5;;39204:34;:24;:34;:::i;:::-;39272:5;;39254:4;;39247:44;;-1:-1:-1;;;;;39254:4:0;;;;39272:5;39279:11;39247:44;:24;:44;:::i;:::-;39383:15;39411:29;;:::i;:::-;39443:27;39458:11;39443:14;:27::i;:::-;39489:5;;39479:70;;-1:-1:-1;;;39479:70:0;;39411:59;;-1:-1:-1;;;;;;39489:5:0;;39479:30;;39411:59;;39533:7;;39479:70;;;39411:59;39479:70;;;39411:59;39489:5;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39479:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;2691:192:0;2777:7;2813:12;2805:6;;;;2797:29;;;;-1:-1:-1;;;2797:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2797:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2849:5:0;;;2691:192::o;44493:235::-;44556:17;;:::i;:::-;44582:25;;:::i;:::-;:76;;;;;;;;44619:1;44582:76;;;;44631:1;44582:76;;;;44643:1;44582:76;;;;44655:1;44582:76;;;;;44695:6;44665:7;44680:10;;;;;;;;;;;44673:18;;;;;;;;44665:27;;;;;;;;;;;;:36;44715:7;44493:235;-1:-1:-1;;44493:235:0:o;4735:345::-;4821:7;4923:12;4916:5;4908:28;;;;-1:-1:-1;;;4908:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4908:28:0;;4947:9;4963:1;4959;:5;;;;;;;4735:345;-1:-1:-1;;;;;4735:345:0:o;10002:619::-;10062:4;10530:20;;10373:66;10570:23;;;;;;:42;;-1:-1:-1;10597:15:0;;;10570:42;10562:51;10002:619;-1:-1:-1;;;;10002:619:0:o;48538:1516::-;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;-1:-1;48538:1516:0;;;-1:-1:-1;;48538:1516:0:o

Swarm Source

bzzr://53b89db7abe078430ed0ccc545a752e65ef30ac9f0e9811173ae77e326b171ed

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.