CELO Price: $1.28 (+1.51%)
Gas: 10 GWei

Contract

0xD08B593eb3460B7aa5Ce76fFB0A3c5c938fd89b8

Overview

CELO Balance

Celo Chain LogoCelo Chain LogoCelo Chain Logo0 CELO

CELO Value

$0.00

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
Deposit212716452023-09-06 18:58:32204 days ago1694026712IN
Gamma: Uniproxy
0 CELO0.0079523725
Deposit212715912023-09-06 18:54:02204 days ago1694026442IN
Gamma: Uniproxy
0 CELO0.0074377525
Deposit212715442023-09-06 18:50:07204 days ago1694026207IN
Gamma: Uniproxy
0 CELO0.0109337725
Deposit211382972023-08-30 1:46:08211 days ago1693359968IN
Gamma: Uniproxy
0 CELO0.001638645.07
Deposit211382742023-08-30 1:44:13211 days ago1693359853IN
Gamma: Uniproxy
0 CELO0.003009317.5
Deposit211365102023-08-29 23:17:13212 days ago1693351033IN
Gamma: Uniproxy
0 CELO0.0089248525
Deposit209757622023-08-20 16:01:18221 days ago1692547278IN
Gamma: Uniproxy
0 CELO0.0109355725
Deposit209757572023-08-20 16:00:53221 days ago1692547253IN
Gamma: Uniproxy
0 CELO0.0107380525
Deposit209592922023-08-19 17:08:48222 days ago1692464928IN
Gamma: Uniproxy
0 CELO0.0107716725
Deposit208334212023-08-12 10:19:28229 days ago1691835568IN
Gamma: Uniproxy
0 CELO0.010657925
Deposit207101032023-08-05 7:02:45236 days ago1691218965IN
Gamma: Uniproxy
0 CELO0.001306185
Deposit207100892023-08-05 7:01:35236 days ago1691218895IN
Gamma: Uniproxy
0 CELO0.00127585
Deposit207100732023-08-05 7:00:15236 days ago1691218815IN
Gamma: Uniproxy
0 CELO0.001481365
Deposit207100202023-08-05 6:55:50236 days ago1691218550IN
Gamma: Uniproxy
0 CELO0.001740475
Deposit206801932023-08-03 13:30:11238 days ago1691069411IN
Gamma: Uniproxy
0 CELO0.0106389225
Deposit203949632023-07-18 1:18:32254 days ago1689643112IN
Gamma: Uniproxy
0 CELO0.01119525
Deposit203884572023-07-17 16:16:21255 days ago1689610581IN
Gamma: Uniproxy
0 CELO0.009498225
Deposit203565512023-07-15 19:57:24257 days ago1689451044IN
Gamma: Uniproxy
0 CELO0.0115939525
Deposit201629452023-07-04 15:03:19268 days ago1688482999IN
Gamma: Uniproxy
0 CELO0.0085381525
Deposit201628372023-07-04 14:54:19268 days ago1688482459IN
Gamma: Uniproxy
0 CELO0.0107944225
Deposit201292742023-07-02 16:17:24270 days ago1688314644IN
Gamma: Uniproxy
0 CELO0.0123461525
Deposit201292432023-07-02 16:14:49270 days ago1688314489IN
Gamma: Uniproxy
0 CELO0.0107897725
Deposit198869122023-06-18 15:40:28284 days ago1687102828IN
Gamma: Uniproxy
0 CELO0.0062607225
Deposit198868362023-06-18 15:34:08284 days ago1687102448IN
Gamma: Uniproxy
0 CELO0.011455425
Deposit197287902023-06-09 12:03:24293 days ago1686312204IN
Gamma: Uniproxy
0 CELO0.002105435.01
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
UniProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 17 : UniProxy.sol
/// SPDX-License-Identifier: BUSL-1.1

pragma solidity 0.7.6;
pragma abicoder v2;

import "./interfaces/IHypervisor.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@uniswap/v3-core/contracts/libraries/FullMath.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/math/SignedSafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@uniswap/v3-core/contracts/libraries/TickMath.sol";

/// @title UniProxy
/// @notice Proxy contract for hypervisor positions management
contract UniProxy is ReentrancyGuard {
  using SafeERC20 for IERC20;
  using SafeMath for uint256;
  using SignedSafeMath for int256;

  mapping(address => Position) public positions;

  address public owner;
  bool public freeDeposit = false;
  bool public twapCheck = false;
  uint32 public twapInterval = 1 hours;
  uint256 public depositDelta = 1010;
  uint256 public deltaScale = 1000; /// must be a power of 10
  uint256 public priceThreshold = 100;

  uint256 constant MAX_UINT = 2**256 - 1;

  struct Position {
    uint8 version; // 1->3 proxy 3 transfers, 2-> proxy two transfers, 3-> proxy no transfers
    mapping(address=>bool) list; // whitelist certain accounts for freedeposit
    bool twapOverride; // force twap check for hypervisor instance
    uint32 twapInterval; // override global twap
    uint256 priceThreshold; // custom price threshold
    bool depositOverride; // force custom deposit constraints
    uint256 deposit0Max;
    uint256 deposit1Max;
    uint256 maxTotalSupply;
    bool freeDeposit; // override global freeDepsoit
  }

  /// events
  event PositionAdded(address, uint8);
  event CustomDeposit(address, uint256, uint256, uint256);
  event PriceThresholdSet(uint256 _priceThreshold);
  event DepositDeltaSet(uint256 _depositDelta);
  event DeltaScaleSet(uint256 _deltaScale);
  event TwapIntervalSet(uint32 _twapInterval);
  event TwapOverrideSet(address pos, bool twapOverride, uint32 _twapInterval);
  event PriceThresholdPosSet(address pos, uint256 _priceThreshold);
  event DepositFreeToggled();
  event DepositOverrideToggled(address pos);
  event DepositFreeOverrideToggled(address pos);
  event TwapToggled();
  event ListAppended(address pos, address[] listed);
  event ListRemoved(address pos, address listed);

  constructor() {
    owner = msg.sender;
  }

  modifier onlyAddedPosition(address pos) {
    Position storage p = positions[pos];
    require(p.version != 0, "not added");
    _;
  }

  /// @notice Add the hypervisor position
  /// @param pos Address of the hypervisor
  /// @param version Type of hypervisor
  function addPosition(address pos, uint8 version) external onlyOwner {
    Position storage p = positions[pos];
    require(p.version == 0, 'already added');
    require(version > 0, 'version < 1');
    p.version = version;
    IHypervisor(pos).token0().safeApprove(pos, MAX_UINT);
    IHypervisor(pos).token1().safeApprove(pos, MAX_UINT);
    emit PositionAdded(pos, version);
  }

  /// @notice Deposit into the given position
  /// @param deposit0 Amount of token0 to deposit
  /// @param deposit1 Amount of token1 to deposit
  /// @param to Address to receive liquidity tokens
  /// @param pos Hypervisor Address
  /// @return shares Amount of liquidity tokens received
  function deposit(
    uint256 deposit0,
    uint256 deposit1,
    address to,
    address pos,
    uint256[4] memory minIn
  ) nonReentrant external onlyAddedPosition(pos) returns (uint256 shares) {
    require(to != address(0), "to should be non-zero");
    Position storage p = positions[pos];

    if (p.version < 3) {
      /// requires asset transfer to proxy
      if (deposit0 != 0) {
        IHypervisor(pos).token0().safeTransferFrom(msg.sender, address(this), deposit0);
      }
      if (deposit1 != 0) {
        IHypervisor(pos).token1().safeTransferFrom(msg.sender, address(this), deposit1);
      }
    }

    if (!freeDeposit && !p.list[msg.sender] && !p.freeDeposit) { 
      // freeDeposit off and hypervisor msg.sender not on list
      if (deposit0 > 0) {
        (uint256 test1Min, uint256 test1Max) = getDepositAmount(pos, address(IHypervisor(pos).token0()), deposit0);

        require(deposit1 >= test1Min && deposit1 <= test1Max, "Improper ratio"); 
      }
      if (deposit1 > 0) {
        (uint256 test0Min, uint256 test0Max) = getDepositAmount(pos, address(IHypervisor(pos).token1()), deposit1);

        require(deposit0 >= test0Min && deposit0 <= test0Max, "Improper ratio"); 
      }
    }

    if (twapCheck || p.twapOverride) {
      /// check twap
      checkPriceChange(
        pos,
        (p.twapOverride ? p.twapInterval : twapInterval),
        (p.twapOverride ? p.priceThreshold : priceThreshold)
      );
    }

    if (p.depositOverride) {
      if (p.deposit0Max > 0) {
        require(deposit0 <= p.deposit0Max, "token0 exceeds");
      }
      if (p.deposit1Max > 0) {
        require(deposit1 <= p.deposit1Max, "token1 exceeds");
      }
    }

    /// transfer lp tokens direct to msg.sender and provide minIn
    shares = IHypervisor(pos).deposit(deposit0, deposit1, msg.sender, msg.sender, minIn);
  }

  /// @notice Get the amount of token to deposit for the given amount of pair token
  /// @param pos Hypervisor Address
  /// @param token Address of token to deposit
  /// @param _deposit Amount of token to deposit
  /// @return amountStart Minimum amounts of the pair token to deposit
  /// @return amountEnd Maximum amounts of the pair token to deposit
  function getDepositAmount(
    address pos,
    address token,
    uint256 _deposit
  ) public view returns (uint256 amountStart, uint256 amountEnd) {
    require(token == address(IHypervisor(pos).token0()) || token == address(IHypervisor(pos).token1()), "token mistmatch");
    require(_deposit > 0, "deposits can't be zero");
    (uint256 total0, uint256 total1) = IHypervisor(pos).getTotalAmounts();
    if (IHypervisor(pos).totalSupply() == 0 || total0 == 0 || total1 == 0) {
      amountStart = 0;
      if (token == address(IHypervisor(pos).token0())) {
        amountEnd = IHypervisor(pos).deposit1Max();
      } else {
        amountEnd = IHypervisor(pos).deposit0Max();
      }
    } else {
      uint256 ratioStart;
      uint256 ratioEnd;
      if (token == address(IHypervisor(pos).token0())) {
        ratioStart = FullMath.mulDiv(total0.mul(depositDelta), 1e18, total1.mul(deltaScale));
        ratioEnd = FullMath.mulDiv(total0.mul(deltaScale), 1e18, total1.mul(depositDelta));
      } else {
        ratioStart = FullMath.mulDiv(total1.mul(depositDelta), 1e18, total0.mul(deltaScale));
        ratioEnd = FullMath.mulDiv(total1.mul(deltaScale), 1e18, total0.mul(depositDelta));
      }
      amountStart = FullMath.mulDiv(_deposit, 1e18, ratioStart);
      amountEnd = FullMath.mulDiv(_deposit, 1e18, ratioEnd);
    }
  }

  /// @notice Check if the price change overflows or not based on given twap and threshold in the hypervisor
  /// @param pos Hypervisor Address
  /// @param _twapInterval Time intervals
  /// @param _priceThreshold Price Threshold
  /// @return price Current price
  function checkPriceChange(
    address pos,
    uint32 _twapInterval,
    uint256 _priceThreshold
  ) public view returns (uint256 price) {
    uint160 sqrtPrice = TickMath.getSqrtRatioAtTick(IHypervisor(pos).currentTick());
    price = FullMath.mulDiv(uint256(sqrtPrice).mul(uint256(sqrtPrice)), 1e18, 2**(96 * 2));

    uint160 sqrtPriceBefore = getSqrtTwapX96(pos, _twapInterval);
    uint256 priceBefore = FullMath.mulDiv(uint256(sqrtPriceBefore).mul(uint256(sqrtPriceBefore)), 1e18, 2**(96 * 2));
    if (price.mul(100).div(priceBefore) > _priceThreshold || priceBefore.mul(100).div(price) > _priceThreshold)
      revert("Price change Overflow");
  }

  /// @notice Get the sqrt price before the given interval
  /// @param pos Hypervisor Address
  /// @param _twapInterval Time intervals
  /// @return sqrtPriceX96 Sqrt price before interval
  function getSqrtTwapX96(address pos, uint32 _twapInterval) public view returns (uint160 sqrtPriceX96) {
    if (_twapInterval == 0) {
      /// return the current price if _twapInterval == 0
      (sqrtPriceX96, , , , , , ) = IHypervisor(pos).pool().slot0();
    } 
    else {
      uint32[] memory secondsAgos = new uint32[](2);
      secondsAgos[0] = _twapInterval; /// from (before)
      secondsAgos[1] = 0; /// to (now)

      (int56[] memory tickCumulatives, ) = IHypervisor(pos).pool().observe(secondsAgos);

      /// tick(imprecise as it's an integer) to price
      sqrtPriceX96 = TickMath.getSqrtRatioAtTick(
        int24((tickCumulatives[1] - tickCumulatives[0]) / _twapInterval)
      );
    }
  }

  /// @param _priceThreshold Price Threshold
  function setPriceThreshold(uint256 _priceThreshold) external onlyOwner {
    priceThreshold = _priceThreshold;
    emit PriceThresholdSet(_priceThreshold);
  }

  /// @param _depositDelta Number to calculate deposit ratio
  function setDepositDelta(uint256 _depositDelta) external onlyOwner {
    depositDelta = _depositDelta;
    emit DepositDeltaSet(_depositDelta);
  }

  /// @param _deltaScale Number to calculate deposit ratio
  function setDeltaScale(uint256 _deltaScale) external onlyOwner {
    deltaScale = _deltaScale;
    emit DeltaScaleSet(_deltaScale);
  }

  /// @param pos Hypervisor address
  /// @param deposit0Max Amount of maximum deposit amounts of token0
  /// @param deposit1Max Amount of maximum deposit amounts of token1
  /// @param maxTotalSupply Maximum total suppoy of hypervisor
  function customDeposit(
    address pos,
    uint256 deposit0Max,
    uint256 deposit1Max,
    uint256 maxTotalSupply
  ) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    p.deposit0Max = deposit0Max;
    p.deposit1Max = deposit1Max;
    p.maxTotalSupply = maxTotalSupply;
    emit CustomDeposit(pos, deposit0Max, deposit1Max, maxTotalSupply);
  }

  /// @notice Toogle free deposit
  function toggleDepositFree() external onlyOwner {
    freeDeposit = !freeDeposit;
    emit DepositFreeToggled();
  }

  /// @notice Toggle deposit override
  /// @param pos Hypervisor Address
  function toggleDepositOverride(address pos) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    p.depositOverride = !p.depositOverride;
    emit DepositOverrideToggled(pos);
  }

  /// @notice Toggle free deposit of the given hypervisor
  /// @param pos Hypervisor Address
  function toggleDepositFreeOverride(address pos) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    p.freeDeposit = !p.freeDeposit;
    emit DepositFreeOverrideToggled(pos);
  }

  /// @param _twapInterval Time intervals
  function setTwapInterval(uint32 _twapInterval) external onlyOwner {
    twapInterval = _twapInterval;
    emit TwapIntervalSet(_twapInterval);
  }

  /// @param pos Hypervisor Address
  /// @param twapOverride Twap Override
  /// @param _twapInterval Time Intervals
  function setTwapOverride(address pos, bool twapOverride, uint32 _twapInterval) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    p.twapOverride = twapOverride;
    p.twapInterval = _twapInterval;
    emit TwapOverrideSet(pos, twapOverride, _twapInterval);
  }

  /// @param pos Hypervisor Address
  /// @param _priceThreshold Price Threshold
  function setPriceThresholdPos(address pos, uint256 _priceThreshold) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    p.priceThreshold = _priceThreshold;
    emit PriceThresholdPosSet(pos, _priceThreshold);
  }

  /// @notice Twap Toggle
  function toggleTwap() external onlyOwner {
    twapCheck = !twapCheck;
    emit TwapToggled();
  }

  /// @notice Append whitelist to hypervisor
  /// @param pos Hypervisor Address
  /// @param listed Address array to add in whitelist
  function appendList(address pos, address[] memory listed) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    for (uint8 i; i < listed.length; i++) {
      p.list[listed[i]] = true;
    }
    emit ListAppended(pos, listed);
  }

  /// @notice Remove address from whitelist
  /// @param pos Hypervisor Address
  /// @param listed Address to remove from whitelist
  function removeListed(address pos, address listed) external onlyOwner onlyAddedPosition(pos) {
    Position storage p = positions[pos];
    p.list[listed] = false;
    emit ListRemoved(pos, listed);
  }

  function transferOwnership(address newOwner) external onlyOwner {
    require(newOwner != address(0), "newOwner should be non-zero");
    owner = newOwner;
  }

  modifier onlyOwner {
    require(msg.sender == owner, "only owner");
    _;
  }
}

File 2 of 17 : IHypervisor.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.7.6;
pragma abicoder v2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";

interface IHypervisor {

  function deposit(
      uint256,
      uint256,
      address,
      address,
      uint256[4] memory minIn
  ) external returns (uint256);

  function withdraw(
    uint256,
    address,
    address,
    uint256[4] memory
  ) external returns (uint256, uint256);

  function compound() external returns (

    uint128 baseToken0Owed,
    uint128 baseToken1Owed,
    uint128 limitToken0Owed,
    uint128 limitToken1Owed
  );

  function compound(uint256[4] memory inMin) external returns (

    uint128 baseToken0Owed,
    uint128 baseToken1Owed,
    uint128 limitToken0Owed,
    uint128 limitToken1Owed
  );


  function rebalance(
    int24 _baseLower,
    int24 _baseUpper,
    int24 _limitLower,
    int24 _limitUpper,
    address _feeRecipient,
    uint256[4] memory minIn, 
    uint256[4] memory outMin
    ) external;

  function addBaseLiquidity(
    uint256 amount0, 
    uint256 amount1,
    uint256[2] memory minIn
  ) external;

  function addLimitLiquidity(
    uint256 amount0, 
    uint256 amount1,
    uint256[2] memory minIn
  ) external;   

  function pullLiquidity(
    uint256 shares,
    uint256[4] memory minAmounts
  ) external returns (
    uint256 base0,
    uint256 base1,
    uint256 limit0,
    uint256 limit1
  );

  function pool() external view returns (IUniswapV3Pool);

  function currentTick() external view returns (int24 tick);
  
  function tickSpacing() external view returns (int24 spacing);

  function baseLower() external view returns (int24 tick);

  function baseUpper() external view returns (int24 tick);

  function limitLower() external view returns (int24 tick);

  function limitUpper() external view returns (int24 tick);

  function token0() external view returns (IERC20);

  function token1() external view returns (IERC20);

  function deposit0Max() external view returns (uint256);

  function deposit1Max() external view returns (uint256);

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

  function approve(address, uint256) external returns (bool);

  function transferFrom(address, address, uint256) external returns (bool);

  function transfer(address, uint256) external returns (bool);

  function getTotalAmounts() external view returns (uint256 total0, uint256 total1);
  
  function getBasePosition() external view returns (uint256 liquidity, uint256 total0, uint256 total1);

  function totalSupply() external view returns (uint256 );

  function setWhitelist(address _address) external;
  
  function setFee(uint8 newFee) external;
  
  function removeWhitelisted() external;

  function transferOwnership(address newOwner) external;

}

File 3 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

File 4 of 17 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 17 : FullMath.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then use the Chinese Remainder Theorem to reconstruct
        // the 512 bit result. The result is stored in two 256
        // variables such that product = prod1 * 2**256 + prod0
        uint256 prod0; // Least significant 256 bits of the product
        uint256 prod1; // Most significant 256 bits of the product
        assembly {
            let mm := mulmod(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

        ///////////////////////////////////////////////
        // 512 by 256 division.
        ///////////////////////////////////////////////

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        prod0 |= prod1 * twos;

        // Invert denominator mod 2**256
        // Now that denominator is an odd number, it has an inverse
        // modulo 2**256 such that denominator * inv = 1 mod 2**256.
        // Compute the inverse by starting with a seed that is correct
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use Newton-Raphson iteration to improve the precision.
        // Thanks to Hensel's lifting lemma, this also works in modular
        // arithmetic, doubling the correct bits in each step.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // inverse mod 2**256

        // Because the division is now exact we can divide by multiplying
        // with the modular inverse of denominator. This will give us the
        // correct result modulo 2**256. Since the precoditions guarantee
        // that the outcome is less than 2**256, this is the final result.
        // We don't need to compute the high bits of the result and prod1
        // is no longer required.
        result = prod0 * inv;
        return result;
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        result = mulDiv(a, b, denominator);
        if (mulmod(a, b, denominator) > 0) {
            require(result < type(uint256).max);
            result++;
        }
    }
}

File 6 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 17 : SignedSafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @title SignedSafeMath
 * @dev Signed math operations with safety checks that revert on error.
 */
library SignedSafeMath {
    int256 constant private _INT256_MIN = -2**255;

    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        // 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;
        }

        require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow");

        int256 c = a * b;
        require(c / a == b, "SignedSafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two signed 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(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0, "SignedSafeMath: division by zero");
        require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow");

        int256 c = a / b;

        return c;
    }

    /**
     * @dev Returns the subtraction of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow");

        return c;
    }
}

File 8 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 9 of 17 : TickMath.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
/// prices between 2**-128 and 2**128
library TickMath {
    /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
    int24 internal constant MIN_TICK = -887272;
    /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
    int24 internal constant MAX_TICK = -MIN_TICK;

    /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;

    /// @notice Calculates sqrt(1.0001^tick) * 2^96
    /// @dev Throws if |tick| > max tick
    /// @param tick The input tick for the above formula
    /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
    /// at the given tick
    function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {
        uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));
        require(absTick <= uint256(MAX_TICK), 'T');

        uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000;
        if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
        if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
        if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
        if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
        if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
        if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
        if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
        if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
        if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
        if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
        if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
        if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
        if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
        if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
        if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
        if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
        if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
        if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
        if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;

        if (tick > 0) ratio = type(uint256).max / ratio;

        // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96.
        // we then downcast because we know the result always fits within 160 bits due to our tick input constraint
        // we round up in the division so getTickAtSqrtRatio of the output price is always consistent
        sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1));
    }

    /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio
    /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may
    /// ever return.
    /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96
    /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio
    function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) {
        // second inequality must be < because the price can never reach the price at the max tick
        require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, 'R');
        uint256 ratio = uint256(sqrtPriceX96) << 32;

        uint256 r = ratio;
        uint256 msb = 0;

        assembly {
            let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(5, gt(r, 0xFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(4, gt(r, 0xFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(3, gt(r, 0xFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(2, gt(r, 0xF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(1, gt(r, 0x3))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := gt(r, 0x1)
            msb := or(msb, f)
        }

        if (msb >= 128) r = ratio >> (msb - 127);
        else r = ratio << (127 - msb);

        int256 log_2 = (int256(msb) - 128) << 64;

        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(63, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(62, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(61, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(60, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(59, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(58, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(57, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(56, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(55, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(54, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(53, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(52, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(51, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(50, f))
        }

        int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number

        int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128);
        int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128);

        tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow;
    }
}

File 10 of 17 : IUniswapV3Pool.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import './pool/IUniswapV3PoolImmutables.sol';
import './pool/IUniswapV3PoolState.sol';
import './pool/IUniswapV3PoolDerivedState.sol';
import './pool/IUniswapV3PoolActions.sol';
import './pool/IUniswapV3PoolOwnerActions.sol';
import './pool/IUniswapV3PoolEvents.sol';

/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
    IUniswapV3PoolImmutables,
    IUniswapV3PoolState,
    IUniswapV3PoolDerivedState,
    IUniswapV3PoolActions,
    IUniswapV3PoolOwnerActions,
    IUniswapV3PoolEvents
{

}

File 11 of 17 : IUniswapV3PoolImmutables.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
    /// @return The contract address
    function factory() external view returns (address);

    /// @notice The first of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token0() external view returns (address);

    /// @notice The second of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token1() external view returns (address);

    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
    /// @return The fee
    function fee() external view returns (uint24);

    /// @notice The pool tick spacing
    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
    /// This value is an int24 to avoid casting even though it is always positive.
    /// @return The tick spacing
    function tickSpacing() external view returns (int24);

    /// @notice The maximum amount of position liquidity that can use any tick in the range
    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
    /// @return The max amount of liquidity per tick
    function maxLiquidityPerTick() external view returns (uint128);
}

File 12 of 17 : IUniswapV3PoolState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
    /// when accessed externally.
    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.
    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
    /// boundary.
    /// observationIndex The index of the last oracle observation that was written,
    /// observationCardinality The current maximum number of observations stored in the pool,
    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// feeProtocol The protocol fee for both tokens of the pool.
    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
    /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
    /// unlocked Whether the pool is currently locked to reentrancy
    function slot0()
        external
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );

    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal0X128() external view returns (uint256);

    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal1X128() external view returns (uint256);

    /// @notice The amounts of token0 and token1 that are owed to the protocol
    /// @dev Protocol fees will never exceed uint128 max in either token
    function protocolFees() external view returns (uint128 token0, uint128 token1);

    /// @notice The currently in range liquidity available to the pool
    /// @dev This value has no relationship to the total liquidity across all ticks
    function liquidity() external view returns (uint128);

    /// @notice Look up information about a specific tick in the pool
    /// @param tick The tick to look up
    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
    /// tick upper,
    /// liquidityNet how much liquidity changes when the pool price crosses the tick,
    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
    /// secondsOutside the seconds spent on the other side of the tick from the current tick,
    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
    /// a specific position.
    function ticks(int24 tick)
        external
        view
        returns (
            uint128 liquidityGross,
            int128 liquidityNet,
            uint256 feeGrowthOutside0X128,
            uint256 feeGrowthOutside1X128,
            int56 tickCumulativeOutside,
            uint160 secondsPerLiquidityOutsideX128,
            uint32 secondsOutside,
            bool initialized
        );

    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
    function tickBitmap(int16 wordPosition) external view returns (uint256);

    /// @notice Returns the information about a position by the position's key
    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
    /// @return _liquidity The amount of liquidity in the position,
    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
    function positions(bytes32 key)
        external
        view
        returns (
            uint128 _liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    /// @notice Returns data about a specific observation index
    /// @param index The element of the observations array to fetch
    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
    /// ago, rather than at a specific index in the array.
    /// @return blockTimestamp The timestamp of the observation,
    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
    /// Returns initialized whether the observation has been initialized and the values are safe to use
    function observations(uint256 index)
        external
        view
        returns (
            uint32 blockTimestamp,
            int56 tickCumulative,
            uint160 secondsPerLiquidityCumulativeX128,
            bool initialized
        );
}

File 13 of 17 : IUniswapV3PoolDerivedState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
    /// you must call it with secondsAgos = [3600, 0].
    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
    /// timestamp
    function observe(uint32[] calldata secondsAgos)
        external
        view
        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);

    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
    /// snapshot is taken and the second snapshot is taken.
    /// @param tickLower The lower tick of the range
    /// @param tickUpper The upper tick of the range
    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
    /// @return secondsInside The snapshot of seconds per liquidity for the range
    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            int56 tickCumulativeInside,
            uint160 secondsPerLiquidityInsideX128,
            uint32 secondsInside
        );
}

File 14 of 17 : IUniswapV3PoolActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
    /// @notice Sets the initial price for the pool
    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
    function initialize(uint160 sqrtPriceX96) external;

    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
    /// on tickLower, tickUpper, the amount of liquidity, and the current price.
    /// @param recipient The address for which the liquidity will be created
    /// @param tickLower The lower tick of the position in which to add liquidity
    /// @param tickUpper The upper tick of the position in which to add liquidity
    /// @param amount The amount of liquidity to mint
    /// @param data Any data that should be passed through to the callback
    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
    function mint(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount,
        bytes calldata data
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Collects tokens owed to a position
    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
    /// @param recipient The address which should receive the fees collected
    /// @param tickLower The lower tick of the position for which to collect fees
    /// @param tickUpper The upper tick of the position for which to collect fees
    /// @param amount0Requested How much token0 should be withdrawn from the fees owed
    /// @param amount1Requested How much token1 should be withdrawn from the fees owed
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);

    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
    /// @dev Fees must be collected separately via a call to #collect
    /// @param tickLower The lower tick of the position for which to burn liquidity
    /// @param tickUpper The upper tick of the position for which to burn liquidity
    /// @param amount How much liquidity to burn
    /// @return amount0 The amount of token0 sent to the recipient
    /// @return amount1 The amount of token1 sent to the recipient
    function burn(
        int24 tickLower,
        int24 tickUpper,
        uint128 amount
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Swap token0 for token1, or token1 for token0
    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
    /// @param recipient The address to receive the output of the swap
    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
    /// @param data Any data to be passed through to the callback
    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
    function swap(
        address recipient,
        bool zeroForOne,
        int256 amountSpecified,
        uint160 sqrtPriceLimitX96,
        bytes calldata data
    ) external returns (int256 amount0, int256 amount1);

    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
    /// with 0 amount{0,1} and sending the donation amount(s) from the callback
    /// @param recipient The address which will receive the token0 and token1 amounts
    /// @param amount0 The amount of token0 to send
    /// @param amount1 The amount of token1 to send
    /// @param data Any data to be passed through to the callback
    function flash(
        address recipient,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;

    /// @notice Increase the maximum number of price and liquidity observations that this pool will store
    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
    /// the input observationCardinalityNext.
    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}

File 15 of 17 : IUniswapV3PoolOwnerActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    /// @param feeProtocol0 new protocol fee for token0 of the pool
    /// @param feeProtocol1 new protocol fee for token1 of the pool
    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;

    /// @notice Collect the protocol fee accrued to the pool
    /// @param recipient The address to which collected protocol fees should be sent
    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
    /// @return amount0 The protocol fee collected in token0
    /// @return amount1 The protocol fee collected in token1
    function collectProtocol(
        address recipient,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);
}

File 16 of 17 : IUniswapV3PoolEvents.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool
    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
    event Initialize(uint160 sqrtPriceX96, int24 tick);

    /// @notice Emitted when liquidity is minted for a given position
    /// @param sender The address that minted the liquidity
    /// @param owner The owner of the position and recipient of any minted liquidity
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity minted to the position range
    /// @param amount0 How much token0 was required for the minted liquidity
    /// @param amount1 How much token1 was required for the minted liquidity
    event Mint(
        address sender,
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees are collected by the owner of a position
    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
    /// @param owner The owner of the position for which fees are collected
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount0 The amount of token0 fees collected
    /// @param amount1 The amount of token1 fees collected
    event Collect(
        address indexed owner,
        address recipient,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount0,
        uint128 amount1
    );

    /// @notice Emitted when a position's liquidity is removed
    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
    /// @param owner The owner of the position for which liquidity is removed
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity to remove
    /// @param amount0 The amount of token0 withdrawn
    /// @param amount1 The amount of token1 withdrawn
    event Burn(
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted by the pool for any swaps between token0 and token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the output of the swap
    /// @param amount0 The delta of the token0 balance of the pool
    /// @param amount1 The delta of the token1 balance of the pool
    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
    /// @param liquidity The liquidity of the pool after the swap
    /// @param tick The log base 1.0001 of price of the pool after the swap
    event Swap(
        address indexed sender,
        address indexed recipient,
        int256 amount0,
        int256 amount1,
        uint160 sqrtPriceX96,
        uint128 liquidity,
        int24 tick
    );

    /// @notice Emitted by the pool for any flashes of token0/token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the tokens from flash
    /// @param amount0 The amount of token0 that was flashed
    /// @param amount1 The amount of token1 that was flashed
    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
    event Flash(
        address indexed sender,
        address indexed recipient,
        uint256 amount0,
        uint256 amount1,
        uint256 paid0,
        uint256 paid1
    );

    /// @notice Emitted by the pool for increases to the number of observations that can be stored
    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
    /// just before a mint/swap/burn.
    /// @param observationCardinalityNextOld The previous value of the next observation cardinality
    /// @param observationCardinalityNextNew The updated value of the next observation cardinality
    event IncreaseObservationCardinalityNext(
        uint16 observationCardinalityNextOld,
        uint16 observationCardinalityNextNew
    );

    /// @notice Emitted when the protocol fee is changed by the pool
    /// @param feeProtocol0Old The previous value of the token0 protocol fee
    /// @param feeProtocol1Old The previous value of the token1 protocol fee
    /// @param feeProtocol0New The updated value of the token0 protocol fee
    /// @param feeProtocol1New The updated value of the token1 protocol fee
    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);

    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
    /// @param sender The address that collects the protocol fees
    /// @param recipient The address that receives the collected protocol fees
    /// @param amount0 The amount of token0 protocol fees that is withdrawn
    /// @param amount0 The amount of token1 protocol fees that is withdrawn
    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"CustomDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_deltaScale","type":"uint256"}],"name":"DeltaScaleSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_depositDelta","type":"uint256"}],"name":"DepositDeltaSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pos","type":"address"}],"name":"DepositFreeOverrideToggled","type":"event"},{"anonymous":false,"inputs":[],"name":"DepositFreeToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pos","type":"address"}],"name":"DepositOverrideToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pos","type":"address"},{"indexed":false,"internalType":"address[]","name":"listed","type":"address[]"}],"name":"ListAppended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pos","type":"address"},{"indexed":false,"internalType":"address","name":"listed","type":"address"}],"name":"ListRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint8","name":"","type":"uint8"}],"name":"PositionAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pos","type":"address"},{"indexed":false,"internalType":"uint256","name":"_priceThreshold","type":"uint256"}],"name":"PriceThresholdPosSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_priceThreshold","type":"uint256"}],"name":"PriceThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"_twapInterval","type":"uint32"}],"name":"TwapIntervalSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pos","type":"address"},{"indexed":false,"internalType":"bool","name":"twapOverride","type":"bool"},{"indexed":false,"internalType":"uint32","name":"_twapInterval","type":"uint32"}],"name":"TwapOverrideSet","type":"event"},{"anonymous":false,"inputs":[],"name":"TwapToggled","type":"event"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"uint8","name":"version","type":"uint8"}],"name":"addPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"address[]","name":"listed","type":"address[]"}],"name":"appendList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"uint32","name":"_twapInterval","type":"uint32"},{"internalType":"uint256","name":"_priceThreshold","type":"uint256"}],"name":"checkPriceChange","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"uint256","name":"deposit0Max","type":"uint256"},{"internalType":"uint256","name":"deposit1Max","type":"uint256"},{"internalType":"uint256","name":"maxTotalSupply","type":"uint256"}],"name":"customDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deltaScale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"deposit0","type":"uint256"},{"internalType":"uint256","name":"deposit1","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"pos","type":"address"},{"internalType":"uint256[4]","name":"minIn","type":"uint256[4]"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositDelta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"_deposit","type":"uint256"}],"name":"getDepositAmount","outputs":[{"internalType":"uint256","name":"amountStart","type":"uint256"},{"internalType":"uint256","name":"amountEnd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"uint32","name":"_twapInterval","type":"uint32"}],"name":"getSqrtTwapX96","outputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"positions","outputs":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"bool","name":"twapOverride","type":"bool"},{"internalType":"uint32","name":"twapInterval","type":"uint32"},{"internalType":"uint256","name":"priceThreshold","type":"uint256"},{"internalType":"bool","name":"depositOverride","type":"bool"},{"internalType":"uint256","name":"deposit0Max","type":"uint256"},{"internalType":"uint256","name":"deposit1Max","type":"uint256"},{"internalType":"uint256","name":"maxTotalSupply","type":"uint256"},{"internalType":"bool","name":"freeDeposit","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"address","name":"listed","type":"address"}],"name":"removeListed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deltaScale","type":"uint256"}],"name":"setDeltaScale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_depositDelta","type":"uint256"}],"name":"setDepositDelta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceThreshold","type":"uint256"}],"name":"setPriceThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"uint256","name":"_priceThreshold","type":"uint256"}],"name":"setPriceThresholdPos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_twapInterval","type":"uint32"}],"name":"setTwapInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"},{"internalType":"bool","name":"twapOverride","type":"bool"},{"internalType":"uint32","name":"_twapInterval","type":"uint32"}],"name":"setTwapOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDepositFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"}],"name":"toggleDepositFreeOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pos","type":"address"}],"name":"toggleDepositOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"twapCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"twapInterval","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"}]

Contract Creation Code

60806040526002805465ffffffffffff60a01b191660e160b41b1790556103f26003556103e8600455606460055534801561003957600080fd5b506001600055600280546001600160a01b031916331790556132a5806100606000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c80638da5cb5b116100f9578063cc2f609311610097578063d3e703cf11610071578063d3e703cf14610372578063e1fd632e14610385578063f2fde38b14610398578063f7ad5043146103ab576101b9565b8063cc2f60931461034f578063d0645c5114610357578063d26e1dff1461036a576101b9565b8063a845d159116100d3578063a845d1591461030e578063ab1e22c114610321578063b2fb13c214610334578063b30075fc1461033c576101b9565b80638da5cb5b146102e05780638e3c92e4146102e857806393708485146102fb576101b9565b80634fb52c7011610166578063686f38f011610140578063686f38f01461029d5780636a9dc0da146102a55780636aa29881146102b85780636b404955146102cb576101b9565b80634fb52c701461024157806355f57510146102545780635ccfb71d1461027c576101b9565b8063308f1cbc11610197578063308f1cbc146101f95780633c1d5df01461020c57806347628f6014610221576101b9565b806319a44053146101be5780631d27050f146101c857806322dfdd48146101db575b600080fd5b6101c66103be565b005b6101c66101d6366004612c9e565b610456565b6101e36104f1565b6040516101f09190612e0c565b60405180910390f35b6101c6610207366004612917565b610501565b6102146105c8565b6040516101f0919061311d565b61023461022f36600461297c565b6105db565b6040516101f09190612cb8565b6101c661024f366004612ba6565b61088f565b61026761026236600461278f565b6108ee565b6040516101f09998979695949392919061312e565b61028f61028a3660046127e3565b610943565b6040516101f09291906130b4565b6101e3610ec1565b6101c66102b3366004612823565b610ed1565b6101c66102c63660046129ed565b610fe0565b6102d3611185565b6040516101f091906130ab565b61023461118b565b6102d36102f6366004612bf9565b61119a565b6102d36103093660046129b0565b61167e565b6101c661031c3660046128d1565b6117ba565b6101c661032f36600461278f565b6118a1565b6101c6611972565b6101c661034a366004612ba6565b611a01565b6102d3611a60565b6101c66103653660046127ab565b611a66565b6102d3611b2e565b6101c6610380366004612942565b611b34565b6101c6610393366004612ba6565b611c0e565b6101c66103a636600461278f565b611c6d565b6101c66103b936600461278f565b611cf7565b6002546001600160a01b031633146103f15760405162461bcd60e51b81526004016103e890612fcf565b60405180910390fd5b600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff16159091021790556040517f0a70e646460175bd587a4a927917bf6c1574a7baf4dd890e769acd41eaa4696690600090a1565b6002546001600160a01b031633146104805760405162461bcd60e51b81526004016103e890612fcf565b600280547fffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffffff16600160b01b63ffffffff8416021790556040517fa715e512c9ea089998019d7ece21b384bb7161dc3caf500058fdcb05bc4232f8906104e690839061311d565b60405180910390a150565b600254600160a01b900460ff1681565b6002546001600160a01b0316331461052b5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805483919060ff166105675760405162461bcd60e51b81526004016103e890613006565b6001600160a01b038416600090815260016020526040908190206003810185905590517f56ba7c5dfa587531f3f6c67e9d1407c55558cc9a981350fab2f89e8e4f6904ff906105b99087908790612d67565b60405180910390a15050505050565b600254600160b01b900463ffffffff1681565b600063ffffffff82166106d857826001600160a01b03166316f0115b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561062157600080fd5b505afa158015610635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106599190612ae2565b6001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561069157600080fd5b505afa1580156106a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190612b18565b50949550610889945050505050565b604080516002808252606082018352600092602083019080368337019050509050828160008151811061070757fe5b602002602001019063ffffffff16908163ffffffff168152505060008160018151811061073057fe5b602002602001019063ffffffff16908163ffffffff16815250506000846001600160a01b03166316f0115b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561078557600080fd5b505afa158015610799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bd9190612ae2565b6001600160a01b031663883bdbfd836040518263ffffffff1660e01b81526004016107e89190612dc2565b60006040518083038186803b15801561080057600080fd5b505afa158015610814573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261083c9190810190612a1a565b5090506108848463ffffffff168260008151811061085657fe5b60200260200101518360018151811061086b57fe5b60200260200101510360060b8161087e57fe5b05611dba565b925050505b92915050565b6002546001600160a01b031633146108b95760405162461bcd60e51b81526004016103e890612fcf565b60058190556040517fa1e8a7779c35eb2e6161f5b0a5dbf6bcaf16f317d166788bfae1ea33eb210fc0906104e69083906130ab565b6001602052600090815260409020805460028201546003830154600484015460058501546006860154600787015460089097015460ff968716978787169761010090970463ffffffff16969485169490911689565b600080846001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561097f57600080fd5b505afa158015610993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b79190612ae2565b6001600160a01b0316846001600160a01b03161480610a575750846001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015610a0a57600080fd5b505afa158015610a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a429190612ae2565b6001600160a01b0316846001600160a01b0316145b610a735760405162461bcd60e51b81526004016103e890612e4e565b60008311610a935760405162461bcd60e51b81526004016103e890612ebc565b600080866001600160a01b031663c4a7761e6040518163ffffffff1660e01b8152600401604080518083038186803b158015610ace57600080fd5b505afa158015610ae2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b069190612bd6565b91509150866001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4357600080fd5b505afa158015610b57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7b9190612bbe565b1580610b85575081155b80610b8e575080155b15610d125760009350866001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015610bd057600080fd5b505afa158015610be4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c089190612ae2565b6001600160a01b0316866001600160a01b03161415610c9957866001600160a01b0316634d461fbb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610c5a57600080fd5b505afa158015610c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c929190612bbe565b9250610d0d565b866001600160a01b031663648cab856040518163ffffffff1660e01b815260040160206040518083038186803b158015610cd257600080fd5b505afa158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a9190612bbe565b92505b610eb7565b600080886001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015610d4e57600080fd5b505afa158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190612ae2565b6001600160a01b0316886001600160a01b03161415610e1957610dda610db7600354866120f990919063ffffffff16565b670de0b6b3a7640000610dd5600454876120f990919063ffffffff16565b612159565b9150610e12610df4600454866120f990919063ffffffff16565b670de0b6b3a7640000610dd5600354876120f990919063ffffffff16565b9050610e8a565b610e4f610e31600354856120f990919063ffffffff16565b670de0b6b3a7640000610dd5600454886120f990919063ffffffff16565b9150610e87610e69600454856120f990919063ffffffff16565b670de0b6b3a7640000610dd5600354886120f990919063ffffffff16565b90505b610e9d87670de0b6b3a764000084612159565b9550610eb287670de0b6b3a764000083612159565b945050505b5050935093915050565b600254600160a81b900460ff1681565b6002546001600160a01b03163314610efb5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805483919060ff16610f375760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0384166000908152600160205260408120905b84518160ff161015610fae576001826001016000878460ff1681518110610f7457fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610f51565b507f587820c8cbf51b999284b47677716a04cf5da2568b643ec21ef498bd201baea985856040516105b9929190612ce6565b6002546001600160a01b0316331461100a5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805460ff16156110445760405162461bcd60e51b81526004016103e890612f2a565b60008260ff16116110675760405162461bcd60e51b81526004016103e89061303d565b805460ff191660ff831617815560408051630dfe168160e01b81529051611107918591600019916001600160a01b03841691630dfe168191600480820192602092909190829003018186803b1580156110bf57600080fd5b505afa1580156110d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f79190612ae2565b6001600160a01b03169190612208565b61114783600019856001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156110bf57600080fd5b7f0ffbdaa00809b1cda17f454a21810d6fb0be19db2adc1be661c5ec0a86a2894c8383604051611178929190612da6565b60405180910390a1505050565b60035481565b6002546001600160a01b031681565b6000600260005414156111f4576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260009081556001600160a01b0384168152600160205260409020805484919060ff166112345760405162461bcd60e51b81526004016103e890613006565b6001600160a01b03861661125a5760405162461bcd60e51b81526004016103e890612e85565b6001600160a01b03851660009081526001602052604090208054600360ff909116101561135457881561130f5761130f33308b896001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c657600080fd5b505afa1580156112da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fe9190612ae2565b6001600160a01b0316929190612335565b87156113545761135433308a896001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c657600080fd5b600254600160a01b900460ff16158015611380575033600090815260018201602052604090205460ff16155b80156113915750600881015460ff16155b1561150457881561144d5760008061141a88896001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156113dc57600080fd5b505afa1580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114149190612ae2565b8d610943565b91509150818a1015801561142e5750808a11155b61144a5760405162461bcd60e51b81526004016103e890612e17565b50505b8715611504576000806114d188896001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561149357600080fd5b505afa1580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb9190612ae2565b8c610943565b91509150818b101580156114e55750808b11155b6115015760405162461bcd60e51b81526004016103e890612e17565b50505b600254600160a81b900460ff16806115205750600281015460ff165b1561157d57600281015461157b90879060ff1661154c57600254600160b01b900463ffffffff1661155d565b6002830154610100900463ffffffff165b600284015460ff1661157157600554610309565b836003015461167e565b505b600481015460ff16156115e6576005810154156115b85780600501548911156115b85760405162461bcd60e51b81526004016103e890612f98565b6006810154156115e65780600601548811156115e65760405162461bcd60e51b81526004016103e890612f61565b60405163238f24b960e21b81526001600160a01b03871690638e3c92e49061161a908c908c90339081908c906004016130c2565b602060405180830381600087803b15801561163457600080fd5b505af1158015611648573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166c9190612bbe565b60016000559998505050505050505050565b6000806116fa856001600160a01b031663065e53606040518163ffffffff1660e01b815260040160206040518083038186803b1580156116bd57600080fd5b505afa1580156116d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f59190612afe565b611dba565b905061173a6117126001600160a01b038316806120f9565b670de0b6b3a76400007801000000000000000000000000000000000000000000000000612159565b9150600061174886866105db565b905060006117626117126001600160a01b038416806120f9565b90508461177a826117748760646120f9565b906123aa565b1180611793575084611791856117748460646120f9565b115b156117b05760405162461bcd60e51b81526004016103e890613074565b5050509392505050565b6002546001600160a01b031633146117e45760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0383166000908152600160205260409020805484919060ff166118205760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0385166000908152600160205260409081902060028101805460ff19168715151764ffffffff00191661010063ffffffff88160217905590517f2bafd4b6a5765e1fd816ea628ff4649ed6c449f1c56fd8332d1f8e082931f2069061189190889088908890612d40565b60405180910390a1505050505050565b6002546001600160a01b031633146118cb5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0381166000908152600160205260409020805482919060ff166119075760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0383166000908152600160205260409081902060088101805460ff19811660ff9091161517905590517fd03f1a8a1aee11f8c4b906809e9e8317ed6642696de112a8558eac2be64cf44790611964908690612cb8565b60405180910390a150505050565b6002546001600160a01b0316331461199c5760405162461bcd60e51b81526004016103e890612fcf565b600280547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff8116600160a81b9182900460ff16159091021790556040517f31d2b42be69698b73ed0afb43a71872d1c2fa75bf4910edc3d5cf929ce11fb2d90600090a1565b6002546001600160a01b03163314611a2b5760405162461bcd60e51b81526004016103e890612fcf565b60038190556040517f7173676a243594886893526e7121ae1217b9c8f1bf37d7182cf351c7243c3334906104e69083906130ab565b60055481565b6002546001600160a01b03163314611a905760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805483919060ff16611acc5760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0380851660009081526001602081815260408084209488168452918401905290819020805460ff19169055517f327ebead4bc995c77eca4e68adf4a8709ea36622e0732ecd0e23dee6bcfb8869906105b99087908790612ccc565b60045481565b6002546001600160a01b03163314611b5e5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0384166000908152600160205260409020805485919060ff16611b9a5760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0386166000908152600160205260409081902060058101879055600681018690556007810185905590517e43da711fca65981e4da1c2b18c362abff88d1aea1f55992a7beeb5e1ae17bb90611bfd908990899089908990612d80565b60405180910390a150505050505050565b6002546001600160a01b03163314611c385760405162461bcd60e51b81526004016103e890612fcf565b60048190556040517f8cf1b5e61ca322007d7f7f14643afd8df1240cc40ddcf5e1cdf544f2bb0acae4906104e69083906130ab565b6002546001600160a01b03163314611c975760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b038116611cbd5760405162461bcd60e51b81526004016103e890612ef3565b600280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6002546001600160a01b03163314611d215760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0381166000908152600160205260409020805482919060ff16611d5d5760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0383166000908152600160205260409081902060048101805460ff19811660ff9091161517905590517f4681eb28f57cf4cc50d03460a4926f257ddd329f9e73b134ea189b3d757dd21090611964908690612cb8565b60008060008360020b12611dd1578260020b611dd9565b8260020b6000035b9050620d89e8811115611e17576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216611e3857700100000000000000000000000000000000611e4a565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615611e7e576ffff97272373d413259a46990580e213a0260801c5b6004821615611e9d576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615611ebc576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615611edb576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615611efa576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615611f19576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615611f38576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615611f58576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615611f78576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615611f98576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615611fb8576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615611fd8576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615611ff8576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615612018576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615612038576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615612059576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615612079576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615612098576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156120b5576b048a170391f7dc42444e8fa20260801c5b60008460020b13156120d05780600019816120cc57fe5b0490505b6401000000008106156120e45760016120e7565b60005b60ff16602082901c0192505050919050565b60008261210857506000610889565b8282028284828161211557fe5b04146121525760405162461bcd60e51b81526004018080602001828103825260218152602001806132186021913960400191505060405180910390fd5b9392505050565b600080806000198587098686029250828110908390030390508061218f576000841161218457600080fd5b508290049050612152565b80841161219b57600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b80158061228e575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561226057600080fd5b505afa158015612274573d6000803e3d6000fd5b505050506040513d602081101561228a57600080fd5b5051155b6122c95760405162461bcd60e51b81526004018080602001828103825260368152602001806132636036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b179052612330908490612411565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b1790526123a4908590612411565b50505050565b6000808211612400576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161240957fe5b049392505050565b6000612466826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166124c29092919063ffffffff16565b8051909150156123305780806020019051602081101561248557600080fd5b50516123305760405162461bcd60e51b815260040180806020018281038252602a815260200180613239602a913960400191505060405180910390fd5b60606124d184846000856124d9565b949350505050565b60608247101561251a5760405162461bcd60e51b81526004018080602001828103825260268152602001806131f26026913960400191505060405180910390fd5b61252385612634565b612574576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106125b25780518252601f199092019160209182019101612593565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612614576040519150601f19603f3d011682016040523d82523d6000602084013e612619565b606091505b509150915061262982828661263e565b979650505050505050565b803b15155b919050565b6060831561264d575081612152565b82511561265d5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126a757818101518382015260200161268f565b50505050905090810190601f1680156126d45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600082601f8301126126f2578081fd5b815160206127076127028361319e565b61317a565b8281528181019085830183850287018401881015612723578586fd5b855b8581101561274a578151612738816131bc565b84529284019290840190600101612725565b5090979650505050505050565b8051600281900b811461263957600080fd5b805161ffff8116811461263957600080fd5b803563ffffffff8116811461263957600080fd5b6000602082840312156127a0578081fd5b8135612152816131bc565b600080604083850312156127bd578081fd5b82356127c8816131bc565b915060208301356127d8816131bc565b809150509250929050565b6000806000606084860312156127f7578081fd5b8335612802816131bc565b92506020840135612812816131bc565b929592945050506040919091013590565b60008060408385031215612835578182fd5b8235612840816131bc565b915060208381013567ffffffffffffffff81111561285c578283fd5b8401601f8101861361286c578283fd5b803561287a6127028261319e565b81815283810190838501858402850186018a1015612896578687fd5b8694505b838510156128c15780356128ad816131bc565b83526001949094019391850191850161289a565b5080955050505050509250929050565b6000806000606084860312156128e5578081fd5b83356128f0816131bc565b92506020840135612900816131d4565b915061290e6040850161277b565b90509250925092565b60008060408385031215612929578182fd5b8235612934816131bc565b946020939093013593505050565b60008060008060808587031215612957578182fd5b8435612962816131bc565b966020860135965060408601359560600135945092505050565b6000806040838503121561298e578182fd5b8235612999816131bc565b91506129a76020840161277b565b90509250929050565b6000806000606084860312156129c4578081fd5b83356129cf816131bc565b92506129dd6020850161277b565b9150604084013590509250925092565b600080604083850312156129ff578182fd5b8235612a0a816131bc565b915060208301356127d8816131e2565b60008060408385031215612a2c578182fd5b825167ffffffffffffffff80821115612a43578384fd5b818501915085601f830112612a56578384fd5b81516020612a666127028361319e565b82815281810190858301838502870184018b1015612a82578889fd5b8896505b84871015612ab25780518060060b8114612a9e57898afd5b835260019690960195918301918301612a86565b5091880151919650909350505080821115612acb578283fd5b50612ad8858286016126e2565b9150509250929050565b600060208284031215612af3578081fd5b8151612152816131bc565b600060208284031215612b0f578081fd5b61215282612757565b600080600080600080600060e0888a031215612b32578485fd5b8751612b3d816131bc565b9650612b4b60208901612757565b9550612b5960408901612769565b9450612b6760608901612769565b9350612b7560808901612769565b925060a0880151612b85816131e2565b60c0890151909250612b96816131d4565b8091505092959891949750929550565b600060208284031215612bb7578081fd5b5035919050565b600060208284031215612bcf578081fd5b5051919050565b60008060408385031215612be8578182fd5b505080516020909101519092909150565b6000806000806000610100808789031215612c12578384fd5b8635955060208088013595506040880135612c2c816131bc565b94506060880135612c3c816131bc565b9350609f88018913612c4c578283fd5b612c56608061317a565b8060808a018b858c011115612c69578586fd5b8594505b6004851015612c8c578035835260019490940193918301918301612c6d565b50809450505050509295509295909350565b600060208284031215612caf578081fd5b6121528261277b565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6000604082016001600160a01b03808616845260206040818601528286518085526060870191508288019450855b81811015612d32578551851683529483019491830191600101612d14565b509098975050505050505050565b6001600160a01b03939093168352901515602083015263ffffffff16604082015260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b0392909216825260ff16602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612e0057835163ffffffff1683529284019291840191600101612dde565b50909695505050505050565b901515815260200190565b6020808252600e908201527f496d70726f70657220726174696f000000000000000000000000000000000000604082015260600190565b6020808252600f908201527f746f6b656e206d6973746d617463680000000000000000000000000000000000604082015260600190565b60208082526015908201527f746f2073686f756c64206265206e6f6e2d7a65726f0000000000000000000000604082015260600190565b60208082526016908201527f6465706f736974732063616e2774206265207a65726f00000000000000000000604082015260600190565b6020808252601b908201527f6e65774f776e65722073686f756c64206265206e6f6e2d7a65726f0000000000604082015260600190565b6020808252600d908201527f616c726561647920616464656400000000000000000000000000000000000000604082015260600190565b6020808252600e908201527f746f6b656e312065786365656473000000000000000000000000000000000000604082015260600190565b6020808252600e908201527f746f6b656e302065786365656473000000000000000000000000000000000000604082015260600190565b6020808252600a908201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604082015260600190565b60208082526009908201527f6e6f742061646465640000000000000000000000000000000000000000000000604082015260600190565b6020808252600b908201527f76657273696f6e203c2031000000000000000000000000000000000000000000604082015260600190565b60208082526015908201527f5072696365206368616e6765204f766572666c6f770000000000000000000000604082015260600190565b90815260200190565b918252602082015260400190565b85815260208082018690526001600160a01b03858116604084015284166060830152610100820190608083018460005b600481101561310f578151835291830191908301906001016130f2565b505050509695505050505050565b63ffffffff91909116815260200190565b60ff999099168952961515602089015263ffffffff9590951660408801526060870193909352901515608086015260a085015260c084015260e083015215156101008201526101200190565b60405181810167ffffffffffffffff8111828210171561319657fe5b604052919050565b600067ffffffffffffffff8211156131b257fe5b5060209081020190565b6001600160a01b03811681146131d157600080fd5b50565b80151581146131d157600080fd5b60ff811681146131d157600080fdfe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a164736f6c6343000706000a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80638da5cb5b116100f9578063cc2f609311610097578063d3e703cf11610071578063d3e703cf14610372578063e1fd632e14610385578063f2fde38b14610398578063f7ad5043146103ab576101b9565b8063cc2f60931461034f578063d0645c5114610357578063d26e1dff1461036a576101b9565b8063a845d159116100d3578063a845d1591461030e578063ab1e22c114610321578063b2fb13c214610334578063b30075fc1461033c576101b9565b80638da5cb5b146102e05780638e3c92e4146102e857806393708485146102fb576101b9565b80634fb52c7011610166578063686f38f011610140578063686f38f01461029d5780636a9dc0da146102a55780636aa29881146102b85780636b404955146102cb576101b9565b80634fb52c701461024157806355f57510146102545780635ccfb71d1461027c576101b9565b8063308f1cbc11610197578063308f1cbc146101f95780633c1d5df01461020c57806347628f6014610221576101b9565b806319a44053146101be5780631d27050f146101c857806322dfdd48146101db575b600080fd5b6101c66103be565b005b6101c66101d6366004612c9e565b610456565b6101e36104f1565b6040516101f09190612e0c565b60405180910390f35b6101c6610207366004612917565b610501565b6102146105c8565b6040516101f0919061311d565b61023461022f36600461297c565b6105db565b6040516101f09190612cb8565b6101c661024f366004612ba6565b61088f565b61026761026236600461278f565b6108ee565b6040516101f09998979695949392919061312e565b61028f61028a3660046127e3565b610943565b6040516101f09291906130b4565b6101e3610ec1565b6101c66102b3366004612823565b610ed1565b6101c66102c63660046129ed565b610fe0565b6102d3611185565b6040516101f091906130ab565b61023461118b565b6102d36102f6366004612bf9565b61119a565b6102d36103093660046129b0565b61167e565b6101c661031c3660046128d1565b6117ba565b6101c661032f36600461278f565b6118a1565b6101c6611972565b6101c661034a366004612ba6565b611a01565b6102d3611a60565b6101c66103653660046127ab565b611a66565b6102d3611b2e565b6101c6610380366004612942565b611b34565b6101c6610393366004612ba6565b611c0e565b6101c66103a636600461278f565b611c6d565b6101c66103b936600461278f565b611cf7565b6002546001600160a01b031633146103f15760405162461bcd60e51b81526004016103e890612fcf565b60405180910390fd5b600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff16159091021790556040517f0a70e646460175bd587a4a927917bf6c1574a7baf4dd890e769acd41eaa4696690600090a1565b6002546001600160a01b031633146104805760405162461bcd60e51b81526004016103e890612fcf565b600280547fffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffffff16600160b01b63ffffffff8416021790556040517fa715e512c9ea089998019d7ece21b384bb7161dc3caf500058fdcb05bc4232f8906104e690839061311d565b60405180910390a150565b600254600160a01b900460ff1681565b6002546001600160a01b0316331461052b5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805483919060ff166105675760405162461bcd60e51b81526004016103e890613006565b6001600160a01b038416600090815260016020526040908190206003810185905590517f56ba7c5dfa587531f3f6c67e9d1407c55558cc9a981350fab2f89e8e4f6904ff906105b99087908790612d67565b60405180910390a15050505050565b600254600160b01b900463ffffffff1681565b600063ffffffff82166106d857826001600160a01b03166316f0115b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561062157600080fd5b505afa158015610635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106599190612ae2565b6001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561069157600080fd5b505afa1580156106a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190612b18565b50949550610889945050505050565b604080516002808252606082018352600092602083019080368337019050509050828160008151811061070757fe5b602002602001019063ffffffff16908163ffffffff168152505060008160018151811061073057fe5b602002602001019063ffffffff16908163ffffffff16815250506000846001600160a01b03166316f0115b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561078557600080fd5b505afa158015610799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bd9190612ae2565b6001600160a01b031663883bdbfd836040518263ffffffff1660e01b81526004016107e89190612dc2565b60006040518083038186803b15801561080057600080fd5b505afa158015610814573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261083c9190810190612a1a565b5090506108848463ffffffff168260008151811061085657fe5b60200260200101518360018151811061086b57fe5b60200260200101510360060b8161087e57fe5b05611dba565b925050505b92915050565b6002546001600160a01b031633146108b95760405162461bcd60e51b81526004016103e890612fcf565b60058190556040517fa1e8a7779c35eb2e6161f5b0a5dbf6bcaf16f317d166788bfae1ea33eb210fc0906104e69083906130ab565b6001602052600090815260409020805460028201546003830154600484015460058501546006860154600787015460089097015460ff968716978787169761010090970463ffffffff16969485169490911689565b600080846001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561097f57600080fd5b505afa158015610993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b79190612ae2565b6001600160a01b0316846001600160a01b03161480610a575750846001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015610a0a57600080fd5b505afa158015610a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a429190612ae2565b6001600160a01b0316846001600160a01b0316145b610a735760405162461bcd60e51b81526004016103e890612e4e565b60008311610a935760405162461bcd60e51b81526004016103e890612ebc565b600080866001600160a01b031663c4a7761e6040518163ffffffff1660e01b8152600401604080518083038186803b158015610ace57600080fd5b505afa158015610ae2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b069190612bd6565b91509150866001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4357600080fd5b505afa158015610b57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7b9190612bbe565b1580610b85575081155b80610b8e575080155b15610d125760009350866001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015610bd057600080fd5b505afa158015610be4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c089190612ae2565b6001600160a01b0316866001600160a01b03161415610c9957866001600160a01b0316634d461fbb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610c5a57600080fd5b505afa158015610c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c929190612bbe565b9250610d0d565b866001600160a01b031663648cab856040518163ffffffff1660e01b815260040160206040518083038186803b158015610cd257600080fd5b505afa158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a9190612bbe565b92505b610eb7565b600080886001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015610d4e57600080fd5b505afa158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190612ae2565b6001600160a01b0316886001600160a01b03161415610e1957610dda610db7600354866120f990919063ffffffff16565b670de0b6b3a7640000610dd5600454876120f990919063ffffffff16565b612159565b9150610e12610df4600454866120f990919063ffffffff16565b670de0b6b3a7640000610dd5600354876120f990919063ffffffff16565b9050610e8a565b610e4f610e31600354856120f990919063ffffffff16565b670de0b6b3a7640000610dd5600454886120f990919063ffffffff16565b9150610e87610e69600454856120f990919063ffffffff16565b670de0b6b3a7640000610dd5600354886120f990919063ffffffff16565b90505b610e9d87670de0b6b3a764000084612159565b9550610eb287670de0b6b3a764000083612159565b945050505b5050935093915050565b600254600160a81b900460ff1681565b6002546001600160a01b03163314610efb5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805483919060ff16610f375760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0384166000908152600160205260408120905b84518160ff161015610fae576001826001016000878460ff1681518110610f7457fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610f51565b507f587820c8cbf51b999284b47677716a04cf5da2568b643ec21ef498bd201baea985856040516105b9929190612ce6565b6002546001600160a01b0316331461100a5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805460ff16156110445760405162461bcd60e51b81526004016103e890612f2a565b60008260ff16116110675760405162461bcd60e51b81526004016103e89061303d565b805460ff191660ff831617815560408051630dfe168160e01b81529051611107918591600019916001600160a01b03841691630dfe168191600480820192602092909190829003018186803b1580156110bf57600080fd5b505afa1580156110d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f79190612ae2565b6001600160a01b03169190612208565b61114783600019856001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156110bf57600080fd5b7f0ffbdaa00809b1cda17f454a21810d6fb0be19db2adc1be661c5ec0a86a2894c8383604051611178929190612da6565b60405180910390a1505050565b60035481565b6002546001600160a01b031681565b6000600260005414156111f4576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260009081556001600160a01b0384168152600160205260409020805484919060ff166112345760405162461bcd60e51b81526004016103e890613006565b6001600160a01b03861661125a5760405162461bcd60e51b81526004016103e890612e85565b6001600160a01b03851660009081526001602052604090208054600360ff909116101561135457881561130f5761130f33308b896001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c657600080fd5b505afa1580156112da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fe9190612ae2565b6001600160a01b0316929190612335565b87156113545761135433308a896001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c657600080fd5b600254600160a01b900460ff16158015611380575033600090815260018201602052604090205460ff16155b80156113915750600881015460ff16155b1561150457881561144d5760008061141a88896001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156113dc57600080fd5b505afa1580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114149190612ae2565b8d610943565b91509150818a1015801561142e5750808a11155b61144a5760405162461bcd60e51b81526004016103e890612e17565b50505b8715611504576000806114d188896001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561149357600080fd5b505afa1580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb9190612ae2565b8c610943565b91509150818b101580156114e55750808b11155b6115015760405162461bcd60e51b81526004016103e890612e17565b50505b600254600160a81b900460ff16806115205750600281015460ff165b1561157d57600281015461157b90879060ff1661154c57600254600160b01b900463ffffffff1661155d565b6002830154610100900463ffffffff165b600284015460ff1661157157600554610309565b836003015461167e565b505b600481015460ff16156115e6576005810154156115b85780600501548911156115b85760405162461bcd60e51b81526004016103e890612f98565b6006810154156115e65780600601548811156115e65760405162461bcd60e51b81526004016103e890612f61565b60405163238f24b960e21b81526001600160a01b03871690638e3c92e49061161a908c908c90339081908c906004016130c2565b602060405180830381600087803b15801561163457600080fd5b505af1158015611648573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166c9190612bbe565b60016000559998505050505050505050565b6000806116fa856001600160a01b031663065e53606040518163ffffffff1660e01b815260040160206040518083038186803b1580156116bd57600080fd5b505afa1580156116d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f59190612afe565b611dba565b905061173a6117126001600160a01b038316806120f9565b670de0b6b3a76400007801000000000000000000000000000000000000000000000000612159565b9150600061174886866105db565b905060006117626117126001600160a01b038416806120f9565b90508461177a826117748760646120f9565b906123aa565b1180611793575084611791856117748460646120f9565b115b156117b05760405162461bcd60e51b81526004016103e890613074565b5050509392505050565b6002546001600160a01b031633146117e45760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0383166000908152600160205260409020805484919060ff166118205760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0385166000908152600160205260409081902060028101805460ff19168715151764ffffffff00191661010063ffffffff88160217905590517f2bafd4b6a5765e1fd816ea628ff4649ed6c449f1c56fd8332d1f8e082931f2069061189190889088908890612d40565b60405180910390a1505050505050565b6002546001600160a01b031633146118cb5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0381166000908152600160205260409020805482919060ff166119075760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0383166000908152600160205260409081902060088101805460ff19811660ff9091161517905590517fd03f1a8a1aee11f8c4b906809e9e8317ed6642696de112a8558eac2be64cf44790611964908690612cb8565b60405180910390a150505050565b6002546001600160a01b0316331461199c5760405162461bcd60e51b81526004016103e890612fcf565b600280547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff8116600160a81b9182900460ff16159091021790556040517f31d2b42be69698b73ed0afb43a71872d1c2fa75bf4910edc3d5cf929ce11fb2d90600090a1565b6002546001600160a01b03163314611a2b5760405162461bcd60e51b81526004016103e890612fcf565b60038190556040517f7173676a243594886893526e7121ae1217b9c8f1bf37d7182cf351c7243c3334906104e69083906130ab565b60055481565b6002546001600160a01b03163314611a905760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0382166000908152600160205260409020805483919060ff16611acc5760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0380851660009081526001602081815260408084209488168452918401905290819020805460ff19169055517f327ebead4bc995c77eca4e68adf4a8709ea36622e0732ecd0e23dee6bcfb8869906105b99087908790612ccc565b60045481565b6002546001600160a01b03163314611b5e5760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0384166000908152600160205260409020805485919060ff16611b9a5760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0386166000908152600160205260409081902060058101879055600681018690556007810185905590517e43da711fca65981e4da1c2b18c362abff88d1aea1f55992a7beeb5e1ae17bb90611bfd908990899089908990612d80565b60405180910390a150505050505050565b6002546001600160a01b03163314611c385760405162461bcd60e51b81526004016103e890612fcf565b60048190556040517f8cf1b5e61ca322007d7f7f14643afd8df1240cc40ddcf5e1cdf544f2bb0acae4906104e69083906130ab565b6002546001600160a01b03163314611c975760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b038116611cbd5760405162461bcd60e51b81526004016103e890612ef3565b600280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6002546001600160a01b03163314611d215760405162461bcd60e51b81526004016103e890612fcf565b6001600160a01b0381166000908152600160205260409020805482919060ff16611d5d5760405162461bcd60e51b81526004016103e890613006565b6001600160a01b0383166000908152600160205260409081902060048101805460ff19811660ff9091161517905590517f4681eb28f57cf4cc50d03460a4926f257ddd329f9e73b134ea189b3d757dd21090611964908690612cb8565b60008060008360020b12611dd1578260020b611dd9565b8260020b6000035b9050620d89e8811115611e17576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216611e3857700100000000000000000000000000000000611e4a565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615611e7e576ffff97272373d413259a46990580e213a0260801c5b6004821615611e9d576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615611ebc576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615611edb576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615611efa576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615611f19576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615611f38576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615611f58576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615611f78576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615611f98576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615611fb8576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615611fd8576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615611ff8576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615612018576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615612038576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615612059576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615612079576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615612098576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156120b5576b048a170391f7dc42444e8fa20260801c5b60008460020b13156120d05780600019816120cc57fe5b0490505b6401000000008106156120e45760016120e7565b60005b60ff16602082901c0192505050919050565b60008261210857506000610889565b8282028284828161211557fe5b04146121525760405162461bcd60e51b81526004018080602001828103825260218152602001806132186021913960400191505060405180910390fd5b9392505050565b600080806000198587098686029250828110908390030390508061218f576000841161218457600080fd5b508290049050612152565b80841161219b57600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b80158061228e575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561226057600080fd5b505afa158015612274573d6000803e3d6000fd5b505050506040513d602081101561228a57600080fd5b5051155b6122c95760405162461bcd60e51b81526004018080602001828103825260368152602001806132636036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b179052612330908490612411565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b1790526123a4908590612411565b50505050565b6000808211612400576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161240957fe5b049392505050565b6000612466826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166124c29092919063ffffffff16565b8051909150156123305780806020019051602081101561248557600080fd5b50516123305760405162461bcd60e51b815260040180806020018281038252602a815260200180613239602a913960400191505060405180910390fd5b60606124d184846000856124d9565b949350505050565b60608247101561251a5760405162461bcd60e51b81526004018080602001828103825260268152602001806131f26026913960400191505060405180910390fd5b61252385612634565b612574576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106125b25780518252601f199092019160209182019101612593565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612614576040519150601f19603f3d011682016040523d82523d6000602084013e612619565b606091505b509150915061262982828661263e565b979650505050505050565b803b15155b919050565b6060831561264d575081612152565b82511561265d5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126a757818101518382015260200161268f565b50505050905090810190601f1680156126d45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600082601f8301126126f2578081fd5b815160206127076127028361319e565b61317a565b8281528181019085830183850287018401881015612723578586fd5b855b8581101561274a578151612738816131bc565b84529284019290840190600101612725565b5090979650505050505050565b8051600281900b811461263957600080fd5b805161ffff8116811461263957600080fd5b803563ffffffff8116811461263957600080fd5b6000602082840312156127a0578081fd5b8135612152816131bc565b600080604083850312156127bd578081fd5b82356127c8816131bc565b915060208301356127d8816131bc565b809150509250929050565b6000806000606084860312156127f7578081fd5b8335612802816131bc565b92506020840135612812816131bc565b929592945050506040919091013590565b60008060408385031215612835578182fd5b8235612840816131bc565b915060208381013567ffffffffffffffff81111561285c578283fd5b8401601f8101861361286c578283fd5b803561287a6127028261319e565b81815283810190838501858402850186018a1015612896578687fd5b8694505b838510156128c15780356128ad816131bc565b83526001949094019391850191850161289a565b5080955050505050509250929050565b6000806000606084860312156128e5578081fd5b83356128f0816131bc565b92506020840135612900816131d4565b915061290e6040850161277b565b90509250925092565b60008060408385031215612929578182fd5b8235612934816131bc565b946020939093013593505050565b60008060008060808587031215612957578182fd5b8435612962816131bc565b966020860135965060408601359560600135945092505050565b6000806040838503121561298e578182fd5b8235612999816131bc565b91506129a76020840161277b565b90509250929050565b6000806000606084860312156129c4578081fd5b83356129cf816131bc565b92506129dd6020850161277b565b9150604084013590509250925092565b600080604083850312156129ff578182fd5b8235612a0a816131bc565b915060208301356127d8816131e2565b60008060408385031215612a2c578182fd5b825167ffffffffffffffff80821115612a43578384fd5b818501915085601f830112612a56578384fd5b81516020612a666127028361319e565b82815281810190858301838502870184018b1015612a82578889fd5b8896505b84871015612ab25780518060060b8114612a9e57898afd5b835260019690960195918301918301612a86565b5091880151919650909350505080821115612acb578283fd5b50612ad8858286016126e2565b9150509250929050565b600060208284031215612af3578081fd5b8151612152816131bc565b600060208284031215612b0f578081fd5b61215282612757565b600080600080600080600060e0888a031215612b32578485fd5b8751612b3d816131bc565b9650612b4b60208901612757565b9550612b5960408901612769565b9450612b6760608901612769565b9350612b7560808901612769565b925060a0880151612b85816131e2565b60c0890151909250612b96816131d4565b8091505092959891949750929550565b600060208284031215612bb7578081fd5b5035919050565b600060208284031215612bcf578081fd5b5051919050565b60008060408385031215612be8578182fd5b505080516020909101519092909150565b6000806000806000610100808789031215612c12578384fd5b8635955060208088013595506040880135612c2c816131bc565b94506060880135612c3c816131bc565b9350609f88018913612c4c578283fd5b612c56608061317a565b8060808a018b858c011115612c69578586fd5b8594505b6004851015612c8c578035835260019490940193918301918301612c6d565b50809450505050509295509295909350565b600060208284031215612caf578081fd5b6121528261277b565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6000604082016001600160a01b03808616845260206040818601528286518085526060870191508288019450855b81811015612d32578551851683529483019491830191600101612d14565b509098975050505050505050565b6001600160a01b03939093168352901515602083015263ffffffff16604082015260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b0392909216825260ff16602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612e0057835163ffffffff1683529284019291840191600101612dde565b50909695505050505050565b901515815260200190565b6020808252600e908201527f496d70726f70657220726174696f000000000000000000000000000000000000604082015260600190565b6020808252600f908201527f746f6b656e206d6973746d617463680000000000000000000000000000000000604082015260600190565b60208082526015908201527f746f2073686f756c64206265206e6f6e2d7a65726f0000000000000000000000604082015260600190565b60208082526016908201527f6465706f736974732063616e2774206265207a65726f00000000000000000000604082015260600190565b6020808252601b908201527f6e65774f776e65722073686f756c64206265206e6f6e2d7a65726f0000000000604082015260600190565b6020808252600d908201527f616c726561647920616464656400000000000000000000000000000000000000604082015260600190565b6020808252600e908201527f746f6b656e312065786365656473000000000000000000000000000000000000604082015260600190565b6020808252600e908201527f746f6b656e302065786365656473000000000000000000000000000000000000604082015260600190565b6020808252600a908201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604082015260600190565b60208082526009908201527f6e6f742061646465640000000000000000000000000000000000000000000000604082015260600190565b6020808252600b908201527f76657273696f6e203c2031000000000000000000000000000000000000000000604082015260600190565b60208082526015908201527f5072696365206368616e6765204f766572666c6f770000000000000000000000604082015260600190565b90815260200190565b918252602082015260400190565b85815260208082018690526001600160a01b03858116604084015284166060830152610100820190608083018460005b600481101561310f578151835291830191908301906001016130f2565b505050509695505050505050565b63ffffffff91909116815260200190565b60ff999099168952961515602089015263ffffffff9590951660408801526060870193909352901515608086015260a085015260c084015260e083015215156101008201526101200190565b60405181810167ffffffffffffffff8111828210171561319657fe5b604052919050565b600067ffffffffffffffff8211156131b257fe5b5060209081020190565b6001600160a01b03811681146131d157600080fd5b50565b80151581146131d157600080fd5b60ff811681146131d157600080fdfe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a164736f6c6343000706000a

Block Transaction Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

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