Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Hyperviso... | 13591122 | 1099 days ago | IN | 0 ETH | 0.74110092 | ||||
Create Hyperviso... | 13591048 | 1099 days ago | IN | 0 ETH | 0.71639552 | ||||
Create Hyperviso... | 13532219 | 1109 days ago | IN | 0 ETH | 0.81168794 | ||||
Create Hyperviso... | 13531859 | 1109 days ago | IN | 0 ETH | 0.77639716 | ||||
Create Hyperviso... | 13506898 | 1113 days ago | IN | 0 ETH | 0.91756028 | ||||
Create Hyperviso... | 13423808 | 1126 days ago | IN | 0 ETH | 0.59994904 | ||||
Create Hyperviso... | 13417501 | 1127 days ago | IN | 0 ETH | 0.00376701 | ||||
Create Hyperviso... | 13417501 | 1127 days ago | IN | 0 ETH | 0.00376701 | ||||
Create Hyperviso... | 13417501 | 1127 days ago | IN | 0 ETH | 0.45878456 | ||||
Create Hyperviso... | 13399803 | 1129 days ago | IN | 0 ETH | 0.45878326 | ||||
Create Hyperviso... | 13368071 | 1134 days ago | IN | 0 ETH | 0.4587817 | ||||
Create Hyperviso... | 13327800 | 1141 days ago | IN | 0 ETH | 1.04763711 | ||||
Create Hyperviso... | 13315059 | 1143 days ago | IN | 0 ETH | 1.04763711 | ||||
Create Hyperviso... | 13110008 | 1174 days ago | IN | 0 ETH | 0.31761486 | ||||
Create Hyperviso... | 13054562 | 1183 days ago | IN | 0 ETH | 0.3176181 | ||||
Create Hyperviso... | 13004037 | 1191 days ago | IN | 0 ETH | 0.31762674 | ||||
Create Hyperviso... | 12919485 | 1204 days ago | IN | 0 ETH | 0.31761594 | ||||
Create Hyperviso... | 12914002 | 1205 days ago | IN | 0 ETH | 0.31761378 | ||||
Create Hyperviso... | 12901398 | 1207 days ago | IN | 0 ETH | 0.31762026 | ||||
Create Hyperviso... | 12901386 | 1207 days ago | IN | 0 ETH | 0.31762026 | ||||
Create Hyperviso... | 12844060 | 1216 days ago | IN | 0 ETH | 0.31761702 | ||||
Create Hyperviso... | 12843972 | 1216 days ago | IN | 0 ETH | 0.3176181 | ||||
Create Hyperviso... | 12837144 | 1217 days ago | IN | 0 ETH | 0.31761594 | ||||
Create Hyperviso... | 12822107 | 1219 days ago | IN | 0 ETH | 0.31761594 | ||||
Create Hyperviso... | 12768019 | 1228 days ago | IN | 0 ETH | 0.31915602 |
Latest 23 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
HypervisorFactory
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)
// SPDX-License-Identifier: UNLICENSED pragma solidity =0.7.6; import {IUniswapV3Factory} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol'; import {Ownable} from '@openzeppelin/contracts/access/Ownable.sol'; import {Hypervisor} from './Hypervisor.sol'; contract HypervisorFactory is Ownable { IUniswapV3Factory public uniswapV3Factory; mapping(address => mapping(address => mapping(uint24 => address))) public getHypervisor; // toke0, token1, fee -> hypervisor address address[] public allHypervisors; event HypervisorCreated(address token0, address token1, uint24 fee, address hypervisor, uint256); constructor(address _uniswapV3Factory) { uniswapV3Factory = IUniswapV3Factory(_uniswapV3Factory); } function allHypervisorsLength() external view returns (uint256) { return allHypervisors.length; } function createHypervisor( address tokenA, address tokenB, uint24 fee, string memory name, string memory symbol ) external onlyOwner returns (address hypervisor) { require(tokenA != tokenB, 'SF: IDENTICAL_ADDRESSES'); // TODO: using PoolAddress library (uniswap-v3-periphery) (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'SF: ZERO_ADDRESS'); require(getHypervisor[token0][token1][fee] == address(0), 'SF: HYPERVISOR_EXISTS'); int24 tickSpacing = uniswapV3Factory.feeAmountTickSpacing(fee); require(tickSpacing != 0, 'SF: INCORRECT_FEE'); address pool = uniswapV3Factory.getPool(token0, token1, fee); if (pool == address(0)) { pool = uniswapV3Factory.createPool(token0, token1, fee); } hypervisor = address( new Hypervisor{salt: keccak256(abi.encodePacked(token0, token1, fee, tickSpacing))}(pool, owner(), name, symbol) ); getHypervisor[token0][token1][fee] = hypervisor; getHypervisor[token1][token0][fee] = hypervisor; // populate mapping in the reverse direction allHypervisors.push(hypervisor); emit HypervisorCreated(token0, token1, fee, hypervisor, allHypervisors.length); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title The interface for the Uniswap V3 Factory /// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees interface IUniswapV3Factory { /// @notice Emitted when the owner of the factory is changed /// @param oldOwner The owner before the owner was changed /// @param newOwner The owner after the owner was changed event OwnerChanged(address indexed oldOwner, address indexed newOwner); /// @notice Emitted when a pool is created /// @param token0 The first token of the pool by address sort order /// @param token1 The second token of the pool by address sort order /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip /// @param tickSpacing The minimum number of ticks between initialized ticks /// @param pool The address of the created pool event PoolCreated( address indexed token0, address indexed token1, uint24 indexed fee, int24 tickSpacing, address pool ); /// @notice Emitted when a new fee amount is enabled for pool creation via the factory /// @param fee The enabled fee, denominated in hundredths of a bip /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing); /// @notice Returns the current owner of the factory /// @dev Can be changed by the current owner via setOwner /// @return The address of the factory owner function owner() external view returns (address); /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee /// @return The tick spacing function feeAmountTickSpacing(uint24 fee) external view returns (int24); /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order /// @param tokenA The contract address of either token0 or token1 /// @param tokenB The contract address of the other token /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip /// @return pool The pool address function getPool( address tokenA, address tokenB, uint24 fee ) external view returns (address pool); /// @notice Creates a pool for the given two tokens and fee /// @param tokenA One of the two tokens in the desired pool /// @param tokenB The other of the two tokens in the desired pool /// @param fee The desired fee for the pool /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments /// are invalid. /// @return pool The address of the newly created pool function createPool( address tokenA, address tokenB, uint24 fee ) external returns (address pool); /// @notice Updates the owner of the factory /// @dev Must be called by the current owner /// @param _owner The new owner of the factory function setOwner(address _owner) external; /// @notice Enables a fee amount with the given tickSpacing /// @dev Fee amounts may never be removed once enabled /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6) /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount function enableFeeAmount(uint24 fee, int24 tickSpacing) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/math/SignedSafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol"; import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol"; import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; import "@uniswap/v3-core/contracts/libraries/TickMath.sol"; import "@uniswap/v3-core/contracts/libraries/FullMath.sol"; import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol"; import "../interfaces/IVault.sol"; import "../interfaces/IUniversalVault.sol"; // @title Hypervisor // @notice A Uniswap V2-like interface with fungible liquidity to Uniswap V3 // which allows for arbitrary liquidity provision: one-sided, lop-sided, and // balanced contract Hypervisor is IVault, IUniswapV3MintCallback, IUniswapV3SwapCallback, ERC20 { using SafeERC20 for IERC20; using SafeMath for uint256; using SignedSafeMath for int256; IUniswapV3Pool public pool; IERC20 public token0; IERC20 public token1; uint24 public fee; int24 public tickSpacing; int24 public baseLower; int24 public baseUpper; int24 public limitLower; int24 public limitUpper; address public owner; uint256 public deposit0Max; uint256 public deposit1Max; uint256 public maxTotalSupply; mapping(address=>bool) public list; bool public whitelisted; uint256 constant public PRECISION = 1e36; // @param _pool Uniswap V3 pool for which liquidity is managed // @param _owner Owner of the Hypervisor constructor( address _pool, address _owner, string memory name, string memory symbol ) ERC20(name, symbol) { pool = IUniswapV3Pool(_pool); token0 = IERC20(pool.token0()); token1 = IERC20(pool.token1()); fee = pool.fee(); tickSpacing = pool.tickSpacing(); owner = _owner; maxTotalSupply = 0; // no cap deposit0Max = uint256(-1); deposit1Max = uint256(-1); whitelisted = false; } // @param deposit0 Amount of token0 transfered from sender to Hypervisor // @param deposit1 Amount of token0 transfered from sender to Hypervisor // @param to Address to which liquidity tokens are minted // @return shares Quantity of liquidity tokens minted as a result of deposit function deposit( uint256 deposit0, uint256 deposit1, address to ) external override returns (uint256 shares) { require(deposit0 > 0 || deposit1 > 0, "deposits must be nonzero"); require(deposit0 < deposit0Max && deposit1 < deposit1Max, "deposits must be less than maximum amounts"); require(to != address(0) && to != address(this), "to"); if(whitelisted) { require(list[to], "must be on the list"); } // update fess for inclusion in total pool amounts (uint128 baseLiquidity,,) = _position(baseLower, baseUpper); if (baseLiquidity > 0) { pool.burn(baseLower, baseUpper, 0); } (uint128 limitLiquidity,,) = _position(limitLower, limitUpper); if (limitLiquidity > 0) { pool.burn(limitLower, limitUpper, 0); } uint160 sqrtPrice = TickMath.getSqrtRatioAtTick(currentTick()); uint256 price = FullMath.mulDiv(uint256(sqrtPrice).mul(uint256(sqrtPrice)), PRECISION, 2**(96 * 2)); (uint256 pool0, uint256 pool1) = getTotalAmounts(); uint256 deposit0PricedInToken1 = deposit0.mul(price).div(PRECISION); shares = deposit1.add(deposit0PricedInToken1); if (deposit0 > 0) { token0.safeTransferFrom(msg.sender, address(this), deposit0); } if (deposit1 > 0) { token1.safeTransferFrom(msg.sender, address(this), deposit1); } if (totalSupply() != 0) { uint256 pool0PricedInToken1 = pool0.mul(price).div(PRECISION); shares = shares.mul(totalSupply()).div(pool0PricedInToken1.add(pool1)); } _mint(to, shares); emit Deposit(msg.sender, to, shares, deposit0, deposit1); // Check total supply cap not exceeded. A value of 0 means no limit. require(maxTotalSupply == 0 || totalSupply() <= maxTotalSupply, "maxTotalSupply"); } // @param shares Number of liquidity tokens to redeem as pool assets // @param to Address to which redeemed pool assets are sent // @param from Address from which liquidity tokens are sent // @return amount0 Amount of token0 redeemed by the submitted liquidity tokens // @return amount1 Amount of token1 redeemed by the submitted liquidity tokens function withdraw( uint256 shares, address to, address from ) external override returns (uint256 amount0, uint256 amount1) { require(shares > 0, "shares"); require(to != address(0), "to"); // Withdraw liquidity from Uniswap pool (uint256 base0, uint256 base1) = _burnLiquidity(baseLower, baseUpper, _liquidityForShares(baseLower, baseUpper, shares), to, false); (uint256 limit0, uint256 limit1) = _burnLiquidity(limitLower, limitUpper, _liquidityForShares(limitLower, limitUpper, shares), to, false); // Push tokens proportional to unused balances uint256 totalSupply = totalSupply(); uint256 unusedAmount0 = token0.balanceOf(address(this)).mul(shares).div(totalSupply); uint256 unusedAmount1 = token1.balanceOf(address(this)).mul(shares).div(totalSupply); if (unusedAmount0 > 0) token0.safeTransfer(to, unusedAmount0); if (unusedAmount1 > 0) token1.safeTransfer(to, unusedAmount1); amount0 = base0.add(limit0).add(unusedAmount0); amount1 = base1.add(limit1).add(unusedAmount1); require(from == msg.sender || IUniversalVault(from).owner() == msg.sender, "Sender must own the tokens"); _burn(from, shares); emit Withdraw(from, to, shares, amount0, amount1); } // @param _baseLower The lower tick of the base position // @param _baseUpper The upper tick of the base position // @param _limitLower The lower tick of the limit position // @param _limitUpper The upper tick of the limit position // @param feeRecipient Address of recipient of 10% of earned fees since last rebalance // @param swapQuantity Quantity of tokens to swap; if quantity is positive, // `swapQuantity` token0 are swaped for token1, if negative, `swapQuantity` // token1 is swaped for token0 function rebalance( int24 _baseLower, int24 _baseUpper, int24 _limitLower, int24 _limitUpper, address feeRecipient, int256 swapQuantity ) external override onlyOwner { require(_baseLower < _baseUpper && _baseLower % tickSpacing == 0 && _baseUpper % tickSpacing == 0, "base position invalid"); require(_limitLower < _limitUpper && _limitLower % tickSpacing == 0 && _limitUpper % tickSpacing == 0, "limit position invalid"); // update fees (uint128 baseLiquidity,,) = _position(baseLower, baseUpper); if (baseLiquidity > 0) { pool.burn(baseLower, baseUpper, 0); } (uint128 limitLiquidity,,) = _position(limitLower, limitUpper); if (limitLiquidity > 0) { pool.burn(limitLower, limitUpper, 0); } // Withdraw all liquidity and collect all fees from Uniswap pool (, uint256 feesLimit0, uint256 feesLimit1) = _position(baseLower, baseUpper); (, uint256 feesBase0, uint256 feesBase1) = _position(limitLower, limitUpper); uint256 fees0 = feesBase0.add(feesLimit0); uint256 fees1 = feesBase1.add(feesLimit1); _burnLiquidity(baseLower, baseUpper, baseLiquidity, address(this), true); _burnLiquidity(limitLower, limitUpper, limitLiquidity, address(this), true); // transfer 10% of fees for VISR buybacks if(fees0 > 0) token0.safeTransfer(feeRecipient, fees0.div(10)); if(fees1 > 0) token1.safeTransfer(feeRecipient, fees1.div(10)); emit Rebalance( currentTick(), token0.balanceOf(address(this)), token1.balanceOf(address(this)), fees0, fees1, totalSupply() ); // swap tokens if required if (swapQuantity != 0) { pool.swap( address(this), swapQuantity > 0, swapQuantity > 0 ? swapQuantity : -swapQuantity, swapQuantity > 0 ? TickMath.MIN_SQRT_RATIO + 1 : TickMath.MAX_SQRT_RATIO - 1, abi.encode(address(this)) ); } baseLower = _baseLower; baseUpper = _baseUpper; baseLiquidity = _liquidityForAmounts( baseLower, baseUpper, token0.balanceOf(address(this)), token1.balanceOf(address(this)) ); _mintLiquidity(baseLower, baseUpper, baseLiquidity, address(this)); limitLower = _limitLower; limitUpper = _limitUpper; limitLiquidity = _liquidityForAmounts( limitLower, limitUpper, token0.balanceOf(address(this)), token1.balanceOf(address(this)) ); _mintLiquidity(limitLower, limitUpper, limitLiquidity, address(this)); } function _mintLiquidity( int24 tickLower, int24 tickUpper, uint128 liquidity, address payer ) internal returns (uint256 amount0, uint256 amount1) { if (liquidity > 0) { (amount0, amount1) = pool.mint( address(this), tickLower, tickUpper, liquidity, abi.encode(payer) ); } } function _burnLiquidity( int24 tickLower, int24 tickUpper, uint128 liquidity, address to, bool collectAll ) internal returns (uint256 amount0, uint256 amount1) { if (liquidity > 0) { // Burn liquidity (uint256 owed0, uint256 owed1) = pool.burn(tickLower, tickUpper, liquidity); // Collect amount owed uint128 collect0 = collectAll ? type(uint128).max : _uint128Safe(owed0); uint128 collect1 = collectAll ? type(uint128).max : _uint128Safe(owed1); if (collect0 > 0 || collect1 > 0) { (amount0, amount1) = pool.collect(to, tickLower, tickUpper, collect0, collect1); } } } function _liquidityForShares( int24 tickLower, int24 tickUpper, uint256 shares ) internal view returns (uint128) { (uint128 position,,) = _position(tickLower, tickUpper); return _uint128Safe(uint256(position).mul(shares).div(totalSupply())); } function _position(int24 tickLower, int24 tickUpper) internal view returns (uint128 liquidity, uint128 tokensOwed0, uint128 tokensOwed1) { bytes32 positionKey = keccak256(abi.encodePacked(address(this), tickLower, tickUpper)); (liquidity, , , tokensOwed0, tokensOwed1) = pool.positions(positionKey); } function uniswapV3MintCallback( uint256 amount0, uint256 amount1, bytes calldata data ) external override { require(msg.sender == address(pool)); address payer = abi.decode(data, (address)); if (payer == address(this)) { if (amount0 > 0) token0.safeTransfer(msg.sender, amount0); if (amount1 > 0) token1.safeTransfer(msg.sender, amount1); } else { if (amount0 > 0) token0.safeTransferFrom(payer, msg.sender, amount0); if (amount1 > 0) token1.safeTransferFrom(payer, msg.sender, amount1); } } function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata data ) external override { require(msg.sender == address(pool)); address payer = abi.decode(data, (address)); if (amount0Delta > 0) { if (payer == address(this)) { token0.safeTransfer(msg.sender, uint256(amount0Delta)); } else { token0.safeTransferFrom(payer, msg.sender, uint256(amount0Delta)); } } else if (amount1Delta > 0) { if (payer == address(this)) { token1.safeTransfer(msg.sender, uint256(amount1Delta)); } else { token1.safeTransferFrom(payer, msg.sender, uint256(amount1Delta)); } } } // @return total0 Quantity of token0 in both positions and unused in the Hypervisor // @return total1 Quantity of token1 in both positions and unused in the Hypervisor function getTotalAmounts() public view override returns (uint256 total0, uint256 total1) { (, uint256 base0, uint256 base1) = getBasePosition(); (, uint256 limit0, uint256 limit1) = getLimitPosition(); total0 = token0.balanceOf(address(this)).add(base0).add(limit0); total1 = token1.balanceOf(address(this)).add(base1).add(limit1); } // @return liquidity Amount of total liquidity in the base position // @return amount0 Estimated amount of token0 that could be collected by // burning the base position // @return amount1 Estimated amount of token1 that could be collected by // burning the base position function getBasePosition() public view returns ( uint128 liquidity, uint256 amount0, uint256 amount1 ) { (uint128 positionLiquidity, uint128 tokensOwed0, uint128 tokensOwed1) = _position(baseLower, baseUpper); (amount0, amount1) = _amountsForLiquidity(baseLower, baseUpper, positionLiquidity); amount0 = amount0.add(uint256(tokensOwed0)); amount1 = amount1.add(uint256(tokensOwed1)); liquidity = positionLiquidity; } // @return liquidity Amount of total liquidity in the limit position // @return amount0 Estimated amount of token0 that could be collected by // burning the limit position // @return amount1 Estimated amount of token1 that could be collected by // burning the limit position function getLimitPosition() public view returns ( uint128 liquidity, uint256 amount0, uint256 amount1 ) { (uint128 positionLiquidity, uint128 tokensOwed0, uint128 tokensOwed1) = _position(limitLower, limitUpper); (amount0, amount1) = _amountsForLiquidity(limitLower, limitUpper, positionLiquidity); amount0 = amount0.add(uint256(tokensOwed0)); amount1 = amount1.add(uint256(tokensOwed1)); liquidity = positionLiquidity; } function _amountsForLiquidity( int24 tickLower, int24 tickUpper, uint128 liquidity ) internal view returns (uint256, uint256) { (uint160 sqrtRatioX96, , , , , , ) = pool.slot0(); return LiquidityAmounts.getAmountsForLiquidity( sqrtRatioX96, TickMath.getSqrtRatioAtTick(tickLower), TickMath.getSqrtRatioAtTick(tickUpper), liquidity ); } function _liquidityForAmounts( int24 tickLower, int24 tickUpper, uint256 amount0, uint256 amount1 ) internal view returns (uint128) { (uint160 sqrtRatioX96, , , , , , ) = pool.slot0(); return LiquidityAmounts.getLiquidityForAmounts( sqrtRatioX96, TickMath.getSqrtRatioAtTick(tickLower), TickMath.getSqrtRatioAtTick(tickUpper), amount0, amount1 ); } // @return tick Uniswap pool's current price tick function currentTick() public view returns (int24 tick) { (, tick, , , , , ) = pool.slot0(); } function _uint128Safe(uint256 x) internal pure returns (uint128) { assert(x <= type(uint128).max); return uint128(x); } // @param _maxTotalSupply The maximum liquidity token supply the contract allows function setMaxTotalSupply(uint256 _maxTotalSupply) external onlyOwner { maxTotalSupply = _maxTotalSupply; } // @param _deposit0Max The maximum amount of token0 allowed in a deposit // @param _deposit1Max The maximum amount of token1 allowed in a deposit function setDepositMax(uint256 _deposit0Max, uint256 _deposit1Max) external onlyOwner { deposit0Max = _deposit0Max; deposit1Max = _deposit1Max; } function appendList(address[] memory listed) external onlyOwner { for (uint8 i; i < listed.length; i++) { list[listed[i]] = true; } } function toggleWhitelist() external onlyOwner { whitelisted = whitelisted ? false : true; } function transferOwnership(address newOwner) external onlyOwner { owner = newOwner; } modifier onlyOwner { require(msg.sender == owner, "only owner"); _; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.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; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for IUniswapV3PoolActions#mint /// @notice Any contract that calls IUniswapV3PoolActions#mint must implement this interface interface IUniswapV3MintCallback { /// @notice Called to `msg.sender` after minting liquidity to a position from IUniswapV3Pool#mint. /// @dev In the implementation you must pay the pool tokens owed for the minted liquidity. /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. /// @param amount0Owed The amount of token0 due to the pool for the minted liquidity /// @param amount1Owed The amount of token1 due to the pool for the minted liquidity /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#mint call function uniswapV3MintCallback( uint256 amount0Owed, uint256 amount1Owed, bytes calldata data ) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for IUniswapV3PoolActions#swap /// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface interface IUniswapV3SwapCallback { /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. /// @dev In the implementation you must pay the pool tokens owed for the swap. /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped. /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token0 to the pool. /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token1 to the pool. /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata data ) external; }
// 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 { }
// 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; } }
// 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++; } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import '@uniswap/v3-core/contracts/libraries/FullMath.sol'; import '@uniswap/v3-core/contracts/libraries/FixedPoint96.sol'; /// @title Liquidity amount functions /// @notice Provides functions for computing liquidity amounts from token amounts and prices library LiquidityAmounts { /// @notice Downcasts uint256 to uint128 /// @param x The uint258 to be downcasted /// @return y The passed value, downcasted to uint128 function toUint128(uint256 x) private pure returns (uint128 y) { require((y = uint128(x)) == x); } /// @notice Computes the amount of liquidity received for a given amount of token0 and price range /// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower)) /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param amount0 The amount0 being sent in /// @return liquidity The amount of returned liquidity function getLiquidityForAmount0( uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount0 ) internal pure returns (uint128 liquidity) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); uint256 intermediate = FullMath.mulDiv(sqrtRatioAX96, sqrtRatioBX96, FixedPoint96.Q96); return toUint128(FullMath.mulDiv(amount0, intermediate, sqrtRatioBX96 - sqrtRatioAX96)); } /// @notice Computes the amount of liquidity received for a given amount of token1 and price range /// @dev Calculates amount1 / (sqrt(upper) - sqrt(lower)). /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param amount1 The amount1 being sent in /// @return liquidity The amount of returned liquidity function getLiquidityForAmount1( uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount1 ) internal pure returns (uint128 liquidity) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return toUint128(FullMath.mulDiv(amount1, FixedPoint96.Q96, sqrtRatioBX96 - sqrtRatioAX96)); } /// @notice Computes the maximum amount of liquidity received for a given amount of token0, token1, the current /// pool prices and the prices at the tick boundaries /// @param sqrtRatioX96 A sqrt price representing the current pool prices /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param amount0 The amount of token0 being sent in /// @param amount1 The amount of token1 being sent in /// @return liquidity The maximum amount of liquidity received function getLiquidityForAmounts( uint160 sqrtRatioX96, uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount0, uint256 amount1 ) internal pure returns (uint128 liquidity) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); if (sqrtRatioX96 <= sqrtRatioAX96) { liquidity = getLiquidityForAmount0(sqrtRatioAX96, sqrtRatioBX96, amount0); } else if (sqrtRatioX96 < sqrtRatioBX96) { uint128 liquidity0 = getLiquidityForAmount0(sqrtRatioX96, sqrtRatioBX96, amount0); uint128 liquidity1 = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioX96, amount1); liquidity = liquidity0 < liquidity1 ? liquidity0 : liquidity1; } else { liquidity = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioBX96, amount1); } } /// @notice Computes the amount of token0 for a given amount of liquidity and a price range /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param liquidity The liquidity being valued /// @return amount0 The amount of token0 function getAmount0ForLiquidity( uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity ) internal pure returns (uint256 amount0) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return FullMath.mulDiv( uint256(liquidity) << FixedPoint96.RESOLUTION, sqrtRatioBX96 - sqrtRatioAX96, sqrtRatioBX96 ) / sqrtRatioAX96; } /// @notice Computes the amount of token1 for a given amount of liquidity and a price range /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param liquidity The liquidity being valued /// @return amount1 The amount of token1 function getAmount1ForLiquidity( uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity ) internal pure returns (uint256 amount1) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return FullMath.mulDiv(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96); } /// @notice Computes the token0 and token1 value for a given amount of liquidity, the current /// pool prices and the prices at the tick boundaries /// @param sqrtRatioX96 A sqrt price representing the current pool prices /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param liquidity The liquidity being valued /// @return amount0 The amount of token0 /// @return amount1 The amount of token1 function getAmountsForLiquidity( uint160 sqrtRatioX96, uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity ) internal pure returns (uint256 amount0, uint256 amount1) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); if (sqrtRatioX96 <= sqrtRatioAX96) { amount0 = getAmount0ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity); } else if (sqrtRatioX96 < sqrtRatioBX96) { amount0 = getAmount0ForLiquidity(sqrtRatioX96, sqrtRatioBX96, liquidity); amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioX96, liquidity); } else { amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity); } } }
// SPDX-License-Identifier: Unlicense pragma solidity 0.7.6; interface IVault { function deposit( uint256, uint256, address ) external returns (uint256); function withdraw( uint256, address, address ) external returns (uint256, uint256); function rebalance( int24 _baseLower, int24 _baseUpper, int24 _limitLower, int24 _limitUpper, address feeRecipient, int256 swapQuantity ) external; function getTotalAmounts() external view returns (uint256, uint256); event Deposit( address indexed sender, address indexed to, uint256 shares, uint256 amount0, uint256 amount1 ); event Withdraw( address indexed sender, address indexed to, uint256 shares, uint256 amount0, uint256 amount1 ); event Rebalance( int24 tick, uint256 totalAmount0, uint256 totalAmount1, uint256 feeAmount0, uint256 feeAmount1, uint256 totalSupply ); }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.7.6; pragma abicoder v2; interface IUniversalVault { /* user events */ event Locked(address delegate, address token, uint256 amount); event Unlocked(address delegate, address token, uint256 amount); event RageQuit(address delegate, address token, bool notified, string reason); /* data types */ struct LockData { address delegate; address token; uint256 balance; } /* initialize function */ function initialize() external; /* user functions */ function lock( address token, uint256 amount, bytes calldata permission ) external; function unlock( address token, uint256 amount, bytes calldata permission ) external; function rageQuit(address delegate, address token) external returns (bool notified, string memory error); function transferERC20( address token, address to, uint256 amount ) external; function transferETH(address to, uint256 amount) external payable; /* pure functions */ function calculateLockID(address delegate, address token) external pure returns (bytes32 lockID); /* getter functions */ function getPermissionHash( bytes32 eip712TypeHash, address delegate, address token, uint256 amount, uint256 nonce ) external view returns (bytes32 permissionHash); function getNonce() external view returns (uint256 nonce); function owner() external view returns (address ownerAddress); function getLockSetCount() external view returns (uint256 count); function getLockAt(uint256 index) external view returns (LockData memory lockData); function getBalanceDelegated(address token, address delegate) external view returns (uint256 balance); function getBalanceLocked(address token) external view returns (uint256 balance); function checkBalances() external view returns (bool validity); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: 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); }
// 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 ); }
// 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 ); }
// 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; }
// 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); }
// 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); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.4.0; /// @title FixedPoint96 /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format) /// @dev Used in SqrtPriceMath.sol library FixedPoint96 { uint8 internal constant RESOLUTION = 96; uint256 internal constant Q96 = 0x1000000000000000000000000; }
{ "optimizer": { "enabled": true, "runs": 800 }, "metadata": { "bytecodeHash": "none" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_uniswapV3Factory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token0","type":"address"},{"indexed":false,"internalType":"address","name":"token1","type":"address"},{"indexed":false,"internalType":"uint24","name":"fee","type":"uint24"},{"indexed":false,"internalType":"address","name":"hypervisor","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"HypervisorCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allHypervisors","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allHypervisorsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"name":"createHypervisor","outputs":[{"internalType":"address","name":"hypervisor","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint24","name":"","type":"uint24"}],"name":"getHypervisor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV3Factory","outputs":[{"internalType":"contract IUniswapV3Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161515b38038061515b8339818101604052602081101561003357600080fd5b5051600061003f6100ae565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b03929092169190911790556100b2565b3390565b61509a806100c16000396000f3fe60806040523480156200001157600080fd5b5060043610620000945760003560e01c80638da5cb5b11620000635780638da5cb5b1462000246578063b7e1aae91462000250578063cabea7dc146200026c578063f2fde38b14620002ab5762000094565b80631b73ccc414620000995780635b5491821462000210578063686d59b0146200021a578063715018a6146200023a575b600080fd5b620001f4600480360360a0811015620000b157600080fd5b6001600160a01b03823581169260208101359091169162ffffff6040830135169190810190608081016060820135640100000000811115620000f257600080fd5b8201836020820111156200010557600080fd5b803590602001918460018302840111640100000000831117156200012857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156200017c57600080fd5b8201836020820111156200018f57600080fd5b80359060200191846001830284011164010000000083111715620001b257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550620002d4945050505050565b604080516001600160a01b039092168252519081900360200190f35b620001f462000a56565b620001f4600480360360208110156200023257600080fd5b503562000a65565b6200024462000a90565b005b620001f462000b60565b6200025a62000b6f565b60408051918252519081900360200190f35b620001f4600480360360608110156200028457600080fd5b5080356001600160a01b03908116916020810135909116906040013562ffffff1662000b75565b6200024460048036036020811015620002c357600080fd5b50356001600160a01b031662000ba1565b6000620002e062000cc9565b6001600160a01b0316620002f362000b60565b6001600160a01b0316146200034f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b846001600160a01b0316866001600160a01b03161415620003b7576040805162461bcd60e51b815260206004820152601760248201527f53463a204944454e544943414c5f414444524553534553000000000000000000604482015290519081900360640190fd5b600080866001600160a01b0316886001600160a01b031610620003dc578688620003df565b87875b90925090506001600160a01b03821662000440576040805162461bcd60e51b815260206004820152601060248201527f53463a205a45524f5f4144445245535300000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0382811660009081526002602090815260408083208585168452825280832062ffffff8b1684529091529020541615620004c8576040805162461bcd60e51b815260206004820152601560248201527f53463a2048595045525649534f525f4558495354530000000000000000000000604482015290519081900360640190fd5b600154604080516322afcccb60e01b815262ffffff8916600482015290516000926001600160a01b0316916322afcccb916024808301926020929190829003018186803b1580156200051957600080fd5b505afa1580156200052e573d6000803e3d6000fd5b505050506040513d60208110156200054557600080fd5b50519050600281900b620005a0576040805162461bcd60e51b815260206004820152601160248201527f53463a20494e434f52524543545f464545000000000000000000000000000000604482015290519081900360640190fd5b60015460408051630b4c774160e11b81526001600160a01b038681166004830152858116602483015262ffffff8b16604483015291516000939290921691631698ee8291606480820192602092909190829003018186803b1580156200060557600080fd5b505afa1580156200061a573d6000803e3d6000fd5b505050506040513d60208110156200063157600080fd5b505190506001600160a01b038116620006d8576001546040805163a167129560e01b81526001600160a01b038781166004830152868116602483015262ffffff8c1660448301529151919092169163a16712959160648083019260209291908290030181600087803b158015620006a757600080fd5b505af1158015620006bc573d6000803e3d6000fd5b505050506040513d6020811015620006d357600080fd5b505190505b8383898460405160200180856001600160a01b031660601b8152601401846001600160a01b031660601b81526014018362ffffff1660e81b81526003018260020b60e81b815260030194505050505060405160208183030381529060405280519060200120816200074862000b60565b8989604051620007589062000ccd565b80856001600160a01b03168152602001846001600160a01b031681526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015620007b65781810151838201526020016200079c565b50505050905090810190601f168015620007e45780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101562000819578181015183820152602001620007ff565b50505050905090810190601f168015620008475780820380516001836020036101000a031916815260200191505b5096505050505050508190604051809103906000f590508015801562000871573d6000803e3d6000fd5b5094508460026000866001600160a01b03166001600160a01b031681526020019081526020016000206000856001600160a01b03166001600160a01b0316815260200190815260200160002060008a62ffffff1662ffffff16815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508460026000856001600160a01b03166001600160a01b031681526020019081526020016000206000866001600160a01b03166001600160a01b0316815260200190815260200160002060008a62ffffff1662ffffff16815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506003859080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b031602179055507f16682fe0a2ffae99e47dc4431cb60eb5afccc35b1d4a4d0184d4516ed6031bbd84848a8860038054905060405180866001600160a01b03168152602001856001600160a01b031681526020018462ffffff168152602001836001600160a01b031681526020018281526020019550505050505060405180910390a15050505095945050505050565b6001546001600160a01b031681565b6003818154811062000a7657600080fd5b6000918252602090912001546001600160a01b0316905081565b62000a9a62000cc9565b6001600160a01b031662000aad62000b60565b6001600160a01b03161462000b09576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000546001600160a01b031690565b60035490565b60026020908152600093845260408085208252928452828420905282529020546001600160a01b031681565b62000bab62000cc9565b6001600160a01b031662000bbe62000b60565b6001600160a01b03161462000c1a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811662000c615760405162461bcd60e51b8152600401808060200182810382526026815260200180620050686026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b3390565b61438c8062000cdc8339019056fe60806040523480156200001157600080fd5b506040516200438c3803806200438c833981810160405260808110156200003757600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82516401000000008111828201881017156200009457600080fd5b82525081516020918201929091019080838360005b83811015620000c3578181015183820152602001620000a9565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b9083019060208201858111156200012b57600080fd5b82516401000000008111828201881017156200014657600080fd5b82525081516020918201929091019080838360005b83811015620001755781810151838201526020016200015b565b50505050905090810190601f168015620001a35780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001c3906003906020850190620004a4565b508051620001d9906004906020840190620004a4565b505060058054601260ff1990911617610100600160a81b0319166101006001600160a01b038881168202929092179283905560408051630dfe168160e01b81529051919093049091169250630dfe168191600480820192602092909190829003018186803b1580156200024b57600080fd5b505afa15801562000260573d6000803e3d6000fd5b505050506040513d60208110156200027757600080fd5b5051600680546001600160a01b0319166001600160a01b039283161790556005546040805163d21220a760e01b815290516101009092049092169163d21220a7916004808301926020929190829003018186803b158015620002d857600080fd5b505afa158015620002ed573d6000803e3d6000fd5b505050506040513d60208110156200030457600080fd5b5051600780546001600160a01b0319166001600160a01b039283161790556005546040805163ddca3f4360e01b815290516101009092049092169163ddca3f43916004808301926020929190829003018186803b1580156200036557600080fd5b505afa1580156200037a573d6000803e3d6000fd5b505050506040513d60208110156200039157600080fd5b50516007805462ffffff60a01b1916600160a01b62ffffff90931692909202919091179055600554604080516334324e9f60e21b815290516101009092046001600160a01b03169163d0c93a7c91600480820192602092909190829003018186803b1580156200040057600080fd5b505afa15801562000415573d6000803e3d6000fd5b505050506040513d60208110156200042c57600080fd5b50516007805460029290920b62ffffff16600160b81b0262ffffff60b81b199092169190911790555050600880546001600160a01b03909216660100000000000002600160301b600160d01b0319909216919091179055506000600b556000196009819055600a55600d805460ff1916905562000550565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004dc576000855562000527565b82601f10620004f757805160ff191683800117855562000527565b8280016001018555821562000527579182015b82811115620005275782518255916020019190600101906200050a565b506200053592915062000539565b5090565b5b808211156200053557600081556001016200053a565b613e2c80620005606000396000f3fe608060405234801561001057600080fd5b50600436106102d35760003560e01c80637fe75b0711610186578063bb032a66116100e3578063d348799711610097578063f2fde38b11610071578063f2fde38b14610844578063fa0827431461086a578063fa461e3314610872576102d3565b8063d34879971461077a578063dd62ed3e146107f6578063ddca3f4314610824576102d3565b8063d0c93a7c116100c8578063d0c93a7c14610762578063d21220a71461076a578063d2eabcfc14610772576102d3565b8063bb032a6614610734578063c4a7761e1461075a576102d3565b8063a049de6b1161013a578063a9059cbb1161011f578063a9059cbb146106b3578063aaf5eb68146106df578063b460af94146106e7576102d3565b8063a049de6b14610657578063a457c2d714610687576102d3565b80638da5cb5b1161016b5780638da5cb5b146106155780638dbdbe6d1461061d57806395d89b411461064f576102d3565b80637fe75b071461056a578063888a91341461060d576102d3565b8063395093511161023457806351e87af7116101e8578063648cab85116101cd578063648cab851461053457806370a082311461053c5780637e15144b14610562576102d3565b806351e87af7146104dc578063549f6dc9146104e4576102d3565b80633e091ee9116102195780633e091ee9146104925780633f3e4c11146104b75780634d461fbb146104d4576102d3565b8063395093511461045e5780633d9287fa1461048a576102d3565b806316f0115b1161028b57806323b872dd1161027057806323b872dd146104025780632ab4d05214610438578063313ce56714610440576102d3565b806316f0115b146103e057806318160ddd146103e8576102d3565b8063095ea7b3116102bc578063095ea7b3146103745780630dfe1681146103b45780630f35bcac146103d8576102d3565b8063065e5360146102d857806306fdde03146102f7575b600080fd5b6102e06108ee565b6040805160029290920b8252519081900360200190f35b6102ff610972565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610339578181015183820152602001610321565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103a06004803603604081101561038a57600080fd5b506001600160a01b038135169060200135610a08565b604080519115158252519081900360200190f35b6103bc610a26565b604080516001600160a01b039092168252519081900360200190f35b6102e0610a35565b6103bc610a45565b6103f0610a59565b60408051918252519081900360200190f35b6103a06004803603606081101561041857600080fd5b506001600160a01b03813581169160208101359091169060400135610a5f565b6103f0610ae7565b610448610aed565b6040805160ff9092168252519081900360200190f35b6103a06004803603604081101561047457600080fd5b506001600160a01b038135169060200135610af6565b6103a0610b44565b6104b5600480360360408110156104a857600080fd5b5080359060200135610b4d565b005b6104b5600480360360208110156104cd57600080fd5b5035610bae565b6103f0610c09565b6102e0610c0f565b6104b5600480360360c08110156104fa57600080fd5b508035600290810b916020810135820b916040820135810b91606081013590910b906001600160a01b036080820135169060a00135610c18565b6103f06115f9565b6103f06004803603602081101561055257600080fd5b50356001600160a01b03166115ff565b6104b561161e565b6104b56004803603602081101561058057600080fd5b81019060208101813564010000000081111561059b57600080fd5b8201836020820111156105ad57600080fd5b803590602001918460208302840111640100000000831117156105cf57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061169b945050505050565b6102e0611753565b6103bc611763565b6103f06004803603606081101561063357600080fd5b50803590602081013590604001356001600160a01b031661177c565b6102ff611ca2565b61065f611d03565b604080516001600160801b039094168452602084019290925282820152519081900360600190f35b6103a06004803603604081101561069d57600080fd5b506001600160a01b038135169060200135611d89565b6103a0600480360360408110156106c957600080fd5b506001600160a01b038135169060200135611df1565b6103f0611e05565b61071b600480360360608110156106fd57600080fd5b508035906001600160a01b0360208201358116916040013516611e18565b6040805192835260208301919091528051918290030190f35b6103a06004803603602081101561074a57600080fd5b50356001600160a01b03166121dc565b61071b6121f1565b6102e0612301565b6103bc612311565b61065f612320565b6104b56004803603606081101561079057600080fd5b8135916020810135918101906060810160408201356401000000008111156107b757600080fd5b8201836020820111156107c957600080fd5b803590602001918460018302840111640100000000831117156107eb57600080fd5b50909250905061237c565b6103f06004803603604081101561080c57600080fd5b506001600160a01b0381358116916020013516612441565b61082c61246c565b6040805162ffffff9092168252519081900360200190f35b6104b56004803603602081101561085a57600080fd5b50356001600160a01b031661248f565b6102e0612529565b6104b56004803603606081101561088857600080fd5b8135916020810135918101906060810160408201356401000000008111156108af57600080fd5b8201836020820111156108c157600080fd5b803590602001918460018302840111640100000000831117156108e357600080fd5b509092509050612539565b6000600560019054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561093e57600080fd5b505afa158015610952573d6000803e3d6000fd5b505050506040513d60e081101561096857600080fd5b5060200151919050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b6000610a1c610a1561260b565b848461260f565b5060015b92915050565b6006546001600160a01b031681565b6008546301000000900460020b81565b60055461010090046001600160a01b031681565b60025490565b6000610a6c8484846126fb565b610adc84610a7861260b565b610ad785604051806060016040528060288152602001613d15602891396001600160a01b038a16600090815260016020526040812090610ab661260b565b6001600160a01b031681526020810191909152604001600020549190612856565b61260f565b5060015b9392505050565b600b5481565b60055460ff1690565b6000610a1c610b0361260b565b84610ad78560016000610b1461260b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128ed565b600d5460ff1681565b600854660100000000000090046001600160a01b03163314610ba3576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600991909155600a55565b600854660100000000000090046001600160a01b03163314610c04576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600b55565b600a5481565b60085460020b81565b600854660100000000000090046001600160a01b03163314610c6e576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b8460020b8660020b128015610ca05750600754600160b81b9004600290810b810b9087900b81610c9a57fe5b0760020b155b8015610cc95750600754600160b81b9004600290810b810b9086900b81610cc357fe5b0760020b155b610d1a576040805162461bcd60e51b815260206004820152601560248201527f6261736520706f736974696f6e20696e76616c69640000000000000000000000604482015290519081900360640190fd5b8260020b8460020b128015610d4c5750600754600160b81b9004600290810b810b9085900b81610d4657fe5b0760020b155b8015610d755750600754600160b81b9004600290810b810b9084900b81610d6f57fe5b0760020b155b610dc6576040805162461bcd60e51b815260206004820152601660248201527f6c696d697420706f736974696f6e20696e76616c696400000000000000000000604482015290519081900360640190fd5b600754600090610deb90600160d01b8104600290810b91600160e81b9004900b612947565b50909150506001600160801b03811615610ea4576005546007546040805163a34123a760e01b8152600160d01b8304600290810b810b6004830152600160e81b909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b158015610e7757600080fd5b505af1158015610e8b573d6000803e3d6000fd5b505050506040513d6040811015610ea157600080fd5b50505b600854600090610ec290600281810b9163010000009004900b612947565b50909150506001600160801b03811615610f74576005546008546040805163a34123a760e01b8152600283810b810b60048301526301000000909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b158015610f4757600080fd5b505af1158015610f5b573d6000803e3d6000fd5b505050506040513d6040811015610f7157600080fd5b50505b6007546000908190610f9b90600160d01b8104600290810b91600160e81b9004900b612947565b6008546001600160801b03928316955091169250600091508190610fcd90600281810b9163010000009004900b612947565b6001600160801b03918216945016915060009050610feb83866128ed565b90506000610ff983866128ed565b60075490915061102290600160d01b8104600290810b91600160e81b9004900b8a306001612a26565b505060085461104390600281810b9163010000009004900b89306001612a26565b5050811561106d5761106d8a61105a84600a612c0d565b6006546001600160a01b03169190612c74565b8015611095576110958a61108283600a612c0d565b6007546001600160a01b03169190612c74565b7fbc4c20ad04f161d631d9ce94d27659391196415aa3c42f6a71c62e905ece782d6110be6108ee565b600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561110957600080fd5b505afa15801561111d573d6000803e3d6000fd5b505050506040513d602081101561113357600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561118057600080fd5b505afa158015611194573d6000803e3d6000fd5b505050506040513d60208110156111aa57600080fd5b505185856111b6610a59565b6040805160029790970b87526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190a188156113645760055461010090046001600160a01b031663128acb083060008c138061121c578c60000361121e565b8c5b60008e136112405773fffd8963efd1fc6a506488495d951d5263988d25611247565b6401000276a45b3060405160200180826001600160a01b031681526020019150506040516020818303038152906040526040518663ffffffff1660e01b815260040180866001600160a01b031681526020018515158152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156112e85781810151838201526020016112d0565b50505050905090810190601f1680156113155780820380516001836020036101000a031916815260200191505b5096505050505050506040805180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b505050506040513d604081101561136157600080fd5b50505b8d6007601a6101000a81548162ffffff021916908360020b62ffffff1602179055508c6007601d6101000a81548162ffffff021916908360020b62ffffff1602179055506114d56007601a9054906101000a900460020b6007601d9054906101000a900460020b600660009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561142d57600080fd5b505afa158015611441573d6000803e3d6000fd5b505050506040513d602081101561145757600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156114a457600080fd5b505afa1580156114b8573d6000803e3d6000fd5b505050506040513d60208110156114ce57600080fd5b5051612ce0565b6007549098506114fc90600160d01b8104600290810b91600160e81b9004900b8a30612d86565b50508b600860006101000a81548162ffffff021916908360020b62ffffff1602179055508a600860036101000a81548162ffffff021916908360020b62ffffff1602179055506115c7600860009054906101000a900460020b600860039054906101000a900460020b600660009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561142d57600080fd5b6008549097506115e790600281810b9163010000009004900b8930612d86565b50505050505050505050505050505050565b60095481565b6001600160a01b0381166000908152602081905260409020545b919050565b600854660100000000000090046001600160a01b03163314611674576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600d5460ff16611685576001611688565b60005b600d805460ff1916911515919091179055565b600854660100000000000090046001600160a01b031633146116f1576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b60005b81518160ff16101561174f576001600c6000848460ff168151811061171557fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016116f4565b5050565b600754600160e81b900460020b81565b600854660100000000000090046001600160a01b031681565b60008084118061178c5750600083115b6117dd576040805162461bcd60e51b815260206004820152601860248201527f6465706f73697473206d757374206265206e6f6e7a65726f0000000000000000604482015290519081900360640190fd5b600954841080156117ef5750600a5483105b61182a5760405162461bcd60e51b815260040180806020018281038252602a815260200180613d5e602a913960400191505060405180910390fd5b6001600160a01b0382161580159061184b57506001600160a01b0382163014155b611881576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b600d5460ff16156118f9576001600160a01b0382166000908152600c602052604090205460ff166118f9576040805162461bcd60e51b815260206004820152601360248201527f6d757374206265206f6e20746865206c69737400000000000000000000000000604482015290519081900360640190fd5b60075460009061191e90600160d01b8104600290810b91600160e81b9004900b612947565b50909150506001600160801b038116156119d7576005546007546040805163a34123a760e01b8152600160d01b8304600290810b810b6004830152600160e81b909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b1580156119aa57600080fd5b505af11580156119be573d6000803e3d6000fd5b505050506040513d60408110156119d457600080fd5b50505b6008546000906119f590600281810b9163010000009004900b612947565b50909150506001600160801b03811615611aa7576005546008546040805163a34123a760e01b8152600283810b810b60048301526301000000909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b158015611a7a57600080fd5b505af1158015611a8e573d6000803e3d6000fd5b505050506040513d6040811015611aa457600080fd5b50505b6000611ab9611ab46108ee565b612ef6565b90506000611b02611ad36001600160a01b03841680613235565b6ec097ce7bc90715b34b9f1000000000780100000000000000000000000000000000000000000000000061328e565b9050600080611b0f6121f1565b90925090506000611b396ec097ce7bc90715b34b9f1000000000611b338d87613235565b90612c0d565b9050611b458a826128ed565b97508a15611b6557600654611b65906001600160a01b031633308e61333d565b8915611b8357600754611b83906001600160a01b031633308d61333d565b611b8b610a59565b15611bd4576000611baf6ec097ce7bc90715b34b9f1000000000611b338688613235565b9050611bd0611bbe82856128ed565b611b33611bc9610a59565b8c90613235565b9850505b611bde89896133b2565b60408051898152602081018d90528082018c905290516001600160a01b038b169133917f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f69181900360600190a3600b541580611c435750600b54611c40610a59565b11155b611c94576040805162461bcd60e51b815260206004820152600e60248201527f6d6178546f74616c537570706c79000000000000000000000000000000000000604482015290519081900360640190fd5b505050505050509392505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fe5780601f106109d3576101008083540402835291602001916109fe565b60085460009081908190819081908190611d2b90600281810b9163010000009004900b612947565b6008549295509093509150611d4f90600281810b9163010000009004900b856134a2565b9095509350611d67856001600160801b0384166128ed565b9450611d7c846001600160801b0383166128ed565b9350829550505050909192565b6000610a1c611d9661260b565b84610ad785604051806060016040528060258152602001613dfb6025913960016000611dc061260b565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612856565b6000610a1c611dfe61260b565b84846126fb565b6ec097ce7bc90715b34b9f100000000081565b60008060008511611e70576040805162461bcd60e51b815260206004820152600660248201527f7368617265730000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038416611eb0576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b6007546000908190611ee590600160d01b8104600290810b91600160e81b9004900b611edd82828c61354c565b896000612a26565b60085491935091506000908190611f1890600281810b9163010000009004900b611f1082828e61354c565b8b6000612a26565b915091506000611f26610a59565b90506000611fc682611b338d600660009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9457600080fd5b505afa158015611fa8573d6000803e3d6000fd5b505050506040513d6020811015611fbe57600080fd5b505190613235565b9050600061203483611b338e600760009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9457600080fd5b9050811561205357600654612053906001600160a01b03168c84612c74565b801561207057600754612070906001600160a01b03168c83612c74565b6120848261207e89886128ed565b906128ed565b98506120948161207e88876128ed565b97506001600160a01b038a163314806121225750336001600160a01b03168a6001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156120eb57600080fd5b505afa1580156120ff573d6000803e3d6000fd5b505050506040513d602081101561211557600080fd5b50516001600160a01b0316145b612173576040805162461bcd60e51b815260206004820152601a60248201527f53656e646572206d757374206f776e2074686520746f6b656e73000000000000604482015290519081900360640190fd5b61217d8a8d61358c565b604080518d8152602081018b90528082018a905290516001600160a01b03808e1692908d16917febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f9181900360600190a350505050505050935093915050565b600c6020526000908152604090205460ff1681565b6000806000806121ff612320565b925092505060008061220f611d03565b600654604080516370a0823160e01b8152306004820152905193965091945061229d9350859261207e9289926001600160a01b0316916370a0823191602480820192602092909190829003018186803b15801561226b57600080fd5b505afa15801561227f573d6000803e3d6000fd5b505050506040513d602081101561229557600080fd5b5051906128ed565b600754604080516370a0823160e01b815230600482015290519298506122f792849261207e9288926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561226b57600080fd5b9450505050509091565b600754600160b81b900460020b81565b6007546001600160a01b031681565b6000806000806000806123516007601a9054906101000a900460020b6007601d9054906101000a900460020b612947565b6007549295509093509150611d4f90600160d01b8104600290810b91600160e81b9004900b856134a2565b60055461010090046001600160a01b0316331461239857600080fd5b6000828260208110156123aa57600080fd5b50356001600160a01b03169050308114156123fe5784156123dc576006546123dc906001600160a01b03163387612c74565b83156123f9576007546123f9906001600160a01b03163386612c74565b61243a565b841561241c5760065461241c906001600160a01b031682338861333d565b831561243a5760075461243a906001600160a01b031682338761333d565b5050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60075474010000000000000000000000000000000000000000900462ffffff1681565b600854660100000000000090046001600160a01b031633146124e5576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600880546001600160a01b039092166601000000000000027fffffffffffff0000000000000000000000000000000000000000ffffffffffff909216919091179055565b600754600160d01b900460020b81565b60055461010090046001600160a01b0316331461255557600080fd5b60008282602081101561256757600080fd5b50356001600160a01b0316905060008513156125c2576001600160a01b0381163014156125aa576006546125a5906001600160a01b03163387612c74565b6123f9565b6006546123f9906001600160a01b031682338861333d565b600084131561243a576001600160a01b0381163014156125f3576007546123f9906001600160a01b03163386612c74565b60075461243a906001600160a01b031682338761333d565b3390565b6001600160a01b0383166126545760405162461bcd60e51b8152600401808060200182810382526024815260200180613dad6024913960400191505060405180910390fd5b6001600160a01b0382166126995760405162461bcd60e51b8152600401808060200182810382526022815260200180613c866022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166127405760405162461bcd60e51b8152600401808060200182810382526025815260200180613d886025913960400191505060405180910390fd5b6001600160a01b0382166127855760405162461bcd60e51b8152600401808060200182810382526023815260200180613c416023913960400191505060405180910390fd5b612790838383612cdb565b6127cd81604051806060016040528060268152602001613ca8602691396001600160a01b0386166000908152602081905260409020549190612856565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546127fc90826128ed565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156128e55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128aa578181015183820152602001612892565b50505050905090810190601f1680156128d75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ae0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080513060601b602080830191909152600285810b60e890811b60348501529085900b901b60378301528251601a818403018152603a83018085528151919092012060055463514ea4bf60e01b909252603e830181905292516000938493849391926101009092046001600160a01b03169163514ea4bf91605e8082019260a092909190829003018186803b1580156129e057600080fd5b505afa1580156129f4573d6000803e3d6000fd5b505050506040513d60a0811015612a0a57600080fd5b5080516060820151608090920151909891975095509350505050565b6000806001600160801b03851615612c03576005546040805163a34123a760e01b815260028a810b600483015289900b60248201526001600160801b0388166044820152815160009384936101009091046001600160a01b03169263a34123a7926064808301939282900301818787803b158015612aa357600080fd5b505af1158015612ab7573d6000803e3d6000fd5b505050506040513d6040811015612acd57600080fd5b5080516020909101519092509050600085612af057612aeb83613688565b612af9565b6001600160801b035b9050600086612b1057612b0b83613688565b612b19565b6001600160801b035b90506000826001600160801b03161180612b3c57506000816001600160801b0316115b15612bfe57600554604080516309e3d67b60e31b81526001600160a01b038b8116600483015260028f810b60248401528e900b60448301526001600160801b0380871660648401528516608483015282516101009094041692634f1eb3d89260a4808401939192918290030181600087803b158015612bba57600080fd5b505af1158015612bce573d6000803e3d6000fd5b505050506040513d6040811015612be457600080fd5b5080516020909101516001600160801b0391821697501694505b505050505b9550959350505050565b6000808211612c63576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381612c6c57fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b179052612cdb90849061369f565b505050565b600080600560019054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612d3157600080fd5b505afa158015612d45573d6000803e3d6000fd5b505050506040513d60e0811015612d5b57600080fd5b50519050612d7c81612d6c88612ef6565b612d7588612ef6565b8787613750565b9695505050505050565b6000806001600160801b03841615612eed57600560019054906101000a90046001600160a01b03166001600160a01b0316633c8a7d8d308888888860405160200180826001600160a01b031681526020019150506040516020818303038152906040526040518663ffffffff1660e01b815260040180866001600160a01b031681526020018560020b81526020018460020b8152602001836001600160801b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612e65578181015183820152602001612e4d565b50505050905090810190601f168015612e925780820380516001836020036101000a031916815260200191505b5096505050505050506040805180830381600087803b158015612eb457600080fd5b505af1158015612ec8573d6000803e3d6000fd5b505050506040513d6040811015612ede57600080fd5b50805160209091015190925090505b94509492505050565b60008060008360020b12612f0d578260020b612f15565b8260020b6000035b9050620d89e8811115612f53576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216612f7457700100000000000000000000000000000000612f86565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615612fba576ffff97272373d413259a46990580e213a0260801c5b6004821615612fd9576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615612ff8576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615613017576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615613036576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615613055576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615613074576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615613094576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b6102008216156130b4576ff987a7253ac413176f2b074cf7815e540260801c5b6104008216156130d4576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156130f4576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615613114576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615613134576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615613154576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615613174576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615613195576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b620200008216156131b5576e5d6af8dedb81196699c329225ee6040260801c5b620400008216156131d4576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156131f1576b048a170391f7dc42444e8fa20260801c5b60008460020b131561320c57806000198161320857fe5b0490505b640100000000810615613220576001613223565b60005b60ff16602082901c0192505050919050565b60008261324457506000610a20565b8282028284828161325157fe5b0414610ae05760405162461bcd60e51b8152600401808060200182810382526021815260200180613cf46021913960400191505060405180910390fd5b60008080600019858709868602925082811090839003039050806132c457600084116132b957600080fd5b508290049050610ae0565b8084116132d057600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b1790526133ac90859061369f565b50505050565b6001600160a01b03821661340d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61341960008383612cdb565b60025461342690826128ed565b6002556001600160a01b03821660009081526020819052604090205461344c90826128ed565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000806000600560019054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156134f557600080fd5b505afa158015613509573d6000803e3d6000fd5b505050506040513d60e081101561351f57600080fd5b5051905061353f8161353088612ef6565b61353988612ef6565b87613808565b9250925050935093915050565b6000806135598585612947565b5050905061358361357e61356b610a59565b611b336001600160801b03851687613235565b613688565b95945050505050565b6001600160a01b0382166135d15760405162461bcd60e51b8152600401808060200182810382526021815260200180613d3d6021913960400191505060405180910390fd5b6135dd82600083612cdb565b61361a81604051806060016040528060228152602001613c64602291396001600160a01b0385166000908152602081905260409020549190612856565b6001600160a01b03831660009081526020819052604090205560025461364090826138a3565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160801b0382111561369b57fe5b5090565b60006136f4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166139009092919063ffffffff16565b805190915015612cdb5780806020019051602081101561371357600080fd5b5051612cdb5760405162461bcd60e51b815260040180806020018281038252602a815260200180613dd1602a913960400191505060405180910390fd5b6000836001600160a01b0316856001600160a01b03161115613770579293925b846001600160a01b0316866001600160a01b03161161379b57613794858585613917565b9050613583565b836001600160a01b0316866001600160a01b031610156137fd5760006137c2878686613917565b905060006137d187898661397a565b9050806001600160801b0316826001600160801b0316106137f257806137f4565b815b92505050613583565b612d7c85858461397a565b600080836001600160a01b0316856001600160a01b03161115613829579293925b846001600160a01b0316866001600160a01b0316116138545761384d8585856139b7565b9150612eed565b836001600160a01b0316866001600160a01b0316101561388d576138798685856139b7565b9150613886858785613a20565b9050612eed565b613898858585613a20565b905094509492505050565b6000828211156138fa576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b606061390f8484600085613a63565b949350505050565b6000826001600160a01b0316846001600160a01b03161115613937579192915b600061395a856001600160a01b0316856001600160a01b0316600160601b61328e565b905061358361397584838888036001600160a01b031661328e565b613bbe565b6000826001600160a01b0316846001600160a01b0316111561399a579192915b61390f61397583600160601b8787036001600160a01b031661328e565b6000826001600160a01b0316846001600160a01b031611156139d7579192915b836001600160a01b0316613a10606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b031661328e565b81613a1757fe5b04949350505050565b6000826001600160a01b0316846001600160a01b03161115613a40579192915b61390f826001600160801b03168585036001600160a01b0316600160601b61328e565b606082471015613aa45760405162461bcd60e51b8152600401808060200182810382526026815260200180613cce6026913960400191505060405180910390fd5b613aad85613bd4565b613afe576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b60208310613b3c5780518252601f199092019160209182019101613b1d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613b9e576040519150601f19603f3d011682016040523d82523d6000602084013e613ba3565b606091505b5091509150613bb3828286613bda565b979650505050505050565b806001600160801b038116811461161957600080fd5b3b151590565b60608315613be9575081610ae0565b825115613bf95782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156128aa57818101518382015260200161289256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f20616464726573736465706f73697473206d757374206265206c657373207468616e206d6178696d756d20616d6f756e747345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000706000a4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a164736f6c6343000706000a0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620000945760003560e01c80638da5cb5b11620000635780638da5cb5b1462000246578063b7e1aae91462000250578063cabea7dc146200026c578063f2fde38b14620002ab5762000094565b80631b73ccc414620000995780635b5491821462000210578063686d59b0146200021a578063715018a6146200023a575b600080fd5b620001f4600480360360a0811015620000b157600080fd5b6001600160a01b03823581169260208101359091169162ffffff6040830135169190810190608081016060820135640100000000811115620000f257600080fd5b8201836020820111156200010557600080fd5b803590602001918460018302840111640100000000831117156200012857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156200017c57600080fd5b8201836020820111156200018f57600080fd5b80359060200191846001830284011164010000000083111715620001b257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550620002d4945050505050565b604080516001600160a01b039092168252519081900360200190f35b620001f462000a56565b620001f4600480360360208110156200023257600080fd5b503562000a65565b6200024462000a90565b005b620001f462000b60565b6200025a62000b6f565b60408051918252519081900360200190f35b620001f4600480360360608110156200028457600080fd5b5080356001600160a01b03908116916020810135909116906040013562ffffff1662000b75565b6200024460048036036020811015620002c357600080fd5b50356001600160a01b031662000ba1565b6000620002e062000cc9565b6001600160a01b0316620002f362000b60565b6001600160a01b0316146200034f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b846001600160a01b0316866001600160a01b03161415620003b7576040805162461bcd60e51b815260206004820152601760248201527f53463a204944454e544943414c5f414444524553534553000000000000000000604482015290519081900360640190fd5b600080866001600160a01b0316886001600160a01b031610620003dc578688620003df565b87875b90925090506001600160a01b03821662000440576040805162461bcd60e51b815260206004820152601060248201527f53463a205a45524f5f4144445245535300000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0382811660009081526002602090815260408083208585168452825280832062ffffff8b1684529091529020541615620004c8576040805162461bcd60e51b815260206004820152601560248201527f53463a2048595045525649534f525f4558495354530000000000000000000000604482015290519081900360640190fd5b600154604080516322afcccb60e01b815262ffffff8916600482015290516000926001600160a01b0316916322afcccb916024808301926020929190829003018186803b1580156200051957600080fd5b505afa1580156200052e573d6000803e3d6000fd5b505050506040513d60208110156200054557600080fd5b50519050600281900b620005a0576040805162461bcd60e51b815260206004820152601160248201527f53463a20494e434f52524543545f464545000000000000000000000000000000604482015290519081900360640190fd5b60015460408051630b4c774160e11b81526001600160a01b038681166004830152858116602483015262ffffff8b16604483015291516000939290921691631698ee8291606480820192602092909190829003018186803b1580156200060557600080fd5b505afa1580156200061a573d6000803e3d6000fd5b505050506040513d60208110156200063157600080fd5b505190506001600160a01b038116620006d8576001546040805163a167129560e01b81526001600160a01b038781166004830152868116602483015262ffffff8c1660448301529151919092169163a16712959160648083019260209291908290030181600087803b158015620006a757600080fd5b505af1158015620006bc573d6000803e3d6000fd5b505050506040513d6020811015620006d357600080fd5b505190505b8383898460405160200180856001600160a01b031660601b8152601401846001600160a01b031660601b81526014018362ffffff1660e81b81526003018260020b60e81b815260030194505050505060405160208183030381529060405280519060200120816200074862000b60565b8989604051620007589062000ccd565b80856001600160a01b03168152602001846001600160a01b031681526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015620007b65781810151838201526020016200079c565b50505050905090810190601f168015620007e45780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101562000819578181015183820152602001620007ff565b50505050905090810190601f168015620008475780820380516001836020036101000a031916815260200191505b5096505050505050508190604051809103906000f590508015801562000871573d6000803e3d6000fd5b5094508460026000866001600160a01b03166001600160a01b031681526020019081526020016000206000856001600160a01b03166001600160a01b0316815260200190815260200160002060008a62ffffff1662ffffff16815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508460026000856001600160a01b03166001600160a01b031681526020019081526020016000206000866001600160a01b03166001600160a01b0316815260200190815260200160002060008a62ffffff1662ffffff16815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506003859080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b031602179055507f16682fe0a2ffae99e47dc4431cb60eb5afccc35b1d4a4d0184d4516ed6031bbd84848a8860038054905060405180866001600160a01b03168152602001856001600160a01b031681526020018462ffffff168152602001836001600160a01b031681526020018281526020019550505050505060405180910390a15050505095945050505050565b6001546001600160a01b031681565b6003818154811062000a7657600080fd5b6000918252602090912001546001600160a01b0316905081565b62000a9a62000cc9565b6001600160a01b031662000aad62000b60565b6001600160a01b03161462000b09576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000546001600160a01b031690565b60035490565b60026020908152600093845260408085208252928452828420905282529020546001600160a01b031681565b62000bab62000cc9565b6001600160a01b031662000bbe62000b60565b6001600160a01b03161462000c1a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811662000c615760405162461bcd60e51b8152600401808060200182810382526026815260200180620050686026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b3390565b61438c8062000cdc8339019056fe60806040523480156200001157600080fd5b506040516200438c3803806200438c833981810160405260808110156200003757600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82516401000000008111828201881017156200009457600080fd5b82525081516020918201929091019080838360005b83811015620000c3578181015183820152602001620000a9565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b9083019060208201858111156200012b57600080fd5b82516401000000008111828201881017156200014657600080fd5b82525081516020918201929091019080838360005b83811015620001755781810151838201526020016200015b565b50505050905090810190601f168015620001a35780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001c3906003906020850190620004a4565b508051620001d9906004906020840190620004a4565b505060058054601260ff1990911617610100600160a81b0319166101006001600160a01b038881168202929092179283905560408051630dfe168160e01b81529051919093049091169250630dfe168191600480820192602092909190829003018186803b1580156200024b57600080fd5b505afa15801562000260573d6000803e3d6000fd5b505050506040513d60208110156200027757600080fd5b5051600680546001600160a01b0319166001600160a01b039283161790556005546040805163d21220a760e01b815290516101009092049092169163d21220a7916004808301926020929190829003018186803b158015620002d857600080fd5b505afa158015620002ed573d6000803e3d6000fd5b505050506040513d60208110156200030457600080fd5b5051600780546001600160a01b0319166001600160a01b039283161790556005546040805163ddca3f4360e01b815290516101009092049092169163ddca3f43916004808301926020929190829003018186803b1580156200036557600080fd5b505afa1580156200037a573d6000803e3d6000fd5b505050506040513d60208110156200039157600080fd5b50516007805462ffffff60a01b1916600160a01b62ffffff90931692909202919091179055600554604080516334324e9f60e21b815290516101009092046001600160a01b03169163d0c93a7c91600480820192602092909190829003018186803b1580156200040057600080fd5b505afa15801562000415573d6000803e3d6000fd5b505050506040513d60208110156200042c57600080fd5b50516007805460029290920b62ffffff16600160b81b0262ffffff60b81b199092169190911790555050600880546001600160a01b03909216660100000000000002600160301b600160d01b0319909216919091179055506000600b556000196009819055600a55600d805460ff1916905562000550565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004dc576000855562000527565b82601f10620004f757805160ff191683800117855562000527565b8280016001018555821562000527579182015b82811115620005275782518255916020019190600101906200050a565b506200053592915062000539565b5090565b5b808211156200053557600081556001016200053a565b613e2c80620005606000396000f3fe608060405234801561001057600080fd5b50600436106102d35760003560e01c80637fe75b0711610186578063bb032a66116100e3578063d348799711610097578063f2fde38b11610071578063f2fde38b14610844578063fa0827431461086a578063fa461e3314610872576102d3565b8063d34879971461077a578063dd62ed3e146107f6578063ddca3f4314610824576102d3565b8063d0c93a7c116100c8578063d0c93a7c14610762578063d21220a71461076a578063d2eabcfc14610772576102d3565b8063bb032a6614610734578063c4a7761e1461075a576102d3565b8063a049de6b1161013a578063a9059cbb1161011f578063a9059cbb146106b3578063aaf5eb68146106df578063b460af94146106e7576102d3565b8063a049de6b14610657578063a457c2d714610687576102d3565b80638da5cb5b1161016b5780638da5cb5b146106155780638dbdbe6d1461061d57806395d89b411461064f576102d3565b80637fe75b071461056a578063888a91341461060d576102d3565b8063395093511161023457806351e87af7116101e8578063648cab85116101cd578063648cab851461053457806370a082311461053c5780637e15144b14610562576102d3565b806351e87af7146104dc578063549f6dc9146104e4576102d3565b80633e091ee9116102195780633e091ee9146104925780633f3e4c11146104b75780634d461fbb146104d4576102d3565b8063395093511461045e5780633d9287fa1461048a576102d3565b806316f0115b1161028b57806323b872dd1161027057806323b872dd146104025780632ab4d05214610438578063313ce56714610440576102d3565b806316f0115b146103e057806318160ddd146103e8576102d3565b8063095ea7b3116102bc578063095ea7b3146103745780630dfe1681146103b45780630f35bcac146103d8576102d3565b8063065e5360146102d857806306fdde03146102f7575b600080fd5b6102e06108ee565b6040805160029290920b8252519081900360200190f35b6102ff610972565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610339578181015183820152602001610321565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103a06004803603604081101561038a57600080fd5b506001600160a01b038135169060200135610a08565b604080519115158252519081900360200190f35b6103bc610a26565b604080516001600160a01b039092168252519081900360200190f35b6102e0610a35565b6103bc610a45565b6103f0610a59565b60408051918252519081900360200190f35b6103a06004803603606081101561041857600080fd5b506001600160a01b03813581169160208101359091169060400135610a5f565b6103f0610ae7565b610448610aed565b6040805160ff9092168252519081900360200190f35b6103a06004803603604081101561047457600080fd5b506001600160a01b038135169060200135610af6565b6103a0610b44565b6104b5600480360360408110156104a857600080fd5b5080359060200135610b4d565b005b6104b5600480360360208110156104cd57600080fd5b5035610bae565b6103f0610c09565b6102e0610c0f565b6104b5600480360360c08110156104fa57600080fd5b508035600290810b916020810135820b916040820135810b91606081013590910b906001600160a01b036080820135169060a00135610c18565b6103f06115f9565b6103f06004803603602081101561055257600080fd5b50356001600160a01b03166115ff565b6104b561161e565b6104b56004803603602081101561058057600080fd5b81019060208101813564010000000081111561059b57600080fd5b8201836020820111156105ad57600080fd5b803590602001918460208302840111640100000000831117156105cf57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061169b945050505050565b6102e0611753565b6103bc611763565b6103f06004803603606081101561063357600080fd5b50803590602081013590604001356001600160a01b031661177c565b6102ff611ca2565b61065f611d03565b604080516001600160801b039094168452602084019290925282820152519081900360600190f35b6103a06004803603604081101561069d57600080fd5b506001600160a01b038135169060200135611d89565b6103a0600480360360408110156106c957600080fd5b506001600160a01b038135169060200135611df1565b6103f0611e05565b61071b600480360360608110156106fd57600080fd5b508035906001600160a01b0360208201358116916040013516611e18565b6040805192835260208301919091528051918290030190f35b6103a06004803603602081101561074a57600080fd5b50356001600160a01b03166121dc565b61071b6121f1565b6102e0612301565b6103bc612311565b61065f612320565b6104b56004803603606081101561079057600080fd5b8135916020810135918101906060810160408201356401000000008111156107b757600080fd5b8201836020820111156107c957600080fd5b803590602001918460018302840111640100000000831117156107eb57600080fd5b50909250905061237c565b6103f06004803603604081101561080c57600080fd5b506001600160a01b0381358116916020013516612441565b61082c61246c565b6040805162ffffff9092168252519081900360200190f35b6104b56004803603602081101561085a57600080fd5b50356001600160a01b031661248f565b6102e0612529565b6104b56004803603606081101561088857600080fd5b8135916020810135918101906060810160408201356401000000008111156108af57600080fd5b8201836020820111156108c157600080fd5b803590602001918460018302840111640100000000831117156108e357600080fd5b509092509050612539565b6000600560019054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561093e57600080fd5b505afa158015610952573d6000803e3d6000fd5b505050506040513d60e081101561096857600080fd5b5060200151919050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b6000610a1c610a1561260b565b848461260f565b5060015b92915050565b6006546001600160a01b031681565b6008546301000000900460020b81565b60055461010090046001600160a01b031681565b60025490565b6000610a6c8484846126fb565b610adc84610a7861260b565b610ad785604051806060016040528060288152602001613d15602891396001600160a01b038a16600090815260016020526040812090610ab661260b565b6001600160a01b031681526020810191909152604001600020549190612856565b61260f565b5060015b9392505050565b600b5481565b60055460ff1690565b6000610a1c610b0361260b565b84610ad78560016000610b1461260b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128ed565b600d5460ff1681565b600854660100000000000090046001600160a01b03163314610ba3576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600991909155600a55565b600854660100000000000090046001600160a01b03163314610c04576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600b55565b600a5481565b60085460020b81565b600854660100000000000090046001600160a01b03163314610c6e576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b8460020b8660020b128015610ca05750600754600160b81b9004600290810b810b9087900b81610c9a57fe5b0760020b155b8015610cc95750600754600160b81b9004600290810b810b9086900b81610cc357fe5b0760020b155b610d1a576040805162461bcd60e51b815260206004820152601560248201527f6261736520706f736974696f6e20696e76616c69640000000000000000000000604482015290519081900360640190fd5b8260020b8460020b128015610d4c5750600754600160b81b9004600290810b810b9085900b81610d4657fe5b0760020b155b8015610d755750600754600160b81b9004600290810b810b9084900b81610d6f57fe5b0760020b155b610dc6576040805162461bcd60e51b815260206004820152601660248201527f6c696d697420706f736974696f6e20696e76616c696400000000000000000000604482015290519081900360640190fd5b600754600090610deb90600160d01b8104600290810b91600160e81b9004900b612947565b50909150506001600160801b03811615610ea4576005546007546040805163a34123a760e01b8152600160d01b8304600290810b810b6004830152600160e81b909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b158015610e7757600080fd5b505af1158015610e8b573d6000803e3d6000fd5b505050506040513d6040811015610ea157600080fd5b50505b600854600090610ec290600281810b9163010000009004900b612947565b50909150506001600160801b03811615610f74576005546008546040805163a34123a760e01b8152600283810b810b60048301526301000000909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b158015610f4757600080fd5b505af1158015610f5b573d6000803e3d6000fd5b505050506040513d6040811015610f7157600080fd5b50505b6007546000908190610f9b90600160d01b8104600290810b91600160e81b9004900b612947565b6008546001600160801b03928316955091169250600091508190610fcd90600281810b9163010000009004900b612947565b6001600160801b03918216945016915060009050610feb83866128ed565b90506000610ff983866128ed565b60075490915061102290600160d01b8104600290810b91600160e81b9004900b8a306001612a26565b505060085461104390600281810b9163010000009004900b89306001612a26565b5050811561106d5761106d8a61105a84600a612c0d565b6006546001600160a01b03169190612c74565b8015611095576110958a61108283600a612c0d565b6007546001600160a01b03169190612c74565b7fbc4c20ad04f161d631d9ce94d27659391196415aa3c42f6a71c62e905ece782d6110be6108ee565b600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561110957600080fd5b505afa15801561111d573d6000803e3d6000fd5b505050506040513d602081101561113357600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561118057600080fd5b505afa158015611194573d6000803e3d6000fd5b505050506040513d60208110156111aa57600080fd5b505185856111b6610a59565b6040805160029790970b87526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190a188156113645760055461010090046001600160a01b031663128acb083060008c138061121c578c60000361121e565b8c5b60008e136112405773fffd8963efd1fc6a506488495d951d5263988d25611247565b6401000276a45b3060405160200180826001600160a01b031681526020019150506040516020818303038152906040526040518663ffffffff1660e01b815260040180866001600160a01b031681526020018515158152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156112e85781810151838201526020016112d0565b50505050905090810190601f1680156113155780820380516001836020036101000a031916815260200191505b5096505050505050506040805180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b505050506040513d604081101561136157600080fd5b50505b8d6007601a6101000a81548162ffffff021916908360020b62ffffff1602179055508c6007601d6101000a81548162ffffff021916908360020b62ffffff1602179055506114d56007601a9054906101000a900460020b6007601d9054906101000a900460020b600660009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561142d57600080fd5b505afa158015611441573d6000803e3d6000fd5b505050506040513d602081101561145757600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156114a457600080fd5b505afa1580156114b8573d6000803e3d6000fd5b505050506040513d60208110156114ce57600080fd5b5051612ce0565b6007549098506114fc90600160d01b8104600290810b91600160e81b9004900b8a30612d86565b50508b600860006101000a81548162ffffff021916908360020b62ffffff1602179055508a600860036101000a81548162ffffff021916908360020b62ffffff1602179055506115c7600860009054906101000a900460020b600860039054906101000a900460020b600660009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561142d57600080fd5b6008549097506115e790600281810b9163010000009004900b8930612d86565b50505050505050505050505050505050565b60095481565b6001600160a01b0381166000908152602081905260409020545b919050565b600854660100000000000090046001600160a01b03163314611674576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600d5460ff16611685576001611688565b60005b600d805460ff1916911515919091179055565b600854660100000000000090046001600160a01b031633146116f1576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b60005b81518160ff16101561174f576001600c6000848460ff168151811061171557fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016116f4565b5050565b600754600160e81b900460020b81565b600854660100000000000090046001600160a01b031681565b60008084118061178c5750600083115b6117dd576040805162461bcd60e51b815260206004820152601860248201527f6465706f73697473206d757374206265206e6f6e7a65726f0000000000000000604482015290519081900360640190fd5b600954841080156117ef5750600a5483105b61182a5760405162461bcd60e51b815260040180806020018281038252602a815260200180613d5e602a913960400191505060405180910390fd5b6001600160a01b0382161580159061184b57506001600160a01b0382163014155b611881576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b600d5460ff16156118f9576001600160a01b0382166000908152600c602052604090205460ff166118f9576040805162461bcd60e51b815260206004820152601360248201527f6d757374206265206f6e20746865206c69737400000000000000000000000000604482015290519081900360640190fd5b60075460009061191e90600160d01b8104600290810b91600160e81b9004900b612947565b50909150506001600160801b038116156119d7576005546007546040805163a34123a760e01b8152600160d01b8304600290810b810b6004830152600160e81b909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b1580156119aa57600080fd5b505af11580156119be573d6000803e3d6000fd5b505050506040513d60408110156119d457600080fd5b50505b6008546000906119f590600281810b9163010000009004900b612947565b50909150506001600160801b03811615611aa7576005546008546040805163a34123a760e01b8152600283810b810b60048301526301000000909304830b90920b602483015260006044830181905281516101009094046001600160a01b03169363a34123a79360648082019493918390030190829087803b158015611a7a57600080fd5b505af1158015611a8e573d6000803e3d6000fd5b505050506040513d6040811015611aa457600080fd5b50505b6000611ab9611ab46108ee565b612ef6565b90506000611b02611ad36001600160a01b03841680613235565b6ec097ce7bc90715b34b9f1000000000780100000000000000000000000000000000000000000000000061328e565b9050600080611b0f6121f1565b90925090506000611b396ec097ce7bc90715b34b9f1000000000611b338d87613235565b90612c0d565b9050611b458a826128ed565b97508a15611b6557600654611b65906001600160a01b031633308e61333d565b8915611b8357600754611b83906001600160a01b031633308d61333d565b611b8b610a59565b15611bd4576000611baf6ec097ce7bc90715b34b9f1000000000611b338688613235565b9050611bd0611bbe82856128ed565b611b33611bc9610a59565b8c90613235565b9850505b611bde89896133b2565b60408051898152602081018d90528082018c905290516001600160a01b038b169133917f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f69181900360600190a3600b541580611c435750600b54611c40610a59565b11155b611c94576040805162461bcd60e51b815260206004820152600e60248201527f6d6178546f74616c537570706c79000000000000000000000000000000000000604482015290519081900360640190fd5b505050505050509392505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fe5780601f106109d3576101008083540402835291602001916109fe565b60085460009081908190819081908190611d2b90600281810b9163010000009004900b612947565b6008549295509093509150611d4f90600281810b9163010000009004900b856134a2565b9095509350611d67856001600160801b0384166128ed565b9450611d7c846001600160801b0383166128ed565b9350829550505050909192565b6000610a1c611d9661260b565b84610ad785604051806060016040528060258152602001613dfb6025913960016000611dc061260b565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612856565b6000610a1c611dfe61260b565b84846126fb565b6ec097ce7bc90715b34b9f100000000081565b60008060008511611e70576040805162461bcd60e51b815260206004820152600660248201527f7368617265730000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038416611eb0576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b6007546000908190611ee590600160d01b8104600290810b91600160e81b9004900b611edd82828c61354c565b896000612a26565b60085491935091506000908190611f1890600281810b9163010000009004900b611f1082828e61354c565b8b6000612a26565b915091506000611f26610a59565b90506000611fc682611b338d600660009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9457600080fd5b505afa158015611fa8573d6000803e3d6000fd5b505050506040513d6020811015611fbe57600080fd5b505190613235565b9050600061203483611b338e600760009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9457600080fd5b9050811561205357600654612053906001600160a01b03168c84612c74565b801561207057600754612070906001600160a01b03168c83612c74565b6120848261207e89886128ed565b906128ed565b98506120948161207e88876128ed565b97506001600160a01b038a163314806121225750336001600160a01b03168a6001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156120eb57600080fd5b505afa1580156120ff573d6000803e3d6000fd5b505050506040513d602081101561211557600080fd5b50516001600160a01b0316145b612173576040805162461bcd60e51b815260206004820152601a60248201527f53656e646572206d757374206f776e2074686520746f6b656e73000000000000604482015290519081900360640190fd5b61217d8a8d61358c565b604080518d8152602081018b90528082018a905290516001600160a01b03808e1692908d16917febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f9181900360600190a350505050505050935093915050565b600c6020526000908152604090205460ff1681565b6000806000806121ff612320565b925092505060008061220f611d03565b600654604080516370a0823160e01b8152306004820152905193965091945061229d9350859261207e9289926001600160a01b0316916370a0823191602480820192602092909190829003018186803b15801561226b57600080fd5b505afa15801561227f573d6000803e3d6000fd5b505050506040513d602081101561229557600080fd5b5051906128ed565b600754604080516370a0823160e01b815230600482015290519298506122f792849261207e9288926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561226b57600080fd5b9450505050509091565b600754600160b81b900460020b81565b6007546001600160a01b031681565b6000806000806000806123516007601a9054906101000a900460020b6007601d9054906101000a900460020b612947565b6007549295509093509150611d4f90600160d01b8104600290810b91600160e81b9004900b856134a2565b60055461010090046001600160a01b0316331461239857600080fd5b6000828260208110156123aa57600080fd5b50356001600160a01b03169050308114156123fe5784156123dc576006546123dc906001600160a01b03163387612c74565b83156123f9576007546123f9906001600160a01b03163386612c74565b61243a565b841561241c5760065461241c906001600160a01b031682338861333d565b831561243a5760075461243a906001600160a01b031682338761333d565b5050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60075474010000000000000000000000000000000000000000900462ffffff1681565b600854660100000000000090046001600160a01b031633146124e5576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600880546001600160a01b039092166601000000000000027fffffffffffff0000000000000000000000000000000000000000ffffffffffff909216919091179055565b600754600160d01b900460020b81565b60055461010090046001600160a01b0316331461255557600080fd5b60008282602081101561256757600080fd5b50356001600160a01b0316905060008513156125c2576001600160a01b0381163014156125aa576006546125a5906001600160a01b03163387612c74565b6123f9565b6006546123f9906001600160a01b031682338861333d565b600084131561243a576001600160a01b0381163014156125f3576007546123f9906001600160a01b03163386612c74565b60075461243a906001600160a01b031682338761333d565b3390565b6001600160a01b0383166126545760405162461bcd60e51b8152600401808060200182810382526024815260200180613dad6024913960400191505060405180910390fd5b6001600160a01b0382166126995760405162461bcd60e51b8152600401808060200182810382526022815260200180613c866022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166127405760405162461bcd60e51b8152600401808060200182810382526025815260200180613d886025913960400191505060405180910390fd5b6001600160a01b0382166127855760405162461bcd60e51b8152600401808060200182810382526023815260200180613c416023913960400191505060405180910390fd5b612790838383612cdb565b6127cd81604051806060016040528060268152602001613ca8602691396001600160a01b0386166000908152602081905260409020549190612856565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546127fc90826128ed565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156128e55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128aa578181015183820152602001612892565b50505050905090810190601f1680156128d75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ae0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080513060601b602080830191909152600285810b60e890811b60348501529085900b901b60378301528251601a818403018152603a83018085528151919092012060055463514ea4bf60e01b909252603e830181905292516000938493849391926101009092046001600160a01b03169163514ea4bf91605e8082019260a092909190829003018186803b1580156129e057600080fd5b505afa1580156129f4573d6000803e3d6000fd5b505050506040513d60a0811015612a0a57600080fd5b5080516060820151608090920151909891975095509350505050565b6000806001600160801b03851615612c03576005546040805163a34123a760e01b815260028a810b600483015289900b60248201526001600160801b0388166044820152815160009384936101009091046001600160a01b03169263a34123a7926064808301939282900301818787803b158015612aa357600080fd5b505af1158015612ab7573d6000803e3d6000fd5b505050506040513d6040811015612acd57600080fd5b5080516020909101519092509050600085612af057612aeb83613688565b612af9565b6001600160801b035b9050600086612b1057612b0b83613688565b612b19565b6001600160801b035b90506000826001600160801b03161180612b3c57506000816001600160801b0316115b15612bfe57600554604080516309e3d67b60e31b81526001600160a01b038b8116600483015260028f810b60248401528e900b60448301526001600160801b0380871660648401528516608483015282516101009094041692634f1eb3d89260a4808401939192918290030181600087803b158015612bba57600080fd5b505af1158015612bce573d6000803e3d6000fd5b505050506040513d6040811015612be457600080fd5b5080516020909101516001600160801b0391821697501694505b505050505b9550959350505050565b6000808211612c63576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381612c6c57fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b179052612cdb90849061369f565b505050565b600080600560019054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612d3157600080fd5b505afa158015612d45573d6000803e3d6000fd5b505050506040513d60e0811015612d5b57600080fd5b50519050612d7c81612d6c88612ef6565b612d7588612ef6565b8787613750565b9695505050505050565b6000806001600160801b03841615612eed57600560019054906101000a90046001600160a01b03166001600160a01b0316633c8a7d8d308888888860405160200180826001600160a01b031681526020019150506040516020818303038152906040526040518663ffffffff1660e01b815260040180866001600160a01b031681526020018560020b81526020018460020b8152602001836001600160801b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612e65578181015183820152602001612e4d565b50505050905090810190601f168015612e925780820380516001836020036101000a031916815260200191505b5096505050505050506040805180830381600087803b158015612eb457600080fd5b505af1158015612ec8573d6000803e3d6000fd5b505050506040513d6040811015612ede57600080fd5b50805160209091015190925090505b94509492505050565b60008060008360020b12612f0d578260020b612f15565b8260020b6000035b9050620d89e8811115612f53576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216612f7457700100000000000000000000000000000000612f86565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615612fba576ffff97272373d413259a46990580e213a0260801c5b6004821615612fd9576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615612ff8576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615613017576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615613036576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615613055576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615613074576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615613094576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b6102008216156130b4576ff987a7253ac413176f2b074cf7815e540260801c5b6104008216156130d4576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156130f4576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615613114576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615613134576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615613154576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615613174576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615613195576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b620200008216156131b5576e5d6af8dedb81196699c329225ee6040260801c5b620400008216156131d4576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156131f1576b048a170391f7dc42444e8fa20260801c5b60008460020b131561320c57806000198161320857fe5b0490505b640100000000810615613220576001613223565b60005b60ff16602082901c0192505050919050565b60008261324457506000610a20565b8282028284828161325157fe5b0414610ae05760405162461bcd60e51b8152600401808060200182810382526021815260200180613cf46021913960400191505060405180910390fd5b60008080600019858709868602925082811090839003039050806132c457600084116132b957600080fd5b508290049050610ae0565b8084116132d057600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b1790526133ac90859061369f565b50505050565b6001600160a01b03821661340d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61341960008383612cdb565b60025461342690826128ed565b6002556001600160a01b03821660009081526020819052604090205461344c90826128ed565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000806000600560019054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156134f557600080fd5b505afa158015613509573d6000803e3d6000fd5b505050506040513d60e081101561351f57600080fd5b5051905061353f8161353088612ef6565b61353988612ef6565b87613808565b9250925050935093915050565b6000806135598585612947565b5050905061358361357e61356b610a59565b611b336001600160801b03851687613235565b613688565b95945050505050565b6001600160a01b0382166135d15760405162461bcd60e51b8152600401808060200182810382526021815260200180613d3d6021913960400191505060405180910390fd5b6135dd82600083612cdb565b61361a81604051806060016040528060228152602001613c64602291396001600160a01b0385166000908152602081905260409020549190612856565b6001600160a01b03831660009081526020819052604090205560025461364090826138a3565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160801b0382111561369b57fe5b5090565b60006136f4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166139009092919063ffffffff16565b805190915015612cdb5780806020019051602081101561371357600080fd5b5051612cdb5760405162461bcd60e51b815260040180806020018281038252602a815260200180613dd1602a913960400191505060405180910390fd5b6000836001600160a01b0316856001600160a01b03161115613770579293925b846001600160a01b0316866001600160a01b03161161379b57613794858585613917565b9050613583565b836001600160a01b0316866001600160a01b031610156137fd5760006137c2878686613917565b905060006137d187898661397a565b9050806001600160801b0316826001600160801b0316106137f257806137f4565b815b92505050613583565b612d7c85858461397a565b600080836001600160a01b0316856001600160a01b03161115613829579293925b846001600160a01b0316866001600160a01b0316116138545761384d8585856139b7565b9150612eed565b836001600160a01b0316866001600160a01b0316101561388d576138798685856139b7565b9150613886858785613a20565b9050612eed565b613898858585613a20565b905094509492505050565b6000828211156138fa576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b606061390f8484600085613a63565b949350505050565b6000826001600160a01b0316846001600160a01b03161115613937579192915b600061395a856001600160a01b0316856001600160a01b0316600160601b61328e565b905061358361397584838888036001600160a01b031661328e565b613bbe565b6000826001600160a01b0316846001600160a01b0316111561399a579192915b61390f61397583600160601b8787036001600160a01b031661328e565b6000826001600160a01b0316846001600160a01b031611156139d7579192915b836001600160a01b0316613a10606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b031661328e565b81613a1757fe5b04949350505050565b6000826001600160a01b0316846001600160a01b03161115613a40579192915b61390f826001600160801b03168585036001600160a01b0316600160601b61328e565b606082471015613aa45760405162461bcd60e51b8152600401808060200182810382526026815260200180613cce6026913960400191505060405180910390fd5b613aad85613bd4565b613afe576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b60208310613b3c5780518252601f199092019160209182019101613b1d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613b9e576040519150601f19603f3d011682016040523d82523d6000602084013e613ba3565b606091505b5091509150613bb3828286613bda565b979650505050505050565b806001600160801b038116811461161957600080fd5b3b151590565b60608315613be9575081610ae0565b825115613bf95782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156128aa57818101518382015260200161289256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f20616464726573736465706f73697473206d757374206265206c657373207468616e206d6178696d756d20616d6f756e747345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000706000a4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a164736f6c6343000706000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
-----Decoded View---------------
Arg [0] : _uniswapV3Factory (address): 0x1F98431c8aD98523631AE4a59f267346ea31F984
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.