From bc0e53561e15960a420e0afc3402cf1fec1e4c19 Mon Sep 17 00:00:00 2001 From: fourlen Date: Tue, 25 Mar 2025 14:04:08 +0300 Subject: [PATCH 01/42] temp --- src/plugin/contracts/AlgebraBasePluginALM.sol | 96 ++ .../contracts/AlgebraBasePluginALMFactory.sol | 80 ++ .../IAlgebraBasePluginALMFactory.sol | 49 + .../interfaces/plugins/IAlmPlugin.sol | 7 + src/plugin/contracts/plugins/AlmPlugin.sol | 984 ++++++++++++++++++ .../plugins/VolatilityOraclePlugin.sol | 31 + .../test/MockAlgebraBasePluginALM.sol | 13 + .../test/MockAlgebraBasePluginALMFactory.sol | 61 ++ src/plugin/hardhat.config.ts | 2 +- src/plugin/test/AlgebraBasePluginALM.spec.ts | 780 ++++++++++++++ src/plugin/yarn.lock | 38 + 11 files changed, 2140 insertions(+), 1 deletion(-) create mode 100644 src/plugin/contracts/AlgebraBasePluginALM.sol create mode 100644 src/plugin/contracts/AlgebraBasePluginALMFactory.sol create mode 100644 src/plugin/contracts/interfaces/IAlgebraBasePluginALMFactory.sol create mode 100644 src/plugin/contracts/interfaces/plugins/IAlmPlugin.sol create mode 100644 src/plugin/contracts/plugins/AlmPlugin.sol create mode 100644 src/plugin/contracts/test/MockAlgebraBasePluginALM.sol create mode 100644 src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol create mode 100644 src/plugin/test/AlgebraBasePluginALM.spec.ts create mode 100644 src/plugin/yarn.lock diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol new file mode 100644 index 000000000..9763dc8f1 --- /dev/null +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -0,0 +1,96 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; + +import '@cryptoalgebra/integral-core/contracts/interfaces/plugin/IAlgebraPlugin.sol'; + +import './plugins/DynamicFeePlugin.sol'; +import './plugins/AlmPlugin.sol'; +import './plugins/SlidingFeePlugin.sol'; +import './plugins/VolatilityOraclePlugin.sol'; + +/// @title Algebra Integral 1.2.1 adaptive fee plugin +contract AlgebraBasePluginALM is DynamicFeePlugin, VolatilityOraclePlugin, AlmPlugin { + using Plugins for uint8; + + /// @inheritdoc IAlgebraPlugin + uint8 public constant override defaultPluginConfig = + uint8(Plugins.AFTER_INIT_FLAG | Plugins.BEFORE_SWAP_FLAG | Plugins.AFTER_SWAP_FLAG | Plugins.DYNAMIC_FEE); + + constructor( + address _pool, + address _factory, + address _pluginFactory, + AlgebraFeeConfiguration memory _config + ) AlgebraBasePlugin(_pool, _factory, _pluginFactory) DynamicFeePlugin(_config) {} + + // ###### HOOKS ###### + + function beforeInitialize(address, uint160) external override onlyPool returns (bytes4) { + _updatePluginConfigInPool(defaultPluginConfig); + return IAlgebraPlugin.beforeInitialize.selector; + } + + function afterInitialize(address, uint160, int24 tick) external override onlyPool returns (bytes4) { + _initialize_TWAP(tick); + return IAlgebraPlugin.afterInitialize.selector; + } + + /// @dev unused + function beforeModifyPosition(address, address, int24, int24, int128, bytes calldata) external override onlyPool returns (bytes4, uint24) { + _updatePluginConfigInPool(defaultPluginConfig); // should not be called, reset config + return (IAlgebraPlugin.beforeModifyPosition.selector, 0); + } + + /// @dev unused + function afterModifyPosition(address, address, int24, int24, int128, uint256, uint256, bytes calldata) external override onlyPool returns (bytes4) { + _updatePluginConfigInPool(defaultPluginConfig); // should not be called, reset config + return IAlgebraPlugin.afterModifyPosition.selector; + } + + function beforeSwap(address, address, bool, int256, uint160, bool, bytes calldata) external override onlyPool returns (bytes4, uint24, uint24) { + _writeTimepoint(); + uint88 volatilityAverage = _getAverageVolatilityLast(); + uint24 fee = _getCurrentFee(volatilityAverage); + return (IAlgebraPlugin.beforeSwap.selector, fee, 0); + } + + function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { + ( , int24 currentTick, , ) = _getPoolState(); + uint32 lastBlockTimestamp = _getLastBlockTimestamp(); + + bool failedToObtainTWAP; + int24 slowTwapTick; + int24 fastTwapTick; + + if (_ableToGetTimepoints(slowTwapPeriod)) { + slowTwapTick = _getTwapTick(slowTwapPeriod); + fastTwapTick = _getTwapTick(fastTwapPeriod); + } else { + failedToObtainTWAP = true; + } + + TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + _rebalance(twapResult); + + return IAlgebraPlugin.afterSwap.selector; + } + + /// @dev unused + function beforeFlash(address, address, uint256, uint256, bytes calldata) external override onlyPool returns (bytes4) { + _updatePluginConfigInPool(defaultPluginConfig); // should not be called, reset config + return IAlgebraPlugin.beforeFlash.selector; + } + + /// @dev unused + function afterFlash(address, address, uint256, uint256, uint256, uint256, bytes calldata) external override onlyPool returns (bytes4) { + _updatePluginConfigInPool(defaultPluginConfig); // should not be called, reset config + return IAlgebraPlugin.afterFlash.selector; + } + + function getCurrentFee() external view override returns (uint16 fee) { + uint88 volatilityAverage = _getAverageVolatilityLast(); + fee = _getCurrentFee(volatilityAverage); + } +} diff --git a/src/plugin/contracts/AlgebraBasePluginALMFactory.sol b/src/plugin/contracts/AlgebraBasePluginALMFactory.sol new file mode 100644 index 000000000..e63dcdd75 --- /dev/null +++ b/src/plugin/contracts/AlgebraBasePluginALMFactory.sol @@ -0,0 +1,80 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import './interfaces/IBasePluginV1Factory.sol'; +import './libraries/AdaptiveFee.sol'; +import './AlgebraBasePluginV1.sol'; + +/// @title Algebra Integral 1.2.1 default plugin factory +/// @notice This contract creates Algebra adaptive fee plugins for Algebra liquidity pools +/// @dev This plugin factory can only be used for Algebra base pools +contract AlgebraBasePluginALMFactory is IBasePluginV1Factory { + /// @inheritdoc IBasePluginV1Factory + bytes32 public constant override ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR = keccak256('ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR'); + + /// @inheritdoc IBasePluginV1Factory + address public immutable override algebraFactory; + + /// @inheritdoc IBasePluginV1Factory + AlgebraFeeConfiguration public override defaultFeeConfiguration; // values of constants for sigmoids in fee calculation formula + + /// @inheritdoc IBasePluginV1Factory + address public override farmingAddress; + + /// @inheritdoc IBasePluginV1Factory + mapping(address poolAddress => address pluginAddress) public override pluginByPool; + + modifier onlyAdministrator() { + require(IAlgebraFactory(algebraFactory).hasRoleOrOwner(ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR, msg.sender), 'Only administrator'); + _; + } + + constructor(address _algebraFactory) { + algebraFactory = _algebraFactory; + defaultFeeConfiguration = AdaptiveFee.initialFeeConfiguration(); + emit DefaultFeeConfiguration(defaultFeeConfiguration); + } + + /// @inheritdoc IAlgebraPluginFactory + function beforeCreatePoolHook(address pool, address, address, address, address, bytes calldata) external override returns (address) { + require(msg.sender == algebraFactory); + return _createPlugin(pool); + } + + /// @inheritdoc IAlgebraPluginFactory + function afterCreatePoolHook(address, address, address) external view override { + require(msg.sender == algebraFactory); + } + + /// @inheritdoc IBasePluginV1Factory + function createPluginForExistingPool(address token0, address token1) external override returns (address) { + IAlgebraFactory factory = IAlgebraFactory(algebraFactory); + require(factory.hasRoleOrOwner(factory.POOLS_ADMINISTRATOR_ROLE(), msg.sender)); + + address pool = factory.poolByPair(token0, token1); + require(pool != address(0), 'Pool not exist'); + + return _createPlugin(pool); + } + + function _createPlugin(address pool) internal returns (address) { + require(pluginByPool[pool] == address(0), 'Already created'); + IDynamicFeeManager volatilityOracle = new AlgebraBasePluginV1(pool, algebraFactory, address(this), defaultFeeConfiguration); + pluginByPool[pool] = address(volatilityOracle); + return address(volatilityOracle); + } + + /// @inheritdoc IBasePluginV1Factory + function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external override onlyAdministrator { + AdaptiveFee.validateFeeConfiguration(newConfig); + defaultFeeConfiguration = newConfig; + emit DefaultFeeConfiguration(newConfig); + } + + /// @inheritdoc IBasePluginV1Factory + function setFarmingAddress(address newFarmingAddress) external override onlyAdministrator { + require(farmingAddress != newFarmingAddress); + farmingAddress = newFarmingAddress; + emit FarmingAddress(newFarmingAddress); + } +} diff --git a/src/plugin/contracts/interfaces/IAlgebraBasePluginALMFactory.sol b/src/plugin/contracts/interfaces/IAlgebraBasePluginALMFactory.sol new file mode 100644 index 000000000..2c4513cf5 --- /dev/null +++ b/src/plugin/contracts/interfaces/IAlgebraBasePluginALMFactory.sol @@ -0,0 +1,49 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +pragma solidity >=0.5.0; +pragma abicoder v2; + +import '@cryptoalgebra/integral-core/contracts/interfaces/plugin/IAlgebraPluginFactory.sol'; + +import '../base/AlgebraFeeConfiguration.sol'; + +/// @title The interface for the BasePluginV1Factory +/// @notice This contract creates Algebra default plugins for Algebra liquidity pools +interface IAlgebraBasePluginALMFactory is IAlgebraPluginFactory { + /// @notice Emitted when the default fee configuration is changed + /// @param newConfig The structure with dynamic fee parameters + /// @dev See the AdaptiveFee library for more details + event DefaultFeeConfiguration(AlgebraFeeConfiguration newConfig); + + /// @notice The hash of 'ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR' used as role + /// @dev allows to change settings of BasePluginV1Factory + function ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR() external pure returns (bytes32); + + /// @notice Returns the address of AlgebraFactory + /// @return The AlgebraFactory contract address + function algebraFactory() external view returns (address); + + /// @notice Current default dynamic fee configuration + /// @dev See the AdaptiveFee struct for more details about params. + /// This value is set by default in new plugins + function defaultFeeConfiguration() + external + view + returns (uint16 alpha1, uint16 alpha2, uint32 beta1, uint32 beta2, uint16 gamma1, uint16 gamma2, uint16 baseFee); + + /// @notice Returns address of plugin created for given AlgebraPool + /// @param pool The address of AlgebraPool + /// @return The address of corresponding plugin + function pluginByPool(address pool) external view returns (address); + + /// @notice Create plugin for already existing pool + /// @param token0 The address of first token in pool + /// @param token1 The address of second token in pool + /// @return The address of created plugin + function createPluginForExistingPool(address token0, address token1) external returns (address); + + /// @notice Changes initial fee configuration for new pools + /// @dev changes coefficients for sigmoids: α / (1 + e^( (β-x) / γ)) + /// alpha1 + alpha2 + baseFee (max possible fee) must be <= type(uint16).max and gammas must be > 0 + /// @param newConfig new default fee configuration. See the #AdaptiveFee.sol library for details + function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external; +} diff --git a/src/plugin/contracts/interfaces/plugins/IAlmPlugin.sol b/src/plugin/contracts/interfaces/plugins/IAlmPlugin.sol new file mode 100644 index 000000000..da8d88cdf --- /dev/null +++ b/src/plugin/contracts/interfaces/plugins/IAlmPlugin.sol @@ -0,0 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +pragma solidity >=0.5.0; + +// TODO: дописать интерфейс +interface IAlmPlugin { + +} diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol new file mode 100644 index 000000000..c2f1b2301 --- /dev/null +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -0,0 +1,984 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import '@cryptoalgebra/alm-vault/contracts/interfaces/IAlmVault.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/TickMath.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/FullMath.sol'; +import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; +import '@openzeppelin/contracts/utils/math/Math.sol'; + +import '../interfaces/plugins/IAlmPlugin.sol'; + +import '../base/AlgebraBasePlugin.sol'; + +// import 'hardhat/console.sol'; + +abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { + // result.currentTick = int24(0); // 0 + // result.currentPriceAccountingDecimals = 0; // 32 + // result.slowAvgPriceAccountingDecimals = 0; // 64 + // result.fastAvgPriceAccountingDecimals = 0; // 96 + // result.totalPairedInDeposit = 0; // 128 + // result.percentageOfDepositToken = 0; // 160 + // result.totalDepositToken = 0; // 192 + // result.totalPairedToken = 0; // 224 + // result.result.percentageOfDepositTokenUnused = 0; // 256 + // result.failedToObtainTWAP = False; // 288 + // result.sameBlock = False; // 320 + struct TwapResult { + uint256 currentPriceAccountingDecimals; + uint256 slowAvgPriceAccountingDecimals; + uint256 fastAvgPriceAccountingDecimals; + uint256 totalPairedInDeposit; + uint256 totalDepositToken; + uint256 totalPairedToken; + int24 currentTick; + uint16 percentageOfDepositTokenUnused; // 10000 = 100% + uint16 percentageOfDepositToken; // 10000 = 100% + bool failedToObtainTWAP; + bool sameBlock; + } + struct Ranges { + int24 baseLower; + int24 baseUpper; + int24 limitLower; + int24 limitUpper; + } + enum State { + OverInventory, + Normal, + UnderInventory, + Special + } + // этот статус можно офнуть + enum DecideStatus { + Normal, + Special, + PendingRebalanceNeeded, + NoNeed, + ToSoon, + NoNeedWithPending, + FailedToObtainTWAPOrExtremeVolatility + } + enum UpdateStatus { + Status0, + Status1 + } + + struct Thresholds { + uint16 depositTokenUnusedThreshold; // STORAGE[0xb] = 100 (1%) + uint16 simulate; // 9300 93% maybe for moving a position towards price without changing the config + uint16 normalThreshold; // 80% (for what? normal trigger?) + uint16 underInventoryThreshold; // STORAGE[0xf] = 7700 Probably means 77% for under-inventory (opposite of _simulate) + uint16 overInventoryThreshold; // STORAGE[0xd] = 9100 91% (over-inv trigger?) + uint16 priceChangeThreshold; // STORAGE[0x8] = 100, в коде если пендинг, то 100, а если не пендинг то 50 + uint16 extremeVolatility; // STORAGE[0x4] = 2500 (25%) + uint16 highVolatility; // STORAGE[0x5] = 500 (5%) + uint16 someVolatility; // STORAGE[0x6] = 100 (1%) + uint16 dtrDelta; // STORAGE[0x7] = 300 + uint16 baseLowPct; // STORAGE[0x1c] = 2000 + uint16 baseHighPct; // STORAGE[0x1d] = 1000 + uint16 limitReservePct; // STORAGE[0x1e] = 500 + } + + // TODO: не забыть у твап не падать, а возвращать false если не получилось взять его + // TODO: норм упаковать + address public vault; + bool public isAlmInitialized; + bool public paused; + bool public allowToken1; + State public state; + uint32 public lastRebalanceTimestamp; + uint256 public lastRebalanceCurrentPrice; + Thresholds public thresholds; + + address public pairedToken; // STORAGE[0x16] bytes 0 to 19 + uint8 public pairedTokenDecimals; // = 18 STORAGE[0x17] + address public depositToken; // STORAGE[0x18] bytes 0 to 19 + uint8 public depositTokenDecimals; // STORAGE[0x19] + uint8 public decimalsSum; // STORAGE[0x1a] // это че? (сумма decimals depositToken и pairedToken) а нахуя? + uint8 public tokenDecimals; // pairedTokenDecimals ? в чем отличие + uint32 public slowTwapPeriod; + uint32 public fastTwapPeriod; + + // TODO: наверное стоит не принимать миллард параметров, а упаковать в типа InitializeData + function initializeALM(address _vault, Thresholds memory _thresholds) public { + require(!isAlmInitialized, 'Already initialized'); + isAlmInitialized = true; + // TODO: добавить require'ов + vault = _vault; + paused = false; + + bool _allowToken1 = IAlmVault(vault).allowToken1(); + + allowToken1 = _allowToken1; + state = State.OverInventory; // поч overinventory? + lastRebalanceTimestamp = 0; + lastRebalanceCurrentPrice = 0; + thresholds = _thresholds; + + address token0 = IAlmVault(_vault).token0(); + address token1 = IAlmVault(_vault).token1(); + + address _pairedToken = _allowToken1 ? token0 : token1; + pairedToken = _pairedToken; + uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); + // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); + pairedTokenDecimals = _pairedTokenDecimals; + + address _depositToken = _allowToken1 ? token1 : token0; + depositToken = _depositToken; + uint8 _depositTokenDecimals = _getDepositTokenDecimals(); + depositTokenDecimals = _depositTokenDecimals; + // console.log('_depositTokenDecimals: ', _depositTokenDecimals); + + decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; + // console.log('decimals sum: ', decimalsSum); + tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; + } + + function setPriceChangeThreshold(uint16 _priceChangeThreshold) external { + _authorize(); + require(_priceChangeThreshold < 10000, 'Invalid price change threshold'); + thresholds.priceChangeThreshold = _priceChangeThreshold; + // нужно эмитить ивент? + } + + function setPercentages(uint16 _baseLowPct, uint16 _baseHighPct, uint16 _limitReservePct) external { + _authorize(); + require(_baseLowPct >= 100 && _baseLowPct <= 10000, 'Invalid base low percent'); + require(_baseHighPct >= 100 && _baseHighPct <= 10000, 'Invalid base high percent'); + require(_limitReservePct >= 100 && _baseLowPct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); + thresholds.baseLowPct = _baseLowPct; + thresholds.baseHighPct = _baseHighPct; + thresholds.limitReservePct = _limitReservePct; + } + + function setTriggers(uint16 _simulate, uint16 _normalThreshold, uint16 _underInventoryThreshold, uint16 _overInventoryThreshold) external { + _authorize(); + require(_underInventoryThreshold > 6000, '_underInventoryThreshold must be > 6000'); + require(_normalThreshold > _underInventoryThreshold, '_normalThreshold must be > _underInventoryThreshold'); + require(_overInventoryThreshold > _normalThreshold, '_overInventoryThreshold must be > _normalThreshold'); + require(_simulate > _overInventoryThreshold, 'Simulate must be > _overInventoryThreshold'); + require(_simulate < 9500, 'Simulate must be < 9500'); + thresholds.simulate = _simulate; + thresholds.normalThreshold = _normalThreshold; + thresholds.underInventoryThreshold = _underInventoryThreshold; + thresholds.overInventoryThreshold = _overInventoryThreshold; + } + + function setDtrDelta(uint16 _dtrDelta) external { + _authorize(); + require(_dtrDelta <= 10000, '_dtrDelta must be <= 10000'); + thresholds.dtrDelta = _dtrDelta; + } + + function setHighVolatility(uint16 _highVolatility) external { + _authorize(); + require(_highVolatility >= thresholds.someVolatility, '_highVolatility must be >= someVolatility'); + thresholds.highVolatility = _highVolatility; + } + + function setSomeVolatility(uint16 _someVolatility) external { + _authorize(); + require(_someVolatility <= 300, '_someVolatility must be <= 300'); + thresholds.someVolatility = _someVolatility; + } + + function setExtremeVolatility(uint16 _extremeVolatility) external { + _authorize(); + require(_extremeVolatility >= thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); + thresholds.extremeVolatility = _extremeVolatility; + } + + function setDepositTokenUnusedThreshold(uint16 _depositTokenUnusedThreshold) external { + _authorize(); + require(_depositTokenUnusedThreshold >= 100 && _depositTokenUnusedThreshold <= 10000, '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); + thresholds.depositTokenUnusedThreshold = _depositTokenUnusedThreshold; + } + + function setSlowTwapPeriod(uint32 _slowTwapPeriod) external { + _authorize(); + require(_slowTwapPeriod >= fastTwapPeriod, '_slowTwapPeriod must be >= fastTwapPeriod'); + slowTwapPeriod = _slowTwapPeriod; + } + + function setFastTwapPeriod(uint32 _fastTwapPeriod) external { + _authorize(); + require(_fastTwapPeriod <= slowTwapPeriod, '_fastTwapPeriod must be <= slowTwapPeriod'); + fastTwapPeriod = _fastTwapPeriod; + } + + function setVault(address _vault) external { + _authorize(); + vault = _vault; + } + + function _rebalance(TwapResult memory obtainTWAPsResult) internal { + // require(!paused, 'Pausable: paused'); + if (paused) return; + if (vault == address(0)) return; + + (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); + // console.log('rebalance entered'); + // console.log('decide status: ', uint256(decideStatus)); + // console.log('newState: ', uint256(newState)); + + // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала + // require(decideStatus != DecideStatus.NoNeed, "no need"); + // require(decideStatus != DecideStatus.ToSoon, "too soon"); + if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.ToSoon) return; + + if (decideStatus != DecideStatus.PendingRebalanceNeeded) { + if (decideStatus != DecideStatus.NoNeedWithPending) { + if (decideStatus != DecideStatus.FailedToObtainTWAPOrExtremeVolatility) { + Ranges memory ranges = decideStatus == DecideStatus.Normal + ? _getRangesWithState(newState, obtainTWAPsResult) + : _getRangesWithoutState(obtainTWAPsResult); + + // struct Ranges { + // int24 baseLower; + // int24 baseUpper; + // int24 limitLower; + // int24 limitUpper; + // } + // console.log('RANGES START'); + // console.logInt(ranges.baseLower); + // console.logInt(ranges.baseUpper); + // console.logInt(ranges.limitLower); + // console.logInt(ranges.limitUpper); + // console.log('RANGES END'); + + // require(ranges.baseUpper - ranges.baseLower > 300 && + // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + + // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) + // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); + + // TODO: swapquantity ? + try IAlmVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 1) { + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + } catch { + state = State.Special; + _pause(); + } + } else { + IAlmVault(vault).setDepositMax(0, 0); + // pendingRebalanceTimestamp = 0; + state = State.Special; + _pause(); + } + } else { + // pendingRebalanceTimestamp = 0; + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + } + } else { + // pendingRebalanceTimestamp = _blockTimestamp(); + } + + // чекируем decideStatus + // если нужен ребаланс + // вызываем getrangeswithstate или getRangesWithoutState, получаем ренжи + // IAlmVault(vault).rebalance(ranges.tick1, ranges.tick2, ....); + } + + function _obtainTWAPs( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) internal view returns (TwapResult memory twapResult) { + // достать проценты, хуенты + // достать резервы токенычей + // собрать TwapResult + + // struct TwapResult { + // uint256 currentPriceAccountingDecimals; done + // uint256 slowAvgPriceAccountingDecimals; done + // uint256 fastAvgPriceAccountingDecimals; done + // uint256 totalPairedInDeposit; done + // uint256 totalDepositToken; done + // uint256 totalPairedToken; done + // int24 currentTick; done + // uint16 percentageOfDepositTokenUnused; // 10000 = 100% done + // uint16 percentageOfDepositToken; // 10000 = 100% done + // bool failedToObtainTWAP; // всегда false прост done + // bool sameBlock; done + // } + + // console.log('entered obtain twaps'); + twapResult.failedToObtainTWAP = failedToObtainTWAP; + if (failedToObtainTWAP) { + return twapResult; + } + + twapResult.currentTick = currentTick; + twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; + bool _allowToken1 = allowToken1; + if (_allowToken1) { + // почему они эту строку наверх не вынесли? + (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); + twapResult.totalPairedToken = amount0; + twapResult.totalDepositToken = amount1; + } else { + (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); + twapResult.totalPairedToken = amount1; + twapResult.totalDepositToken = amount0; + } + // console.log('after getTotalAmounts obtain twaps'); + + address _depositToken = depositToken; + address _pairedToken = pairedToken; + + uint8 _pairedTokenDecimals = pairedTokenDecimals; + + (uint256 slowPrice, uint256 fastPrice, uint256 currentPriceAccountingDecimals) = _getTwapPrices( + _depositToken, + _pairedToken, + _pairedTokenDecimals, + slowTwapTick, + fastTwapTick, + twapResult.currentTick + ); + twapResult.slowAvgPriceAccountingDecimals = slowPrice; + twapResult.fastAvgPriceAccountingDecimals = fastPrice; + + // uint256 slowPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick); + // twapResult.slowAvgPriceAccountingDecimals = slowPrice; + // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); + // twapResult.fastAvgPriceAccountingDecimals = fastPrice; + + // console.log('2'); + + // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); + // console.log('2.5'); + twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; + uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; + uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); + twapResult.totalPairedInDeposit = totalPairedInDeposit; + + // console.log('3'); + + if (totalPairedInDeposit == 0) { + twapResult.percentageOfDepositToken = 10000; + } else { + uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + // // console.log("totalTokensAmount: ", totalTokensAmount); + if (totalTokensAmount == 0) { + twapResult.failedToObtainTWAP = true; + return twapResult; + } + // uint256 totalDepositTokenMultipliedByFactor = 10000 * twapResult.totalDepositToken; + uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); + twapResult.percentageOfDepositToken = percentageOfDepositToken; + } + + // console.log('4'); + + uint256 depositTokenBalance = _getDepositTokenVaultBalance(); + // console.log('depositTokenBalance: ', depositTokenBalance); + + if (depositTokenBalance > 0) { + uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; + // че за v42 и v43, надо чекнуть первоначальный декомпайл + // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) + twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); + } else { + // че за v44 + // v42 = v44 = 0; + twapResult.percentageOfDepositTokenUnused = 0; + } + } + + function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { + // тут мы более глобально чекаем, получилось ли достать твап, какая ща волатильность + // куча куча ифов, в итоге в одном из случаев вызываем + // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff + // UpdateStatus updStatus = _updateStatus(twapResult); + if (twapResult.failedToObtainTWAP) { + return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + } + + uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); + uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); + // console.log('fastSlowDiff: ', fastSlowDiff); + // console.log('fastCurrentDiff: ', fastCurrentDiff); + + bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; + if (!isExtremeVolatility) { + bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; + if (!isHighVolatility) { + if ( + !((state == State.OverInventory || state == State.Normal) && + lastRebalanceCurrentPrice != 0 && + twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) + ) { + (bool needToRebalance, State newState) = _updateStatus(twapResult); + // console.log('needToRebalance: ', needToRebalance); + // console.log('newState: ', uint256(newState)); + // needToRebalance = true; + // newState = State.Normal; + if (needToRebalance) { + if (fastCurrentDiff < thresholds.someVolatility) { + // console.log('fastCurrentDiff < thresholds.someVolatility'); + return (DecideStatus.Normal, newState); // normal rebalance + } else { + return (DecideStatus.ToSoon, newState); // too soon + } + } else { + return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) + } + } else { + // State == NORMAL || OVER + // И Это не первый ребаланс + // И percentageOfDepositToken меньше чем _underInventoryPct - _dtrDelta (??) - значит очень мало депозит токенов, то: + // ----> переходим дальше в итоге выставляя status = SPECIAL + // тут как будто ничо не происходит + // типа тут сетятся v19, v21, v23, v25 + // но дальше с ними ничо не происходит + // только в гносис записываем v23, который итак равен гносису + // v19 = v20 = 21; + // v21 = v22 = 3; + // v23 = v24 = bytes31(_gnosis); + // v25 = v26 = 1; + } + } else { + // handle high volatility + // Если fastSlowDiff >= _highVolatility ИЛИ fastCurrentDiff => _highVolatility (5%), то считаем, что сейчас высокая волатильность. + if (state != State.Special) { + // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается + + if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { + // Если fastCurrentDiff >= _someVolatility (low? - 1%): + // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается + return (DecideStatus.ToSoon, State.Special); + } else { + // Иначе ------> переходим дальше в итоге выставляя status = SPECIAL + // то же самое, как будто нихуя не происходит + // v19 = v30 = 21; + // v21 = v31 = 3; + // v23 = v32 = bytes31(_gnosis); + // v25 = v33 = 1; + } + } else { + // special -> noneed + return (DecideStatus.NoNeed, State.Special); + } + } + state = State.Special; + // какой-то спешл кейс, из-за него вызывается rebalanceWithoutState + return (DecideStatus.Special, State.Special); // выяснить чо он означает + } else { + // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается + return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + } + } + + function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { + // тут мы сравниваем уже все проценты и решаем в какой стейт мы будем рабаланситься (и будем ли вообще) + // вычисления на оснвое twapResult, сохранение результата в сторадж, видимо нужно из-за двухэтапной ребалансировки (можно ли объединить в одну функцию?) + // внутри вызываетя вспомогательная функция _calcPercentageDiff + // v0 = state == 3 ? true : !lastRebalanceCurrentPrice + if (state != State.Special && lastRebalanceCurrentPrice != 0) { + if (state != State.Normal) { + if (state != State.OverInventory) { + if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + // if less than 93% + // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); + if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { + // if greater than 80% (REBALANCE TO NORMAL) + // sqrtStatus = 1; + // state == UnderInventory || state == Special + // 80% <= twapResult.percentageOfDepositToken <= 93% + // типа из андеринветори или спешл ребалансим в НОРМАЛ + return (true, State.Normal); + } else { + return (true, State.UnderInventory); + } + } else { + // sqrtStatus = 1; + // state == UnderInventory || state == Special + // twapResult.percentageOfDepositToken >= 93% + return (true, State.OverInventory); + } + } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + // if greater than 77% + if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { + // if less than 91% (REBALANCE TO NORMAL) + // sqrtStatus = 1; + // state == OverInventory + // 77% <= twapResult.percentageOfDepositToken <= 91% + // типа из оверинвентори в НОРМАЛ + return (true, State.Normal); + } + // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) + else { + return (true, State.OverInventory); + } + } else { + // state == OverInventory + // twapResult.percentageOfDepositToken <= 77% + // из оверинвентори хуячимся в андеринвентори + return (true, State.UnderInventory); + } + + // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) + uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals + // console.log('priceChange: ', priceChange); + if (priceChange > thresholds.priceChangeThreshold) { + // CASES: + // 1. we are still under-inventory and price changed by more than (1/0.5)% + // 2. we are still over-inventory and price changed by more than (1/0.5)% + + // console.log('priceChange > thresholds.priceChangeThreshold'); + return (true, state); + } + } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + if (twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold) { + // state == Normal + // twapResult.percentageOfDepositToken < 77% <= 93 % + return (true, State.UnderInventory); + } + } else { + // state == Normal + // twapResult.percentageOfDepositToken > 93% + return (true, State.OverInventory); + } + + if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { + // if less than 1% + // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); + return (false, State.Normal); // no rebalance needed + } else { + // CASES: + // 1. state == Normal and 75% < twapResult.percentageOfDepositToken < 93% + return (true, state); + } + } else { + if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + // if less than 93% + if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + // if greater than 77% (REBALANCE TO NORMAL) + // state == Special OR not lastRebalanceCurrentPrice + // 77% <= twapResult.percentageOfDepositToken <= 93% + return (true, State.Normal); + } else { + // state == Special OR not lastRebalanceCurrentPrice + // twapResult.percentageOfDepositToken <= 77% + return (true, State.UnderInventory); + } + } else { + // state == Special OR not lastRebalanceCurrentPrice + // twapResult.percentageOfDepositToken > 93% + return (true, State.OverInventory); + } + } + + // сюда по идее никогда не попадаем (точно??) точно + return (false, State.Normal); + } + + function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { + // scope to prevent stack too deep + { + // console.log('entered _getRangesWithState'); + // State _state = state; + bool _allowToken1 = allowToken1; + int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); + uint8 _tokenDecimals = tokenDecimals; + + (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); + // console.log('upperPriceBound: ', upperPriceBound); + // console.log('targetPrice: ', targetPrice); + // console.log('lowerPriceBound: ', lowerPriceBound); + + int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); + bool currentTickIsRound = roundedTick == twapResult.currentTick; + + int24 commonTick; + int24 tickForLowerPrice; + if (newState == State.Normal) { + // If HEALTHY status (NORMAL) use target price + // тут targetPrice без decimals (если deposittoken = token0) + // и с decimals если deposittoken = token1, без X96 или X192 + int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); + // console.log('targetTick'); + // console.logInt(targetTick); + commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); + } else { + // console.log('entered else in newState == State.Normal'); + commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); + } + + int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); + // console.log('upperTick'); + // console.logInt(upperTick); + int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); + // console.log('tickForHigherPrice'); + // console.logInt(tickForHigherPrice); + + if (lowerPriceBound == 0) { + // Under-inventory state probably + // if depositToken == token0, надо бы это в сторадж наверное засунуть + // console.log('entered lowerPriceBound == 0'); + int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; + tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing + } else { + int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); + tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); + } + if (!_allowToken1) { + // if deposittoken == token0 + // console.log('TICKS'); + // console.logInt(int24(commonTick)); + // console.logInt(int24(tickForLowerPrice)); + // console.logInt(int24(tickForHigherPrice)); + // console.logInt(int24(commonTick)); + // console.log('TICKS END'); + ranges.baseLower = int24(commonTick); + ranges.baseUpper = int24(tickForLowerPrice); + ranges.limitLower = int24(tickForHigherPrice); + ranges.limitUpper = int24(commonTick); + + // if (varg0 != 2) { + // v19 = 0x437d(int24(_gnosis >> 176), 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27618); + // v18.word2 = int24(v19); + // } + // assert(varg0 <= 3); + // if (varg0 == 2) { + // if (v4) { + // v20 = v21 = MEM[varg1]; + // } else { + // v20 = v22 = v18.word0; + // } + // v18.word0 = int24(v20); + // if (v4) { + // v23 = v24 = MEM[varg1] - int24(_gnosis >> 176); + // } else { + // v23 = v25 = v18.word3; + // } + // v18.word3 = int24(v23); + // } + + if (newState != State.UnderInventory) { + // if not under-inventory + // we do not use v16 because if Token0 then we reverse the structure of ticks + int24 roundedMinTick = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); + ranges.limitLower = int24(roundedMinTick); // use MIN tick + } else { + // if under-inventorys + ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; // if tick is round set currentTick (useless operation?) + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; // tick - tick spacing if round (avoid having the same tick if its round??) + } + + if (newState == State.OverInventory) { + // if over-inventory + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.limitUpper; + ranges.baseLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.baseLower; + ranges.baseUpper = int24(ranges.baseUpper + _tickSpacing); + } + } else { + ranges.baseLower = int24(tickForLowerPrice); + ranges.baseUpper = int24(commonTick); + ranges.limitLower = int24(commonTick); + ranges.limitUpper = int24(tickForHigherPrice); + + if (newState != State.UnderInventory) { + ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); + } + + if (lowerPriceBound > 0 && newState != State.OverInventory) { + ranges.baseLower = int24(ranges.baseLower + _tickSpacing); + } + + if (newState == State.Normal) { + ranges.baseUpper = int24(_tickSpacing + ranges.baseUpper); + ranges.limitLower = int24(_tickSpacing + ranges.limitLower); + } + + if (newState == State.UnderInventory) { + ranges.baseUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.baseUpper; + ranges.limitLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.limitLower; + } + + if (newState == State.OverInventory) { + ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; + ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; + } + } + } + // просто возвращаем? (НЕ ПРОСТО ОКАЗЫВАЕТСЯ ВОЗВРАЩАЕМ) + // TODO: пофиксить stackTooDeep + if (newState == State.OverInventory) { + (ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper) = ( + ranges.limitLower, + ranges.limitUpper, + ranges.baseLower, + ranges.baseUpper + ); + // v49.word0 = int24(MEM[64 + v17]); + // v49.word1 = int24(MEM[96 + v17]); + // v49.word2 = int24(MEM[v17]); + // v49.word3 = int24(MEM[32 + v17]); + } + } + + function _getRangesWithoutState(TwapResult memory twapResult) internal view returns (Ranges memory ranges) { + // возвращает что-то типа + // result.baseLower = currentTick + // result.baseUpper = maxUpperTick + // result.limitLower = minLowerTick + // result.limitUpper = currentTick - tickSpacing + + int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); + bool _allowToken1 = allowToken1; + + // внутри юзается roundTickToTickSpacingCondigeringNegative, roundTickToTickSpacing + int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); + int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); + // console.log('ticks in _getRangesWithoutState'); + // console.logInt(tickRoundedDown); + // console.logInt(tickRounded); + + if (!_allowToken1) { + if (twapResult.currentTick == tickRounded) { + tickRoundedDown = twapResult.currentTick; + } + + ranges.baseLower = tickRoundedDown; + int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick + ranges.baseUpper = maxTickRounded; + int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); // round MinLowerTick + ranges.limitLower = minTickRounded; + if (twapResult.currentTick == tickRounded) { + tickRoundedDown = twapResult.currentTick - _tickSpacing; + } + ranges.limitUpper = tickRoundedDown; + } else { + int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); + ranges.baseLower = minTickRounded; + + if (twapResult.currentTick == tickRounded) { + ranges.baseUpper = twapResult.currentTick; + } else { + ranges.baseUpper = tickRoundedDown + _tickSpacing; + } + + if (twapResult.currentTick == tickRounded) { + ranges.limitLower = _tickSpacing + twapResult.currentTick; + } else { + ranges.limitLower = tickRoundedDown + _tickSpacing; + } + int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick + ranges.limitUpper = maxTickRounded; + } + } + + // поч uint128? поч uint256? + // потому что это не decimals, а 10 ** decimals + function _getPriceAccountingDecimals( + address token0, + address token1, + uint128 token1decimals, + /*uint256*/ int24 averageTick + ) private pure returns (uint256 price) { + uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); + if (uint160(sqrtPriceX96) > type(uint128).max) { + uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); + return + token1 < token0 + ? FullMath.mulDiv(priceX128, token1decimals, uint256(type(uint128).max) + 1) + : FullMath.mulDiv(uint256(type(uint128).max) + 1, token1decimals, priceX128); + } else { + // console.log(token0, token1); + // console.log(token1decimals); + // console.logInt(int256(averageTick)); + // console.log(sqrtPriceX96); + // console.log(token1 < token0); + // if (token1 < token0) { + // v5 = v6 = MulDiv(uint192.max + 1, token1decimals, uint160(sqrtPrice96) * uint160(sqrtPrice96)); + // } else { + // v5 = v7 = MulDiv(uint160(sqrtPrice96) * uint160(sqrtPrice96), token1decimals, uint192.max + 1); + // } + return + token1 < token0 + ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, type(uint192).max + 1) + : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); + } + } + + // как будто у там эти функци вообще не нужны, мы берем твап из бейз плагина, не делаем лишних коллов + // // пока не очень понятно как она работает и что возвращает + // // TODO: реализовать getTwapMaybe, внутри вызывается только getTimepoints у пула + // function _getTWAPMaybe(uint256 secondsAgo, address pool) private { + + // } + + // // пока не очень понятно как она работает и что возвращает + // // TODO: реализовать getTwap, внутри вызывается только getTimepoints у пула + // function _getTWAP(uint32 varg0, address varg1) private { + + // } + + // function _getDepositTokenDecimals() internal virtual view returns (uint8) { + // return IERC20Metadata(depositToken).decimals(); + // } + + // function _getPairedTokenDecimals() internal virtual view returns (uint8) { + // return IERC20Metadata(depositToken).decimals(); + // } + + function _getTwapPrices( + address _depositToken, + address _pairedToken, + uint8 _pairedTokenDecimals, + int24 slowTwapTick, + int24 fastTwapTick, + int24 currentTick + ) internal view virtual returns (uint256, uint256, uint256) { + return ( + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick), + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick), + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), currentTick) + ); + } + + function _getPairedTokenDecimals() internal view virtual returns (uint8) { + return IERC20Metadata(pairedToken).decimals(); + } + + function _getDepositTokenDecimals() internal view virtual returns (uint8) { + return IERC20Metadata(depositToken).decimals(); + } + + function _getDepositTokenVaultBalance() internal view virtual returns (uint256) { + return IERC20Metadata(depositToken).balanceOf(vault); + } + + function _calcPercentageDiff(uint256 a, uint256 b) private pure returns (uint256) { + return b > a ? ((b - a) * 10000) / b : ((a - b) * 10000) / a; + } + + function roundTickToTickSpacing(int24 _tickSpacing, int24 _tick) private pure returns (int24) { + return (_tick / _tickSpacing) * _tickSpacing; + } + + function roundTickToTickSpacingConsideringNegative(int24 _tickSpacing, int24 _tick) private pure returns (int24) { + int24 roundedTick = roundTickToTickSpacing(_tickSpacing, _tick); + if (_tick < 0) { + return roundedTick - _tickSpacing; + } else { + return roundedTick; + } + } + + // upper target lower + function _getPriceBounds(State _state, TwapResult memory twapResult, bool _allowToken1) private view returns (uint256, uint256, uint256) { + uint256 targetPrice = twapResult.currentPriceAccountingDecimals; + // тут чтобы убрать require нужно тогда прокидывать, видимо + require(targetPrice != 0, 'middlePrice must be > 0'); + require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); + // if (targetPrice == 0 || twapResult.totalDepositToken == 0) return (0, 0, 0); + + uint256 lowerPriceBound = 0; + if (_state != State.UnderInventory) { + // if not under-inventory (because if under - we place lower as Min) + // v4 = _calcPart(baseLowPct, twapResult.currentPriceAccountingDecimals); // 20% of currentPriceAccountingDecimals + // v2 = v5 = _SafeSub(v4, v1); // lower price bound (-20%) + // currentPrice - 20% (почему не сделать twapResult.currentPriceAccountingDecimals * 0.8?) + // console.log('baselowpct: ', thresholds.baseLowPct); + lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); + } + // v6 = _calcPart(baseHighPct, v1); // 10% of currentPriceAccountingDecimals + // v7 = v8 = _SafeAdd(v6, v1); // upper price bound (+10%) + // currentPriceAccountingDecimals + 10% + uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); + // console.log('targetPrice: ', targetPrice); + // console.log('upperPriceBound: ', upperPriceBound); + + // console.log('state????: ', uint256(_state)); + if (_state == State.Normal) { + // console.log('mi tut???'); + // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); + // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); + uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 + // console.log('limitReservePct: ', thresholds.limitReservePct); + // console.log('partOfTotalTokens: ', partOfTotalTokens); + // TODO: убрать этот require + require(twapResult.totalPairedInDeposit > partOfTotalTokens, 'not enough quote token'); + uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; + uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess + uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; + if (excessCoef != 0) { + targetPrice += _calcPart(excessCoef, targetPrice); + } + } + // ета залупа в каком случае срабатывает? (!allowToken1 -> depositToken = Token0) + // как связано какой депозит токен и то, убираем ли мы decimals или нет? + // console.log('targetPrice before remove decimals: ', targetPrice); + // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); + // console.log('upperPriceBound before remove decimals: ', upperPriceBound); + // console.log('decimalsSum: ', decimalsSum); + // console.log(_allowToken1); + if (!_allowToken1) { + // console.log('??????'); + targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice + lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound + upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound + // console.log('targetPrice after remove decimals: ', targetPrice); + // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); + // console.log('upperPriceBound after remove decimals: ', upperPriceBound); + } + + return (upperPriceBound, targetPrice, lowerPriceBound); + } + + function _calcPart(uint256 base, uint256 part) private pure returns (uint256) { + return (base * part) / 10000; + } + + function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { + // console.log('amount: ', amount); + // console.log('decimals: ', decimals); + return amount != 0 ? (10 ** decimals) / amount : amount; + } + + function _pause() private { + paused = true; + } + + function unpause() public payable /* onlyowner */ { + paused = false; + } + + function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { + uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); + return TickMath.getTickAtSqrtRatio(sqrtPriceX96); + } + + function getSqrtPriceX96(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + // price мы получаем из getRangesWithState, а там мы можем получить + // если state == normal, то без decimals, а если не normal, то с decimals + // и типа если price >= 10 ** tokenDecimals, то мы получили цену с decimals (ну и ХУЕТА) + // console.log(_price >= 10 ** _tokenDecimals); + return + _price >= 10 ** _tokenDecimals + ? getSqrtPriceX96FromPriceWithDecimals(_tokenDecimals, _price) + : getSqrtPriceX96FromPriceWithoutDecimals(_tokenDecimals, _price); + } + + function getSqrtPriceX96FromPriceWithDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + return uint160((Math.sqrt(_price) << 96) / Math.sqrt(10 ** _tokenDecimals)); + } + + function getSqrtPriceX96FromPriceWithoutDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + return uint160(Math.sqrt((_price << 192) / 10 ** _tokenDecimals)); + } +} diff --git a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol index 5ac9cb8de..d401f61ca 100644 --- a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol +++ b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol @@ -114,4 +114,35 @@ abstract contract VolatilityOraclePlugin is AlgebraBasePlugin, IVolatilityOracle VolatilityOracle.Timepoint memory lastTimepoint = timepoints[timepointIndex]; return lastTimepoint.tick; } + + function _getLastBlockTimestamp() internal view returns (uint32 blockTimestamp) { + VolatilityOracle.Timepoint memory lastTimepoint = timepoints[timepointIndex]; + return lastTimepoint.blockTimestamp; + } + + // норм что перенес? если да, то надо бы сделать функцию external которая получает timeWeightedAverageTick и поменять OracleLibrary.consult + function _getTwapTick(uint32 period) internal view returns (int24 timeWeightedAverageTick) { + require(period != 0, 'Period is zero'); + + uint32[] memory secondAgos = new uint32[](2); + secondAgos[0] = period; + secondAgos[1] = 0; + + (, int24 tick, , ) = _getPoolState(); + (int56[] memory tickCumulatives, ) = timepoints.getTimepoints(_blockTimestamp(), secondAgos, tick, timepointIndex); + + int56 tickCumulativesDelta = tickCumulatives[1] - tickCumulatives[0]; + + timeWeightedAverageTick = int24(tickCumulativesDelta / int56(uint56(period))); + + // Always round to negative infinity + if (tickCumulativesDelta < 0 && (tickCumulativesDelta % int56(uint56(period)) != 0)) timeWeightedAverageTick--; + } + + function _ableToGetTimepoints(uint32 period) internal view returns (bool) { + uint16 lastIndex = timepoints.getOldestIndex(timepointIndex); + uint32 oldestTimestamp = timepoints[lastIndex].blockTimestamp; + + return VolatilityOracle._lteConsideringOverflow(oldestTimestamp, _blockTimestamp() - period, _blockTimestamp()); + } } diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol new file mode 100644 index 000000000..a0cfa49cf --- /dev/null +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol @@ -0,0 +1,13 @@ +// SPDX-License-Identifier: UNLICENSED +pragma solidity =0.8.20; + +import '../AlgebraBasePluginALM.sol'; + +contract MockAlgebraBasePluginALM is AlgebraBasePluginALM { + constructor( + address _pool, + address _factory, + address _pluginFactory, + AlgebraFeeConfiguration memory _config + ) AlgebraBasePluginALM(_pool, _factory, _pluginFactory, _config) {} +} diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol new file mode 100644 index 000000000..05aa89d09 --- /dev/null +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol @@ -0,0 +1,61 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import './MockAlgebraBasePluginALM.sol'; + +import '../interfaces/IAlgebraBasePluginALMFactory.sol'; + +import '@cryptoalgebra/integral-core/contracts/interfaces/plugin/IAlgebraPluginFactory.sol'; + +contract MockAlgebraBasePluginALMFactory is IAlgebraBasePluginALMFactory { + /// @inheritdoc IAlgebraBasePluginALMFactory + bytes32 public constant override ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR = keccak256('ALGEBRA_BASE_PLUGIN_FACTORY_ADMINISTRATOR'); + + address public immutable override algebraFactory; + + /// @dev values of constants for sigmoids in fee calculation formula + AlgebraFeeConfiguration public override defaultFeeConfiguration; + + /// @inheritdoc IAlgebraBasePluginALMFactory + mapping(address => address) public override pluginByPool; + + constructor(address _algebraFactory) { + algebraFactory = _algebraFactory; + } + + /// @inheritdoc IAlgebraPluginFactory + function beforeCreatePoolHook(address pool, address, address, address, address, bytes calldata) external override returns (address) { + return _createPlugin(pool); + } + + /// @inheritdoc IAlgebraPluginFactory + function afterCreatePoolHook(address, address, address) external view override { + require(msg.sender == algebraFactory); + } + + function createPluginForExistingPool(address token0, address token1) external override returns (address) { + IAlgebraFactory factory = IAlgebraFactory(algebraFactory); + require(factory.hasRoleOrOwner(factory.POOLS_ADMINISTRATOR_ROLE(), msg.sender)); + + address pool = factory.poolByPair(token0, token1); + require(pool != address(0), 'Pool not exist'); + + return _createPlugin(pool); + } + + function setPluginForPool(address pool, address plugin) external { + pluginByPool[pool] = plugin; + } + + function _createPlugin(address pool) internal returns (address) { + MockAlgebraBasePluginALM plugin = new MockAlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration); + pluginByPool[pool] = address(plugin); + return address(plugin); + } + + function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external override { + AdaptiveFee.validateFeeConfiguration(newConfig); + defaultFeeConfiguration = newConfig; + emit DefaultFeeConfiguration(newConfig); + } +} diff --git a/src/plugin/hardhat.config.ts b/src/plugin/hardhat.config.ts index de15963bf..37252cdf3 100644 --- a/src/plugin/hardhat.config.ts +++ b/src/plugin/hardhat.config.ts @@ -72,7 +72,7 @@ export default { outDir: 'typechain', }, solidity: { - compilers: [HIGHEST_OPTIMIZER_COMPILER_SETTINGS], + compilers: [LOWEST_COMPILER_SETTINGS], }, docgen: { outputDir: '../../docs/Contracts/Plugin', diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts new file mode 100644 index 000000000..32545f5d8 --- /dev/null +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -0,0 +1,780 @@ +import { Wallet, ZeroAddress } from 'ethers'; +import { ethers } from 'hardhat'; +import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'; +import checkTimepointEquals from './shared/checkTimepointEquals'; +import { expect } from './shared/expect'; +import { TEST_POOL_START_TIME, pluginFixture } from './shared/fixtures'; +import { PLUGIN_FLAGS, encodePriceSqrt, expandTo18Decimals, getMaxTick, getMinTick } from './shared/utilities'; + +import { MockPool, MockTimeAlgebraBasePluginV1, MockTimeDSFactory, MockTimeVirtualPool } from '../typechain'; + +import snapshotGasCost from './shared/snapshotGasCost'; + +describe('AlgebraBasePluginV1', () => { + let wallet: Wallet, other: Wallet; + + let plugin: MockTimeAlgebraBasePluginV1; // modified plugin + let mockPool: MockPool; // mock of AlgebraPool + let mockPluginFactory: MockTimeDSFactory; // modified plugin factory + + let minTick = getMinTick(60); + let maxTick = getMaxTick(60); + + async function initializeAtZeroTick(pool: MockPool) { + await pool.initialize(encodePriceSqrt(1, 1)); + } + + before('prepare signers', async () => { + [wallet, other] = await (ethers as any).getSigners(); + }); + + beforeEach('deploy test AlgebraBasePluginV1', async () => { + ({ plugin, mockPool, mockPluginFactory } = await loadFixture(pluginFixture)); + }); + + describe('#Initialize', async () => { + it('cannot initialize twice', async () => { + await mockPool.setPlugin(plugin); + await initializeAtZeroTick(mockPool); + + await expect(plugin.initialize()).to.be.revertedWith('Already initialized'); + }); + + it('cannot initialize detached plugin', async () => { + await initializeAtZeroTick(mockPool); + await expect(plugin.initialize()).to.be.revertedWith('Plugin not attached'); + }); + + it('cannot initialize if pool not initialized', async () => { + await mockPool.setPlugin(plugin); + await expect(plugin.initialize()).to.be.revertedWith('Pool is not initialized'); + }); + + it('can initialize for existing pool', async () => { + await initializeAtZeroTick(mockPool); + await mockPool.setPlugin(plugin); + await plugin.initialize(); + + const timepoint = await plugin.timepoints(0); + expect(timepoint.initialized).to.be.true; + }); + + it('can not write to uninitialized oracle', async () => { + await initializeAtZeroTick(mockPool); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(1); // BEFORE_SWAP_FLAG + + await expect(mockPool.swapToTick(5)).to.be.revertedWith('Not initialized'); + }); + }); + + // plain tests for hooks functionality + describe('#Hooks', () => { + it('only pool can call hooks', async () => { + const errorMessage = 'Only pool can call this'; + await expect(plugin.beforeInitialize(wallet.address, 100)).to.be.revertedWith(errorMessage); + await expect(plugin.afterInitialize(wallet.address, 100, 100)).to.be.revertedWith(errorMessage); + await expect(plugin.beforeModifyPosition(wallet.address, wallet.address, 100, 100, 100, '0x')).to.be.revertedWith(errorMessage); + await expect(plugin.afterModifyPosition(wallet.address, wallet.address, 100, 100, 100, 100, 100, '0x')).to.be.revertedWith(errorMessage); + await expect(plugin.beforeSwap(wallet.address, wallet.address, true, 100, 100, false, '0x')).to.be.revertedWith(errorMessage); + await expect(plugin.afterSwap(wallet.address, wallet.address, true, 100, 100, 100, 100, '0x')).to.be.revertedWith(errorMessage); + await expect(plugin.beforeFlash(wallet.address, wallet.address, 100, 100, '0x')).to.be.revertedWith(errorMessage); + await expect(plugin.afterFlash(wallet.address, wallet.address, 100, 100, 100, 100, '0x')).to.be.revertedWith(errorMessage); + }); + + describe('not implemented hooks', async () => { + let defaultConfig: bigint; + + beforeEach('connect plugin to pool', async () => { + defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + }); + + it('resets config after beforeModifyPosition', async () => { + await mockPool.initialize(encodePriceSqrt(1, 1)); + await mockPool.setPluginConfig(PLUGIN_FLAGS.BEFORE_POSITION_MODIFY_FLAG); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(PLUGIN_FLAGS.BEFORE_POSITION_MODIFY_FLAG); + await mockPool.mint(wallet.address, wallet.address, 0, 60, 100, '0x'); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(defaultConfig); + }); + + it('resets config after afterModifyPosition', async () => { + await mockPool.initialize(encodePriceSqrt(1, 1)); + await mockPool.setPluginConfig(PLUGIN_FLAGS.AFTER_POSITION_MODIFY_FLAG); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(PLUGIN_FLAGS.AFTER_POSITION_MODIFY_FLAG); + await mockPool.mint(wallet.address, wallet.address, 0, 60, 100, '0x'); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(defaultConfig); + }); + + it('resets config after beforeFlash', async () => { + await mockPool.setPluginConfig(PLUGIN_FLAGS.BEFORE_FLASH_FLAG); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(PLUGIN_FLAGS.BEFORE_FLASH_FLAG); + await mockPool.flash(wallet.address, 100, 100, '0x'); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(defaultConfig); + }); + + it('resets config after afterFlash', async () => { + await mockPool.setPluginConfig(PLUGIN_FLAGS.AFTER_FLASH_FLAG); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(PLUGIN_FLAGS.AFTER_FLASH_FLAG); + await mockPool.flash(wallet.address, 100, 100, '0x'); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(defaultConfig); + }); + }); + }); + + describe('#VolatilityVolatilityOracle', () => { + beforeEach('connect plugin to pool', async () => { + await mockPool.setPlugin(plugin); + }); + + it('initializes timepoints slot', async () => { + await initializeAtZeroTick(mockPool); + checkTimepointEquals(await plugin.timepoints(0), { + initialized: true, + blockTimestamp: BigInt(TEST_POOL_START_TIME), + tickCumulative: 0n, + }); + }); + + describe('#getTimepoints', () => { + beforeEach(async () => await initializeAtZeroTick(mockPool)); + + // zero tick + it('current tick accumulator increases by tick over time', async () => { + let { + tickCumulatives: [tickCumulative], + } = await plugin.getTimepoints([0]); + expect(tickCumulative).to.eq(0); + await plugin.advanceTime(10); + ({ + tickCumulatives: [tickCumulative], + } = await plugin.getTimepoints([0])); + expect(tickCumulative).to.eq(0); + }); + + it('current tick accumulator after single swap', async () => { + // moves to tick -1 + await mockPool.swapToTick(-1); + + await plugin.advanceTime(4); + let { + tickCumulatives: [tickCumulative], + } = await plugin.getTimepoints([0]); + expect(tickCumulative).to.eq(-4); + }); + + it('current tick accumulator after swaps', async () => { + await mockPool.swapToTick(-4463); + expect((await mockPool.globalState()).tick).to.eq(-4463); + await plugin.advanceTime(4); + await mockPool.swapToTick(-1560); + expect((await mockPool.globalState()).tick).to.eq(-1560); + let { + tickCumulatives: [tickCumulative0], + } = await plugin.getTimepoints([0]); + expect(tickCumulative0).to.eq(-17852); + await plugin.advanceTime(60 * 5); + await mockPool.swapToTick(-1561); + let { + tickCumulatives: [tickCumulative1], + } = await plugin.getTimepoints([0]); + expect(tickCumulative1).to.eq(-485852); + }); + }); + + it('writes an timepoint', async () => { + await initializeAtZeroTick(mockPool); + checkTimepointEquals(await plugin.timepoints(0), { + tickCumulative: 0n, + blockTimestamp: BigInt(TEST_POOL_START_TIME), + initialized: true, + }); + await plugin.advanceTime(1); + await mockPool.swapToTick(10); + checkTimepointEquals(await plugin.timepoints(1), { + tickCumulative: 0n, + blockTimestamp: BigInt(TEST_POOL_START_TIME + 1), + initialized: true, + }); + }); + + it('does not write an timepoint', async () => { + await initializeAtZeroTick(mockPool); + checkTimepointEquals(await plugin.timepoints(0), { + tickCumulative: 0n, + blockTimestamp: BigInt(TEST_POOL_START_TIME), + initialized: true, + }); + await plugin.advanceTime(1); + await mockPool.mint(wallet.address, wallet.address, -240, 0, 100, '0x'); + checkTimepointEquals(await plugin.timepoints(0), { + tickCumulative: 0n, + blockTimestamp: BigInt(TEST_POOL_START_TIME), + initialized: true, + }); + }); + + describe('#getSingleTimepoint', () => { + beforeEach(async () => await initializeAtZeroTick(mockPool)); + + // zero tick + it('current tick accumulator increases by tick over time', async () => { + let { tickCumulative } = await plugin.getSingleTimepoint(0); + expect(tickCumulative).to.eq(0); + await plugin.advanceTime(10); + ({ tickCumulative } = await plugin.getSingleTimepoint(0)); + expect(tickCumulative).to.eq(0); + }); + + it('current tick accumulator after single swap', async () => { + // moves to tick -1 + await mockPool.swapToTick(-1); + + await plugin.advanceTime(4); + let { tickCumulative } = await plugin.getSingleTimepoint(0); + expect(tickCumulative).to.eq(-4); + }); + + it('current tick accumulator after swaps', async () => { + await mockPool.swapToTick(-4463); + expect((await mockPool.globalState()).tick).to.eq(-4463); + await plugin.advanceTime(4); + await mockPool.swapToTick(-1560); + expect((await mockPool.globalState()).tick).to.eq(-1560); + let { tickCumulative: tickCumulative0 } = await plugin.getSingleTimepoint(0); + expect(tickCumulative0).to.eq(-17852); + await plugin.advanceTime(60 * 5); + await mockPool.swapToTick(-1561); + let { tickCumulative: tickCumulative1 } = await plugin.getSingleTimepoint(0); + expect(tickCumulative1).to.eq(-485852); + }); + }); + + describe('#prepayTimepointsStorageSlots', () => { + it('can prepay', async () => { + await plugin.prepayTimepointsStorageSlots(0, 50); + }); + + it('can prepay with space', async () => { + await plugin.prepayTimepointsStorageSlots(10, 50); + }); + + it('writes after swap, prepaid after init', async () => { + await initializeAtZeroTick(mockPool); + await plugin.prepayTimepointsStorageSlots(1, 1); + expect((await plugin.timepoints(1)).blockTimestamp).to.be.eq(1); + await mockPool.swapToTick(-4463); + expect((await mockPool.globalState()).tick).to.eq(-4463); + await plugin.advanceTime(4); + await mockPool.swapToTick(-1560); + expect((await plugin.timepoints(1)).blockTimestamp).to.be.not.eq(1); + expect((await mockPool.globalState()).tick).to.eq(-1560); + let { tickCumulative: tickCumulative0 } = await plugin.getSingleTimepoint(0); + expect(tickCumulative0).to.eq(-17852); + }); + + it('writes after swap, prepaid before init', async () => { + await plugin.prepayTimepointsStorageSlots(0, 2); + await initializeAtZeroTick(mockPool); + expect((await plugin.timepoints(1)).blockTimestamp).to.be.eq(1); + await mockPool.swapToTick(-4463); + expect((await mockPool.globalState()).tick).to.eq(-4463); + await plugin.advanceTime(4); + await mockPool.swapToTick(-1560); + expect((await plugin.timepoints(1)).blockTimestamp).to.be.not.eq(1); + expect((await mockPool.globalState()).tick).to.eq(-1560); + let { tickCumulative: tickCumulative0 } = await plugin.getSingleTimepoint(0); + expect(tickCumulative0).to.eq(-17852); + }); + + describe('failure cases', async () => { + it('cannot rewrite initialized slot', async () => { + await initializeAtZeroTick(mockPool); + await expect(plugin.prepayTimepointsStorageSlots(0, 2)).to.be.reverted; + await plugin.advanceTime(4); + await mockPool.swapToTick(-1560); + await expect(plugin.prepayTimepointsStorageSlots(1, 2)).to.be.reverted; + await expect(plugin.prepayTimepointsStorageSlots(2, 2)).to.be.not.reverted; + }); + + it('cannot prepay 0 slots', async () => { + await expect(plugin.prepayTimepointsStorageSlots(0, 0)).to.be.revertedWithoutReason; + }); + + it('cannot overflow index', async () => { + await plugin.prepayTimepointsStorageSlots(0, 10); + expect(plugin.prepayTimepointsStorageSlots(11, 2n ** 16n - 5n)).to.be.revertedWithoutReason; + expect(plugin.prepayTimepointsStorageSlots(11, 2n ** 16n)).to.be.revertedWithoutReason; + }); + }); + }); + }); + + describe('#DynamicFeeManager', () => { + describe('#adaptiveFee', function () { + this.timeout(0); + const liquidity = expandTo18Decimals(1000); + const DAY = 60 * 60 * 24; + let mint: any; + + beforeEach('initialize pool', async () => { + await mockPool.setPlugin(plugin); + await initializeAtZeroTick(mockPool); + mint = async (recipient: string, tickLower: number, tickUpper: number, liquidityDesired: number) => { + await mockPool.mint(recipient, recipient, tickLower, tickUpper, liquidityDesired, '0x'); + }; + }); + + it('does not change at 0 volume', async () => { + await plugin.advanceTime(1); + await mockPool.mint(wallet.address, wallet.address, -6000, 6000, liquidity, '0x'); + let fee2 = (await mockPool.overrideFee()); + await plugin.advanceTime(DAY + 600); + await mint(wallet.address, -6000, 6000, 1); + let fee3 = (await mockPool.overrideFee()); + expect(fee3).to.be.equal(fee2); + }); + + it('does not change fee after first swap in block', async () => { + await mockPool.mint(wallet.address, wallet.address, -6000, 6000, liquidity, '0x'); + await plugin.advanceTime(DAY + 600); + await mockPool.swapToTick(100); + let feeInit = (await mockPool.overrideFee()); + await mockPool.swapToTick(100000); + await mockPool.swapToTick(100001); + let feeAfter = (await mockPool.overrideFee()); + expect(feeAfter).to.be.equal(feeInit); + }); + + it('does not change if alphas are zeroes', async () => { + await plugin.changeFeeConfiguration({ + alpha1: 0, + alpha2: 0, + beta1: 360, + beta2: 60000, + gamma1: 59, + gamma2: 8500, + baseFee: 100, + }); + await mockPool.mint(wallet.address, wallet.address, -6000, 6000, liquidity, '0x'); + await plugin.advanceTime(DAY + 600); + await mockPool.swapToTick(100000); + let feeInit = (await mockPool.overrideFee()); + await plugin.advanceTime(DAY + 600); + await mockPool.swapToTick(-100000); + let feeFinal = (await mockPool.overrideFee()); + expect(feeFinal).to.be.equal(feeInit); + }); + + it('single huge step after day', async () => { + await mint(wallet.address, -24000, 24000, liquidity * 1000000000n); + + await plugin.advanceTime(DAY); + await mockPool.swapToTick(10); + await plugin.advanceTime(60); + await mockPool.swapToTick(-10000); + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + + let stats = []; + const tick = 10; + for (let i = 0; i < 25; i++) { + await mockPool.swapToTick(tick - i); + let fee = (await mockPool.overrideFee()); + stats.push(`Fee: ${fee} `); + await plugin.advanceTime(60 * 60); + } + expect(stats).to.matchSnapshot('fee stats after step'); + }); + + it('single huge step after initialization', async () => { + await mint(wallet.address, -24000, 24000, liquidity * 1000000000n); + + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + await plugin.advanceTime(60); + await mockPool.swapToTick(-10000); + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + + let stats = []; + const tick = 10; + for (let i = 0; i < 25; i++) { + await mockPool.swapToTick(tick - i); + let fee = (await mockPool.overrideFee()); + stats.push(`Fee: ${fee} `); + await plugin.advanceTime(60 * 60); + } + expect(stats).to.matchSnapshot('fee stats after step'); + }); + + it('single huge spike after day', async () => { + await mint(wallet.address, -24000, 24000, liquidity * 1000000000n); + await plugin.advanceTime(DAY); + await plugin.advanceTime(60); + await mockPool.swapToTick(-10000); + await plugin.advanceTime(1); + await mockPool.swapToTick(0); + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + + let stats = []; + const tick = 10; + for (let i = 0; i < 25; i++) { + await mockPool.swapToTick(tick - i); + let fee = (await mockPool.overrideFee()); + stats.push(`Fee: ${fee} `); + await plugin.advanceTime(60 * 60); + } + expect(stats).to.matchSnapshot('fee stats after spike'); + }); + + it('single huge spike after initialization', async () => { + await mint(wallet.address, -24000, 24000, liquidity * 1000000000n); + + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + await plugin.advanceTime(60); + await mockPool.swapToTick(-10000); + await plugin.advanceTime(1); + await mockPool.swapToTick(-11); + await plugin.advanceTime(60); + await mockPool.swapToTick(0); + + let stats = []; + const tick = 0; + for (let i = 0; i < 25; i++) { + await mockPool.swapToTick(tick - i); + let fee = (await mockPool.overrideFee()); + stats.push(`Fee: ${fee} `); + await plugin.advanceTime(60 * 60); + } + expect(stats).to.matchSnapshot('fee stats after spike'); + }); + + describe('#getCurrentFee', async () => { + it('works with dynamic fee', async () => { + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + const currentFee = await plugin.getCurrentFee(); + expect(currentFee).to.be.eq(100); + }); + + it('works if alphas are zeroes', async () => { + await plugin.changeFeeConfiguration({ + alpha1: 0, + alpha2: 0, + beta1: 1001, + beta2: 1006, + gamma1: 20, + gamma2: 22, + baseFee: 100, + }); + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + await plugin.advanceTime(60); + await mockPool.swapToTick(10); + const currentFee = await plugin.getCurrentFee(); + expect(currentFee).to.be.eq(100); + }); + + it('works equal before and after timepoint write', async () => { + await plugin.advanceTime(60); + await mockPool.swapToTick(100); + await plugin.advanceTime(60 * 10); + await mockPool.swapToTick(1000); + await plugin.advanceTime(60 * 10); + const currentFee = await plugin.getCurrentFee(); + await mockPool.swapToTick(-1000); + const currentFeeAfterSwap = await plugin.getCurrentFee(); + expect(currentFeeAfterSwap).to.be.eq(currentFee); + await plugin.advanceTime(1); + const currentFee2 = await plugin.getCurrentFee(); + expect(currentFeeAfterSwap).to.be.not.eq(currentFee2); + }); + }); + }); + }); + + describe('#FarmingPlugin', () => { + describe('virtual pool tests', () => { + let virtualPoolMock: MockTimeVirtualPool; + + beforeEach('deploy virtualPoolMock', async () => { + await mockPluginFactory.setFarmingAddress(wallet); + const virtualPoolMockFactory = await ethers.getContractFactory('MockTimeVirtualPool'); + virtualPoolMock = (await virtualPoolMockFactory.deploy()) as any as MockTimeVirtualPool; + }); + + it('set incentive works', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + }); + + it('can detach incentive', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await plugin.setIncentive(ZeroAddress); + expect(await plugin.incentive()).to.be.eq(ZeroAddress); + }); + + it('can detach incentive even if no more has rights to connect plugins', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await mockPluginFactory.setFarmingAddress(other); + await plugin.setIncentive(ZeroAddress); + expect(await plugin.incentive()).to.be.eq(ZeroAddress); + }); + + it('cannot attach incentive even if no more has rights to connect plugins', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await mockPluginFactory.setFarmingAddress(other); + await expect(plugin.setIncentive(other)).to.be.revertedWith('Not allowed to set incentive'); + }); + + it('new farming can detach old incentive', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await mockPluginFactory.setFarmingAddress(other); + await plugin.connect(other).setIncentive(ZeroAddress); + expect(await plugin.incentive()).to.be.eq(ZeroAddress); + }); + + it('cannot detach incentive if nothing connected', async () => { + await mockPool.setPlugin(plugin); + await expect(plugin.setIncentive(ZeroAddress)).to.be.revertedWith('Already active'); + expect(await plugin.incentive()).to.be.eq(ZeroAddress); + }); + + it('cannot set same incentive twice', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Already active'); + }); + + it('cannot set incentive if has active', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await expect(plugin.setIncentive(wallet.address)).to.be.revertedWith('Has active incentive'); + }); + + it('can detach incentive if not connected to pool', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + await plugin.setIncentive(virtualPoolMock); + expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + await mockPool.setPlugin(ZeroAddress); + await plugin.setIncentive(ZeroAddress); + expect(await plugin.incentive()).to.be.eq(ZeroAddress); + }); + + it('can set incentive if afterSwap hook is active', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + await plugin.setIncentive(virtualPoolMock); + expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + expect((await mockPool.globalState()).pluginConfig).to.be.eq(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + }); + + it('set incentive works only for PluginFactory.farmingAddress', async () => { + await mockPluginFactory.setFarmingAddress(ZeroAddress); + await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Not allowed to set incentive'); + }); + + it('incentive can not be attached if plugin is not attached', async () => { + await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Plugin not attached'); + }); + + it('incentive attached before initialization', async () => { + await mockPool.setPlugin(plugin); + + await plugin.setIncentive(virtualPoolMock); + await mockPool.initialize(encodePriceSqrt(1, 1)); + await mockPool.mint(wallet.address, wallet.address, -120, 120, 1, '0x'); + await mockPool.mint(wallet.address, wallet.address, minTick, maxTick, 1, '0x'); + + await mockPool.swapToTick(-130); + + expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; + + const tick = (await mockPool.globalState()).tick; + expect(await virtualPoolMock.currentTick()).to.be.eq(tick); + expect(await virtualPoolMock.timestamp()).to.be.gt(0); + }); + + it('incentive attached after initialization', async () => { + await mockPool.setPlugin(plugin); + await mockPool.initialize(encodePriceSqrt(1, 1)); + await plugin.setIncentive(virtualPoolMock); + + await mockPool.mint(wallet.address, wallet.address, -120, 120, 1, '0x'); + await mockPool.mint(wallet.address, wallet.address, minTick, maxTick, 1, '0x'); + + await mockPool.swapToTick(-130); + + expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; + + const tick = (await mockPool.globalState()).tick; + expect(await virtualPoolMock.currentTick()).to.be.eq(tick); + expect(await virtualPoolMock.timestamp()).to.be.gt(0); + }); + + it.skip('swap with finished incentive', async () => { + /*await virtualPoolMock.setIsExist(false); + await mockPool.setIncentive(virtualPoolMock.address); + await mockPool.initialize(encodePriceSqrt(1, 1)); + await mint(wallet.address, -120, 120, 1); + await mint(wallet.address, minTick, maxTick, 1); + expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); + + await swapToLowerPrice(encodePriceSqrt(1, 2), wallet.address); + + expect(await mockPool.activeIncentive()).to.be.eq(ethers.constants.AddressZero); + expect(await virtualPoolMock.currentTick()).to.be.eq(0); + expect(await virtualPoolMock.timestamp()).to.be.eq(0); + */ + }); + + it.skip('swap with not started yet incentive', async () => { + /* + await virtualPoolMock.setIsStarted(false); + await mockPool.setIncentive(virtualPoolMock.address); + await mockPool.initialize(encodePriceSqrt(1, 1)); + await mint(wallet.address, -120, 120, 1); + await mint(wallet.address, minTick, maxTick, 1); + expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); + + await swapToLowerPrice(encodePriceSqrt(1, 2), wallet.address); + + const tick = (await mockPool.globalState()).tick; + expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); + expect(await virtualPoolMock.currentTick()).to.be.eq(tick); + expect(await virtualPoolMock.timestamp()).to.be.eq(0); + */ + }); + }); + + describe('#isIncentiveConnected', () => { + let virtualPoolMock: MockTimeVirtualPool; + + beforeEach('deploy virtualPoolMock', async () => { + await mockPluginFactory.setFarmingAddress(wallet); + const virtualPoolMockFactory = await ethers.getContractFactory('MockTimeVirtualPool'); + virtualPoolMock = (await virtualPoolMockFactory.deploy()) as any as MockTimeVirtualPool; + }); + + it('true with active incentive', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; + }); + + it('false with invalid address', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + expect(await plugin.isIncentiveConnected(wallet.address)).to.be.false; + }); + + it('false if plugin detached', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await mockPool.setPlugin(ZeroAddress); + expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.false; + }); + + it('false if hook deactivated', async () => { + await mockPool.setPlugin(plugin); + await plugin.setIncentive(virtualPoolMock); + await mockPool.setPluginConfig(0); + expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.false; + }); + }); + + describe('#Incentive', () => { + it('incentive is not detached after swap', async () => { + await mockPool.setPlugin(plugin); + await initializeAtZeroTick(mockPool); + await mockPluginFactory.setFarmingAddress(wallet.address); + + const vpStubFactory = await ethers.getContractFactory('MockTimeVirtualPool'); + let vpStub = (await vpStubFactory.deploy()) as any as MockTimeVirtualPool; + + await plugin.setIncentive(vpStub); + const initLiquidityAmount = 10000000000n; + await mockPool.mint(wallet.address, wallet.address, -120, 120, initLiquidityAmount, '0x'); + await mockPool.mint(wallet.address, wallet.address, -1200, 1200, initLiquidityAmount, '0x'); + await mockPool.swapToTick(-200); + + expect(await plugin.incentive()).to.be.eq(await vpStub.getAddress()); + }); + }); + }); + + describe('AlgebraBasePluginV1 external methods', () => { + describe('#changeFeeConfiguration', () => { + const configuration = { + alpha1: 3002, + alpha2: 10009, + beta1: 1001, + beta2: 1006, + gamma1: 20, + gamma2: 22, + baseFee: 150, + }; + it('fails if caller is not factory', async () => { + await expect(plugin.connect(other).changeFeeConfiguration(configuration)).to.be.reverted; + }); + + it('updates baseFeeConfiguration', async () => { + await plugin.changeFeeConfiguration(configuration); + + const newConfig = await plugin.feeConfig(); + + expect(newConfig.alpha1).to.eq(configuration.alpha1); + expect(newConfig.alpha2).to.eq(configuration.alpha2); + expect(newConfig.beta1).to.eq(configuration.beta1); + expect(newConfig.beta2).to.eq(configuration.beta2); + expect(newConfig.gamma1).to.eq(configuration.gamma1); + expect(newConfig.gamma2).to.eq(configuration.gamma2); + expect(newConfig.baseFee).to.eq(configuration.baseFee); + }); + + it('feeConfig getter gas cost [ @skip-on-coverage ]', async () => { + await plugin.changeFeeConfiguration(configuration); + await snapshotGasCost(plugin.feeConfig.estimateGas()); + }); + + it('emits event', async () => { + await expect(plugin.changeFeeConfiguration(configuration)) + .to.emit(plugin, 'FeeConfiguration') + .withArgs([...Object.values(configuration)]); + }); + + it('cannot exceed max fee', async () => { + let wrongConfig = { ...configuration }; + wrongConfig.alpha1 = 30000; + wrongConfig.alpha2 = 30000; + wrongConfig.baseFee = 15000; + await expect(plugin.changeFeeConfiguration(wrongConfig)).to.be.revertedWith('Max fee exceeded'); + }); + + it('cannot set zero gamma', async () => { + let wrongConfig1 = { ...configuration }; + wrongConfig1.gamma1 = 0; + await expect(plugin.changeFeeConfiguration(wrongConfig1)).to.be.revertedWith('Gammas must be > 0'); + + let wrongConfig2 = { ...configuration }; + wrongConfig2.gamma2 = 0; + await expect(plugin.changeFeeConfiguration(wrongConfig2)).to.be.revertedWith('Gammas must be > 0'); + }); + }); + }); +}); diff --git a/src/plugin/yarn.lock b/src/plugin/yarn.lock new file mode 100644 index 000000000..4f93db9b1 --- /dev/null +++ b/src/plugin/yarn.lock @@ -0,0 +1,38 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@cryptoalgebra/alm-vault@^1.0.9": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@cryptoalgebra/alm-vault/-/alm-vault-1.0.9.tgz#9a8d6efd90a1c71664463c70aee0296fb4d7b305" + integrity sha512-c/QI8nuZkepgCjBvzWaqzGkufE6EVT9Y7ugiP/KIWm76k4IKoHIklIwT+IDTbn+/r9qsfOeUD2c2xhDwmEM5XA== + dependencies: + "@cryptoalgebra/integral-core" "^1.2.0" + "@cryptoalgebra/integral-periphery" "^1.2.0" + "@openzeppelin/contracts" "4.9.3" + +"@cryptoalgebra/integral-core@1.2.0", "@cryptoalgebra/integral-core@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@cryptoalgebra/integral-core/-/integral-core-1.2.0.tgz#ad2476d93ff53aefad78a53ef499891ba2ae1bb3" + integrity sha512-BKi/iOj3QflrBOeV5slpqXszpkNEirEd1qXwJxx4bNuTu9lih3aSorvhoNdgg6Jr5wlDuZrw/JrGvOIj4OqhbQ== + dependencies: + "@openzeppelin/contracts" "4.9.3" + +"@cryptoalgebra/integral-periphery@1.2.0", "@cryptoalgebra/integral-periphery@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@cryptoalgebra/integral-periphery/-/integral-periphery-1.2.0.tgz#803f7366b4a4d9d604146d67030e187912260d10" + integrity sha512-gH3qLqoDHeq3qf0Pe277v7ei1712wGsYvW73KplNOtXtsPBmh4T3L6ZvL0DokZNvf676xdhyqo2zFp8Ip6ojNg== + dependencies: + "@cryptoalgebra/integral-core" "1.2.0" + "@openzeppelin/contracts" "4.9.3" + "@uniswap/v2-core" "1.0.1" + +"@openzeppelin/contracts@4.9.3": + version "4.9.3" + resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-4.9.3.tgz#00d7a8cf35a475b160b3f0293a6403c511099364" + integrity sha512-He3LieZ1pP2TNt5JbkPA4PNT9WC3gOTOlDcFGJW4Le4QKqwmiNJCRt44APfxMxvq7OugU/cqYuPcSBzOw38DAg== + +"@uniswap/v2-core@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@uniswap/v2-core/-/v2-core-1.0.1.tgz#af8f508bf183204779938969e2e54043e147d425" + integrity sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q== From 8b489c10dbabd08d65f29ccf6fa2326fed3174ff Mon Sep 17 00:00:00 2001 From: fourlen Date: Tue, 25 Mar 2025 16:40:20 +0300 Subject: [PATCH 02/42] +reblaanceManager --- src/plugin/contracts/plugins/AlmPlugin.sol | 976 +-------------------- 1 file changed, 14 insertions(+), 962 deletions(-) diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index c2f1b2301..4514d11a2 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -1,984 +1,36 @@ // SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.8.20; -import '@cryptoalgebra/alm-vault/contracts/interfaces/IAlmVault.sol'; -import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; -import '@cryptoalgebra/integral-core/contracts/libraries/TickMath.sol'; -import '@cryptoalgebra/integral-core/contracts/libraries/FullMath.sol'; -import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; -import '@openzeppelin/contracts/utils/math/Math.sol'; - -import '../interfaces/plugins/IAlmPlugin.sol'; - import '../base/AlgebraBasePlugin.sol'; +import '../interfaces/plugins/IAlmPlugin.sol'; +import '../interfaces/IRebalanceManager.sol'; // import 'hardhat/console.sol'; abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { - // result.currentTick = int24(0); // 0 - // result.currentPriceAccountingDecimals = 0; // 32 - // result.slowAvgPriceAccountingDecimals = 0; // 64 - // result.fastAvgPriceAccountingDecimals = 0; // 96 - // result.totalPairedInDeposit = 0; // 128 - // result.percentageOfDepositToken = 0; // 160 - // result.totalDepositToken = 0; // 192 - // result.totalPairedToken = 0; // 224 - // result.result.percentageOfDepositTokenUnused = 0; // 256 - // result.failedToObtainTWAP = False; // 288 - // result.sameBlock = False; // 320 - struct TwapResult { - uint256 currentPriceAccountingDecimals; - uint256 slowAvgPriceAccountingDecimals; - uint256 fastAvgPriceAccountingDecimals; - uint256 totalPairedInDeposit; - uint256 totalDepositToken; - uint256 totalPairedToken; - int24 currentTick; - uint16 percentageOfDepositTokenUnused; // 10000 = 100% - uint16 percentageOfDepositToken; // 10000 = 100% - bool failedToObtainTWAP; - bool sameBlock; - } - struct Ranges { - int24 baseLower; - int24 baseUpper; - int24 limitLower; - int24 limitUpper; - } - enum State { - OverInventory, - Normal, - UnderInventory, - Special - } - // этот статус можно офнуть - enum DecideStatus { - Normal, - Special, - PendingRebalanceNeeded, - NoNeed, - ToSoon, - NoNeedWithPending, - FailedToObtainTWAPOrExtremeVolatility - } - enum UpdateStatus { - Status0, - Status1 - } - - struct Thresholds { - uint16 depositTokenUnusedThreshold; // STORAGE[0xb] = 100 (1%) - uint16 simulate; // 9300 93% maybe for moving a position towards price without changing the config - uint16 normalThreshold; // 80% (for what? normal trigger?) - uint16 underInventoryThreshold; // STORAGE[0xf] = 7700 Probably means 77% for under-inventory (opposite of _simulate) - uint16 overInventoryThreshold; // STORAGE[0xd] = 9100 91% (over-inv trigger?) - uint16 priceChangeThreshold; // STORAGE[0x8] = 100, в коде если пендинг, то 100, а если не пендинг то 50 - uint16 extremeVolatility; // STORAGE[0x4] = 2500 (25%) - uint16 highVolatility; // STORAGE[0x5] = 500 (5%) - uint16 someVolatility; // STORAGE[0x6] = 100 (1%) - uint16 dtrDelta; // STORAGE[0x7] = 300 - uint16 baseLowPct; // STORAGE[0x1c] = 2000 - uint16 baseHighPct; // STORAGE[0x1d] = 1000 - uint16 limitReservePct; // STORAGE[0x1e] = 500 - } - - // TODO: не забыть у твап не падать, а возвращать false если не получилось взять его - // TODO: норм упаковать - address public vault; - bool public isAlmInitialized; - bool public paused; - bool public allowToken1; - State public state; - uint32 public lastRebalanceTimestamp; - uint256 public lastRebalanceCurrentPrice; - Thresholds public thresholds; - - address public pairedToken; // STORAGE[0x16] bytes 0 to 19 - uint8 public pairedTokenDecimals; // = 18 STORAGE[0x17] - address public depositToken; // STORAGE[0x18] bytes 0 to 19 - uint8 public depositTokenDecimals; // STORAGE[0x19] - uint8 public decimalsSum; // STORAGE[0x1a] // это че? (сумма decimals depositToken и pairedToken) а нахуя? - uint8 public tokenDecimals; // pairedTokenDecimals ? в чем отличие + address public rebalanceManager; uint32 public slowTwapPeriod; uint32 public fastTwapPeriod; - // TODO: наверное стоит не принимать миллард параметров, а упаковать в типа InitializeData - function initializeALM(address _vault, Thresholds memory _thresholds) public { - require(!isAlmInitialized, 'Already initialized'); - isAlmInitialized = true; - // TODO: добавить require'ов - vault = _vault; - paused = false; - - bool _allowToken1 = IAlmVault(vault).allowToken1(); - - allowToken1 = _allowToken1; - state = State.OverInventory; // поч overinventory? - lastRebalanceTimestamp = 0; - lastRebalanceCurrentPrice = 0; - thresholds = _thresholds; - - address token0 = IAlmVault(_vault).token0(); - address token1 = IAlmVault(_vault).token1(); - - address _pairedToken = _allowToken1 ? token0 : token1; - pairedToken = _pairedToken; - uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); - // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); - pairedTokenDecimals = _pairedTokenDecimals; - - address _depositToken = _allowToken1 ? token1 : token0; - depositToken = _depositToken; - uint8 _depositTokenDecimals = _getDepositTokenDecimals(); - depositTokenDecimals = _depositTokenDecimals; - // console.log('_depositTokenDecimals: ', _depositTokenDecimals); - - decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; - // console.log('decimals sum: ', decimalsSum); - tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; - } - - function setPriceChangeThreshold(uint16 _priceChangeThreshold) external { - _authorize(); - require(_priceChangeThreshold < 10000, 'Invalid price change threshold'); - thresholds.priceChangeThreshold = _priceChangeThreshold; - // нужно эмитить ивент? - } - - function setPercentages(uint16 _baseLowPct, uint16 _baseHighPct, uint16 _limitReservePct) external { - _authorize(); - require(_baseLowPct >= 100 && _baseLowPct <= 10000, 'Invalid base low percent'); - require(_baseHighPct >= 100 && _baseHighPct <= 10000, 'Invalid base high percent'); - require(_limitReservePct >= 100 && _baseLowPct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); - thresholds.baseLowPct = _baseLowPct; - thresholds.baseHighPct = _baseHighPct; - thresholds.limitReservePct = _limitReservePct; - } - - function setTriggers(uint16 _simulate, uint16 _normalThreshold, uint16 _underInventoryThreshold, uint16 _overInventoryThreshold) external { - _authorize(); - require(_underInventoryThreshold > 6000, '_underInventoryThreshold must be > 6000'); - require(_normalThreshold > _underInventoryThreshold, '_normalThreshold must be > _underInventoryThreshold'); - require(_overInventoryThreshold > _normalThreshold, '_overInventoryThreshold must be > _normalThreshold'); - require(_simulate > _overInventoryThreshold, 'Simulate must be > _overInventoryThreshold'); - require(_simulate < 9500, 'Simulate must be < 9500'); - thresholds.simulate = _simulate; - thresholds.normalThreshold = _normalThreshold; - thresholds.underInventoryThreshold = _underInventoryThreshold; - thresholds.overInventoryThreshold = _overInventoryThreshold; - } - - function setDtrDelta(uint16 _dtrDelta) external { - _authorize(); - require(_dtrDelta <= 10000, '_dtrDelta must be <= 10000'); - thresholds.dtrDelta = _dtrDelta; - } - - function setHighVolatility(uint16 _highVolatility) external { - _authorize(); - require(_highVolatility >= thresholds.someVolatility, '_highVolatility must be >= someVolatility'); - thresholds.highVolatility = _highVolatility; - } - - function setSomeVolatility(uint16 _someVolatility) external { - _authorize(); - require(_someVolatility <= 300, '_someVolatility must be <= 300'); - thresholds.someVolatility = _someVolatility; - } - - function setExtremeVolatility(uint16 _extremeVolatility) external { - _authorize(); - require(_extremeVolatility >= thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); - thresholds.extremeVolatility = _extremeVolatility; - } - - function setDepositTokenUnusedThreshold(uint16 _depositTokenUnusedThreshold) external { - _authorize(); - require(_depositTokenUnusedThreshold >= 100 && _depositTokenUnusedThreshold <= 10000, '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); - thresholds.depositTokenUnusedThreshold = _depositTokenUnusedThreshold; - } - - function setSlowTwapPeriod(uint32 _slowTwapPeriod) external { - _authorize(); - require(_slowTwapPeriod >= fastTwapPeriod, '_slowTwapPeriod must be >= fastTwapPeriod'); + function initializeALM( + address _rebalanceManager, + uint32 _slowTwapPeriod, + uint32 _fastTwapPeriod + ) external { + require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); + require(_slowTwapPeriod >= _fastTwapPeriod, '_slowTwapPeriod must be >= _fastTwapPeriod'); + rebalanceManager = _rebalanceManager; slowTwapPeriod = _slowTwapPeriod; - } - - function setFastTwapPeriod(uint32 _fastTwapPeriod) external { - _authorize(); - require(_fastTwapPeriod <= slowTwapPeriod, '_fastTwapPeriod must be <= slowTwapPeriod'); fastTwapPeriod = _fastTwapPeriod; } - function setVault(address _vault) external { - _authorize(); - vault = _vault; - } - - function _rebalance(TwapResult memory obtainTWAPsResult) internal { - // require(!paused, 'Pausable: paused'); - if (paused) return; - if (vault == address(0)) return; - - (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - // console.log('rebalance entered'); - // console.log('decide status: ', uint256(decideStatus)); - // console.log('newState: ', uint256(newState)); - - // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала - // require(decideStatus != DecideStatus.NoNeed, "no need"); - // require(decideStatus != DecideStatus.ToSoon, "too soon"); - if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.ToSoon) return; - - if (decideStatus != DecideStatus.PendingRebalanceNeeded) { - if (decideStatus != DecideStatus.NoNeedWithPending) { - if (decideStatus != DecideStatus.FailedToObtainTWAPOrExtremeVolatility) { - Ranges memory ranges = decideStatus == DecideStatus.Normal - ? _getRangesWithState(newState, obtainTWAPsResult) - : _getRangesWithoutState(obtainTWAPsResult); - - // struct Ranges { - // int24 baseLower; - // int24 baseUpper; - // int24 limitLower; - // int24 limitUpper; - // } - // console.log('RANGES START'); - // console.logInt(ranges.baseLower); - // console.logInt(ranges.baseUpper); - // console.logInt(ranges.limitLower); - // console.logInt(ranges.limitUpper); - // console.log('RANGES END'); - - // require(ranges.baseUpper - ranges.baseLower > 300 && - // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); - if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - - // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) - // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); - - // TODO: swapquantity ? - try IAlmVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 1) { - lastRebalanceTimestamp = _blockTimestamp(); - lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - } catch { - state = State.Special; - _pause(); - } - } else { - IAlmVault(vault).setDepositMax(0, 0); - // pendingRebalanceTimestamp = 0; - state = State.Special; - _pause(); - } - } else { - // pendingRebalanceTimestamp = 0; - lastRebalanceTimestamp = _blockTimestamp(); - lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - } - } else { - // pendingRebalanceTimestamp = _blockTimestamp(); - } - - // чекируем decideStatus - // если нужен ребаланс - // вызываем getrangeswithstate или getRangesWithoutState, получаем ренжи - // IAlmVault(vault).rebalance(ranges.tick1, ranges.tick2, ....); - } - - function _obtainTWAPs( + function _obtainTWAPAndRebalance( int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp, bool failedToObtainTWAP - ) internal view returns (TwapResult memory twapResult) { - // достать проценты, хуенты - // достать резервы токенычей - // собрать TwapResult - - // struct TwapResult { - // uint256 currentPriceAccountingDecimals; done - // uint256 slowAvgPriceAccountingDecimals; done - // uint256 fastAvgPriceAccountingDecimals; done - // uint256 totalPairedInDeposit; done - // uint256 totalDepositToken; done - // uint256 totalPairedToken; done - // int24 currentTick; done - // uint16 percentageOfDepositTokenUnused; // 10000 = 100% done - // uint16 percentageOfDepositToken; // 10000 = 100% done - // bool failedToObtainTWAP; // всегда false прост done - // bool sameBlock; done - // } - - // console.log('entered obtain twaps'); - twapResult.failedToObtainTWAP = failedToObtainTWAP; - if (failedToObtainTWAP) { - return twapResult; - } - - twapResult.currentTick = currentTick; - twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; - bool _allowToken1 = allowToken1; - if (_allowToken1) { - // почему они эту строку наверх не вынесли? - (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); - twapResult.totalPairedToken = amount0; - twapResult.totalDepositToken = amount1; - } else { - (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); - twapResult.totalPairedToken = amount1; - twapResult.totalDepositToken = amount0; - } - // console.log('after getTotalAmounts obtain twaps'); - - address _depositToken = depositToken; - address _pairedToken = pairedToken; - - uint8 _pairedTokenDecimals = pairedTokenDecimals; - - (uint256 slowPrice, uint256 fastPrice, uint256 currentPriceAccountingDecimals) = _getTwapPrices( - _depositToken, - _pairedToken, - _pairedTokenDecimals, - slowTwapTick, - fastTwapTick, - twapResult.currentTick - ); - twapResult.slowAvgPriceAccountingDecimals = slowPrice; - twapResult.fastAvgPriceAccountingDecimals = fastPrice; - - // uint256 slowPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick); - // twapResult.slowAvgPriceAccountingDecimals = slowPrice; - // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); - // twapResult.fastAvgPriceAccountingDecimals = fastPrice; - - // console.log('2'); - - // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); - // console.log('2.5'); - twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; - uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; - uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); - twapResult.totalPairedInDeposit = totalPairedInDeposit; - - // console.log('3'); - - if (totalPairedInDeposit == 0) { - twapResult.percentageOfDepositToken = 10000; - } else { - uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // // console.log("totalTokensAmount: ", totalTokensAmount); - if (totalTokensAmount == 0) { - twapResult.failedToObtainTWAP = true; - return twapResult; - } - // uint256 totalDepositTokenMultipliedByFactor = 10000 * twapResult.totalDepositToken; - uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); - twapResult.percentageOfDepositToken = percentageOfDepositToken; - } - - // console.log('4'); - - uint256 depositTokenBalance = _getDepositTokenVaultBalance(); - // console.log('depositTokenBalance: ', depositTokenBalance); - - if (depositTokenBalance > 0) { - uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; - // че за v42 и v43, надо чекнуть первоначальный декомпайл - // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) - twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); - } else { - // че за v44 - // v42 = v44 = 0; - twapResult.percentageOfDepositTokenUnused = 0; - } - } - - function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { - // тут мы более глобально чекаем, получилось ли достать твап, какая ща волатильность - // куча куча ифов, в итоге в одном из случаев вызываем - // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff - // UpdateStatus updStatus = _updateStatus(twapResult); - if (twapResult.failedToObtainTWAP) { - return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); - } - - uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); - uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); - // console.log('fastSlowDiff: ', fastSlowDiff); - // console.log('fastCurrentDiff: ', fastCurrentDiff); - - bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; - if (!isExtremeVolatility) { - bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; - if (!isHighVolatility) { - if ( - !((state == State.OverInventory || state == State.Normal) && - lastRebalanceCurrentPrice != 0 && - twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) - ) { - (bool needToRebalance, State newState) = _updateStatus(twapResult); - // console.log('needToRebalance: ', needToRebalance); - // console.log('newState: ', uint256(newState)); - // needToRebalance = true; - // newState = State.Normal; - if (needToRebalance) { - if (fastCurrentDiff < thresholds.someVolatility) { - // console.log('fastCurrentDiff < thresholds.someVolatility'); - return (DecideStatus.Normal, newState); // normal rebalance - } else { - return (DecideStatus.ToSoon, newState); // too soon - } - } else { - return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) - } - } else { - // State == NORMAL || OVER - // И Это не первый ребаланс - // И percentageOfDepositToken меньше чем _underInventoryPct - _dtrDelta (??) - значит очень мало депозит токенов, то: - // ----> переходим дальше в итоге выставляя status = SPECIAL - // тут как будто ничо не происходит - // типа тут сетятся v19, v21, v23, v25 - // но дальше с ними ничо не происходит - // только в гносис записываем v23, который итак равен гносису - // v19 = v20 = 21; - // v21 = v22 = 3; - // v23 = v24 = bytes31(_gnosis); - // v25 = v26 = 1; - } - } else { - // handle high volatility - // Если fastSlowDiff >= _highVolatility ИЛИ fastCurrentDiff => _highVolatility (5%), то считаем, что сейчас высокая волатильность. - if (state != State.Special) { - // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается - - if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { - // Если fastCurrentDiff >= _someVolatility (low? - 1%): - // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается - return (DecideStatus.ToSoon, State.Special); - } else { - // Иначе ------> переходим дальше в итоге выставляя status = SPECIAL - // то же самое, как будто нихуя не происходит - // v19 = v30 = 21; - // v21 = v31 = 3; - // v23 = v32 = bytes31(_gnosis); - // v25 = v33 = 1; - } - } else { - // special -> noneed - return (DecideStatus.NoNeed, State.Special); - } - } - state = State.Special; - // какой-то спешл кейс, из-за него вызывается rebalanceWithoutState - return (DecideStatus.Special, State.Special); // выяснить чо он означает - } else { - // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается - return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); - } - } - - function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { - // тут мы сравниваем уже все проценты и решаем в какой стейт мы будем рабаланситься (и будем ли вообще) - // вычисления на оснвое twapResult, сохранение результата в сторадж, видимо нужно из-за двухэтапной ребалансировки (можно ли объединить в одну функцию?) - // внутри вызываетя вспомогательная функция _calcPercentageDiff - // v0 = state == 3 ? true : !lastRebalanceCurrentPrice - if (state != State.Special && lastRebalanceCurrentPrice != 0) { - if (state != State.Normal) { - if (state != State.OverInventory) { - if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - // if less than 93% - // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); - if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { - // if greater than 80% (REBALANCE TO NORMAL) - // sqrtStatus = 1; - // state == UnderInventory || state == Special - // 80% <= twapResult.percentageOfDepositToken <= 93% - // типа из андеринветори или спешл ребалансим в НОРМАЛ - return (true, State.Normal); - } else { - return (true, State.UnderInventory); - } - } else { - // sqrtStatus = 1; - // state == UnderInventory || state == Special - // twapResult.percentageOfDepositToken >= 93% - return (true, State.OverInventory); - } - } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - // if greater than 77% - if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { - // if less than 91% (REBALANCE TO NORMAL) - // sqrtStatus = 1; - // state == OverInventory - // 77% <= twapResult.percentageOfDepositToken <= 91% - // типа из оверинвентори в НОРМАЛ - return (true, State.Normal); - } - // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) - else { - return (true, State.OverInventory); - } - } else { - // state == OverInventory - // twapResult.percentageOfDepositToken <= 77% - // из оверинвентори хуячимся в андеринвентори - return (true, State.UnderInventory); - } - - // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) - uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals - // console.log('priceChange: ', priceChange); - if (priceChange > thresholds.priceChangeThreshold) { - // CASES: - // 1. we are still under-inventory and price changed by more than (1/0.5)% - // 2. we are still over-inventory and price changed by more than (1/0.5)% - - // console.log('priceChange > thresholds.priceChangeThreshold'); - return (true, state); - } - } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - if (twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold) { - // state == Normal - // twapResult.percentageOfDepositToken < 77% <= 93 % - return (true, State.UnderInventory); - } - } else { - // state == Normal - // twapResult.percentageOfDepositToken > 93% - return (true, State.OverInventory); - } - - if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { - // if less than 1% - // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); - return (false, State.Normal); // no rebalance needed - } else { - // CASES: - // 1. state == Normal and 75% < twapResult.percentageOfDepositToken < 93% - return (true, state); - } - } else { - if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - // if less than 93% - if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - // if greater than 77% (REBALANCE TO NORMAL) - // state == Special OR not lastRebalanceCurrentPrice - // 77% <= twapResult.percentageOfDepositToken <= 93% - return (true, State.Normal); - } else { - // state == Special OR not lastRebalanceCurrentPrice - // twapResult.percentageOfDepositToken <= 77% - return (true, State.UnderInventory); - } - } else { - // state == Special OR not lastRebalanceCurrentPrice - // twapResult.percentageOfDepositToken > 93% - return (true, State.OverInventory); - } - } - - // сюда по идее никогда не попадаем (точно??) точно - return (false, State.Normal); - } - - function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { - // scope to prevent stack too deep - { - // console.log('entered _getRangesWithState'); - // State _state = state; - bool _allowToken1 = allowToken1; - int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); - uint8 _tokenDecimals = tokenDecimals; - - (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); - // console.log('upperPriceBound: ', upperPriceBound); - // console.log('targetPrice: ', targetPrice); - // console.log('lowerPriceBound: ', lowerPriceBound); - - int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); - bool currentTickIsRound = roundedTick == twapResult.currentTick; - - int24 commonTick; - int24 tickForLowerPrice; - if (newState == State.Normal) { - // If HEALTHY status (NORMAL) use target price - // тут targetPrice без decimals (если deposittoken = token0) - // и с decimals если deposittoken = token1, без X96 или X192 - int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); - // console.log('targetTick'); - // console.logInt(targetTick); - commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); - } else { - // console.log('entered else in newState == State.Normal'); - commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); - } - - int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); - // console.log('upperTick'); - // console.logInt(upperTick); - int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); - // console.log('tickForHigherPrice'); - // console.logInt(tickForHigherPrice); - - if (lowerPriceBound == 0) { - // Under-inventory state probably - // if depositToken == token0, надо бы это в сторадж наверное засунуть - // console.log('entered lowerPriceBound == 0'); - int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; - tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing - } else { - int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); - tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); - } - if (!_allowToken1) { - // if deposittoken == token0 - // console.log('TICKS'); - // console.logInt(int24(commonTick)); - // console.logInt(int24(tickForLowerPrice)); - // console.logInt(int24(tickForHigherPrice)); - // console.logInt(int24(commonTick)); - // console.log('TICKS END'); - ranges.baseLower = int24(commonTick); - ranges.baseUpper = int24(tickForLowerPrice); - ranges.limitLower = int24(tickForHigherPrice); - ranges.limitUpper = int24(commonTick); - - // if (varg0 != 2) { - // v19 = 0x437d(int24(_gnosis >> 176), 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27618); - // v18.word2 = int24(v19); - // } - // assert(varg0 <= 3); - // if (varg0 == 2) { - // if (v4) { - // v20 = v21 = MEM[varg1]; - // } else { - // v20 = v22 = v18.word0; - // } - // v18.word0 = int24(v20); - // if (v4) { - // v23 = v24 = MEM[varg1] - int24(_gnosis >> 176); - // } else { - // v23 = v25 = v18.word3; - // } - // v18.word3 = int24(v23); - // } - - if (newState != State.UnderInventory) { - // if not under-inventory - // we do not use v16 because if Token0 then we reverse the structure of ticks - int24 roundedMinTick = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); - ranges.limitLower = int24(roundedMinTick); // use MIN tick - } else { - // if under-inventorys - ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; // if tick is round set currentTick (useless operation?) - ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; // tick - tick spacing if round (avoid having the same tick if its round??) - } - - if (newState == State.OverInventory) { - // if over-inventory - ranges.limitUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.limitUpper; - ranges.baseLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.baseLower; - ranges.baseUpper = int24(ranges.baseUpper + _tickSpacing); - } - } else { - ranges.baseLower = int24(tickForLowerPrice); - ranges.baseUpper = int24(commonTick); - ranges.limitLower = int24(commonTick); - ranges.limitUpper = int24(tickForHigherPrice); - - if (newState != State.UnderInventory) { - ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); - } - - if (lowerPriceBound > 0 && newState != State.OverInventory) { - ranges.baseLower = int24(ranges.baseLower + _tickSpacing); - } - - if (newState == State.Normal) { - ranges.baseUpper = int24(_tickSpacing + ranges.baseUpper); - ranges.limitLower = int24(_tickSpacing + ranges.limitLower); - } - - if (newState == State.UnderInventory) { - ranges.baseUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.baseUpper; - ranges.limitLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.limitLower; - } - - if (newState == State.OverInventory) { - ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; - ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; - } - } - } - // просто возвращаем? (НЕ ПРОСТО ОКАЗЫВАЕТСЯ ВОЗВРАЩАЕМ) - // TODO: пофиксить stackTooDeep - if (newState == State.OverInventory) { - (ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper) = ( - ranges.limitLower, - ranges.limitUpper, - ranges.baseLower, - ranges.baseUpper - ); - // v49.word0 = int24(MEM[64 + v17]); - // v49.word1 = int24(MEM[96 + v17]); - // v49.word2 = int24(MEM[v17]); - // v49.word3 = int24(MEM[32 + v17]); - } - } - - function _getRangesWithoutState(TwapResult memory twapResult) internal view returns (Ranges memory ranges) { - // возвращает что-то типа - // result.baseLower = currentTick - // result.baseUpper = maxUpperTick - // result.limitLower = minLowerTick - // result.limitUpper = currentTick - tickSpacing - - int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); - bool _allowToken1 = allowToken1; - - // внутри юзается roundTickToTickSpacingCondigeringNegative, roundTickToTickSpacing - int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); - int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); - // console.log('ticks in _getRangesWithoutState'); - // console.logInt(tickRoundedDown); - // console.logInt(tickRounded); - - if (!_allowToken1) { - if (twapResult.currentTick == tickRounded) { - tickRoundedDown = twapResult.currentTick; - } - - ranges.baseLower = tickRoundedDown; - int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick - ranges.baseUpper = maxTickRounded; - int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); // round MinLowerTick - ranges.limitLower = minTickRounded; - if (twapResult.currentTick == tickRounded) { - tickRoundedDown = twapResult.currentTick - _tickSpacing; - } - ranges.limitUpper = tickRoundedDown; - } else { - int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); - ranges.baseLower = minTickRounded; - - if (twapResult.currentTick == tickRounded) { - ranges.baseUpper = twapResult.currentTick; - } else { - ranges.baseUpper = tickRoundedDown + _tickSpacing; - } - - if (twapResult.currentTick == tickRounded) { - ranges.limitLower = _tickSpacing + twapResult.currentTick; - } else { - ranges.limitLower = tickRoundedDown + _tickSpacing; - } - int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick - ranges.limitUpper = maxTickRounded; - } - } - - // поч uint128? поч uint256? - // потому что это не decimals, а 10 ** decimals - function _getPriceAccountingDecimals( - address token0, - address token1, - uint128 token1decimals, - /*uint256*/ int24 averageTick - ) private pure returns (uint256 price) { - uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); - if (uint160(sqrtPriceX96) > type(uint128).max) { - uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); - return - token1 < token0 - ? FullMath.mulDiv(priceX128, token1decimals, uint256(type(uint128).max) + 1) - : FullMath.mulDiv(uint256(type(uint128).max) + 1, token1decimals, priceX128); - } else { - // console.log(token0, token1); - // console.log(token1decimals); - // console.logInt(int256(averageTick)); - // console.log(sqrtPriceX96); - // console.log(token1 < token0); - // if (token1 < token0) { - // v5 = v6 = MulDiv(uint192.max + 1, token1decimals, uint160(sqrtPrice96) * uint160(sqrtPrice96)); - // } else { - // v5 = v7 = MulDiv(uint160(sqrtPrice96) * uint160(sqrtPrice96), token1decimals, uint192.max + 1); - // } - return - token1 < token0 - ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, type(uint192).max + 1) - : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); - } - } - - // как будто у там эти функци вообще не нужны, мы берем твап из бейз плагина, не делаем лишних коллов - // // пока не очень понятно как она работает и что возвращает - // // TODO: реализовать getTwapMaybe, внутри вызывается только getTimepoints у пула - // function _getTWAPMaybe(uint256 secondsAgo, address pool) private { - - // } - - // // пока не очень понятно как она работает и что возвращает - // // TODO: реализовать getTwap, внутри вызывается только getTimepoints у пула - // function _getTWAP(uint32 varg0, address varg1) private { - - // } - - // function _getDepositTokenDecimals() internal virtual view returns (uint8) { - // return IERC20Metadata(depositToken).decimals(); - // } - - // function _getPairedTokenDecimals() internal virtual view returns (uint8) { - // return IERC20Metadata(depositToken).decimals(); - // } - - function _getTwapPrices( - address _depositToken, - address _pairedToken, - uint8 _pairedTokenDecimals, - int24 slowTwapTick, - int24 fastTwapTick, - int24 currentTick - ) internal view virtual returns (uint256, uint256, uint256) { - return ( - _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick), - _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick), - _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), currentTick) - ); - } - - function _getPairedTokenDecimals() internal view virtual returns (uint8) { - return IERC20Metadata(pairedToken).decimals(); - } - - function _getDepositTokenDecimals() internal view virtual returns (uint8) { - return IERC20Metadata(depositToken).decimals(); - } - - function _getDepositTokenVaultBalance() internal view virtual returns (uint256) { - return IERC20Metadata(depositToken).balanceOf(vault); - } - - function _calcPercentageDiff(uint256 a, uint256 b) private pure returns (uint256) { - return b > a ? ((b - a) * 10000) / b : ((a - b) * 10000) / a; - } - - function roundTickToTickSpacing(int24 _tickSpacing, int24 _tick) private pure returns (int24) { - return (_tick / _tickSpacing) * _tickSpacing; - } - - function roundTickToTickSpacingConsideringNegative(int24 _tickSpacing, int24 _tick) private pure returns (int24) { - int24 roundedTick = roundTickToTickSpacing(_tickSpacing, _tick); - if (_tick < 0) { - return roundedTick - _tickSpacing; - } else { - return roundedTick; - } - } - - // upper target lower - function _getPriceBounds(State _state, TwapResult memory twapResult, bool _allowToken1) private view returns (uint256, uint256, uint256) { - uint256 targetPrice = twapResult.currentPriceAccountingDecimals; - // тут чтобы убрать require нужно тогда прокидывать, видимо - require(targetPrice != 0, 'middlePrice must be > 0'); - require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); - // if (targetPrice == 0 || twapResult.totalDepositToken == 0) return (0, 0, 0); - - uint256 lowerPriceBound = 0; - if (_state != State.UnderInventory) { - // if not under-inventory (because if under - we place lower as Min) - // v4 = _calcPart(baseLowPct, twapResult.currentPriceAccountingDecimals); // 20% of currentPriceAccountingDecimals - // v2 = v5 = _SafeSub(v4, v1); // lower price bound (-20%) - // currentPrice - 20% (почему не сделать twapResult.currentPriceAccountingDecimals * 0.8?) - // console.log('baselowpct: ', thresholds.baseLowPct); - lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); - } - // v6 = _calcPart(baseHighPct, v1); // 10% of currentPriceAccountingDecimals - // v7 = v8 = _SafeAdd(v6, v1); // upper price bound (+10%) - // currentPriceAccountingDecimals + 10% - uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); - // console.log('targetPrice: ', targetPrice); - // console.log('upperPriceBound: ', upperPriceBound); - - // console.log('state????: ', uint256(_state)); - if (_state == State.Normal) { - // console.log('mi tut???'); - // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); - // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); - uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 - // console.log('limitReservePct: ', thresholds.limitReservePct); - // console.log('partOfTotalTokens: ', partOfTotalTokens); - // TODO: убрать этот require - require(twapResult.totalPairedInDeposit > partOfTotalTokens, 'not enough quote token'); - uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; - uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess - uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; - if (excessCoef != 0) { - targetPrice += _calcPart(excessCoef, targetPrice); - } - } - // ета залупа в каком случае срабатывает? (!allowToken1 -> depositToken = Token0) - // как связано какой депозит токен и то, убираем ли мы decimals или нет? - // console.log('targetPrice before remove decimals: ', targetPrice); - // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); - // console.log('upperPriceBound before remove decimals: ', upperPriceBound); - // console.log('decimalsSum: ', decimalsSum); - // console.log(_allowToken1); - if (!_allowToken1) { - // console.log('??????'); - targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice - lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound - upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound - // console.log('targetPrice after remove decimals: ', targetPrice); - // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); - // console.log('upperPriceBound after remove decimals: ', upperPriceBound); - } - - return (upperPriceBound, targetPrice, lowerPriceBound); - } - - function _calcPart(uint256 base, uint256 part) private pure returns (uint256) { - return (base * part) / 10000; - } - - function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { - // console.log('amount: ', amount); - // console.log('decimals: ', decimals); - return amount != 0 ? (10 ** decimals) / amount : amount; - } - - function _pause() private { - paused = true; - } - - function unpause() public payable /* onlyowner */ { - paused = false; - } - - function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { - uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); - return TickMath.getTickAtSqrtRatio(sqrtPriceX96); - } - - function getSqrtPriceX96(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - // price мы получаем из getRangesWithState, а там мы можем получить - // если state == normal, то без decimals, а если не normal, то с decimals - // и типа если price >= 10 ** tokenDecimals, то мы получили цену с decimals (ну и ХУЕТА) - // console.log(_price >= 10 ** _tokenDecimals); - return - _price >= 10 ** _tokenDecimals - ? getSqrtPriceX96FromPriceWithDecimals(_tokenDecimals, _price) - : getSqrtPriceX96FromPriceWithoutDecimals(_tokenDecimals, _price); - } - - function getSqrtPriceX96FromPriceWithDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - return uint160((Math.sqrt(_price) << 96) / Math.sqrt(10 ** _tokenDecimals)); - } - - function getSqrtPriceX96FromPriceWithoutDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - return uint160(Math.sqrt((_price << 192) / 10 ** _tokenDecimals)); + ) internal { + IRebalanceManager(rebalanceManager).obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); } } From 79c02d488264b82ef48e020e9d58743a828a8cb4 Mon Sep 17 00:00:00 2001 From: fourlen Date: Tue, 25 Mar 2025 16:50:14 +0300 Subject: [PATCH 03/42] sorry --- src/plugin/contracts/AlgebraBasePluginALM.sol | 5 +- src/plugin/contracts/RebalanceManager.sol | 1014 +++++++++++++++++ .../interfaces/IRebalanceManager.sol | 12 + .../test/MockAlgebraBasePluginALM.sol | 16 +- .../test/MockAlgebraBasePluginALMFactory.sol | 6 +- 5 files changed, 1039 insertions(+), 14 deletions(-) create mode 100644 src/plugin/contracts/RebalanceManager.sol create mode 100644 src/plugin/contracts/interfaces/IRebalanceManager.sol diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index 9763dc8f1..28b406547 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -11,7 +11,7 @@ import './plugins/SlidingFeePlugin.sol'; import './plugins/VolatilityOraclePlugin.sol'; /// @title Algebra Integral 1.2.1 adaptive fee plugin -contract AlgebraBasePluginALM is DynamicFeePlugin, VolatilityOraclePlugin, AlmPlugin { +contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePlugin { using Plugins for uint8; /// @inheritdoc IAlgebraPlugin @@ -71,8 +71,7 @@ contract AlgebraBasePluginALM is DynamicFeePlugin, VolatilityOraclePlugin, AlmPl failedToObtainTWAP = true; } - TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); - _rebalance(twapResult); + _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); return IAlgebraPlugin.afterSwap.selector; } diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol new file mode 100644 index 000000000..5ecb2aa74 --- /dev/null +++ b/src/plugin/contracts/RebalanceManager.sol @@ -0,0 +1,1014 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import '@cryptoalgebra/alm-vault/contracts/interfaces/IAlmVault.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/TickMath.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/FullMath.sol'; +import '@cryptoalgebra/integral-core/contracts/base/common/Timestamp.sol'; +import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; + +import '@openzeppelin/contracts/utils/math/Math.sol'; + +import './interfaces/IRebalanceManager.sol'; + +import './base/AlgebraBasePlugin.sol'; + +// import 'hardhat/console.sol'; + +contract RebalanceManager is IRebalanceManager, Timestamp { + + bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); + + // address public pool; + // function _blockTimestamp() internal pure returns(uint32) { + // return 0; + // } + // function _authorize() internal pure { + // return; + // } + // result.currentTick = int24(0); // 0 + // result.currentPriceAccountingDecimals = 0; // 32 + // result.slowAvgPriceAccountingDecimals = 0; // 64 + // result.fastAvgPriceAccountingDecimals = 0; // 96 + // result.totalPairedInDeposit = 0; // 128 + // result.percentageOfDepositToken = 0; // 160 + // result.totalDepositToken = 0; // 192 + // result.totalPairedToken = 0; // 224 + // result.result.percentageOfDepositTokenUnused = 0; // 256 + // result.failedToObtainTWAP = False; // 288 + // result.sameBlock = False; // 320 + struct TwapResult { + uint256 currentPriceAccountingDecimals; + uint256 slowAvgPriceAccountingDecimals; + uint256 fastAvgPriceAccountingDecimals; + uint256 totalPairedInDeposit; + uint256 totalDepositToken; + uint256 totalPairedToken; + int24 currentTick; + uint16 percentageOfDepositTokenUnused; // 10000 = 100% + uint16 percentageOfDepositToken; // 10000 = 100% + bool failedToObtainTWAP; + bool sameBlock; + } + struct Ranges { + int24 baseLower; + int24 baseUpper; + int24 limitLower; + int24 limitUpper; + } + enum State { + OverInventory, + Normal, + UnderInventory, + Special + } + // этот статус можно офнуть + enum DecideStatus { + Normal, + Special, + PendingRebalanceNeeded, + NoNeed, + ToSoon, + NoNeedWithPending, + FailedToObtainTWAPOrExtremeVolatility + } + enum UpdateStatus { + Status0, + Status1 + } + + struct Thresholds { + uint16 depositTokenUnusedThreshold; // STORAGE[0xb] = 100 (1%) + uint16 simulate; // 9300 93% maybe for moving a position towards price without changing the config + uint16 normalThreshold; // 80% (for what? normal trigger?) + uint16 underInventoryThreshold; // STORAGE[0xf] = 7700 Probably means 77% for under-inventory (opposite of _simulate) + uint16 overInventoryThreshold; // STORAGE[0xd] = 9100 91% (over-inv trigger?) + uint16 priceChangeThreshold; // STORAGE[0x8] = 100, в коде если пендинг, то 100, а если не пендинг то 50 + uint16 extremeVolatility; // STORAGE[0x4] = 2500 (25%) + uint16 highVolatility; // STORAGE[0x5] = 500 (5%) + uint16 someVolatility; // STORAGE[0x6] = 100 (1%) + uint16 dtrDelta; // STORAGE[0x7] = 300 + uint16 baseLowPct; // STORAGE[0x1c] = 2000 + uint16 baseHighPct; // STORAGE[0x1d] = 1000 + uint16 limitReservePct; // STORAGE[0x1e] = 500 + } + + // TODO: не забыть у твап не падать, а возвращать false если не получилось взять его + // TODO: норм упаковать + address public vault; + bool public isAlmInitialized; + bool public paused; + bool public allowToken1; + State public state; + uint32 public lastRebalanceTimestamp; + uint256 public lastRebalanceCurrentPrice; + Thresholds public thresholds; + + address public pairedToken; // STORAGE[0x16] bytes 0 to 19 + uint8 public pairedTokenDecimals; // = 18 STORAGE[0x17] + address public depositToken; // STORAGE[0x18] bytes 0 to 19 + uint8 public depositTokenDecimals; // STORAGE[0x19] + uint8 public decimalsSum; // STORAGE[0x1a] // это че? (сумма decimals depositToken и pairedToken) а нахуя? + uint8 public tokenDecimals; // pairedTokenDecimals ? в чем отличие + uint32 public slowTwapPeriod; + uint32 public fastTwapPeriod; + address public factory; + address public pool; + + constructor(address _vault, Thresholds memory _thresholds) { + require(!isAlmInitialized, 'Already initialized'); + isAlmInitialized = true; + // TODO: добавить require'ов + vault = _vault; + paused = false; + + bool _allowToken1 = IAlmVault(vault).allowToken1(); + + allowToken1 = _allowToken1; + state = State.OverInventory; // поч overinventory? + lastRebalanceTimestamp = 0; + lastRebalanceCurrentPrice = 0; + thresholds = _thresholds; + + address token0 = IAlmVault(_vault).token0(); + address token1 = IAlmVault(_vault).token1(); + + address _pairedToken = _allowToken1 ? token0 : token1; + pairedToken = _pairedToken; + uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); + // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); + pairedTokenDecimals = _pairedTokenDecimals; + + address _depositToken = _allowToken1 ? token1 : token0; + depositToken = _depositToken; + uint8 _depositTokenDecimals = _getDepositTokenDecimals(); + depositTokenDecimals = _depositTokenDecimals; + // console.log('_depositTokenDecimals: ', _depositTokenDecimals); + + decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; + // console.log('decimals sum: ', decimalsSum); + tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; + } + + function setPriceChangeThreshold(uint16 _priceChangeThreshold) external { + _authorize(); + require(_priceChangeThreshold < 10000, 'Invalid price change threshold'); + thresholds.priceChangeThreshold = _priceChangeThreshold; + // нужно эмитить ивент? + } + + function setPercentages(uint16 _baseLowPct, uint16 _baseHighPct, uint16 _limitReservePct) external { + _authorize(); + require(_baseLowPct >= 100 && _baseLowPct <= 10000, 'Invalid base low percent'); + require(_baseHighPct >= 100 && _baseHighPct <= 10000, 'Invalid base high percent'); + require(_limitReservePct >= 100 && _baseLowPct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); + thresholds.baseLowPct = _baseLowPct; + thresholds.baseHighPct = _baseHighPct; + thresholds.limitReservePct = _limitReservePct; + } + + function setTriggers(uint16 _simulate, uint16 _normalThreshold, uint16 _underInventoryThreshold, uint16 _overInventoryThreshold) external { + _authorize(); + require(_underInventoryThreshold > 6000, '_underInventoryThreshold must be > 6000'); + require(_normalThreshold > _underInventoryThreshold, '_normalThreshold must be > _underInventoryThreshold'); + require(_overInventoryThreshold > _normalThreshold, '_overInventoryThreshold must be > _normalThreshold'); + require(_simulate > _overInventoryThreshold, 'Simulate must be > _overInventoryThreshold'); + require(_simulate < 9500, 'Simulate must be < 9500'); + thresholds.simulate = _simulate; + thresholds.normalThreshold = _normalThreshold; + thresholds.underInventoryThreshold = _underInventoryThreshold; + thresholds.overInventoryThreshold = _overInventoryThreshold; + } + + function setDtrDelta(uint16 _dtrDelta) external { + _authorize(); + require(_dtrDelta <= 10000, '_dtrDelta must be <= 10000'); + thresholds.dtrDelta = _dtrDelta; + } + + function setHighVolatility(uint16 _highVolatility) external { + _authorize(); + require(_highVolatility >= thresholds.someVolatility, '_highVolatility must be >= someVolatility'); + thresholds.highVolatility = _highVolatility; + } + + function setSomeVolatility(uint16 _someVolatility) external { + _authorize(); + require(_someVolatility <= 300, '_someVolatility must be <= 300'); + thresholds.someVolatility = _someVolatility; + } + + function setExtremeVolatility(uint16 _extremeVolatility) external { + _authorize(); + require(_extremeVolatility >= thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); + thresholds.extremeVolatility = _extremeVolatility; + } + + function setDepositTokenUnusedThreshold(uint16 _depositTokenUnusedThreshold) external { + _authorize(); + require(_depositTokenUnusedThreshold >= 100 && _depositTokenUnusedThreshold <= 10000, '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); + thresholds.depositTokenUnusedThreshold = _depositTokenUnusedThreshold; + } + + function setSlowTwapPeriod(uint32 _slowTwapPeriod) external { + _authorize(); + require(_slowTwapPeriod >= fastTwapPeriod, '_slowTwapPeriod must be >= fastTwapPeriod'); + slowTwapPeriod = _slowTwapPeriod; + } + + function setFastTwapPeriod(uint32 _fastTwapPeriod) external { + _authorize(); + require(_fastTwapPeriod <= slowTwapPeriod, '_fastTwapPeriod must be <= slowTwapPeriod'); + fastTwapPeriod = _fastTwapPeriod; + } + + function setVault(address _vault) external { + _authorize(); + vault = _vault; + } + + // TODO: написать obtainTWAPAndRebalance() + + function obtainTWAPAndRebalance( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) external { + TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + _rebalance(twapResult); + } + + function _rebalance(TwapResult memory obtainTWAPsResult) internal { + // require(!paused, 'Pausable: paused'); + if (paused) return; + if (vault == address(0)) return; + + (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); + // console.log('rebalance entered'); + // console.log('decide status: ', uint256(decideStatus)); + // console.log('newState: ', uint256(newState)); + + // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала + // require(decideStatus != DecideStatus.NoNeed, "no need"); + // require(decideStatus != DecideStatus.ToSoon, "too soon"); + if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.ToSoon) return; + + if (decideStatus != DecideStatus.PendingRebalanceNeeded) { + if (decideStatus != DecideStatus.NoNeedWithPending) { + if (decideStatus != DecideStatus.FailedToObtainTWAPOrExtremeVolatility) { + Ranges memory ranges = decideStatus == DecideStatus.Normal + ? _getRangesWithState(newState, obtainTWAPsResult) + : _getRangesWithoutState(obtainTWAPsResult); + + // struct Ranges { + // int24 baseLower; + // int24 baseUpper; + // int24 limitLower; + // int24 limitUpper; + // } + // console.log('RANGES START'); + // console.logInt(ranges.baseLower); + // console.logInt(ranges.baseUpper); + // console.logInt(ranges.limitLower); + // console.logInt(ranges.limitUpper); + // console.log('RANGES END'); + + // require(ranges.baseUpper - ranges.baseLower > 300 && + // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + + // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) + // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); + + // TODO: swapquantity ? + try IAlmVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 1) { + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + } catch { + state = State.Special; + _pause(); + } + } else { + IAlmVault(vault).setDepositMax(0, 0); + // pendingRebalanceTimestamp = 0; + state = State.Special; + _pause(); + } + } else { + // pendingRebalanceTimestamp = 0; + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + } + } else { + // pendingRebalanceTimestamp = _blockTimestamp(); + } + + // чекируем decideStatus + // если нужен ребаланс + // вызываем getrangeswithstate или getRangesWithoutState, получаем ренжи + // IAlmVault(vault).rebalance(ranges.tick1, ranges.tick2, ....); + } + + function _obtainTWAPs( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) internal view returns (TwapResult memory twapResult) { + // достать проценты, хуенты + // достать резервы токенычей + // собрать TwapResult + + // struct TwapResult { + // uint256 currentPriceAccountingDecimals; done + // uint256 slowAvgPriceAccountingDecimals; done + // uint256 fastAvgPriceAccountingDecimals; done + // uint256 totalPairedInDeposit; done + // uint256 totalDepositToken; done + // uint256 totalPairedToken; done + // int24 currentTick; done + // uint16 percentageOfDepositTokenUnused; // 10000 = 100% done + // uint16 percentageOfDepositToken; // 10000 = 100% done + // bool failedToObtainTWAP; // всегда false прост done + // bool sameBlock; done + // } + + // console.log('entered obtain twaps'); + twapResult.failedToObtainTWAP = failedToObtainTWAP; + if (failedToObtainTWAP) { + return twapResult; + } + + twapResult.currentTick = currentTick; + twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; + bool _allowToken1 = allowToken1; + if (_allowToken1) { + // почему они эту строку наверх не вынесли? + (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); + twapResult.totalPairedToken = amount0; + twapResult.totalDepositToken = amount1; + } else { + (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); + twapResult.totalPairedToken = amount1; + twapResult.totalDepositToken = amount0; + } + // console.log('after getTotalAmounts obtain twaps'); + + address _depositToken = depositToken; + address _pairedToken = pairedToken; + + uint8 _pairedTokenDecimals = pairedTokenDecimals; + + (uint256 slowPrice, uint256 fastPrice, uint256 currentPriceAccountingDecimals) = _getTwapPrices( + _depositToken, + _pairedToken, + _pairedTokenDecimals, + slowTwapTick, + fastTwapTick, + twapResult.currentTick + ); + twapResult.slowAvgPriceAccountingDecimals = slowPrice; + twapResult.fastAvgPriceAccountingDecimals = fastPrice; + + // uint256 slowPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick); + // twapResult.slowAvgPriceAccountingDecimals = slowPrice; + // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); + // twapResult.fastAvgPriceAccountingDecimals = fastPrice; + + // console.log('2'); + + // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); + // console.log('2.5'); + twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; + uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; + uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); + twapResult.totalPairedInDeposit = totalPairedInDeposit; + + // console.log('3'); + + if (totalPairedInDeposit == 0) { + twapResult.percentageOfDepositToken = 10000; + } else { + uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + // // console.log("totalTokensAmount: ", totalTokensAmount); + if (totalTokensAmount == 0) { + twapResult.failedToObtainTWAP = true; + return twapResult; + } + // uint256 totalDepositTokenMultipliedByFactor = 10000 * twapResult.totalDepositToken; + uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); + twapResult.percentageOfDepositToken = percentageOfDepositToken; + } + + // console.log('4'); + + uint256 depositTokenBalance = _getDepositTokenVaultBalance(); + // console.log('depositTokenBalance: ', depositTokenBalance); + + if (depositTokenBalance > 0) { + uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; + // че за v42 и v43, надо чекнуть первоначальный декомпайл + // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) + twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); + } else { + // че за v44 + // v42 = v44 = 0; + twapResult.percentageOfDepositTokenUnused = 0; + } + } + + function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { + // тут мы более глобально чекаем, получилось ли достать твап, какая ща волатильность + // куча куча ифов, в итоге в одном из случаев вызываем + // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff + // UpdateStatus updStatus = _updateStatus(twapResult); + if (twapResult.failedToObtainTWAP) { + return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + } + + uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); + uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); + // console.log('fastSlowDiff: ', fastSlowDiff); + // console.log('fastCurrentDiff: ', fastCurrentDiff); + + bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; + if (!isExtremeVolatility) { + bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; + if (!isHighVolatility) { + if ( + !((state == State.OverInventory || state == State.Normal) && + lastRebalanceCurrentPrice != 0 && + twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) + ) { + (bool needToRebalance, State newState) = _updateStatus(twapResult); + // console.log('needToRebalance: ', needToRebalance); + // console.log('newState: ', uint256(newState)); + // needToRebalance = true; + // newState = State.Normal; + if (needToRebalance) { + if (fastCurrentDiff < thresholds.someVolatility) { + // console.log('fastCurrentDiff < thresholds.someVolatility'); + return (DecideStatus.Normal, newState); // normal rebalance + } else { + return (DecideStatus.ToSoon, newState); // too soon + } + } else { + return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) + } + } else { + // State == NORMAL || OVER + // И Это не первый ребаланс + // И percentageOfDepositToken меньше чем _underInventoryPct - _dtrDelta (??) - значит очень мало депозит токенов, то: + // ----> переходим дальше в итоге выставляя status = SPECIAL + // тут как будто ничо не происходит + // типа тут сетятся v19, v21, v23, v25 + // но дальше с ними ничо не происходит + // только в гносис записываем v23, который итак равен гносису + // v19 = v20 = 21; + // v21 = v22 = 3; + // v23 = v24 = bytes31(_gnosis); + // v25 = v26 = 1; + } + } else { + // handle high volatility + // Если fastSlowDiff >= _highVolatility ИЛИ fastCurrentDiff => _highVolatility (5%), то считаем, что сейчас высокая волатильность. + if (state != State.Special) { + // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается + + if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { + // Если fastCurrentDiff >= _someVolatility (low? - 1%): + // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается + return (DecideStatus.ToSoon, State.Special); + } else { + // Иначе ------> переходим дальше в итоге выставляя status = SPECIAL + // то же самое, как будто нихуя не происходит + // v19 = v30 = 21; + // v21 = v31 = 3; + // v23 = v32 = bytes31(_gnosis); + // v25 = v33 = 1; + } + } else { + // special -> noneed + return (DecideStatus.NoNeed, State.Special); + } + } + state = State.Special; + // какой-то спешл кейс, из-за него вызывается rebalanceWithoutState + return (DecideStatus.Special, State.Special); // выяснить чо он означает + } else { + // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается + return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + } + } + + function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { + // тут мы сравниваем уже все проценты и решаем в какой стейт мы будем рабаланситься (и будем ли вообще) + // вычисления на оснвое twapResult, сохранение результата в сторадж, видимо нужно из-за двухэтапной ребалансировки (можно ли объединить в одну функцию?) + // внутри вызываетя вспомогательная функция _calcPercentageDiff + // v0 = state == 3 ? true : !lastRebalanceCurrentPrice + if (state != State.Special && lastRebalanceCurrentPrice != 0) { + if (state != State.Normal) { + if (state != State.OverInventory) { + if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + // if less than 93% + // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); + if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { + // if greater than 80% (REBALANCE TO NORMAL) + // sqrtStatus = 1; + // state == UnderInventory || state == Special + // 80% <= twapResult.percentageOfDepositToken <= 93% + // типа из андеринветори или спешл ребалансим в НОРМАЛ + return (true, State.Normal); + } else { + return (true, State.UnderInventory); + } + } else { + // sqrtStatus = 1; + // state == UnderInventory || state == Special + // twapResult.percentageOfDepositToken >= 93% + return (true, State.OverInventory); + } + } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + // if greater than 77% + if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { + // if less than 91% (REBALANCE TO NORMAL) + // sqrtStatus = 1; + // state == OverInventory + // 77% <= twapResult.percentageOfDepositToken <= 91% + // типа из оверинвентори в НОРМАЛ + return (true, State.Normal); + } + // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) + else { + return (true, State.OverInventory); + } + } else { + // state == OverInventory + // twapResult.percentageOfDepositToken <= 77% + // из оверинвентори хуячимся в андеринвентори + return (true, State.UnderInventory); + } + + // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) + uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals + // console.log('priceChange: ', priceChange); + if (priceChange > thresholds.priceChangeThreshold) { + // CASES: + // 1. we are still under-inventory and price changed by more than (1/0.5)% + // 2. we are still over-inventory and price changed by more than (1/0.5)% + + // console.log('priceChange > thresholds.priceChangeThreshold'); + return (true, state); + } + } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + if (twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold) { + // state == Normal + // twapResult.percentageOfDepositToken < 77% <= 93 % + return (true, State.UnderInventory); + } + } else { + // state == Normal + // twapResult.percentageOfDepositToken > 93% + return (true, State.OverInventory); + } + + if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { + // if less than 1% + // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); + return (false, State.Normal); // no rebalance needed + } else { + // CASES: + // 1. state == Normal and 75% < twapResult.percentageOfDepositToken < 93% + return (true, state); + } + } else { + if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + // if less than 93% + if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + // if greater than 77% (REBALANCE TO NORMAL) + // state == Special OR not lastRebalanceCurrentPrice + // 77% <= twapResult.percentageOfDepositToken <= 93% + return (true, State.Normal); + } else { + // state == Special OR not lastRebalanceCurrentPrice + // twapResult.percentageOfDepositToken <= 77% + return (true, State.UnderInventory); + } + } else { + // state == Special OR not lastRebalanceCurrentPrice + // twapResult.percentageOfDepositToken > 93% + return (true, State.OverInventory); + } + } + + // сюда по идее никогда не попадаем (точно??) точно + return (false, State.Normal); + } + + function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { + // scope to prevent stack too deep + { + // console.log('entered _getRangesWithState'); + // State _state = state; + bool _allowToken1 = allowToken1; + int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); + uint8 _tokenDecimals = tokenDecimals; + + (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); + // console.log('upperPriceBound: ', upperPriceBound); + // console.log('targetPrice: ', targetPrice); + // console.log('lowerPriceBound: ', lowerPriceBound); + + int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); + bool currentTickIsRound = roundedTick == twapResult.currentTick; + + int24 commonTick; + int24 tickForLowerPrice; + if (newState == State.Normal) { + // If HEALTHY status (NORMAL) use target price + // тут targetPrice без decimals (если deposittoken = token0) + // и с decimals если deposittoken = token1, без X96 или X192 + int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); + // console.log('targetTick'); + // console.logInt(targetTick); + commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); + } else { + // console.log('entered else in newState == State.Normal'); + commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); + } + + int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); + // console.log('upperTick'); + // console.logInt(upperTick); + int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); + // console.log('tickForHigherPrice'); + // console.logInt(tickForHigherPrice); + + if (lowerPriceBound == 0) { + // Under-inventory state probably + // if depositToken == token0, надо бы это в сторадж наверное засунуть + // console.log('entered lowerPriceBound == 0'); + int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; + tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing + } else { + int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); + tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); + } + if (!_allowToken1) { + // if deposittoken == token0 + // console.log('TICKS'); + // console.logInt(int24(commonTick)); + // console.logInt(int24(tickForLowerPrice)); + // console.logInt(int24(tickForHigherPrice)); + // console.logInt(int24(commonTick)); + // console.log('TICKS END'); + ranges.baseLower = int24(commonTick); + ranges.baseUpper = int24(tickForLowerPrice); + ranges.limitLower = int24(tickForHigherPrice); + ranges.limitUpper = int24(commonTick); + + // if (varg0 != 2) { + // v19 = 0x437d(int24(_gnosis >> 176), 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27618); + // v18.word2 = int24(v19); + // } + // assert(varg0 <= 3); + // if (varg0 == 2) { + // if (v4) { + // v20 = v21 = MEM[varg1]; + // } else { + // v20 = v22 = v18.word0; + // } + // v18.word0 = int24(v20); + // if (v4) { + // v23 = v24 = MEM[varg1] - int24(_gnosis >> 176); + // } else { + // v23 = v25 = v18.word3; + // } + // v18.word3 = int24(v23); + // } + + if (newState != State.UnderInventory) { + // if not under-inventory + // we do not use v16 because if Token0 then we reverse the structure of ticks + int24 roundedMinTick = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); + ranges.limitLower = int24(roundedMinTick); // use MIN tick + } else { + // if under-inventorys + ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; // if tick is round set currentTick (useless operation?) + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; // tick - tick spacing if round (avoid having the same tick if its round??) + } + + if (newState == State.OverInventory) { + // if over-inventory + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.limitUpper; + ranges.baseLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.baseLower; + ranges.baseUpper = int24(ranges.baseUpper + _tickSpacing); + } + } else { + ranges.baseLower = int24(tickForLowerPrice); + ranges.baseUpper = int24(commonTick); + ranges.limitLower = int24(commonTick); + ranges.limitUpper = int24(tickForHigherPrice); + + if (newState != State.UnderInventory) { + ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); + } + + if (lowerPriceBound > 0 && newState != State.OverInventory) { + ranges.baseLower = int24(ranges.baseLower + _tickSpacing); + } + + if (newState == State.Normal) { + ranges.baseUpper = int24(_tickSpacing + ranges.baseUpper); + ranges.limitLower = int24(_tickSpacing + ranges.limitLower); + } + + if (newState == State.UnderInventory) { + ranges.baseUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.baseUpper; + ranges.limitLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.limitLower; + } + + if (newState == State.OverInventory) { + ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; + ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; + } + } + } + // просто возвращаем? (НЕ ПРОСТО ОКАЗЫВАЕТСЯ ВОЗВРАЩАЕМ) + // TODO: пофиксить stackTooDeep + if (newState == State.OverInventory) { + (ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper) = ( + ranges.limitLower, + ranges.limitUpper, + ranges.baseLower, + ranges.baseUpper + ); + // v49.word0 = int24(MEM[64 + v17]); + // v49.word1 = int24(MEM[96 + v17]); + // v49.word2 = int24(MEM[v17]); + // v49.word3 = int24(MEM[32 + v17]); + } + } + + function _getRangesWithoutState(TwapResult memory twapResult) internal view returns (Ranges memory ranges) { + // возвращает что-то типа + // result.baseLower = currentTick + // result.baseUpper = maxUpperTick + // result.limitLower = minLowerTick + // result.limitUpper = currentTick - tickSpacing + + int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); + bool _allowToken1 = allowToken1; + + // внутри юзается roundTickToTickSpacingCondigeringNegative, roundTickToTickSpacing + int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); + int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); + // console.log('ticks in _getRangesWithoutState'); + // console.logInt(tickRoundedDown); + // console.logInt(tickRounded); + + if (!_allowToken1) { + if (twapResult.currentTick == tickRounded) { + tickRoundedDown = twapResult.currentTick; + } + + ranges.baseLower = tickRoundedDown; + int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick + ranges.baseUpper = maxTickRounded; + int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); // round MinLowerTick + ranges.limitLower = minTickRounded; + if (twapResult.currentTick == tickRounded) { + tickRoundedDown = twapResult.currentTick - _tickSpacing; + } + ranges.limitUpper = tickRoundedDown; + } else { + int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); + ranges.baseLower = minTickRounded; + + if (twapResult.currentTick == tickRounded) { + ranges.baseUpper = twapResult.currentTick; + } else { + ranges.baseUpper = tickRoundedDown + _tickSpacing; + } + + if (twapResult.currentTick == tickRounded) { + ranges.limitLower = _tickSpacing + twapResult.currentTick; + } else { + ranges.limitLower = tickRoundedDown + _tickSpacing; + } + int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick + ranges.limitUpper = maxTickRounded; + } + } + + // поч uint128? поч uint256? + // потому что это не decimals, а 10 ** decimals + function _getPriceAccountingDecimals( + address token0, + address token1, + uint128 token1decimals, + /*uint256*/ int24 averageTick + ) private pure returns (uint256 price) { + uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); + if (uint160(sqrtPriceX96) > type(uint128).max) { + uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); + return + token1 < token0 + ? FullMath.mulDiv(priceX128, token1decimals, uint256(type(uint128).max) + 1) + : FullMath.mulDiv(uint256(type(uint128).max) + 1, token1decimals, priceX128); + } else { + // console.log(token0, token1); + // console.log(token1decimals); + // console.logInt(int256(averageTick)); + // console.log(sqrtPriceX96); + // console.log(token1 < token0); + // if (token1 < token0) { + // v5 = v6 = MulDiv(uint192.max + 1, token1decimals, uint160(sqrtPrice96) * uint160(sqrtPrice96)); + // } else { + // v5 = v7 = MulDiv(uint160(sqrtPrice96) * uint160(sqrtPrice96), token1decimals, uint192.max + 1); + // } + return + token1 < token0 + ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, type(uint192).max + 1) + : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); + } + } + + // как будто у там эти функци вообще не нужны, мы берем твап из бейз плагина, не делаем лишних коллов + // // пока не очень понятно как она работает и что возвращает + // // TODO: реализовать getTwapMaybe, внутри вызывается только getTimepoints у пула + // function _getTWAPMaybe(uint256 secondsAgo, address pool) private { + + // } + + // // пока не очень понятно как она работает и что возвращает + // // TODO: реализовать getTwap, внутри вызывается только getTimepoints у пула + // function _getTWAP(uint32 varg0, address varg1) private { + + // } + + // function _getDepositTokenDecimals() internal virtual view returns (uint8) { + // return IERC20Metadata(depositToken).decimals(); + // } + + // function _getPairedTokenDecimals() internal virtual view returns (uint8) { + // return IERC20Metadata(depositToken).decimals(); + // } + + function _authorize() internal view virtual { + require(IAlgebraFactory(factory).hasRoleOrOwner(ALGEBRA_BASE_PLUGIN_MANAGER, msg.sender)); + } + + function _getTwapPrices( + address _depositToken, + address _pairedToken, + uint8 _pairedTokenDecimals, + int24 slowTwapTick, + int24 fastTwapTick, + int24 currentTick + ) internal view virtual returns (uint256, uint256, uint256) { + return ( + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick), + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick), + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), currentTick) + ); + } + + function _getPairedTokenDecimals() internal view virtual returns (uint8) { + return IERC20Metadata(pairedToken).decimals(); + } + + function _getDepositTokenDecimals() internal view virtual returns (uint8) { + return IERC20Metadata(depositToken).decimals(); + } + + function _getDepositTokenVaultBalance() internal view virtual returns (uint256) { + return IERC20Metadata(depositToken).balanceOf(vault); + } + + function _calcPercentageDiff(uint256 a, uint256 b) private pure returns (uint256) { + return b > a ? ((b - a) * 10000) / b : ((a - b) * 10000) / a; + } + + function roundTickToTickSpacing(int24 _tickSpacing, int24 _tick) private pure returns (int24) { + return (_tick / _tickSpacing) * _tickSpacing; + } + + function roundTickToTickSpacingConsideringNegative(int24 _tickSpacing, int24 _tick) private pure returns (int24) { + int24 roundedTick = roundTickToTickSpacing(_tickSpacing, _tick); + if (_tick < 0) { + return roundedTick - _tickSpacing; + } else { + return roundedTick; + } + } + + // upper target lower + function _getPriceBounds(State _state, TwapResult memory twapResult, bool _allowToken1) private view returns (uint256, uint256, uint256) { + uint256 targetPrice = twapResult.currentPriceAccountingDecimals; + // тут чтобы убрать require нужно тогда прокидывать, видимо + require(targetPrice != 0, 'middlePrice must be > 0'); + require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); + // if (targetPrice == 0 || twapResult.totalDepositToken == 0) return (0, 0, 0); + + uint256 lowerPriceBound = 0; + if (_state != State.UnderInventory) { + // if not under-inventory (because if under - we place lower as Min) + // v4 = _calcPart(baseLowPct, twapResult.currentPriceAccountingDecimals); // 20% of currentPriceAccountingDecimals + // v2 = v5 = _SafeSub(v4, v1); // lower price bound (-20%) + // currentPrice - 20% (почему не сделать twapResult.currentPriceAccountingDecimals * 0.8?) + // console.log('baselowpct: ', thresholds.baseLowPct); + lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); + } + // v6 = _calcPart(baseHighPct, v1); // 10% of currentPriceAccountingDecimals + // v7 = v8 = _SafeAdd(v6, v1); // upper price bound (+10%) + // currentPriceAccountingDecimals + 10% + uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); + // console.log('targetPrice: ', targetPrice); + // console.log('upperPriceBound: ', upperPriceBound); + + // console.log('state????: ', uint256(_state)); + if (_state == State.Normal) { + // console.log('mi tut???'); + // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); + // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); + uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 + // console.log('limitReservePct: ', thresholds.limitReservePct); + // console.log('partOfTotalTokens: ', partOfTotalTokens); + // TODO: убрать этот require + require(twapResult.totalPairedInDeposit > partOfTotalTokens, 'not enough quote token'); + uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; + uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess + uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; + if (excessCoef != 0) { + targetPrice += _calcPart(excessCoef, targetPrice); + } + } + // ета залупа в каком случае срабатывает? (!allowToken1 -> depositToken = Token0) + // как связано какой депозит токен и то, убираем ли мы decimals или нет? + // console.log('targetPrice before remove decimals: ', targetPrice); + // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); + // console.log('upperPriceBound before remove decimals: ', upperPriceBound); + // console.log('decimalsSum: ', decimalsSum); + // console.log(_allowToken1); + if (!_allowToken1) { + // console.log('??????'); + targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice + lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound + upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound + // console.log('targetPrice after remove decimals: ', targetPrice); + // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); + // console.log('upperPriceBound after remove decimals: ', upperPriceBound); + } + + return (upperPriceBound, targetPrice, lowerPriceBound); + } + + function _calcPart(uint256 base, uint256 part) private pure returns (uint256) { + return (base * part) / 10000; + } + + function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { + // console.log('amount: ', amount); + // console.log('decimals: ', decimals); + return amount != 0 ? (10 ** decimals) / amount : amount; + } + + function _pause() private { + paused = true; + } + + function unpause() public payable /* onlyowner */ { + paused = false; + } + + function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { + uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); + return TickMath.getTickAtSqrtRatio(sqrtPriceX96); + } + + function getSqrtPriceX96(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + // price мы получаем из getRangesWithState, а там мы можем получить + // если state == normal, то без decimals, а если не normal, то с decimals + // и типа если price >= 10 ** tokenDecimals, то мы получили цену с decimals (ну и ХУЕТА) + // console.log(_price >= 10 ** _tokenDecimals); + return + _price >= 10 ** _tokenDecimals + ? getSqrtPriceX96FromPriceWithDecimals(_tokenDecimals, _price) + : getSqrtPriceX96FromPriceWithoutDecimals(_tokenDecimals, _price); + } + + function getSqrtPriceX96FromPriceWithDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + return uint160((Math.sqrt(_price) << 96) / Math.sqrt(10 ** _tokenDecimals)); + } + + function getSqrtPriceX96FromPriceWithoutDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + return uint160(Math.sqrt((_price << 192) / 10 ** _tokenDecimals)); + } +} diff --git a/src/plugin/contracts/interfaces/IRebalanceManager.sol b/src/plugin/contracts/interfaces/IRebalanceManager.sol new file mode 100644 index 000000000..14e6ba12f --- /dev/null +++ b/src/plugin/contracts/interfaces/IRebalanceManager.sol @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +pragma solidity >=0.5.0; + +interface IRebalanceManager { + function obtainTWAPAndRebalance( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) external; +} diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol index a0cfa49cf..ae5ce4d4c 100644 --- a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol @@ -3,11 +3,11 @@ pragma solidity =0.8.20; import '../AlgebraBasePluginALM.sol'; -contract MockAlgebraBasePluginALM is AlgebraBasePluginALM { - constructor( - address _pool, - address _factory, - address _pluginFactory, - AlgebraFeeConfiguration memory _config - ) AlgebraBasePluginALM(_pool, _factory, _pluginFactory, _config) {} -} +// contract MockAlgebraBasePluginALM is AlgebraBasePluginALM { +// constructor( +// address _pool, +// address _factory, +// address _pluginFactory, +// AlgebraFeeConfiguration memory _config +// ) AlgebraBasePluginALM(_pool, _factory, _pluginFactory, _config) {} +// } diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol index 05aa89d09..d0a42f8cc 100644 --- a/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol @@ -48,9 +48,9 @@ contract MockAlgebraBasePluginALMFactory is IAlgebraBasePluginALMFactory { } function _createPlugin(address pool) internal returns (address) { - MockAlgebraBasePluginALM plugin = new MockAlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration); - pluginByPool[pool] = address(plugin); - return address(plugin); + // MockAlgebraBasePluginALM plugin = new MockAlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration); + // pluginByPool[pool] = address(plugin); + // return address(plugin); } function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external override { From c2643ae9c0e250d9f9ed9bf16a6e207b8895da3b Mon Sep 17 00:00:00 2001 From: debych Date: Wed, 26 Mar 2025 13:12:04 +0300 Subject: [PATCH 04/42] [Plugin] add authorize in initializeALM --- src/plugin/contracts/plugins/AlmPlugin.sol | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index 4514d11a2..b7688ab70 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -12,17 +12,14 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { uint32 public slowTwapPeriod; uint32 public fastTwapPeriod; - function initializeALM( - address _rebalanceManager, - uint32 _slowTwapPeriod, - uint32 _fastTwapPeriod - ) external { - require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); - require(_slowTwapPeriod >= _fastTwapPeriod, '_slowTwapPeriod must be >= _fastTwapPeriod'); - rebalanceManager = _rebalanceManager; - slowTwapPeriod = _slowTwapPeriod; - fastTwapPeriod = _fastTwapPeriod; - } + function initializeALM(address _rebalanceManager, uint32 _slowTwapPeriod, uint32 _fastTwapPeriod) external { + _authorize(); + require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); + require(_slowTwapPeriod >= _fastTwapPeriod, '_slowTwapPeriod must be >= _fastTwapPeriod'); + rebalanceManager = _rebalanceManager; + slowTwapPeriod = _slowTwapPeriod; + fastTwapPeriod = _fastTwapPeriod; + } function _obtainTWAPAndRebalance( int24 currentTick, From 9af2a9b71bf2f6d130362eab79810581bd8d141b Mon Sep 17 00:00:00 2001 From: debych Date: Wed, 26 Mar 2025 13:12:17 +0300 Subject: [PATCH 05/42] [Plugin] add setters --- src/plugin/contracts/plugins/AlmPlugin.sol | 42 +++++++++++++++------- 1 file changed, 30 insertions(+), 12 deletions(-) diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index b7688ab70..a1c7ab3bb 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -8,9 +8,9 @@ import '../interfaces/IRebalanceManager.sol'; // import 'hardhat/console.sol'; abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { - address public rebalanceManager; - uint32 public slowTwapPeriod; - uint32 public fastTwapPeriod; + address public rebalanceManager; + uint32 public slowTwapPeriod; + uint32 public fastTwapPeriod; function initializeALM(address _rebalanceManager, uint32 _slowTwapPeriod, uint32 _fastTwapPeriod) external { _authorize(); @@ -21,13 +21,31 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { fastTwapPeriod = _fastTwapPeriod; } - function _obtainTWAPAndRebalance( - int24 currentTick, - int24 slowTwapTick, - int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP - ) internal { - IRebalanceManager(rebalanceManager).obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); - } + function setSlowTwapPeriod(uint32 _slowTwapPeriod) external { + _authorize(); + require(_slowTwapPeriod >= fastTwapPeriod, '_slowTwapPeriod must be >= fastTwapPeriod'); + slowTwapPeriod = _slowTwapPeriod; + } + + function setFastTwapPeriod(uint32 _fastTwapPeriod) external { + _authorize(); + require(_fastTwapPeriod <= slowTwapPeriod, '_fastTwapPeriod must be <= slowTwapPeriod'); + fastTwapPeriod = _fastTwapPeriod; + } + + function setRebalanceManager(address _rebalanceManager) external { + _authorize(); + require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); + rebalanceManager = _rebalanceManager; + } + + function _obtainTWAPAndRebalance( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) internal { + IRebalanceManager(rebalanceManager).obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + } } From 2f87ae1eabb0e02521b5f5093d109b76152270d5 Mon Sep 17 00:00:00 2001 From: debych Date: Wed, 26 Mar 2025 13:12:39 +0300 Subject: [PATCH 06/42] [Plugin] add alm-vault package in npm --- src/plugin/package-lock.json | 45 ++++++++++++++++++++++++++++++++++++ src/plugin/package.json | 1 + src/plugin/yarn.lock | 38 ------------------------------ 3 files changed, 46 insertions(+), 38 deletions(-) delete mode 100644 src/plugin/yarn.lock diff --git a/src/plugin/package-lock.json b/src/plugin/package-lock.json index 63b723f21..1aef42550 100644 --- a/src/plugin/package-lock.json +++ b/src/plugin/package-lock.json @@ -9,6 +9,7 @@ "version": "1.2.1", "license": "GPL-2.0-or-later", "dependencies": { + "@cryptoalgebra/alm-vault": "^1.2.1", "@cryptoalgebra/integral-core": "1.2.1", "@cryptoalgebra/integral-periphery": "1.2.1" }, @@ -31,6 +32,8 @@ }, "../core/node_modules/@openzeppelin/contracts": { "version": "4.9.3", + "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.3.tgz", + "integrity": "sha512-He3LieZ1pP2TNt5JbkPA4PNT9WC3gOTOlDcFGJW4Le4QKqwmiNJCRt44APfxMxvq7OugU/cqYuPcSBzOw38DAg==", "license": "MIT" }, "../periphery": { @@ -56,10 +59,14 @@ }, "../periphery/node_modules/@openzeppelin/contracts": { "version": "4.9.3", + "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.3.tgz", + "integrity": "sha512-He3LieZ1pP2TNt5JbkPA4PNT9WC3gOTOlDcFGJW4Le4QKqwmiNJCRt44APfxMxvq7OugU/cqYuPcSBzOw38DAg==", "license": "MIT" }, "../periphery/node_modules/@uniswap/v2-core": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@uniswap/v2-core/-/v2-core-1.0.1.tgz", + "integrity": "sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==", "license": "GPL-3.0-or-later", "engines": { "node": ">=10" @@ -105,6 +112,31 @@ "dev": true, "license": "MIT" }, + "node_modules/@cryptoalgebra/alm-vault": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@cryptoalgebra/alm-vault/-/alm-vault-1.2.1.tgz", + "integrity": "sha512-7FsfLlAczra4sRNsggTjbZnJYl6bae401NjZYlU0NDn6WZupMMHDhqo1m8nL72aX0X5YSgzZomC/9qL2UlUXHg==", + "dependencies": { + "@cryptoalgebra/integral-base-plugin": "^1.2.1", + "@cryptoalgebra/integral-core": "^1.2.1", + "@cryptoalgebra/integral-periphery": "^1.2.1", + "@openzeppelin/contracts": "4.9.3", + "bignumber.js": "^9.1.2" + } + }, + "node_modules/@cryptoalgebra/integral-base-plugin": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@cryptoalgebra/integral-base-plugin/-/integral-base-plugin-1.2.1.tgz", + "integrity": "sha512-BgeLkSbuaTGs1LwBh4XDHAN9YUuKmjx13rdGeM0uKQrEndP1uay3rSA6WGlZEUHIKnXAcjrj5aGqyK+4MwgM9w==", + "dependencies": { + "@cryptoalgebra/integral-core": "1.2.1", + "@cryptoalgebra/integral-periphery": "1.2.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=8.0.0" + } + }, "node_modules/@cryptoalgebra/integral-core": { "resolved": "../core", "link": true @@ -112,6 +144,19 @@ "node_modules/@cryptoalgebra/integral-periphery": { "resolved": "../periphery", "link": true + }, + "node_modules/@openzeppelin/contracts": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.3.tgz", + "integrity": "sha512-He3LieZ1pP2TNt5JbkPA4PNT9WC3gOTOlDcFGJW4Le4QKqwmiNJCRt44APfxMxvq7OugU/cqYuPcSBzOw38DAg==" + }, + "node_modules/bignumber.js": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz", + "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==", + "engines": { + "node": "*" + } } } } diff --git a/src/plugin/package.json b/src/plugin/package.json index a603f1920..d57b00cb7 100644 --- a/src/plugin/package.json +++ b/src/plugin/package.json @@ -27,6 +27,7 @@ "url": "https://github.com/cryptoalgebra/Algebra/" }, "dependencies": { + "@cryptoalgebra/alm-vault": "^1.2.1", "@cryptoalgebra/integral-core": "1.2.1", "@cryptoalgebra/integral-periphery": "1.2.1" }, diff --git a/src/plugin/yarn.lock b/src/plugin/yarn.lock deleted file mode 100644 index 4f93db9b1..000000000 --- a/src/plugin/yarn.lock +++ /dev/null @@ -1,38 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@cryptoalgebra/alm-vault@^1.0.9": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@cryptoalgebra/alm-vault/-/alm-vault-1.0.9.tgz#9a8d6efd90a1c71664463c70aee0296fb4d7b305" - integrity sha512-c/QI8nuZkepgCjBvzWaqzGkufE6EVT9Y7ugiP/KIWm76k4IKoHIklIwT+IDTbn+/r9qsfOeUD2c2xhDwmEM5XA== - dependencies: - "@cryptoalgebra/integral-core" "^1.2.0" - "@cryptoalgebra/integral-periphery" "^1.2.0" - "@openzeppelin/contracts" "4.9.3" - -"@cryptoalgebra/integral-core@1.2.0", "@cryptoalgebra/integral-core@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@cryptoalgebra/integral-core/-/integral-core-1.2.0.tgz#ad2476d93ff53aefad78a53ef499891ba2ae1bb3" - integrity sha512-BKi/iOj3QflrBOeV5slpqXszpkNEirEd1qXwJxx4bNuTu9lih3aSorvhoNdgg6Jr5wlDuZrw/JrGvOIj4OqhbQ== - dependencies: - "@openzeppelin/contracts" "4.9.3" - -"@cryptoalgebra/integral-periphery@1.2.0", "@cryptoalgebra/integral-periphery@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@cryptoalgebra/integral-periphery/-/integral-periphery-1.2.0.tgz#803f7366b4a4d9d604146d67030e187912260d10" - integrity sha512-gH3qLqoDHeq3qf0Pe277v7ei1712wGsYvW73KplNOtXtsPBmh4T3L6ZvL0DokZNvf676xdhyqo2zFp8Ip6ojNg== - dependencies: - "@cryptoalgebra/integral-core" "1.2.0" - "@openzeppelin/contracts" "4.9.3" - "@uniswap/v2-core" "1.0.1" - -"@openzeppelin/contracts@4.9.3": - version "4.9.3" - resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-4.9.3.tgz#00d7a8cf35a475b160b3f0293a6403c511099364" - integrity sha512-He3LieZ1pP2TNt5JbkPA4PNT9WC3gOTOlDcFGJW4Le4QKqwmiNJCRt44APfxMxvq7OugU/cqYuPcSBzOw38DAg== - -"@uniswap/v2-core@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@uniswap/v2-core/-/v2-core-1.0.1.tgz#af8f508bf183204779938969e2e54043e147d425" - integrity sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q== From d4c45027580cdb61d472c7ee36554548e6ba786f Mon Sep 17 00:00:00 2001 From: debych Date: Wed, 26 Mar 2025 13:13:55 +0300 Subject: [PATCH 07/42] [Plugin] create BaseRebalanceManager.sol --- src/plugin/contracts/RebalanceManager.sol | 1050 +---------------- .../contracts/base/BaseRebalanceManager.sol | 968 +++++++++++++++ 2 files changed, 1008 insertions(+), 1010 deletions(-) create mode 100644 src/plugin/contracts/base/BaseRebalanceManager.sol diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index 5ecb2aa74..9617abce2 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -1,1014 +1,44 @@ // SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.8.20; -import '@cryptoalgebra/alm-vault/contracts/interfaces/IAlmVault.sol'; -import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; -import '@cryptoalgebra/integral-core/contracts/libraries/TickMath.sol'; -import '@cryptoalgebra/integral-core/contracts/libraries/FullMath.sol'; -import '@cryptoalgebra/integral-core/contracts/base/common/Timestamp.sol'; -import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; - -import '@openzeppelin/contracts/utils/math/Math.sol'; - -import './interfaces/IRebalanceManager.sol'; - -import './base/AlgebraBasePlugin.sol'; - -// import 'hardhat/console.sol'; - -contract RebalanceManager is IRebalanceManager, Timestamp { - - bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); - - // address public pool; - // function _blockTimestamp() internal pure returns(uint32) { - // return 0; - // } - // function _authorize() internal pure { - // return; - // } - // result.currentTick = int24(0); // 0 - // result.currentPriceAccountingDecimals = 0; // 32 - // result.slowAvgPriceAccountingDecimals = 0; // 64 - // result.fastAvgPriceAccountingDecimals = 0; // 96 - // result.totalPairedInDeposit = 0; // 128 - // result.percentageOfDepositToken = 0; // 160 - // result.totalDepositToken = 0; // 192 - // result.totalPairedToken = 0; // 224 - // result.result.percentageOfDepositTokenUnused = 0; // 256 - // result.failedToObtainTWAP = False; // 288 - // result.sameBlock = False; // 320 - struct TwapResult { - uint256 currentPriceAccountingDecimals; - uint256 slowAvgPriceAccountingDecimals; - uint256 fastAvgPriceAccountingDecimals; - uint256 totalPairedInDeposit; - uint256 totalDepositToken; - uint256 totalPairedToken; - int24 currentTick; - uint16 percentageOfDepositTokenUnused; // 10000 = 100% - uint16 percentageOfDepositToken; // 10000 = 100% - bool failedToObtainTWAP; - bool sameBlock; - } - struct Ranges { - int24 baseLower; - int24 baseUpper; - int24 limitLower; - int24 limitUpper; - } - enum State { - OverInventory, - Normal, - UnderInventory, - Special - } - // этот статус можно офнуть - enum DecideStatus { - Normal, - Special, - PendingRebalanceNeeded, - NoNeed, - ToSoon, - NoNeedWithPending, - FailedToObtainTWAPOrExtremeVolatility - } - enum UpdateStatus { - Status0, - Status1 - } - - struct Thresholds { - uint16 depositTokenUnusedThreshold; // STORAGE[0xb] = 100 (1%) - uint16 simulate; // 9300 93% maybe for moving a position towards price without changing the config - uint16 normalThreshold; // 80% (for what? normal trigger?) - uint16 underInventoryThreshold; // STORAGE[0xf] = 7700 Probably means 77% for under-inventory (opposite of _simulate) - uint16 overInventoryThreshold; // STORAGE[0xd] = 9100 91% (over-inv trigger?) - uint16 priceChangeThreshold; // STORAGE[0x8] = 100, в коде если пендинг, то 100, а если не пендинг то 50 - uint16 extremeVolatility; // STORAGE[0x4] = 2500 (25%) - uint16 highVolatility; // STORAGE[0x5] = 500 (5%) - uint16 someVolatility; // STORAGE[0x6] = 100 (1%) - uint16 dtrDelta; // STORAGE[0x7] = 300 - uint16 baseLowPct; // STORAGE[0x1c] = 2000 - uint16 baseHighPct; // STORAGE[0x1d] = 1000 - uint16 limitReservePct; // STORAGE[0x1e] = 500 - } - - // TODO: не забыть у твап не падать, а возвращать false если не получилось взять его - // TODO: норм упаковать - address public vault; - bool public isAlmInitialized; - bool public paused; - bool public allowToken1; - State public state; - uint32 public lastRebalanceTimestamp; - uint256 public lastRebalanceCurrentPrice; - Thresholds public thresholds; - - address public pairedToken; // STORAGE[0x16] bytes 0 to 19 - uint8 public pairedTokenDecimals; // = 18 STORAGE[0x17] - address public depositToken; // STORAGE[0x18] bytes 0 to 19 - uint8 public depositTokenDecimals; // STORAGE[0x19] - uint8 public decimalsSum; // STORAGE[0x1a] // это че? (сумма decimals depositToken и pairedToken) а нахуя? - uint8 public tokenDecimals; // pairedTokenDecimals ? в чем отличие - uint32 public slowTwapPeriod; - uint32 public fastTwapPeriod; - address public factory; - address public pool; - - constructor(address _vault, Thresholds memory _thresholds) { - require(!isAlmInitialized, 'Already initialized'); - isAlmInitialized = true; - // TODO: добавить require'ов - vault = _vault; - paused = false; - - bool _allowToken1 = IAlmVault(vault).allowToken1(); - - allowToken1 = _allowToken1; - state = State.OverInventory; // поч overinventory? - lastRebalanceTimestamp = 0; - lastRebalanceCurrentPrice = 0; - thresholds = _thresholds; - - address token0 = IAlmVault(_vault).token0(); - address token1 = IAlmVault(_vault).token1(); - - address _pairedToken = _allowToken1 ? token0 : token1; - pairedToken = _pairedToken; - uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); - // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); - pairedTokenDecimals = _pairedTokenDecimals; - - address _depositToken = _allowToken1 ? token1 : token0; - depositToken = _depositToken; - uint8 _depositTokenDecimals = _getDepositTokenDecimals(); - depositTokenDecimals = _depositTokenDecimals; - // console.log('_depositTokenDecimals: ', _depositTokenDecimals); - - decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; - // console.log('decimals sum: ', decimalsSum); - tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; - } - - function setPriceChangeThreshold(uint16 _priceChangeThreshold) external { - _authorize(); - require(_priceChangeThreshold < 10000, 'Invalid price change threshold'); - thresholds.priceChangeThreshold = _priceChangeThreshold; - // нужно эмитить ивент? - } - - function setPercentages(uint16 _baseLowPct, uint16 _baseHighPct, uint16 _limitReservePct) external { - _authorize(); - require(_baseLowPct >= 100 && _baseLowPct <= 10000, 'Invalid base low percent'); - require(_baseHighPct >= 100 && _baseHighPct <= 10000, 'Invalid base high percent'); - require(_limitReservePct >= 100 && _baseLowPct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); - thresholds.baseLowPct = _baseLowPct; - thresholds.baseHighPct = _baseHighPct; - thresholds.limitReservePct = _limitReservePct; - } - - function setTriggers(uint16 _simulate, uint16 _normalThreshold, uint16 _underInventoryThreshold, uint16 _overInventoryThreshold) external { - _authorize(); - require(_underInventoryThreshold > 6000, '_underInventoryThreshold must be > 6000'); - require(_normalThreshold > _underInventoryThreshold, '_normalThreshold must be > _underInventoryThreshold'); - require(_overInventoryThreshold > _normalThreshold, '_overInventoryThreshold must be > _normalThreshold'); - require(_simulate > _overInventoryThreshold, 'Simulate must be > _overInventoryThreshold'); - require(_simulate < 9500, 'Simulate must be < 9500'); - thresholds.simulate = _simulate; - thresholds.normalThreshold = _normalThreshold; - thresholds.underInventoryThreshold = _underInventoryThreshold; - thresholds.overInventoryThreshold = _overInventoryThreshold; - } - - function setDtrDelta(uint16 _dtrDelta) external { - _authorize(); - require(_dtrDelta <= 10000, '_dtrDelta must be <= 10000'); - thresholds.dtrDelta = _dtrDelta; - } - - function setHighVolatility(uint16 _highVolatility) external { - _authorize(); - require(_highVolatility >= thresholds.someVolatility, '_highVolatility must be >= someVolatility'); - thresholds.highVolatility = _highVolatility; - } - - function setSomeVolatility(uint16 _someVolatility) external { - _authorize(); - require(_someVolatility <= 300, '_someVolatility must be <= 300'); - thresholds.someVolatility = _someVolatility; - } - - function setExtremeVolatility(uint16 _extremeVolatility) external { - _authorize(); - require(_extremeVolatility >= thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); - thresholds.extremeVolatility = _extremeVolatility; - } - - function setDepositTokenUnusedThreshold(uint16 _depositTokenUnusedThreshold) external { - _authorize(); - require(_depositTokenUnusedThreshold >= 100 && _depositTokenUnusedThreshold <= 10000, '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); - thresholds.depositTokenUnusedThreshold = _depositTokenUnusedThreshold; - } - - function setSlowTwapPeriod(uint32 _slowTwapPeriod) external { - _authorize(); - require(_slowTwapPeriod >= fastTwapPeriod, '_slowTwapPeriod must be >= fastTwapPeriod'); - slowTwapPeriod = _slowTwapPeriod; - } - - function setFastTwapPeriod(uint32 _fastTwapPeriod) external { - _authorize(); - require(_fastTwapPeriod <= slowTwapPeriod, '_fastTwapPeriod must be <= slowTwapPeriod'); - fastTwapPeriod = _fastTwapPeriod; - } - - function setVault(address _vault) external { - _authorize(); - vault = _vault; - } - - // TODO: написать obtainTWAPAndRebalance() - - function obtainTWAPAndRebalance( - int24 currentTick, - int24 slowTwapTick, - int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP - ) external { - TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); - _rebalance(twapResult); - } - - function _rebalance(TwapResult memory obtainTWAPsResult) internal { - // require(!paused, 'Pausable: paused'); - if (paused) return; - if (vault == address(0)) return; - - (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - // console.log('rebalance entered'); - // console.log('decide status: ', uint256(decideStatus)); - // console.log('newState: ', uint256(newState)); - - // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала - // require(decideStatus != DecideStatus.NoNeed, "no need"); - // require(decideStatus != DecideStatus.ToSoon, "too soon"); - if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.ToSoon) return; - - if (decideStatus != DecideStatus.PendingRebalanceNeeded) { - if (decideStatus != DecideStatus.NoNeedWithPending) { - if (decideStatus != DecideStatus.FailedToObtainTWAPOrExtremeVolatility) { - Ranges memory ranges = decideStatus == DecideStatus.Normal - ? _getRangesWithState(newState, obtainTWAPsResult) - : _getRangesWithoutState(obtainTWAPsResult); - - // struct Ranges { - // int24 baseLower; - // int24 baseUpper; - // int24 limitLower; - // int24 limitUpper; - // } - // console.log('RANGES START'); - // console.logInt(ranges.baseLower); - // console.logInt(ranges.baseUpper); - // console.logInt(ranges.limitLower); - // console.logInt(ranges.limitUpper); - // console.log('RANGES END'); - - // require(ranges.baseUpper - ranges.baseLower > 300 && - // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); - if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - - // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) - // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); - - // TODO: swapquantity ? - try IAlmVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 1) { - lastRebalanceTimestamp = _blockTimestamp(); - lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - } catch { - state = State.Special; - _pause(); - } - } else { - IAlmVault(vault).setDepositMax(0, 0); - // pendingRebalanceTimestamp = 0; - state = State.Special; - _pause(); - } - } else { - // pendingRebalanceTimestamp = 0; - lastRebalanceTimestamp = _blockTimestamp(); - lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - } - } else { - // pendingRebalanceTimestamp = _blockTimestamp(); - } - - // чекируем decideStatus - // если нужен ребаланс - // вызываем getrangeswithstate или getRangesWithoutState, получаем ренжи - // IAlmVault(vault).rebalance(ranges.tick1, ranges.tick2, ....); - } - - function _obtainTWAPs( - int24 currentTick, - int24 slowTwapTick, - int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP - ) internal view returns (TwapResult memory twapResult) { - // достать проценты, хуенты - // достать резервы токенычей - // собрать TwapResult - - // struct TwapResult { - // uint256 currentPriceAccountingDecimals; done - // uint256 slowAvgPriceAccountingDecimals; done - // uint256 fastAvgPriceAccountingDecimals; done - // uint256 totalPairedInDeposit; done - // uint256 totalDepositToken; done - // uint256 totalPairedToken; done - // int24 currentTick; done - // uint16 percentageOfDepositTokenUnused; // 10000 = 100% done - // uint16 percentageOfDepositToken; // 10000 = 100% done - // bool failedToObtainTWAP; // всегда false прост done - // bool sameBlock; done - // } - - // console.log('entered obtain twaps'); - twapResult.failedToObtainTWAP = failedToObtainTWAP; - if (failedToObtainTWAP) { - return twapResult; - } - - twapResult.currentTick = currentTick; - twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; - bool _allowToken1 = allowToken1; - if (_allowToken1) { - // почему они эту строку наверх не вынесли? - (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); - twapResult.totalPairedToken = amount0; - twapResult.totalDepositToken = amount1; - } else { - (uint256 amount0, uint256 amount1) = IAlmVault(vault).getTotalAmounts(); - twapResult.totalPairedToken = amount1; - twapResult.totalDepositToken = amount0; - } - // console.log('after getTotalAmounts obtain twaps'); - - address _depositToken = depositToken; - address _pairedToken = pairedToken; - - uint8 _pairedTokenDecimals = pairedTokenDecimals; - - (uint256 slowPrice, uint256 fastPrice, uint256 currentPriceAccountingDecimals) = _getTwapPrices( - _depositToken, - _pairedToken, - _pairedTokenDecimals, - slowTwapTick, - fastTwapTick, - twapResult.currentTick - ); - twapResult.slowAvgPriceAccountingDecimals = slowPrice; - twapResult.fastAvgPriceAccountingDecimals = fastPrice; - - // uint256 slowPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick); - // twapResult.slowAvgPriceAccountingDecimals = slowPrice; - // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); - // twapResult.fastAvgPriceAccountingDecimals = fastPrice; - - // console.log('2'); - - // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); - // console.log('2.5'); - twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; - uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; - uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); - twapResult.totalPairedInDeposit = totalPairedInDeposit; - - // console.log('3'); - - if (totalPairedInDeposit == 0) { - twapResult.percentageOfDepositToken = 10000; - } else { - uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // // console.log("totalTokensAmount: ", totalTokensAmount); - if (totalTokensAmount == 0) { - twapResult.failedToObtainTWAP = true; - return twapResult; - } - // uint256 totalDepositTokenMultipliedByFactor = 10000 * twapResult.totalDepositToken; - uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); - twapResult.percentageOfDepositToken = percentageOfDepositToken; - } - - // console.log('4'); - - uint256 depositTokenBalance = _getDepositTokenVaultBalance(); - // console.log('depositTokenBalance: ', depositTokenBalance); - - if (depositTokenBalance > 0) { - uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; - // че за v42 и v43, надо чекнуть первоначальный декомпайл - // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) - twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); - } else { - // че за v44 - // v42 = v44 = 0; - twapResult.percentageOfDepositTokenUnused = 0; - } - } - - function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { - // тут мы более глобально чекаем, получилось ли достать твап, какая ща волатильность - // куча куча ифов, в итоге в одном из случаев вызываем - // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff - // UpdateStatus updStatus = _updateStatus(twapResult); - if (twapResult.failedToObtainTWAP) { - return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); - } - - uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); - uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); - // console.log('fastSlowDiff: ', fastSlowDiff); - // console.log('fastCurrentDiff: ', fastCurrentDiff); - - bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; - if (!isExtremeVolatility) { - bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; - if (!isHighVolatility) { - if ( - !((state == State.OverInventory || state == State.Normal) && - lastRebalanceCurrentPrice != 0 && - twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) - ) { - (bool needToRebalance, State newState) = _updateStatus(twapResult); - // console.log('needToRebalance: ', needToRebalance); - // console.log('newState: ', uint256(newState)); - // needToRebalance = true; - // newState = State.Normal; - if (needToRebalance) { - if (fastCurrentDiff < thresholds.someVolatility) { - // console.log('fastCurrentDiff < thresholds.someVolatility'); - return (DecideStatus.Normal, newState); // normal rebalance - } else { - return (DecideStatus.ToSoon, newState); // too soon - } - } else { - return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) - } - } else { - // State == NORMAL || OVER - // И Это не первый ребаланс - // И percentageOfDepositToken меньше чем _underInventoryPct - _dtrDelta (??) - значит очень мало депозит токенов, то: - // ----> переходим дальше в итоге выставляя status = SPECIAL - // тут как будто ничо не происходит - // типа тут сетятся v19, v21, v23, v25 - // но дальше с ними ничо не происходит - // только в гносис записываем v23, который итак равен гносису - // v19 = v20 = 21; - // v21 = v22 = 3; - // v23 = v24 = bytes31(_gnosis); - // v25 = v26 = 1; - } - } else { - // handle high volatility - // Если fastSlowDiff >= _highVolatility ИЛИ fastCurrentDiff => _highVolatility (5%), то считаем, что сейчас высокая волатильность. - if (state != State.Special) { - // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается - - if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { - // Если fastCurrentDiff >= _someVolatility (low? - 1%): - // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается - return (DecideStatus.ToSoon, State.Special); - } else { - // Иначе ------> переходим дальше в итоге выставляя status = SPECIAL - // то же самое, как будто нихуя не происходит - // v19 = v30 = 21; - // v21 = v31 = 3; - // v23 = v32 = bytes31(_gnosis); - // v25 = v33 = 1; - } - } else { - // special -> noneed - return (DecideStatus.NoNeed, State.Special); - } - } - state = State.Special; - // какой-то спешл кейс, из-за него вызывается rebalanceWithoutState - return (DecideStatus.Special, State.Special); // выяснить чо он означает - } else { - // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается - return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); - } - } - - function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { - // тут мы сравниваем уже все проценты и решаем в какой стейт мы будем рабаланситься (и будем ли вообще) - // вычисления на оснвое twapResult, сохранение результата в сторадж, видимо нужно из-за двухэтапной ребалансировки (можно ли объединить в одну функцию?) - // внутри вызываетя вспомогательная функция _calcPercentageDiff - // v0 = state == 3 ? true : !lastRebalanceCurrentPrice - if (state != State.Special && lastRebalanceCurrentPrice != 0) { - if (state != State.Normal) { - if (state != State.OverInventory) { - if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - // if less than 93% - // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); - if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { - // if greater than 80% (REBALANCE TO NORMAL) - // sqrtStatus = 1; - // state == UnderInventory || state == Special - // 80% <= twapResult.percentageOfDepositToken <= 93% - // типа из андеринветори или спешл ребалансим в НОРМАЛ - return (true, State.Normal); - } else { - return (true, State.UnderInventory); - } - } else { - // sqrtStatus = 1; - // state == UnderInventory || state == Special - // twapResult.percentageOfDepositToken >= 93% - return (true, State.OverInventory); - } - } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - // if greater than 77% - if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { - // if less than 91% (REBALANCE TO NORMAL) - // sqrtStatus = 1; - // state == OverInventory - // 77% <= twapResult.percentageOfDepositToken <= 91% - // типа из оверинвентори в НОРМАЛ - return (true, State.Normal); - } - // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) - else { - return (true, State.OverInventory); - } - } else { - // state == OverInventory - // twapResult.percentageOfDepositToken <= 77% - // из оверинвентори хуячимся в андеринвентори - return (true, State.UnderInventory); - } - - // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) - uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals - // console.log('priceChange: ', priceChange); - if (priceChange > thresholds.priceChangeThreshold) { - // CASES: - // 1. we are still under-inventory and price changed by more than (1/0.5)% - // 2. we are still over-inventory and price changed by more than (1/0.5)% - - // console.log('priceChange > thresholds.priceChangeThreshold'); - return (true, state); - } - } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - if (twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold) { - // state == Normal - // twapResult.percentageOfDepositToken < 77% <= 93 % - return (true, State.UnderInventory); - } - } else { - // state == Normal - // twapResult.percentageOfDepositToken > 93% - return (true, State.OverInventory); - } - - if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { - // if less than 1% - // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); - return (false, State.Normal); // no rebalance needed - } else { - // CASES: - // 1. state == Normal and 75% < twapResult.percentageOfDepositToken < 93% - return (true, state); - } - } else { - if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - // if less than 93% - if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - // if greater than 77% (REBALANCE TO NORMAL) - // state == Special OR not lastRebalanceCurrentPrice - // 77% <= twapResult.percentageOfDepositToken <= 93% - return (true, State.Normal); - } else { - // state == Special OR not lastRebalanceCurrentPrice - // twapResult.percentageOfDepositToken <= 77% - return (true, State.UnderInventory); - } - } else { - // state == Special OR not lastRebalanceCurrentPrice - // twapResult.percentageOfDepositToken > 93% - return (true, State.OverInventory); - } - } - - // сюда по идее никогда не попадаем (точно??) точно - return (false, State.Normal); - } - - function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { - // scope to prevent stack too deep - { - // console.log('entered _getRangesWithState'); - // State _state = state; - bool _allowToken1 = allowToken1; - int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); - uint8 _tokenDecimals = tokenDecimals; - - (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); - // console.log('upperPriceBound: ', upperPriceBound); - // console.log('targetPrice: ', targetPrice); - // console.log('lowerPriceBound: ', lowerPriceBound); - - int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); - bool currentTickIsRound = roundedTick == twapResult.currentTick; - - int24 commonTick; - int24 tickForLowerPrice; - if (newState == State.Normal) { - // If HEALTHY status (NORMAL) use target price - // тут targetPrice без decimals (если deposittoken = token0) - // и с decimals если deposittoken = token1, без X96 или X192 - int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); - // console.log('targetTick'); - // console.logInt(targetTick); - commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); - } else { - // console.log('entered else in newState == State.Normal'); - commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); - } - - int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); - // console.log('upperTick'); - // console.logInt(upperTick); - int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); - // console.log('tickForHigherPrice'); - // console.logInt(tickForHigherPrice); - - if (lowerPriceBound == 0) { - // Under-inventory state probably - // if depositToken == token0, надо бы это в сторадж наверное засунуть - // console.log('entered lowerPriceBound == 0'); - int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; - tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing - } else { - int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); - tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); - } - if (!_allowToken1) { - // if deposittoken == token0 - // console.log('TICKS'); - // console.logInt(int24(commonTick)); - // console.logInt(int24(tickForLowerPrice)); - // console.logInt(int24(tickForHigherPrice)); - // console.logInt(int24(commonTick)); - // console.log('TICKS END'); - ranges.baseLower = int24(commonTick); - ranges.baseUpper = int24(tickForLowerPrice); - ranges.limitLower = int24(tickForHigherPrice); - ranges.limitUpper = int24(commonTick); - - // if (varg0 != 2) { - // v19 = 0x437d(int24(_gnosis >> 176), 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27618); - // v18.word2 = int24(v19); - // } - // assert(varg0 <= 3); - // if (varg0 == 2) { - // if (v4) { - // v20 = v21 = MEM[varg1]; - // } else { - // v20 = v22 = v18.word0; - // } - // v18.word0 = int24(v20); - // if (v4) { - // v23 = v24 = MEM[varg1] - int24(_gnosis >> 176); - // } else { - // v23 = v25 = v18.word3; - // } - // v18.word3 = int24(v23); - // } - - if (newState != State.UnderInventory) { - // if not under-inventory - // we do not use v16 because if Token0 then we reverse the structure of ticks - int24 roundedMinTick = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); - ranges.limitLower = int24(roundedMinTick); // use MIN tick - } else { - // if under-inventorys - ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; // if tick is round set currentTick (useless operation?) - ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; // tick - tick spacing if round (avoid having the same tick if its round??) - } - - if (newState == State.OverInventory) { - // if over-inventory - ranges.limitUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.limitUpper; - ranges.baseLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.baseLower; - ranges.baseUpper = int24(ranges.baseUpper + _tickSpacing); - } - } else { - ranges.baseLower = int24(tickForLowerPrice); - ranges.baseUpper = int24(commonTick); - ranges.limitLower = int24(commonTick); - ranges.limitUpper = int24(tickForHigherPrice); - - if (newState != State.UnderInventory) { - ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); - } - - if (lowerPriceBound > 0 && newState != State.OverInventory) { - ranges.baseLower = int24(ranges.baseLower + _tickSpacing); - } - - if (newState == State.Normal) { - ranges.baseUpper = int24(_tickSpacing + ranges.baseUpper); - ranges.limitLower = int24(_tickSpacing + ranges.limitLower); - } - - if (newState == State.UnderInventory) { - ranges.baseUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.baseUpper; - ranges.limitLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.limitLower; - } - - if (newState == State.OverInventory) { - ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; - ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; - } - } - } - // просто возвращаем? (НЕ ПРОСТО ОКАЗЫВАЕТСЯ ВОЗВРАЩАЕМ) - // TODO: пофиксить stackTooDeep - if (newState == State.OverInventory) { - (ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper) = ( - ranges.limitLower, - ranges.limitUpper, - ranges.baseLower, - ranges.baseUpper - ); - // v49.word0 = int24(MEM[64 + v17]); - // v49.word1 = int24(MEM[96 + v17]); - // v49.word2 = int24(MEM[v17]); - // v49.word3 = int24(MEM[32 + v17]); - } - } - - function _getRangesWithoutState(TwapResult memory twapResult) internal view returns (Ranges memory ranges) { - // возвращает что-то типа - // result.baseLower = currentTick - // result.baseUpper = maxUpperTick - // result.limitLower = minLowerTick - // result.limitUpper = currentTick - tickSpacing - - int24 _tickSpacing = IAlgebraPool(pool).tickSpacing(); - bool _allowToken1 = allowToken1; - - // внутри юзается roundTickToTickSpacingCondigeringNegative, roundTickToTickSpacing - int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); - int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); - // console.log('ticks in _getRangesWithoutState'); - // console.logInt(tickRoundedDown); - // console.logInt(tickRounded); - - if (!_allowToken1) { - if (twapResult.currentTick == tickRounded) { - tickRoundedDown = twapResult.currentTick; - } - - ranges.baseLower = tickRoundedDown; - int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick - ranges.baseUpper = maxTickRounded; - int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); // round MinLowerTick - ranges.limitLower = minTickRounded; - if (twapResult.currentTick == tickRounded) { - tickRoundedDown = twapResult.currentTick - _tickSpacing; - } - ranges.limitUpper = tickRoundedDown; - } else { - int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); - ranges.baseLower = minTickRounded; - - if (twapResult.currentTick == tickRounded) { - ranges.baseUpper = twapResult.currentTick; - } else { - ranges.baseUpper = tickRoundedDown + _tickSpacing; - } - - if (twapResult.currentTick == tickRounded) { - ranges.limitLower = _tickSpacing + twapResult.currentTick; - } else { - ranges.limitLower = tickRoundedDown + _tickSpacing; - } - int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick - ranges.limitUpper = maxTickRounded; - } - } - - // поч uint128? поч uint256? - // потому что это не decimals, а 10 ** decimals - function _getPriceAccountingDecimals( - address token0, - address token1, - uint128 token1decimals, - /*uint256*/ int24 averageTick - ) private pure returns (uint256 price) { - uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); - if (uint160(sqrtPriceX96) > type(uint128).max) { - uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); - return - token1 < token0 - ? FullMath.mulDiv(priceX128, token1decimals, uint256(type(uint128).max) + 1) - : FullMath.mulDiv(uint256(type(uint128).max) + 1, token1decimals, priceX128); - } else { - // console.log(token0, token1); - // console.log(token1decimals); - // console.logInt(int256(averageTick)); - // console.log(sqrtPriceX96); - // console.log(token1 < token0); - // if (token1 < token0) { - // v5 = v6 = MulDiv(uint192.max + 1, token1decimals, uint160(sqrtPrice96) * uint160(sqrtPrice96)); - // } else { - // v5 = v7 = MulDiv(uint160(sqrtPrice96) * uint160(sqrtPrice96), token1decimals, uint192.max + 1); - // } - return - token1 < token0 - ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, type(uint192).max + 1) - : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); - } - } - - // как будто у там эти функци вообще не нужны, мы берем твап из бейз плагина, не делаем лишних коллов - // // пока не очень понятно как она работает и что возвращает - // // TODO: реализовать getTwapMaybe, внутри вызывается только getTimepoints у пула - // function _getTWAPMaybe(uint256 secondsAgo, address pool) private { - - // } - - // // пока не очень понятно как она работает и что возвращает - // // TODO: реализовать getTwap, внутри вызывается только getTimepoints у пула - // function _getTWAP(uint32 varg0, address varg1) private { - - // } - - // function _getDepositTokenDecimals() internal virtual view returns (uint8) { - // return IERC20Metadata(depositToken).decimals(); - // } - - // function _getPairedTokenDecimals() internal virtual view returns (uint8) { - // return IERC20Metadata(depositToken).decimals(); - // } - - function _authorize() internal view virtual { - require(IAlgebraFactory(factory).hasRoleOrOwner(ALGEBRA_BASE_PLUGIN_MANAGER, msg.sender)); - } - - function _getTwapPrices( - address _depositToken, - address _pairedToken, - uint8 _pairedTokenDecimals, - int24 slowTwapTick, - int24 fastTwapTick, - int24 currentTick - ) internal view virtual returns (uint256, uint256, uint256) { - return ( - _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick), - _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick), - _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), currentTick) - ); - } - - function _getPairedTokenDecimals() internal view virtual returns (uint8) { - return IERC20Metadata(pairedToken).decimals(); - } - - function _getDepositTokenDecimals() internal view virtual returns (uint8) { - return IERC20Metadata(depositToken).decimals(); - } - - function _getDepositTokenVaultBalance() internal view virtual returns (uint256) { - return IERC20Metadata(depositToken).balanceOf(vault); - } - - function _calcPercentageDiff(uint256 a, uint256 b) private pure returns (uint256) { - return b > a ? ((b - a) * 10000) / b : ((a - b) * 10000) / a; - } - - function roundTickToTickSpacing(int24 _tickSpacing, int24 _tick) private pure returns (int24) { - return (_tick / _tickSpacing) * _tickSpacing; - } - - function roundTickToTickSpacingConsideringNegative(int24 _tickSpacing, int24 _tick) private pure returns (int24) { - int24 roundedTick = roundTickToTickSpacing(_tickSpacing, _tick); - if (_tick < 0) { - return roundedTick - _tickSpacing; - } else { - return roundedTick; - } - } - - // upper target lower - function _getPriceBounds(State _state, TwapResult memory twapResult, bool _allowToken1) private view returns (uint256, uint256, uint256) { - uint256 targetPrice = twapResult.currentPriceAccountingDecimals; - // тут чтобы убрать require нужно тогда прокидывать, видимо - require(targetPrice != 0, 'middlePrice must be > 0'); - require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); - // if (targetPrice == 0 || twapResult.totalDepositToken == 0) return (0, 0, 0); - - uint256 lowerPriceBound = 0; - if (_state != State.UnderInventory) { - // if not under-inventory (because if under - we place lower as Min) - // v4 = _calcPart(baseLowPct, twapResult.currentPriceAccountingDecimals); // 20% of currentPriceAccountingDecimals - // v2 = v5 = _SafeSub(v4, v1); // lower price bound (-20%) - // currentPrice - 20% (почему не сделать twapResult.currentPriceAccountingDecimals * 0.8?) - // console.log('baselowpct: ', thresholds.baseLowPct); - lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); - } - // v6 = _calcPart(baseHighPct, v1); // 10% of currentPriceAccountingDecimals - // v7 = v8 = _SafeAdd(v6, v1); // upper price bound (+10%) - // currentPriceAccountingDecimals + 10% - uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); - // console.log('targetPrice: ', targetPrice); - // console.log('upperPriceBound: ', upperPriceBound); - - // console.log('state????: ', uint256(_state)); - if (_state == State.Normal) { - // console.log('mi tut???'); - // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); - // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); - uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 - // console.log('limitReservePct: ', thresholds.limitReservePct); - // console.log('partOfTotalTokens: ', partOfTotalTokens); - // TODO: убрать этот require - require(twapResult.totalPairedInDeposit > partOfTotalTokens, 'not enough quote token'); - uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; - uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess - uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; - if (excessCoef != 0) { - targetPrice += _calcPart(excessCoef, targetPrice); - } - } - // ета залупа в каком случае срабатывает? (!allowToken1 -> depositToken = Token0) - // как связано какой депозит токен и то, убираем ли мы decimals или нет? - // console.log('targetPrice before remove decimals: ', targetPrice); - // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); - // console.log('upperPriceBound before remove decimals: ', upperPriceBound); - // console.log('decimalsSum: ', decimalsSum); - // console.log(_allowToken1); - if (!_allowToken1) { - // console.log('??????'); - targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice - lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound - upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound - // console.log('targetPrice after remove decimals: ', targetPrice); - // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); - // console.log('upperPriceBound after remove decimals: ', upperPriceBound); - } - - return (upperPriceBound, targetPrice, lowerPriceBound); - } - - function _calcPart(uint256 base, uint256 part) private pure returns (uint256) { - return (base * part) / 10000; - } - - function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { - // console.log('amount: ', amount); - // console.log('decimals: ', decimals); - return amount != 0 ? (10 ** decimals) / amount : amount; - } - - function _pause() private { - paused = true; - } - - function unpause() public payable /* onlyowner */ { - paused = false; - } - - function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { - uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); - return TickMath.getTickAtSqrtRatio(sqrtPriceX96); - } - - function getSqrtPriceX96(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - // price мы получаем из getRangesWithState, а там мы можем получить - // если state == normal, то без decimals, а если не normal, то с decimals - // и типа если price >= 10 ** tokenDecimals, то мы получили цену с decimals (ну и ХУЕТА) - // console.log(_price >= 10 ** _tokenDecimals); - return - _price >= 10 ** _tokenDecimals - ? getSqrtPriceX96FromPriceWithDecimals(_tokenDecimals, _price) - : getSqrtPriceX96FromPriceWithoutDecimals(_tokenDecimals, _price); - } - - function getSqrtPriceX96FromPriceWithDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - return uint160((Math.sqrt(_price) << 96) / Math.sqrt(10 ** _tokenDecimals)); - } - - function getSqrtPriceX96FromPriceWithoutDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - return uint160(Math.sqrt((_price << 192) / 10 ** _tokenDecimals)); - } +import './base/BaseRebalanceManager.sol'; + +contract RebalanceManager is BaseRebalanceManager { + constructor(address _vault, Thresholds memory _thresholds) { + require(!isAlmInitialized, 'Already initialized'); + isAlmInitialized = true; + paused = false; + // TODO: добавить require'ов + vault = _vault; + pool = IAlgebraVault(vault).pool(); + + tickSpacing = IAlgebraPool(pool).tickSpacing(); + + bool _allowToken1 = IAlgebraVault(vault).allowToken1(); + + allowToken1 = _allowToken1; + state = State.OverInventory; // поч overinventory? + lastRebalanceTimestamp = 0; + lastRebalanceCurrentPrice = 0; + thresholds = _thresholds; + + address token0 = IAlgebraVault(_vault).token0(); + address token1 = IAlgebraVault(_vault).token1(); + + address _pairedToken = _allowToken1 ? token0 : token1; + pairedToken = _pairedToken; + uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); + // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); + pairedTokenDecimals = _pairedTokenDecimals; + + address _depositToken = _allowToken1 ? token1 : token0; + depositToken = _depositToken; + uint8 _depositTokenDecimals = _getDepositTokenDecimals(); + depositTokenDecimals = _depositTokenDecimals; + // console.log('_depositTokenDecimals: ', _depositTokenDecimals); + + decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; + // console.log('decimals sum: ', decimalsSum); + tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; + } } diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol new file mode 100644 index 000000000..776f3f2f4 --- /dev/null +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -0,0 +1,968 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import '@cryptoalgebra/alm-vault/contracts/interfaces/IAlgebraVault.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/TickMath.sol'; +import '@cryptoalgebra/integral-core/contracts/libraries/FullMath.sol'; +import '@cryptoalgebra/integral-core/contracts/base/common/Timestamp.sol'; +import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; + +import '@openzeppelin/contracts/utils/math/Math.sol'; + +import '../interfaces/IRebalanceManager.sol'; + +import './AlgebraBasePlugin.sol'; + +// import 'hardhat/console.sol'; + +abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { + bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); + + // address public pool; + // function _blockTimestamp() internal pure returns(uint32) { + // return 0; + // } + // function _authorize() internal pure { + // return; + // } + // result.currentTick = int24(0); // 0 + // result.currentPriceAccountingDecimals = 0; // 32 + // result.slowAvgPriceAccountingDecimals = 0; // 64 + // result.fastAvgPriceAccountingDecimals = 0; // 96 + // result.totalPairedInDeposit = 0; // 128 + // result.percentageOfDepositToken = 0; // 160 + // result.totalDepositToken = 0; // 192 + // result.totalPairedToken = 0; // 224 + // result.result.percentageOfDepositTokenUnused = 0; // 256 + // result.failedToObtainTWAP = False; // 288 + // result.sameBlock = False; // 320 + struct TwapResult { + uint256 currentPriceAccountingDecimals; + uint256 slowAvgPriceAccountingDecimals; + uint256 fastAvgPriceAccountingDecimals; + uint256 totalPairedInDeposit; + uint256 totalDepositToken; + uint256 totalPairedToken; + int24 currentTick; + uint16 percentageOfDepositTokenUnused; // 10000 = 100% + uint16 percentageOfDepositToken; // 10000 = 100% + bool failedToObtainTWAP; + bool sameBlock; + } + struct Ranges { + int24 baseLower; + int24 baseUpper; + int24 limitLower; + int24 limitUpper; + } + enum State { + OverInventory, + Normal, + UnderInventory, + Special + } + // этот статус можно офнуть + enum DecideStatus { + Normal, + Special, + PendingRebalanceNeeded, + NoNeed, + ToSoon, + NoNeedWithPending, + FailedToObtainTWAPOrExtremeVolatility + } + enum UpdateStatus { + Status0, + Status1 + } + + struct Thresholds { + uint16 depositTokenUnusedThreshold; // STORAGE[0xb] = 100 (1%) + uint16 simulate; // 9300 93% maybe for moving a position towards price without changing the config + uint16 normalThreshold; // 80% (for what? normal trigger?) + uint16 underInventoryThreshold; // STORAGE[0xf] = 7700 Probably means 77% for under-inventory (opposite of _simulate) + uint16 overInventoryThreshold; // STORAGE[0xd] = 9100 91% (over-inv trigger?) + uint16 priceChangeThreshold; // STORAGE[0x8] = 100, в коде если пендинг, то 100, а если не пендинг то 50 + uint16 extremeVolatility; // STORAGE[0x4] = 2500 (25%) + uint16 highVolatility; // STORAGE[0x5] = 500 (5%) + uint16 someVolatility; // STORAGE[0x6] = 100 (1%) + uint16 dtrDelta; // STORAGE[0x7] = 300 + uint16 baseLowPct; // STORAGE[0x1c] = 2000 + uint16 baseHighPct; // STORAGE[0x1d] = 1000 + uint16 limitReservePct; // STORAGE[0x1e] = 500 + } + + // TODO: не забыть у твап не падать, а возвращать false если не получилось взять его + // TODO: норм упаковать + address public vault; + bool public isAlmInitialized; + bool public paused; + bool public allowToken1; + State public state; + uint32 public lastRebalanceTimestamp; + uint256 public lastRebalanceCurrentPrice; + Thresholds public thresholds; + + address public pairedToken; // STORAGE[0x16] bytes 0 to 19 + uint8 public pairedTokenDecimals; // = 18 STORAGE[0x17] + address public depositToken; // STORAGE[0x18] bytes 0 to 19 + uint8 public depositTokenDecimals; // STORAGE[0x19] + uint8 public decimalsSum; // STORAGE[0x1a] // это че? (сумма decimals depositToken и pairedToken) а нахуя? + uint8 public tokenDecimals; // pairedTokenDecimals ? в чем отличие + int24 public tickSpacing; + address public factory; + address public pool; + + function setPriceChangeThreshold(uint16 _priceChangeThreshold) external { + _authorize(); + require(_priceChangeThreshold < 10000, 'Invalid price change threshold'); + thresholds.priceChangeThreshold = _priceChangeThreshold; + // нужно эмитить ивент? + } + + function setPercentages(uint16 _baseLowPct, uint16 _baseHighPct, uint16 _limitReservePct) external { + _authorize(); + require(_baseLowPct >= 100 && _baseLowPct <= 10000, 'Invalid base low percent'); + require(_baseHighPct >= 100 && _baseHighPct <= 10000, 'Invalid base high percent'); + require(_limitReservePct >= 100 && _baseLowPct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); + thresholds.baseLowPct = _baseLowPct; + thresholds.baseHighPct = _baseHighPct; + thresholds.limitReservePct = _limitReservePct; + } + + function setTriggers(uint16 _simulate, uint16 _normalThreshold, uint16 _underInventoryThreshold, uint16 _overInventoryThreshold) external { + _authorize(); + require(_underInventoryThreshold > 6000, '_underInventoryThreshold must be > 6000'); + require(_normalThreshold > _underInventoryThreshold, '_normalThreshold must be > _underInventoryThreshold'); + require(_overInventoryThreshold > _normalThreshold, '_overInventoryThreshold must be > _normalThreshold'); + require(_simulate > _overInventoryThreshold, 'Simulate must be > _overInventoryThreshold'); + require(_simulate < 9500, 'Simulate must be < 9500'); + thresholds.simulate = _simulate; + thresholds.normalThreshold = _normalThreshold; + thresholds.underInventoryThreshold = _underInventoryThreshold; + thresholds.overInventoryThreshold = _overInventoryThreshold; + } + + function setDtrDelta(uint16 _dtrDelta) external { + _authorize(); + require(_dtrDelta <= 10000, '_dtrDelta must be <= 10000'); + thresholds.dtrDelta = _dtrDelta; + } + + function setHighVolatility(uint16 _highVolatility) external { + _authorize(); + require(_highVolatility >= thresholds.someVolatility, '_highVolatility must be >= someVolatility'); + thresholds.highVolatility = _highVolatility; + } + + function setSomeVolatility(uint16 _someVolatility) external { + _authorize(); + require(_someVolatility <= 300, '_someVolatility must be <= 300'); + thresholds.someVolatility = _someVolatility; + } + + function setExtremeVolatility(uint16 _extremeVolatility) external { + _authorize(); + require(_extremeVolatility >= thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); + thresholds.extremeVolatility = _extremeVolatility; + } + + function setDepositTokenUnusedThreshold(uint16 _depositTokenUnusedThreshold) external { + _authorize(); + require( + _depositTokenUnusedThreshold >= 100 && _depositTokenUnusedThreshold <= 10000, + '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000' + ); + thresholds.depositTokenUnusedThreshold = _depositTokenUnusedThreshold; + } + + function setVault(address _vault) external { + _authorize(); + vault = _vault; + } + + // TODO: написать obtainTWAPAndRebalance() + + function obtainTWAPAndRebalance( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) external { + TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + _rebalance(twapResult); + } + + function _rebalance(TwapResult memory obtainTWAPsResult) internal { + // require(!paused, 'Pausable: paused'); + if (paused) return; + if (vault == address(0)) return; + + (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); + // console.log('rebalance entered'); + // console.log('decide status: ', uint256(decideStatus)); + // console.log('newState: ', uint256(newState)); + + // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала + // require(decideStatus != DecideStatus.NoNeed, "no need"); + // require(decideStatus != DecideStatus.ToSoon, "too soon"); + if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.ToSoon) return; + + if (decideStatus != DecideStatus.PendingRebalanceNeeded) { + if (decideStatus != DecideStatus.NoNeedWithPending) { + if (decideStatus != DecideStatus.FailedToObtainTWAPOrExtremeVolatility) { + Ranges memory ranges = decideStatus == DecideStatus.Normal + ? _getRangesWithState(newState, obtainTWAPsResult) + : _getRangesWithoutState(obtainTWAPsResult); + + // struct Ranges { + // int24 baseLower; + // int24 baseUpper; + // int24 limitLower; + // int24 limitUpper; + // } + // console.log('RANGES START'); + // console.logInt(ranges.baseLower); + // console.logInt(ranges.baseUpper); + // console.logInt(ranges.limitLower); + // console.logInt(ranges.limitUpper); + // console.log('RANGES END'); + + // require(ranges.baseUpper - ranges.baseLower > 300 && + // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + + // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) + // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); + + // TODO: swapquantity ? + try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 1) { + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + } catch { + state = State.Special; + _pause(); + } + } else { + IAlgebraVault(vault).setDepositMax(0, 0); + // pendingRebalanceTimestamp = 0; + state = State.Special; + _pause(); + } + } else { + // pendingRebalanceTimestamp = 0; + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + } + } else { + // pendingRebalanceTimestamp = _blockTimestamp(); + } + + // чекируем decideStatus + // если нужен ребаланс + // вызываем getrangeswithstate или getRangesWithoutState, получаем ренжи + // IAlgebraVault(vault).rebalance(ranges.tick1, ranges.tick2, ....); + } + + function _obtainTWAPs( + int24 currentTick, + int24 slowTwapTick, + int24 fastTwapTick, + uint32 lastBlockTimestamp, + bool failedToObtainTWAP + ) internal view returns (TwapResult memory twapResult) { + // достать проценты, хуенты + // достать резервы токенычей + // собрать TwapResult + + // struct TwapResult { + // uint256 currentPriceAccountingDecimals; done + // uint256 slowAvgPriceAccountingDecimals; done + // uint256 fastAvgPriceAccountingDecimals; done + // uint256 totalPairedInDeposit; done + // uint256 totalDepositToken; done + // uint256 totalPairedToken; done + // int24 currentTick; done + // uint16 percentageOfDepositTokenUnused; // 10000 = 100% done + // uint16 percentageOfDepositToken; // 10000 = 100% done + // bool failedToObtainTWAP; // всегда false прост done + // bool sameBlock; done + // } + + // console.log('entered obtain twaps'); + twapResult.failedToObtainTWAP = failedToObtainTWAP; + if (failedToObtainTWAP) { + return twapResult; + } + + twapResult.currentTick = currentTick; + twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; + bool _allowToken1 = allowToken1; + if (_allowToken1) { + // почему они эту строку наверх не вынесли? + (uint256 amount0, uint256 amount1) = IAlgebraVault(vault).getTotalAmounts(); + twapResult.totalPairedToken = amount0; + twapResult.totalDepositToken = amount1; + } else { + (uint256 amount0, uint256 amount1) = IAlgebraVault(vault).getTotalAmounts(); + twapResult.totalPairedToken = amount1; + twapResult.totalDepositToken = amount0; + } + // console.log('after getTotalAmounts obtain twaps'); + + address _depositToken = depositToken; + address _pairedToken = pairedToken; + + uint8 _pairedTokenDecimals = pairedTokenDecimals; + + (uint256 slowPrice, uint256 fastPrice, uint256 currentPriceAccountingDecimals) = _getTwapPrices( + _depositToken, + _pairedToken, + _pairedTokenDecimals, + slowTwapTick, + fastTwapTick, + twapResult.currentTick + ); + twapResult.slowAvgPriceAccountingDecimals = slowPrice; + twapResult.fastAvgPriceAccountingDecimals = fastPrice; + + // uint256 slowPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick); + // twapResult.slowAvgPriceAccountingDecimals = slowPrice; + // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); + // twapResult.fastAvgPriceAccountingDecimals = fastPrice; + + // console.log('2'); + + // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); + // console.log('2.5'); + twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; + uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; + uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); + twapResult.totalPairedInDeposit = totalPairedInDeposit; + + // console.log('3'); + + if (totalPairedInDeposit == 0) { + twapResult.percentageOfDepositToken = 10000; + } else { + uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + // // console.log("totalTokensAmount: ", totalTokensAmount); + if (totalTokensAmount == 0) { + twapResult.failedToObtainTWAP = true; + return twapResult; + } + // uint256 totalDepositTokenMultipliedByFactor = 10000 * twapResult.totalDepositToken; + uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); + twapResult.percentageOfDepositToken = percentageOfDepositToken; + } + + // console.log('4'); + + uint256 depositTokenBalance = _getDepositTokenVaultBalance(); + // console.log('depositTokenBalance: ', depositTokenBalance); + + if (depositTokenBalance > 0) { + uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; + // че за v42 и v43, надо чекнуть первоначальный декомпайл + // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) + twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); + } else { + // че за v44 + // v42 = v44 = 0; + twapResult.percentageOfDepositTokenUnused = 0; + } + } + + function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { + // тут мы более глобально чекаем, получилось ли достать твап, какая ща волатильность + // куча куча ифов, в итоге в одном из случаев вызываем + // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff + // UpdateStatus updStatus = _updateStatus(twapResult); + if (twapResult.failedToObtainTWAP) { + return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + } + + uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); + uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); + // console.log('fastSlowDiff: ', fastSlowDiff); + // console.log('fastCurrentDiff: ', fastCurrentDiff); + + bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; + if (!isExtremeVolatility) { + bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; + if (!isHighVolatility) { + if ( + !((state == State.OverInventory || state == State.Normal) && + lastRebalanceCurrentPrice != 0 && + twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) + ) { + (bool needToRebalance, State newState) = _updateStatus(twapResult); + // console.log('needToRebalance: ', needToRebalance); + // console.log('newState: ', uint256(newState)); + // needToRebalance = true; + // newState = State.Normal; + if (needToRebalance) { + if (fastCurrentDiff < thresholds.someVolatility) { + // console.log('fastCurrentDiff < thresholds.someVolatility'); + return (DecideStatus.Normal, newState); // normal rebalance + } else { + return (DecideStatus.ToSoon, newState); // too soon + } + } else { + return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) + } + } else { + // State == NORMAL || OVER + // И Это не первый ребаланс + // И percentageOfDepositToken меньше чем _underInventoryPct - _dtrDelta (??) - значит очень мало депозит токенов, то: + // ----> переходим дальше в итоге выставляя status = SPECIAL + // тут как будто ничо не происходит + // типа тут сетятся v19, v21, v23, v25 + // но дальше с ними ничо не происходит + // только в гносис записываем v23, который итак равен гносису + // v19 = v20 = 21; + // v21 = v22 = 3; + // v23 = v24 = bytes31(_gnosis); + // v25 = v26 = 1; + } + } else { + // handle high volatility + // Если fastSlowDiff >= _highVolatility ИЛИ fastCurrentDiff => _highVolatility (5%), то считаем, что сейчас высокая волатильность. + if (state != State.Special) { + // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается + + if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { + // Если fastCurrentDiff >= _someVolatility (low? - 1%): + // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается + return (DecideStatus.ToSoon, State.Special); + } else { + // Иначе ------> переходим дальше в итоге выставляя status = SPECIAL + // то же самое, как будто нихуя не происходит + // v19 = v30 = 21; + // v21 = v31 = 3; + // v23 = v32 = bytes31(_gnosis); + // v25 = v33 = 1; + } + } else { + // special -> noneed + return (DecideStatus.NoNeed, State.Special); + } + } + state = State.Special; + // какой-то спешл кейс, из-за него вызывается rebalanceWithoutState + return (DecideStatus.Special, State.Special); // выяснить чо он означает + } else { + // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается + return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + } + } + + function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { + // тут мы сравниваем уже все проценты и решаем в какой стейт мы будем рабаланситься (и будем ли вообще) + // вычисления на оснвое twapResult, сохранение результата в сторадж, видимо нужно из-за двухэтапной ребалансировки (можно ли объединить в одну функцию?) + // внутри вызываетя вспомогательная функция _calcPercentageDiff + // v0 = state == 3 ? true : !lastRebalanceCurrentPrice + if (state != State.Special && lastRebalanceCurrentPrice != 0) { + if (state != State.Normal) { + if (state != State.OverInventory) { + if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + // if less than 93% + // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); + if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { + // if greater than 80% (REBALANCE TO NORMAL) + // sqrtStatus = 1; + // state == UnderInventory || state == Special + // 80% <= twapResult.percentageOfDepositToken <= 93% + // типа из андеринветори или спешл ребалансим в НОРМАЛ + return (true, State.Normal); + } else { + return (true, State.UnderInventory); + } + } else { + // sqrtStatus = 1; + // state == UnderInventory || state == Special + // twapResult.percentageOfDepositToken >= 93% + return (true, State.OverInventory); + } + } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + // if greater than 77% + if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { + // if less than 91% (REBALANCE TO NORMAL) + // sqrtStatus = 1; + // state == OverInventory + // 77% <= twapResult.percentageOfDepositToken <= 91% + // типа из оверинвентори в НОРМАЛ + return (true, State.Normal); + } + // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) + else { + return (true, State.OverInventory); + } + } else { + // state == OverInventory + // twapResult.percentageOfDepositToken <= 77% + // из оверинвентори хуячимся в андеринвентори + return (true, State.UnderInventory); + } + + // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) + uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals + // console.log('priceChange: ', priceChange); + if (priceChange > thresholds.priceChangeThreshold) { + // CASES: + // 1. we are still under-inventory and price changed by more than (1/0.5)% + // 2. we are still over-inventory and price changed by more than (1/0.5)% + + // console.log('priceChange > thresholds.priceChangeThreshold'); + return (true, state); + } + } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + if (twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold) { + // state == Normal + // twapResult.percentageOfDepositToken < 77% <= 93 % + return (true, State.UnderInventory); + } + } else { + // state == Normal + // twapResult.percentageOfDepositToken > 93% + return (true, State.OverInventory); + } + + if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { + // if less than 1% + // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); + return (false, State.Normal); // no rebalance needed + } else { + // CASES: + // 1. state == Normal and 75% < twapResult.percentageOfDepositToken < 93% + return (true, state); + } + } else { + if (twapResult.percentageOfDepositToken <= thresholds.simulate) { + // if less than 93% + if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + // if greater than 77% (REBALANCE TO NORMAL) + // state == Special OR not lastRebalanceCurrentPrice + // 77% <= twapResult.percentageOfDepositToken <= 93% + return (true, State.Normal); + } else { + // state == Special OR not lastRebalanceCurrentPrice + // twapResult.percentageOfDepositToken <= 77% + return (true, State.UnderInventory); + } + } else { + // state == Special OR not lastRebalanceCurrentPrice + // twapResult.percentageOfDepositToken > 93% + return (true, State.OverInventory); + } + } + + // сюда по идее никогда не попадаем (точно??) точно + return (false, State.Normal); + } + + function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { + // scope to prevent stack too deep + { + // console.log('entered _getRangesWithState'); + // State _state = state; + bool _allowToken1 = allowToken1; + int24 _tickSpacing = tickSpacing; + uint8 _tokenDecimals = tokenDecimals; + + (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); + // console.log('upperPriceBound: ', upperPriceBound); + // console.log('targetPrice: ', targetPrice); + // console.log('lowerPriceBound: ', lowerPriceBound); + + int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); + bool currentTickIsRound = roundedTick == twapResult.currentTick; + + int24 commonTick; + int24 tickForLowerPrice; + if (newState == State.Normal) { + // If HEALTHY status (NORMAL) use target price + // тут targetPrice без decimals (если deposittoken = token0) + // и с decimals если deposittoken = token1, без X96 или X192 + int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); + // console.log('targetTick'); + // console.logInt(targetTick); + commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); + } else { + // console.log('entered else in newState == State.Normal'); + commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); + } + + int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); + // console.log('upperTick'); + // console.logInt(upperTick); + int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); + // console.log('tickForHigherPrice'); + // console.logInt(tickForHigherPrice); + + if (lowerPriceBound == 0) { + // Under-inventory state probably + // if depositToken == token0, надо бы это в сторадж наверное засунуть + // console.log('entered lowerPriceBound == 0'); + int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; + tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing + } else { + int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); + tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); + } + if (!_allowToken1) { + // if deposittoken == token0 + // console.log('TICKS'); + // console.logInt(int24(commonTick)); + // console.logInt(int24(tickForLowerPrice)); + // console.logInt(int24(tickForHigherPrice)); + // console.logInt(int24(commonTick)); + // console.log('TICKS END'); + ranges.baseLower = int24(commonTick); + ranges.baseUpper = int24(tickForLowerPrice); + ranges.limitLower = int24(tickForHigherPrice); + ranges.limitUpper = int24(commonTick); + + // if (varg0 != 2) { + // v19 = 0x437d(int24(_gnosis >> 176), 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27618); + // v18.word2 = int24(v19); + // } + // assert(varg0 <= 3); + // if (varg0 == 2) { + // if (v4) { + // v20 = v21 = MEM[varg1]; + // } else { + // v20 = v22 = v18.word0; + // } + // v18.word0 = int24(v20); + // if (v4) { + // v23 = v24 = MEM[varg1] - int24(_gnosis >> 176); + // } else { + // v23 = v25 = v18.word3; + // } + // v18.word3 = int24(v23); + // } + + if (newState != State.UnderInventory) { + // if not under-inventory + // we do not use v16 because if Token0 then we reverse the structure of ticks + int24 roundedMinTick = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); + ranges.limitLower = int24(roundedMinTick); // use MIN tick + } else { + // if under-inventorys + ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; // if tick is round set currentTick (useless operation?) + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; // tick - tick spacing if round (avoid having the same tick if its round??) + } + + if (newState == State.OverInventory) { + // if over-inventory + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.limitUpper; + ranges.baseLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.baseLower; + ranges.baseUpper = int24(ranges.baseUpper + _tickSpacing); + } + } else { + ranges.baseLower = int24(tickForLowerPrice); + ranges.baseUpper = int24(commonTick); + ranges.limitLower = int24(commonTick); + ranges.limitUpper = int24(tickForHigherPrice); + + if (newState != State.UnderInventory) { + ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); + } + + if (lowerPriceBound > 0 && newState != State.OverInventory) { + ranges.baseLower = int24(ranges.baseLower + _tickSpacing); + } + + if (newState == State.Normal) { + ranges.baseUpper = int24(_tickSpacing + ranges.baseUpper); + ranges.limitLower = int24(_tickSpacing + ranges.limitLower); + } + + if (newState == State.UnderInventory) { + ranges.baseUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.baseUpper; + ranges.limitLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.limitLower; + } + + if (newState == State.OverInventory) { + ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; + ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; + } + } + } + // просто возвращаем? (НЕ ПРОСТО ОКАЗЫВАЕТСЯ ВОЗВРАЩАЕМ) + // TODO: пофиксить stackTooDeep + if (newState == State.OverInventory) { + (ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper) = ( + ranges.limitLower, + ranges.limitUpper, + ranges.baseLower, + ranges.baseUpper + ); + // v49.word0 = int24(MEM[64 + v17]); + // v49.word1 = int24(MEM[96 + v17]); + // v49.word2 = int24(MEM[v17]); + // v49.word3 = int24(MEM[32 + v17]); + } + } + + function _getRangesWithoutState(TwapResult memory twapResult) internal view returns (Ranges memory ranges) { + // возвращает что-то типа + // result.baseLower = currentTick + // result.baseUpper = maxUpperTick + // result.limitLower = minLowerTick + // result.limitUpper = currentTick - tickSpacing + + int24 _tickSpacing = tickSpacing; + bool _allowToken1 = allowToken1; + + // внутри юзается roundTickToTickSpacingCondigeringNegative, roundTickToTickSpacing + int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); + int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); + // console.log('ticks in _getRangesWithoutState'); + // console.logInt(tickRoundedDown); + // console.logInt(tickRounded); + + if (!_allowToken1) { + if (twapResult.currentTick == tickRounded) { + tickRoundedDown = twapResult.currentTick; + } + + ranges.baseLower = tickRoundedDown; + int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick + ranges.baseUpper = maxTickRounded; + int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); // round MinLowerTick + ranges.limitLower = minTickRounded; + if (twapResult.currentTick == tickRounded) { + tickRoundedDown = twapResult.currentTick - _tickSpacing; + } + ranges.limitUpper = tickRoundedDown; + } else { + int24 minTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); + ranges.baseLower = minTickRounded; + + if (twapResult.currentTick == tickRounded) { + ranges.baseUpper = twapResult.currentTick; + } else { + ranges.baseUpper = tickRoundedDown + _tickSpacing; + } + + if (twapResult.currentTick == tickRounded) { + ranges.limitLower = _tickSpacing + twapResult.currentTick; + } else { + ranges.limitLower = tickRoundedDown + _tickSpacing; + } + int24 maxTickRounded = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); // round MaxUpperTick + ranges.limitUpper = maxTickRounded; + } + } + + // поч uint128? поч uint256? + // потому что это не decimals, а 10 ** decimals + function _getPriceAccountingDecimals( + address token0, + address token1, + uint128 token1decimals, + /*uint256*/ int24 averageTick + ) private pure returns (uint256 price) { + uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); + if (uint160(sqrtPriceX96) > type(uint128).max) { + uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); + return + token1 < token0 + ? FullMath.mulDiv(priceX128, token1decimals, uint256(type(uint128).max) + 1) + : FullMath.mulDiv(uint256(type(uint128).max) + 1, token1decimals, priceX128); + } else { + // console.log(token0, token1); + // console.log(token1decimals); + // console.logInt(int256(averageTick)); + // console.log(sqrtPriceX96); + // console.log(token1 < token0); + // if (token1 < token0) { + // v5 = v6 = MulDiv(uint192.max + 1, token1decimals, uint160(sqrtPrice96) * uint160(sqrtPrice96)); + // } else { + // v5 = v7 = MulDiv(uint160(sqrtPrice96) * uint160(sqrtPrice96), token1decimals, uint192.max + 1); + // } + return + token1 < token0 + ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, type(uint192).max + 1) + : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); + } + } + + // как будто у там эти функци вообще не нужны, мы берем твап из бейз плагина, не делаем лишних коллов + // // пока не очень понятно как она работает и что возвращает + // // TODO: реализовать getTwapMaybe, внутри вызывается только getTimepoints у пула + // function _getTWAPMaybe(uint256 secondsAgo, address pool) private { + + // } + + // // пока не очень понятно как она работает и что возвращает + // // TODO: реализовать getTwap, внутри вызывается только getTimepoints у пула + // function _getTWAP(uint32 varg0, address varg1) private { + + // } + + // function _getDepositTokenDecimals() internal virtual view returns (uint8) { + // return IERC20Metadata(depositToken).decimals(); + // } + + // function _getPairedTokenDecimals() internal virtual view returns (uint8) { + // return IERC20Metadata(depositToken).decimals(); + // } + + function _authorize() internal view virtual { + require(IAlgebraFactory(factory).hasRoleOrOwner(ALGEBRA_BASE_PLUGIN_MANAGER, msg.sender)); + } + + function _getTwapPrices( + address _depositToken, + address _pairedToken, + uint8 _pairedTokenDecimals, + int24 slowTwapTick, + int24 fastTwapTick, + int24 currentTick + ) internal view virtual returns (uint256, uint256, uint256) { + return ( + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick), + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick), + _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), currentTick) + ); + } + + function _getPairedTokenDecimals() internal view virtual returns (uint8) { + return IERC20Metadata(pairedToken).decimals(); + } + + function _getDepositTokenDecimals() internal view virtual returns (uint8) { + return IERC20Metadata(depositToken).decimals(); + } + + function _getDepositTokenVaultBalance() internal view virtual returns (uint256) { + return IERC20Metadata(depositToken).balanceOf(vault); + } + + function _calcPercentageDiff(uint256 a, uint256 b) private pure returns (uint256) { + return b > a ? ((b - a) * 10000) / b : ((a - b) * 10000) / a; + } + + function roundTickToTickSpacing(int24 _tickSpacing, int24 _tick) private pure returns (int24) { + return (_tick / _tickSpacing) * _tickSpacing; + } + + function roundTickToTickSpacingConsideringNegative(int24 _tickSpacing, int24 _tick) private pure returns (int24) { + int24 roundedTick = roundTickToTickSpacing(_tickSpacing, _tick); + if (_tick < 0) { + return roundedTick - _tickSpacing; + } else { + return roundedTick; + } + } + + // upper target lower + function _getPriceBounds(State _state, TwapResult memory twapResult, bool _allowToken1) private view returns (uint256, uint256, uint256) { + uint256 targetPrice = twapResult.currentPriceAccountingDecimals; + // тут чтобы убрать require нужно тогда прокидывать, видимо + require(targetPrice != 0, 'middlePrice must be > 0'); + require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); + // if (targetPrice == 0 || twapResult.totalDepositToken == 0) return (0, 0, 0); + + uint256 lowerPriceBound = 0; + if (_state != State.UnderInventory) { + // if not under-inventory (because if under - we place lower as Min) + // v4 = _calcPart(baseLowPct, twapResult.currentPriceAccountingDecimals); // 20% of currentPriceAccountingDecimals + // v2 = v5 = _SafeSub(v4, v1); // lower price bound (-20%) + // currentPrice - 20% (почему не сделать twapResult.currentPriceAccountingDecimals * 0.8?) + // console.log('baselowpct: ', thresholds.baseLowPct); + lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); + } + // v6 = _calcPart(baseHighPct, v1); // 10% of currentPriceAccountingDecimals + // v7 = v8 = _SafeAdd(v6, v1); // upper price bound (+10%) + // currentPriceAccountingDecimals + 10% + uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); + // console.log('targetPrice: ', targetPrice); + // console.log('upperPriceBound: ', upperPriceBound); + + // console.log('state????: ', uint256(_state)); + if (_state == State.Normal) { + // console.log('mi tut???'); + // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); + // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); + uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 + // console.log('limitReservePct: ', thresholds.limitReservePct); + // console.log('partOfTotalTokens: ', partOfTotalTokens); + // TODO: убрать этот require + require(twapResult.totalPairedInDeposit > partOfTotalTokens, 'not enough quote token'); + uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; + uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess + uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; + if (excessCoef != 0) { + targetPrice += _calcPart(excessCoef, targetPrice); + } + } + // ета залупа в каком случае срабатывает? (!allowToken1 -> depositToken = Token0) + // как связано какой депозит токен и то, убираем ли мы decimals или нет? + // console.log('targetPrice before remove decimals: ', targetPrice); + // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); + // console.log('upperPriceBound before remove decimals: ', upperPriceBound); + // console.log('decimalsSum: ', decimalsSum); + // console.log(_allowToken1); + if (!_allowToken1) { + // console.log('??????'); + targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice + lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound + upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound + // console.log('targetPrice after remove decimals: ', targetPrice); + // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); + // console.log('upperPriceBound after remove decimals: ', upperPriceBound); + } + + return (upperPriceBound, targetPrice, lowerPriceBound); + } + + function _calcPart(uint256 base, uint256 part) private pure returns (uint256) { + return (base * part) / 10000; + } + + function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { + // console.log('amount: ', amount); + // console.log('decimals: ', decimals); + return amount != 0 ? (10 ** decimals) / amount : amount; + } + + function _pause() private { + paused = true; + } + + function unpause() public payable /* onlyowner */ { + paused = false; + } + + function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { + uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); + return TickMath.getTickAtSqrtRatio(sqrtPriceX96); + } + + function getSqrtPriceX96(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + // price мы получаем из getRangesWithState, а там мы можем получить + // если state == normal, то без decimals, а если не normal, то с decimals + // и типа если price >= 10 ** tokenDecimals, то мы получили цену с decimals (ну и ХУЕТА) + // console.log(_price >= 10 ** _tokenDecimals); + return + _price >= 10 ** _tokenDecimals + ? getSqrtPriceX96FromPriceWithDecimals(_tokenDecimals, _price) + : getSqrtPriceX96FromPriceWithoutDecimals(_tokenDecimals, _price); + } + + function getSqrtPriceX96FromPriceWithDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + return uint160((Math.sqrt(_price) << 96) / Math.sqrt(10 ** _tokenDecimals)); + } + + function getSqrtPriceX96FromPriceWithoutDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { + return uint160(Math.sqrt((_price << 192) / 10 ** _tokenDecimals)); + } +} From 4d5e7ea427dfcf28a8dd008512e2f151279f21e2 Mon Sep 17 00:00:00 2001 From: debych Date: Wed, 26 Mar 2025 13:15:35 +0300 Subject: [PATCH 08/42] [Plugin] add ALM tests --- src/plugin/contracts/test/AlmPluginTest.sol | 133 + src/plugin/contracts/test/MockVault.sol | 147 + src/plugin/test/AlmPlugin.spec.ts | 211 + src/plugin/test/almRebalances.json | 44 + src/plugin/test/almRebalances2.json | 2204 + src/plugin/test/almRebalances3.json | 51886 ++++++++++++++++++ 6 files changed, 54625 insertions(+) create mode 100644 src/plugin/contracts/test/AlmPluginTest.sol create mode 100644 src/plugin/contracts/test/MockVault.sol create mode 100644 src/plugin/test/AlmPlugin.spec.ts create mode 100644 src/plugin/test/almRebalances.json create mode 100644 src/plugin/test/almRebalances2.json create mode 100644 src/plugin/test/almRebalances3.json diff --git a/src/plugin/contracts/test/AlmPluginTest.sol b/src/plugin/contracts/test/AlmPluginTest.sol new file mode 100644 index 000000000..fa9855d16 --- /dev/null +++ b/src/plugin/contracts/test/AlmPluginTest.sol @@ -0,0 +1,133 @@ +// SPDX-License-Identifier: UNLICENSED +pragma solidity =0.8.20; + +import '../base/BaseRebalanceManager.sol'; + +import 'hardhat/console.sol'; + +contract AlmPluginTest is BaseRebalanceManager { + uint256 public depositTokenBalance; + uint256 public slowPrice; + uint256 public fastPrice; + uint256 public currentPrice; + uint8 public depositDecimals; + uint8 public pairedDecimals; + + constructor(address _vault, Thresholds memory _thresholds, int24 _tickSpacing) { + require(!isAlmInitialized, 'Already initialized'); + isAlmInitialized = true; + paused = false; + // TODO: добавить require'ов + vault = _vault; + pool = address(0); + + tickSpacing = _tickSpacing; + + bool _allowToken1 = IAlgebraVault(vault).allowToken1(); + + allowToken1 = _allowToken1; + state = State.OverInventory; // поч overinventory? + lastRebalanceTimestamp = 0; + lastRebalanceCurrentPrice = 0; + thresholds = _thresholds; + + address token0 = IAlgebraVault(_vault).token0(); + address token1 = IAlgebraVault(_vault).token1(); + + address _pairedToken = _allowToken1 ? token0 : token1; + pairedToken = _pairedToken; + uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); + // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); + pairedTokenDecimals = _pairedTokenDecimals; + + address _depositToken = _allowToken1 ? token1 : token0; + depositToken = _depositToken; + uint8 _depositTokenDecimals = _getDepositTokenDecimals(); + depositTokenDecimals = _depositTokenDecimals; + // console.log('_depositTokenDecimals: ', _depositTokenDecimals); + + decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; + // console.log('decimals sum: ', decimalsSum); + tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; + } + + function rebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) public { + TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, false); + + // struct TwapResult { + // uint256 currentPriceAccountingDecimals; + // uint256 slowAvgPriceAccountingDecimals; + // uint256 fastAvgPriceAccountingDecimals; + // uint256 totalPairedInDeposit; + // uint256 totalDepositToken; + // uint256 totalPairedToken; + // int24 currentTick; + // uint16 percentageOfDepositTokenUnused; // 10000 = 100% + // uint16 percentageOfDepositToken; // 10000 = 100% + // bool failedToObtainTWAP; + // bool sameBlock; + // } + console.log('TWAP RESULT START'); + console.log(twapResult.currentPriceAccountingDecimals); + console.log(twapResult.slowAvgPriceAccountingDecimals); + console.log(twapResult.fastAvgPriceAccountingDecimals); + console.log(twapResult.totalPairedInDeposit); + console.log(twapResult.totalDepositToken); + console.log(twapResult.totalPairedToken); + console.logInt(twapResult.currentTick); + console.log(twapResult.percentageOfDepositTokenUnused); + console.log(twapResult.percentageOfDepositToken); + console.log(twapResult.failedToObtainTWAP); + console.log(twapResult.sameBlock); + console.log('TWAP RESULT END'); + + console.log('STATE IN THE BEGINNING: ', uint256(state)); + + // int24 currentTick; + // uint16 percentageOfDepositTokenUnused; // 10000 = 100% + // uint16 percentageOfDepositToken; // 10000 = 100% + // bool failedToObtainTWAP; + // bool sameBlock; + // } + + _rebalance(twapResult); + } + + function setDepositTokenBalance(uint256 _depositTokenBalance) public { + depositTokenBalance = _depositTokenBalance; + } + + function setState(State _state) public { + state = _state; + } + + function setPrices(uint256 _slowPrice, uint256 _fastPrice, uint256 _currentPrice) public { + slowPrice = _slowPrice; + fastPrice = _fastPrice; + currentPrice = _currentPrice; + } + + function setLastRebalanceCurrentPrice(uint256 _lastRebalanceCurrentPrice) public { + lastRebalanceCurrentPrice = _lastRebalanceCurrentPrice; + } + + function setDecimals(uint8 _depositDecimals, uint8 _pairedDecimals) public { + (depositDecimals, pairedDecimals) = (_depositDecimals, _pairedDecimals); + } + + function _getDepositTokenVaultBalance() internal view override returns (uint256) { + return depositTokenBalance; + } + + function _getDepositTokenDecimals() internal view override returns (uint8) { + return depositDecimals; + } + + function _getPairedTokenDecimals() internal view override returns (uint8) { + return pairedDecimals; + } + + function _getTwapPrices(address, address, uint8, int24, int24, int24) internal view override returns (uint256, uint256, uint256) { + return (slowPrice, fastPrice, currentPrice); + } +} diff --git a/src/plugin/contracts/test/MockVault.sol b/src/plugin/contracts/test/MockVault.sol new file mode 100644 index 000000000..52b8c1558 --- /dev/null +++ b/src/plugin/contracts/test/MockVault.sol @@ -0,0 +1,147 @@ +// SPDX-License-Identifier: Unlicense +pragma solidity >=0.8.4; + +import {IAlgebraVault} from '@cryptoalgebra/alm-vault/contracts/interfaces/IAlgebraVault.sol'; +import {ERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol'; +import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; +import {IAlgebraPool} from '@cryptoalgebra/integral-core/contracts/interfaces/IAlgebraPool.sol'; + +import 'hardhat/console.sol'; + +contract MockVault is IAlgebraVault, ERC20 { + event MockRebalance(int24 baseLower, int24 baseUpper, int24 limitLower, int24 limitUpper); + + address public immutable algebraVaultFactory; + address public immutable override pool; + address public immutable override token0; + address public immutable override token1; + bool public override allowToken0; + bool public override allowToken1; + + address public override ammFeeRecipient; + address public override affiliate; + + // Position tracking + uint256 public basePositionId; + uint256 public limitPositionId; + + uint256 public override deposit0Max; + uint256 public override deposit1Max; + uint256 public override hysteresis; + + uint256 public constant PRECISION = 10 ** 18; + uint256 constant PERCENT = 100; + address constant NULL_ADDRESS = address(0); + uint256 constant MIN_SHARES = 1000; + + uint32 public twapPeriod; + uint32 public auxTwapPeriod; + + uint24 public fee; + int24 public tickSpacing; + + int24 public override baseLower; + int24 public override baseUpper; + int24 public override limitLower; + int24 public override limitUpper; + + uint256 public totalAmount0; + uint256 public totalAmount1; + + constructor( + address _pool, + bool _allowToken0, + bool _allowToken1 + ) + // address __owner, + // uint32 _twapPeriod, + // uint256 _vaultIndex + ERC20('TestLP', 'TestLP') + { + // require(_pool != NULL_ADDRESS, "IV.constructor: zero address"); + // require((_allowToken0 && !_allowToken1) || + // (_allowToken1 && !_allowToken0), "IV.constructor: must be single sided"); + + algebraVaultFactory = msg.sender; + // pool = _pool; + // token0 = IAlgebraPool(_pool).token0(); + // token1 = IAlgebraPool(_pool).token1(); + pool = address(0); + token0 = address(0); + token1 = address(0); + allowToken0 = _allowToken0; + allowToken1 = _allowToken1; + // twapPeriod = _twapPeriod; + // auxTwapPeriod = _twapPeriod / 4; // default value is a quarter of the TWAP period + + // hysteresis = PRECISION / PERCENT / 2; // 0.5% threshold + // deposit0Max = type(uint256).max; // max uint256 + // deposit1Max = type(uint256).max; // max uint256 + // ammFeeRecipient = NULL_ADDRESS; // by default there is no amm fee recipient address; + // affiliate = NULL_ADDRESS; // by default there is no affiliate address + } + + function setAllowTokens(bool _allowToken0, bool _allowToken1) public { + (allowToken0, allowToken1) = (_allowToken0, _allowToken1); + } + + function getTotalAmounts() external view returns (uint256, uint256) { + return (totalAmount0, totalAmount1); + } + + function deposit(uint256, uint256, address) external returns (uint256) {} + + function withdraw(uint256, address) external returns (uint256, uint256) {} + + function rebalance(int24 _baseLower, int24 _baseUpper, int24 _limitLower, int24 _limitUpper, int256 swapQuantity) external { + console.log('VAULT REBALANCE CALLED'); + console.logInt(_baseLower); + console.logInt(_baseUpper); + console.logInt(_limitLower); + console.logInt(_limitUpper); + emit MockRebalance(_baseLower, _baseUpper, _limitLower, _limitUpper); + } + + function resetAllowances() external {} + + function setHysteresis(uint256 _hysteresis) external {} + + function collectFees() external returns (uint256 fees0, uint256 fees1) {} + + function setDepositMax(uint256 _deposit0Max, uint256 _deposit1Max) external {} + + function setAmmFeeRecipient(address _ammFeeRecipient) external {} + + function setAffiliate(address _affiliate) external {} + + function _position(int24 tickLower, int24 tickUpper) internal view returns (uint128 liquidity, uint128 tokensOwed0, uint128 tokensOwed1) { + bytes32 positionKey; + address owner = address(this); + assembly { + positionKey := or(shl(24, or(shl(24, owner), and(tickLower, 0xFFFFFF))), and(tickUpper, 0xFFFFFF)) + } + + (uint256 _liquidity, , , uint128 _tokensOwed0, uint128 _tokensOwed1) = IAlgebraPool(pool).positions(positionKey); + liquidity = uint128(_liquidity); + tokensOwed0 = _tokensOwed0; + tokensOwed1 = _tokensOwed1; + } + + function currentTick() public view returns (int24 tick) { + (, int24 tick_, , , , bool unlocked_) = IAlgebraPool(pool).globalState(); + require(unlocked_, 'IV.currentTick: the pool is locked'); + tick = tick_; + } + + function setTotalAmounts(uint256 _totalAmount0, uint256 _totalAmount1) public { + (totalAmount0, totalAmount1) = (_totalAmount0, _totalAmount1); + } + + function getBasePosition() public view returns (uint128, uint256, uint256) { + return (0, 0, 0); + } + + function getLimitPosition() public view returns (uint128, uint256, uint256) { + return (0, 0, 0); + } +} diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts new file mode 100644 index 000000000..36a37aa44 --- /dev/null +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -0,0 +1,211 @@ +import { expect } from './shared/expect'; +import { ethers } from 'hardhat'; +import { AlmPluginTest, MockVault } from '../typechain'; +import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'; +import snapshotGasCost from './shared/snapshotGasCost'; +import { ZERO_ADDRESS } from './shared/fixtures'; +import { rebalances } from "./almRebalances.json"; +import { rebalances2 } from "./almRebalances2.json"; +import { rebalances3 } from "./almRebalances3.json"; + +describe('#AlmPlugin', () => { + async function almPluginFixture( + thresholds: { + depositTokenUnusedThreshold: string | number, + simulate: string | number, + normalThreshold: string | number, + underInventoryThreshold: string | number, + overInventoryThreshold: string | number, + priceChangeThreshold: string | number, + extremeVolatility: string | number, + highVolatility: string | number, + someVolatility: string | number, + dtrDelta: string | number, + baseLowPct: string | number, + baseHighPct: string | number, + limitReservePct: string | number, + }, + tickSpacing: number + ) { + const mockVaultFactory = await ethers.getContractFactory('MockVault'); + const mockVault = await mockVaultFactory.deploy(ZERO_ADDRESS, true, false) as any as MockVault; + + const almPluginFactory = await ethers.getContractFactory('AlmPluginTest'); + const almPlugin = (await almPluginFactory.deploy( + await mockVault.getAddress(), + thresholds, tickSpacing + )) as any as AlmPluginTest; + + return { + mockVault: mockVault, + almPlugin: almPlugin + } + } + + describe('#initializeALM', () => { + it("can initialize", async () => { + await almPluginFixture({ + depositTokenUnusedThreshold: 100, + simulate: 9400, // было 9300 + normalThreshold: 8100, // было 8000 + underInventoryThreshold: 7800, // было 7700 + overInventoryThreshold: 9100, + priceChangeThreshold: 100, + extremeVolatility: 2500, + highVolatility: 900, // было 500 + someVolatility: 200, // было 100 + dtrDelta: 300, + baseLowPct: 3000, // было 2000 + baseHighPct: 1500, // было 3000 + limitReservePct: 500, + }, 228); + }); + }); + + describe('#rebalance', () => { + for (const rebalance of rebalances) { + it(`rebalance for tx ${rebalance.transactionHash}`, async () => { + const { almPlugin, mockVault } = await almPluginFixture({ + depositTokenUnusedThreshold: rebalance.state.depositTokenUnusedThreshold, + simulate: rebalance.state.simulateTrigger, + normalThreshold: rebalance.state.normalTrigger, + underInventoryThreshold: rebalance.state.underTrigger, + overInventoryThreshold: rebalance.state.overTrigger, + priceChangeThreshold: rebalance.state.priceChangeTrigger, + extremeVolatility: rebalance.state.extremeVolatility, + highVolatility: rebalance.state.highVolatility, + someVolatility: rebalance.state.someVolatility, + dtrDelta: rebalance.state.dtrDelta, + baseLowPct: rebalance.state.baseLowPct, + baseHighPct: rebalance.state.baseHighPct, + limitReservePct: rebalance.state.limitReservePct, + }, 60); + + const state = rebalance.state; + const currentTick = BigInt(state.currentTick); + const lastBlockTimestamp = 0n; + const slowTick = 0n; + const fastTick = 0n; + + await almPlugin.setDecimals(18, 18); + + await mockVault.setTotalAmounts( + BigInt(state.usedToken0), + BigInt(state.usedToken1) + ); + + await almPlugin.setPrices( + BigInt(state.twapSlow), + BigInt(state.twapFast), + BigInt(state.currentPrice) + ); + + await almPlugin.setDepositTokenBalance(state.depositTokenBalance); + + await almPlugin.setLastRebalanceCurrentPrice(BigInt(state.lastRebalancePrice)); + await almPlugin.setState(BigInt(state.state)); + + await expect(almPlugin.rebalance(currentTick, slowTick, fastTick, lastBlockTimestamp)).to.emit(mockVault, 'MockRebalance') + .withArgs(rebalance.rebalance.basePosition.bottomTick, rebalance.rebalance.basePosition.topTick, rebalance.rebalance.limitPosition.bottomTick, rebalance.rebalance.limitPosition.topTick); + }); + } + }); + + describe('#rebalance2', () => { + for (const rebalance of rebalances2) { + it(`rebalance for tx ${rebalance.transactionHash}`, async () => { + const { almPlugin, mockVault } = await almPluginFixture({ + depositTokenUnusedThreshold: rebalance.state.depositTokenUnusedThreshold, + simulate: rebalance.state.simulateTrigger, + normalThreshold: rebalance.state.normalTrigger, + underInventoryThreshold: rebalance.state.underTrigger, + overInventoryThreshold: rebalance.state.overTrigger, + priceChangeThreshold: rebalance.state.priceChangeTrigger, + extremeVolatility: rebalance.state.extremeVolatility, + highVolatility: rebalance.state.highVolatility, + someVolatility: rebalance.state.someVolatility, + dtrDelta: rebalance.state.dtrDelta, + baseLowPct: rebalance.state.baseLowPct, + baseHighPct: rebalance.state.baseHighPct, + limitReservePct: rebalance.state.limitReservePct, + }, 60); + + const state = rebalance.state; + const currentTick = BigInt(state.currentTick); + const lastBlockTimestamp = 0n; + const slowTick = 0n; + const fastTick = 0n; + + await almPlugin.setDecimals(6, 18); + + await mockVault.setTotalAmounts( + BigInt(state.usedToken0), + BigInt(state.usedToken1) + ); + + await almPlugin.setPrices( + BigInt(state.twapSlow), + BigInt(state.twapFast), + BigInt(state.currentPrice) + ); + + await almPlugin.setDepositTokenBalance(state.depositTokenBalance); + + await almPlugin.setLastRebalanceCurrentPrice(BigInt(state.lastRebalancePrice)); + await almPlugin.setState(BigInt(state.state)); + + await expect(almPlugin.rebalance(currentTick, slowTick, fastTick, lastBlockTimestamp)).to.emit(mockVault, 'MockRebalance') + .withArgs(rebalance.rebalance.basePosition.bottomTick, rebalance.rebalance.basePosition.topTick, rebalance.rebalance.limitPosition.bottomTick, rebalance.rebalance.limitPosition.topTick); + }); + } + }); + + describe('#rebalance3', () => { + for (const rebalance of rebalances3.slice(0,30)) { + it(`rebalance for tx ${rebalance.transactionHash}`, async () => { + const { almPlugin, mockVault } = await almPluginFixture({ + depositTokenUnusedThreshold: rebalance.state.depositTokenUnusedThreshold, + simulate: rebalance.state.simulateTrigger, + normalThreshold: rebalance.state.normalTrigger, + underInventoryThreshold: rebalance.state.underTrigger, + overInventoryThreshold: rebalance.state.overTrigger, + priceChangeThreshold: rebalance.state.priceChangeTrigger, + extremeVolatility: rebalance.state.extremeVolatility, + highVolatility: rebalance.state.highVolatility, + someVolatility: rebalance.state.someVolatility, + dtrDelta: rebalance.state.dtrDelta, + baseLowPct: rebalance.state.baseLowPct, + baseHighPct: rebalance.state.baseHighPct, + limitReservePct: rebalance.state.limitReservePct, + }, 200); + + const state = rebalance.state; + const currentTick = BigInt(state.currentTick); + const lastBlockTimestamp = 0n; + const slowTick = 0n; + const fastTick = 0n; + + await almPlugin.setDecimals(6, 18); + + await mockVault.setTotalAmounts( + BigInt(state.usedToken0), + BigInt(state.usedToken1) + ); + + await almPlugin.setPrices( + BigInt(state.twapSlow), + BigInt(state.twapFast), + BigInt(state.currentPrice) + ); + + await almPlugin.setDepositTokenBalance(state.depositTokenBalance); + + await almPlugin.setLastRebalanceCurrentPrice(BigInt(state.lastRebalancePrice)); + await almPlugin.setState(BigInt(state.state)); + + await expect(almPlugin.rebalance(currentTick, slowTick, fastTick, lastBlockTimestamp)).to.emit(mockVault, 'MockRebalance') + .withArgs(rebalance.rebalance.basePosition.bottomTick, rebalance.rebalance.basePosition.topTick, rebalance.rebalance.limitPosition.bottomTick, rebalance.rebalance.limitPosition.topTick); + }); + } + }); +}); diff --git a/src/plugin/test/almRebalances.json b/src/plugin/test/almRebalances.json new file mode 100644 index 000000000..47ae73bae --- /dev/null +++ b/src/plugin/test/almRebalances.json @@ -0,0 +1,44 @@ +{ + "rebalances": [ + { + "transactionHash": "0x6f0aa1cb9e713d8ece5fa4eefe7119b22c83d18eea64bfc53b08738d343d82a6", + "state": { + "depositToken": 0, + "blockNumber": 33385794, + "lastRebalancePrice": "125456497757004278", + "state": "0", + "currentTick": "20695", + "currentPrice": "126261953780644189", + "twapSlow": "126350363667720544", + "twapFast": "126261953780644189", + "depositTokenBalance": "287154026043328584339", + "pairedTokenBalance": "1", + "usedToken0": "25573878847520954208402", + "usedToken1": "1725375268044230502124", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20700" + }, + "limitPosition": { + "bottomTick": "20700", + "topTick": "24300" + } + } + } + ] +} diff --git a/src/plugin/test/almRebalances2.json b/src/plugin/test/almRebalances2.json new file mode 100644 index 000000000..cf8417e73 --- /dev/null +++ b/src/plugin/test/almRebalances2.json @@ -0,0 +1,2204 @@ +{ + "rebalances2": [ + { + "transactionHash": "0x8bf188bb6b7dccc6e6a259bf0a842001cc6b4d3729a93d28b919acee0d6a19ba", + "state": { + "depositToken": 0, + "blockNumber": 52118373, + "lastRebalancePrice": "51878", + "state": "1", + "currentTick": "305819", + "currentPrice": "52373", + "twapSlow": "51738", + "twapFast": "51588", + "depositTokenBalance": "0", + "pairedTokenBalance": "3396736", + "usedToken0": "26633752", + "usedToken1": "85802082546924596827", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305760", + "topTick": "312720" + }, + "limitPosition": { + "bottomTick": "298860", + "topTick": "305760" + } + } + }, + { + "transactionHash": "0x48de1ac6aa72d6533e1df60538009c81923a85b19aca1e52579518005c8992a3", + "state": { + "depositToken": 0, + "blockNumber": 52120078, + "lastRebalancePrice": "52373", + "state": "3", + "currentTick": "305776", + "currentPrice": "52599", + "twapSlow": "52531", + "twapFast": "52599", + "depositTokenBalance": "0", + "pairedTokenBalance": "1154662", + "usedToken0": "26842809", + "usedToken1": "82197437312526019392", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305520", + "topTick": "307980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305520" + } + } + }, + { + "transactionHash": "0x95e842455ecfc8e96f4967840d1f2969535be4b261c6ae63bee88b8db0b5dfbf", + "state": { + "depositToken": 0, + "blockNumber": 52122528, + "lastRebalancePrice": "52599", + "state": "1", + "currentTick": "305941", + "currentPrice": "51738", + "twapSlow": "52431", + "twapFast": "52232", + "depositTokenBalance": "0", + "pairedTokenBalance": "2738031", + "usedToken0": "24724519", + "usedToken1": "122852795821242097918", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305940", + "topTick": "312840" + }, + "limitPosition": { + "bottomTick": "298980", + "topTick": "305940" + } + } + }, + { + "transactionHash": "0xf4d477726be2d26365711ccca3589c5a4235102c7690a496658b155c342c1fce", + "state": { + "depositToken": 0, + "blockNumber": 52145294, + "lastRebalancePrice": "52384", + "state": "3", + "currentTick": "305837", + "currentPrice": "52279", + "twapSlow": "52300", + "twapFast": "52279", + "depositTokenBalance": "0", + "pairedTokenBalance": "541812", + "usedToken0": "24334136", + "usedToken1": "131589505378911613863", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305400", + "topTick": "308040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305400" + } + } + }, + { + "transactionHash": "0x4b864ba4ddf8afd16d7bb2ec8d711186d3913d56b53dd21675c07b7014e66f26", + "state": { + "depositToken": 0, + "blockNumber": 52148572, + "lastRebalancePrice": "52279", + "state": "1", + "currentTick": "305637", + "currentPrice": "53335", + "twapSlow": "52426", + "twapFast": "52594", + "depositTokenBalance": "0", + "pairedTokenBalance": "3310751", + "usedToken0": "26672600", + "usedToken1": "87406360311992835312", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305580", + "topTick": "312540" + }, + "limitPosition": { + "bottomTick": "298680", + "topTick": "305580" + } + } + }, + { + "transactionHash": "0xea8caa37f7d0f10aaee664ee063d13a6389e5a167176134837aba58fa1bc58a4", + "state": { + "depositToken": 0, + "blockNumber": 52151867, + "lastRebalancePrice": "53335", + "state": "3", + "currentTick": "305586", + "currentPrice": "53608", + "twapSlow": "53651", + "twapFast": "53640", + "depositTokenBalance": "0", + "pairedTokenBalance": "870449", + "usedToken0": "26917686", + "usedToken1": "83047650462793719300", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305340", + "topTick": "307800" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305340" + } + } + }, + { + "transactionHash": "0x7f9056e572fdc28047d238fcd85173381979c60b1546bf6c819e649ef59a3fce", + "state": { + "depositToken": 0, + "blockNumber": 52155075, + "lastRebalancePrice": "53608", + "state": "1", + "currentTick": "305526", + "currentPrice": "53930", + "twapSlow": "53479", + "twapFast": "53914", + "depositTokenBalance": "0", + "pairedTokenBalance": "1786362", + "usedToken0": "27694467", + "usedToken1": "68642907954387482607", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305520", + "topTick": "312420" + }, + "limitPosition": { + "bottomTick": "298560", + "topTick": "305520" + } + } + }, + { + "transactionHash": "0xd7bdf9f01dc29c5e045ba50dcdff9188cb8a2ac74ce94c43064e844cf436f16b", + "state": { + "depositToken": 0, + "blockNumber": 52158469, + "lastRebalancePrice": "53930", + "state": "3", + "currentTick": "305601", + "currentPrice": "53527", + "twapSlow": "53635", + "twapFast": "53527", + "depositTokenBalance": "0", + "pairedTokenBalance": "557802", + "usedToken0": "27344900", + "usedToken1": "75320546611139607771", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305400", + "topTick": "307800" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305400" + } + } + }, + { + "transactionHash": "0x03276d66936eb15092dca4e950fab3d8b6b4d58d7c7e9efb2d4a767ba17c997b", + "state": { + "depositToken": 0, + "blockNumber": 52175965, + "lastRebalancePrice": "52815", + "state": "3", + "currentTick": "305304", + "currentPrice": "55141", + "twapSlow": "54702", + "twapFast": "55141", + "depositTokenBalance": "183028369", + "pairedTokenBalance": "1096595", + "usedToken0": "837163844", + "usedToken1": "202078850152129009402", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "305340" + }, + "limitPosition": { + "bottomTick": "305340", + "topTick": "307560" + } + } + }, + { + "transactionHash": "0x57577c81802dcc538e2579856b23e687d577415f4503f95f22637c2959f9ded2", + "state": { + "depositToken": 0, + "blockNumber": 52184327, + "lastRebalancePrice": "55191", + "state": "0", + "currentTick": "305351", + "currentPrice": "54882", + "twapSlow": "55351", + "twapFast": "54904", + "depositTokenBalance": "0", + "pairedTokenBalance": "623377", + "usedToken0": "4214810357", + "usedToken1": "741769483915778226292", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305340", + "topTick": "312240" + }, + "limitPosition": { + "bottomTick": "298380", + "topTick": "305340" + } + } + }, + { + "transactionHash": "0x80b7b0f6bc88f6003bf6c5a891d5fa9431b4759436c395eba0ab8fb2731092d2", + "state": { + "depositToken": 0, + "blockNumber": 52192001, + "lastRebalancePrice": "55268", + "state": "3", + "currentTick": "305250", + "currentPrice": "55440", + "twapSlow": "55318", + "twapFast": "55440", + "depositTokenBalance": "0", + "pairedTokenBalance": "1024393", + "usedToken0": "4141471019", + "usedToken1": "2127521829907067277518", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "305280" + }, + "limitPosition": { + "bottomTick": "305280", + "topTick": "307500" + } + } + }, + { + "transactionHash": "0xdb4acf10c61efbdbb51f4afc273dbc7dcf64717a0120daba6a3a59cbfe5ddb60", + "state": { + "depositToken": 0, + "blockNumber": 52205100, + "lastRebalancePrice": "56137", + "state": "3", + "currentTick": "305349", + "currentPrice": "54893", + "twapSlow": "55213", + "twapFast": "54893", + "depositTokenBalance": "0", + "pairedTokenBalance": "628488", + "usedToken0": "3781079039", + "usedToken1": "8655888168412370725806", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305160", + "topTick": "307560" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305160" + } + } + }, + { + "transactionHash": "0x0b00e0672d17c01eca4a7ab5e8ab3f7d496e65b0a640bb3bc74ffed3b9dcd721", + "state": { + "depositToken": 0, + "blockNumber": 52229731, + "lastRebalancePrice": "55562", + "state": "0", + "currentTick": "305261", + "currentPrice": "55379", + "twapSlow": "55517", + "twapFast": "55379", + "depositTokenBalance": "0", + "pairedTokenBalance": "3616263", + "usedToken0": "3945332883", + "usedToken1": "5722540941972001044523", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "305280" + }, + "limitPosition": { + "bottomTick": "305280", + "topTick": "307500" + } + } + }, + { + "transactionHash": "0xa6ab9b3b8db20a64f47f1aee0832a6c66821d224e541717949eb161aaca3a19a", + "state": { + "depositToken": 0, + "blockNumber": 52235227, + "lastRebalancePrice": "55712", + "state": "3", + "currentTick": "304936", + "currentPrice": "57208", + "twapSlow": "56894", + "twapFast": "57208", + "depositTokenBalance": "0", + "pairedTokenBalance": "352195", + "usedToken0": "4088793746", + "usedToken1": "3166108676571027099999", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "304980" + }, + "limitPosition": { + "bottomTick": "304980", + "topTick": "307200" + } + } + }, + { + "transactionHash": "0x53805c575a3d32fb0fd9a4df1a885aebcb986146df7ec8a8bb339f9859289a79", + "state": { + "depositToken": 0, + "blockNumber": 52244701, + "lastRebalancePrice": "54680", + "state": "3", + "currentTick": "305352", + "currentPrice": "54877", + "twapSlow": "54926", + "twapFast": "54828", + "depositTokenBalance": "541991", + "pairedTokenBalance": "908351", + "usedToken0": "3579130140", + "usedToken1": "12398301337603776326511", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "80", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305040", + "topTick": "307560" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305040" + } + } + }, + { + "transactionHash": "0x8ef0969c5f3f2c5a0955dbe7c574f61d3a756d152ac92cb4ad9e8f73966cf456", + "state": { + "depositToken": 0, + "blockNumber": 52251047, + "lastRebalancePrice": "54877", + "state": "1", + "currentTick": "305510", + "currentPrice": "54017", + "twapSlow": "54620", + "twapFast": "54174", + "depositTokenBalance": "1962899848", + "pairedTokenBalance": "72559", + "usedToken0": "5272380838", + "usedToken1": "17387273699179332512967", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305100", + "topTick": "309060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305100" + } + } + }, + { + "transactionHash": "0x377a553bacfa7ffe9c8e3e70541b7ddf22b00c41532fc2159eda55152d142891", + "state": { + "depositToken": 0, + "blockNumber": 52255916, + "lastRebalancePrice": "53186", + "state": "3", + "currentTick": "305895", + "currentPrice": "51977", + "twapSlow": "52567", + "twapFast": "51977", + "depositTokenBalance": "0", + "pairedTokenBalance": "1214", + "usedToken0": "4824792674", + "usedToken1": "25833928427342171156197", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305220", + "topTick": "309420" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305220" + } + } + }, + { + "transactionHash": "0x26699e55a937fc04123f66beaed5b4b26183faa9559cd1db85d13b38cecbca45", + "state": { + "depositToken": 0, + "blockNumber": 52291589, + "lastRebalancePrice": "52510", + "state": "1", + "currentTick": "305469", + "currentPrice": "54239", + "twapSlow": "54342", + "twapFast": "54239", + "depositTokenBalance": "379000000", + "pairedTokenBalance": "1390901", + "usedToken0": "5971640526", + "usedToken1": "13393828837977646867893", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305220", + "topTick": "309000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305220" + } + } + }, + { + "transactionHash": "0x6a30de26e17c203139db8f39a05ad080cbae81dbdd9be378b34a60c55ffd4a28", + "state": { + "depositToken": 0, + "blockNumber": 52296371, + "lastRebalancePrice": "54239", + "state": "1", + "currentTick": "305564", + "currentPrice": "53726", + "twapSlow": "53726", + "twapFast": "53726", + "depositTokenBalance": "1269773269", + "pairedTokenBalance": "220526", + "usedToken0": "7066180171", + "usedToken1": "16621850614887507710528", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305340", + "topTick": "309120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305340" + } + } + }, + { + "transactionHash": "0xe1106781190be09a7aa81128d1bb54e7cda1473adddfd69429cd17354191d77c", + "state": { + "depositToken": 0, + "blockNumber": 52312810, + "lastRebalancePrice": "53726", + "state": "1", + "currentTick": "305663", + "currentPrice": "53197", + "twapSlow": "53372", + "twapFast": "53197", + "depositTokenBalance": "1140608343", + "pairedTokenBalance": "1989602", + "usedToken0": "7009206239", + "usedToken1": "17715806037462838295271", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305400", + "topTick": "309180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305400" + } + } + }, + { + "transactionHash": "0x647bfc3b23d0ad26e858a3090fe4e4a40abe76bea0392e24269466368e3045c3", + "state": { + "depositToken": 0, + "blockNumber": 52319712, + "lastRebalancePrice": "53197", + "state": "1", + "currentTick": "305966", + "currentPrice": "51609", + "twapSlow": "53737", + "twapFast": "53538", + "depositTokenBalance": "0", + "pairedTokenBalance": "2498945", + "usedToken0": "6356025201", + "usedToken1": "30177131998379951939293", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305940", + "topTick": "312840" + }, + "limitPosition": { + "bottomTick": "298980", + "topTick": "305940" + } + } + }, + { + "transactionHash": "0x42d103517d0e0f909cd2f95d343cf0fd24ce7b3c624baa0145b2e4cadfdee612", + "state": { + "depositToken": 0, + "blockNumber": 52324931, + "lastRebalancePrice": "51609", + "state": "3", + "currentTick": "305850", + "currentPrice": "52211", + "twapSlow": "52065", + "twapFast": "52008", + "depositTokenBalance": "38360895", + "pairedTokenBalance": "566757", + "usedToken0": "6450376341", + "usedToken1": "29263409127481530892645", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305280", + "topTick": "309360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305280" + } + } + }, + { + "transactionHash": "0x4d5d92fa3d8ddc7a369e6d38e61bd2826b94b1f12f7463e5388aecdec666f3ca", + "state": { + "depositToken": 0, + "blockNumber": 52357872, + "lastRebalancePrice": "52295", + "state": "1", + "currentTick": "305971", + "currentPrice": "51583", + "twapSlow": "51909", + "twapFast": "51594", + "depositTokenBalance": "459953920", + "pairedTokenBalance": "4157113", + "usedToken0": "6800168315", + "usedToken1": "34122257478041390060580", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305400", + "topTick": "309480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305400" + } + } + }, + { + "transactionHash": "0xd5e8d4ab05aaf9f8be0393dbdfa9420b80260a5f3cffaf3181b6dcefe3905975", + "state": { + "depositToken": 0, + "blockNumber": 52363072, + "lastRebalancePrice": "51583", + "state": "1", + "currentTick": "305801", + "currentPrice": "52468", + "twapSlow": "52347", + "twapFast": "52468", + "depositTokenBalance": "5000000003", + "pairedTokenBalance": "2315938", + "usedToken0": "12162011586", + "usedToken1": "27181637665303955459738", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305580", + "topTick": "309360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "305580" + } + } + }, + { + "transactionHash": "0x2489f148474aaf4983543639c0d3e6640e3718c247f460872d9566b0db97c95d", + "state": { + "depositToken": 0, + "blockNumber": 52375311, + "lastRebalancePrice": "52468", + "state": "1", + "currentTick": "305608", + "currentPrice": "53490", + "twapSlow": "52863", + "twapFast": "53490", + "depositTokenBalance": "0", + "pairedTokenBalance": "2707595", + "usedToken0": "12482949117", + "usedToken1": "13069874255451379270413", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "305640" + }, + "limitPosition": { + "bottomTick": "305640", + "topTick": "309180" + } + } + }, + { + "transactionHash": "0x55dd8d5a2de3577b07ccefe8f5d7e8e5581e3551f08869e353928c949701267e", + "state": { + "depositToken": 0, + "blockNumber": 52394217, + "lastRebalancePrice": "53635", + "state": "0", + "currentTick": "305656", + "currentPrice": "53234", + "twapSlow": "53511", + "twapFast": "53346", + "depositTokenBalance": "0", + "pairedTokenBalance": "2221024", + "usedToken0": "11986830429", + "usedToken1": "13787984341636322582855", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "305700" + }, + "limitPosition": { + "bottomTick": "305700", + "topTick": "309240" + } + } + }, + { + "transactionHash": "0x354cc327bc5a333e1baea560732af0f4e291a195b75d718429072bf7a3398439", + "state": { + "depositToken": 0, + "blockNumber": 52494665, + "lastRebalancePrice": "49432", + "state": "2", + "currentTick": "306704", + "currentPrice": "47938", + "twapSlow": "47938", + "twapFast": "47938", + "depositTokenBalance": "0", + "pairedTokenBalance": "91719", + "usedToken0": "5545823783", + "usedToken1": "41564842349498368665349", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "306660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "305280", + "topTick": "306660" + } + } + }, + { + "transactionHash": "0x7f49f295f6bc5b2e32b14a1fdac2413469a52c92647f3462aae4b2688e27a917", + "state": { + "depositToken": 0, + "blockNumber": 52910328, + "lastRebalancePrice": "48638", + "state": "1", + "currentTick": "306202", + "currentPrice": "50405", + "twapSlow": "50446", + "twapFast": "50405", + "depositTokenBalance": "0", + "pairedTokenBalance": "1281863", + "usedToken0": "51920818714", + "usedToken1": "60104532807922050649715", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "306240" + }, + "limitPosition": { + "bottomTick": "306240", + "topTick": "309780" + } + } + }, + { + "transactionHash": "0xbdcefece118153758a170f016e875f1fdd25af8628a44e1b69226b8d47488d6d", + "state": { + "depositToken": 0, + "blockNumber": 52929893, + "lastRebalancePrice": "50405", + "state": "0", + "currentTick": "306364", + "currentPrice": "49595", + "twapSlow": "49481", + "twapFast": "49595", + "depositTokenBalance": "0", + "pairedTokenBalance": "2847416", + "usedToken0": "49945859414", + "usedToken1": "99945159702788799912236", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "306180", + "topTick": "309900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "306180" + } + } + }, + { + "transactionHash": "0x496f498e2494fab334fd5d8a3d8a3810766de6f6418f6f77889936255bc9982b", + "state": { + "depositToken": 0, + "blockNumber": 53001010, + "lastRebalancePrice": "46647", + "state": "2", + "currentTick": "306920", + "currentPrice": "46913", + "twapSlow": "46913", + "twapFast": "46913", + "depositTokenBalance": "152993873", + "pairedTokenBalance": "73542", + "usedToken0": "29092211844", + "usedToken1": "186347567699054640648894", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "306900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "306420", + "topTick": "306900" + } + } + }, + { + "transactionHash": "0x7284baaa953b82e6f4e88ee1fa32501cad207333472ffbc9ab6e86c3a3855236", + "state": { + "depositToken": 0, + "blockNumber": 53168157, + "lastRebalancePrice": "45581", + "state": "2", + "currentTick": "307384", + "currentPrice": "44786", + "twapSlow": "45128", + "twapFast": "44885", + "depositTokenBalance": "285609895", + "pairedTokenBalance": "57815", + "usedToken0": "33147272623", + "usedToken1": "281299803196902979524378", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "307380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "306840", + "topTick": "307380" + } + } + }, + { + "transactionHash": "0xbf2798a2548d0996720447749b3fb12ee82862fc6a3d1dc9d73c8f3b756a4f0d", + "state": { + "depositToken": 0, + "blockNumber": 53208372, + "lastRebalancePrice": "45810", + "state": "1", + "currentTick": "306930", + "currentPrice": "46866", + "twapSlow": "46866", + "twapFast": "46866", + "depositTokenBalance": "1102666280", + "pairedTokenBalance": "2982997", + "usedToken0": "45099132284", + "usedToken1": "46553054160901135303587", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "306960" + }, + "limitPosition": { + "bottomTick": "306960", + "topTick": "308040" + } + } + }, + { + "transactionHash": "0x63b6027981899ce41dd9ea4741b851450252b970e5b0433514a843d56a4aa200", + "state": { + "depositToken": 0, + "blockNumber": 53228192, + "lastRebalancePrice": "46866", + "state": "0", + "currentTick": "306872", + "currentPrice": "47139", + "twapSlow": "46838", + "twapFast": "47148", + "depositTokenBalance": "1035634886", + "pairedTokenBalance": "62526", + "usedToken0": "45969651695", + "usedToken1": "46383992480626488537275", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "306900" + }, + "limitPosition": { + "bottomTick": "306900", + "topTick": "307980" + } + } + }, + { + "transactionHash": "0x7330f777fb9cf0a5c661534de6ce3e77de8333c3475aca31f9482133b954e29c", + "state": { + "depositToken": 0, + "blockNumber": 53288720, + "lastRebalancePrice": "48696", + "state": "0", + "currentTick": "306404", + "currentPrice": "49397", + "twapSlow": "49397", + "twapFast": "49397", + "depositTokenBalance": "0", + "pairedTokenBalance": "2993903", + "usedToken0": "45702486604", + "usedToken1": "18868686817785061036899", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "306420" + }, + "limitPosition": { + "bottomTick": "306420", + "topTick": "307500" + } + } + }, + { + "transactionHash": "0x901bd51e285bcb6fe2d88c9322e69ab3651aa843eb17a443e3d6526c5b8985c8", + "state": { + "depositToken": 0, + "blockNumber": 53296955, + "lastRebalancePrice": "49397", + "state": "0", + "currentTick": "306044", + "currentPrice": "51208", + "twapSlow": "50134", + "twapFast": "51172", + "depositTokenBalance": "0", + "pairedTokenBalance": "350592", + "usedToken0": "45719457280", + "usedToken1": "18532247691715796729261", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "306000", + "topTick": "312960" + }, + "limitPosition": { + "bottomTick": "299100", + "topTick": "306000" + } + } + }, + { + "transactionHash": "0x566773b18dae517c7947f7dfc47458a3e41929191954a71866b6cffc0069174f", + "state": { + "depositToken": 0, + "blockNumber": 53339066, + "lastRebalancePrice": "51868", + "state": "0", + "currentTick": "305963", + "currentPrice": "51625", + "twapSlow": "51888", + "twapFast": "51625", + "depositTokenBalance": "0", + "pairedTokenBalance": "3814386", + "usedToken0": "22118658656", + "usedToken1": "15709140655475407132230", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "306000" + }, + "limitPosition": { + "bottomTick": "306000", + "topTick": "307020" + } + } + }, + { + "transactionHash": "0x560f8264d536cbcde0de0041edbe007e5622a0e8256fe9ab8c408ba2bf318f86", + "state": { + "depositToken": 0, + "blockNumber": 53497646, + "lastRebalancePrice": "59751", + "state": "2", + "currentTick": "304705", + "currentPrice": "58545", + "twapSlow": "58586", + "twapFast": "58545", + "depositTokenBalance": "2011640662", + "pairedTokenBalance": "48163", + "usedToken0": "20001213414", + "usedToken1": "118081131363835443839732", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "304200", + "topTick": "304680" + } + } + }, + { + "transactionHash": "0x2a387d172df03e83450d603bcd2d4191a58e3214fb88525f48e0b354b7aafb47", + "state": { + "depositToken": 0, + "blockNumber": 53507043, + "lastRebalancePrice": "58545", + "state": "2", + "currentTick": "304326", + "currentPrice": "60806", + "twapSlow": "59507", + "twapFast": "60739", + "depositTokenBalance": "32499096", + "pairedTokenBalance": "2631", + "usedToken0": "25268417340", + "usedToken1": "30938211583463709266052", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304320", + "topTick": "311220" + }, + "limitPosition": { + "bottomTick": "297360", + "topTick": "304320" + } + } + }, + { + "transactionHash": "0x3425ff3c1d251c386ea259425bd76d08b365885c0560e9950d09898a7def0211", + "state": { + "depositToken": 0, + "blockNumber": 53637850, + "lastRebalancePrice": "57328", + "state": "0", + "currentTick": "305079", + "currentPrice": "56396", + "twapSlow": "56317", + "twapFast": "56396", + "depositTokenBalance": "10761706446", + "pairedTokenBalance": "3407563", + "usedToken0": "54536449059", + "usedToken1": "199668242511296620543280", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304920", + "topTick": "306120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "304920" + } + } + }, + { + "transactionHash": "0x15ecff25ba1072e5a5f451e67459daf15516d823c847469b59b7209f3e5142be", + "state": { + "depositToken": 0, + "blockNumber": 53656869, + "lastRebalancePrice": "56396", + "state": "1", + "currentTick": "304924", + "currentPrice": "57277", + "twapSlow": "57019", + "twapFast": "57277", + "depositTokenBalance": "17755989867", + "pairedTokenBalance": "3042705", + "usedToken0": "80739567880", + "usedToken1": "52150261718886275170961", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "304980" + }, + "limitPosition": { + "bottomTick": "304980", + "topTick": "306000" + } + } + }, + { + "transactionHash": "0xc32c1cccee5e4b74b5cd42824051dd86051dcb47572e65c6d0c17c719fe11999", + "state": { + "depositToken": 0, + "blockNumber": 53750958, + "lastRebalancePrice": "57082", + "state": "3", + "currentTick": "305136", + "currentPrice": "56075", + "twapSlow": "56441", + "twapFast": "56075", + "depositTokenBalance": "158479950", + "pairedTokenBalance": "558883", + "usedToken0": "47423982039", + "usedToken1": "488664903550421737649778", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "305100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "304620", + "topTick": "305100" + } + } + }, + { + "transactionHash": "0xb909267996439e0975a625a60a3cc58983edd6fb1169c3244a17c1e66e080ef8", + "state": { + "depositToken": 0, + "blockNumber": 53866630, + "lastRebalancePrice": "56548", + "state": "0", + "currentTick": "304630", + "currentPrice": "58985", + "twapSlow": "57328", + "twapFast": "58527", + "depositTokenBalance": "1238929384", + "pairedTokenBalance": "3727241", + "usedToken0": "71425614830", + "usedToken1": "64713852817662524386564", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304620", + "topTick": "311520" + }, + "limitPosition": { + "bottomTick": "297660", + "topTick": "304620" + } + } + }, + { + "transactionHash": "0x850f13b8579f8639eebfb22c6b5e725fae8f159b6d4fb9cd51b9f4096274b902", + "state": { + "depositToken": 0, + "blockNumber": 53912841, + "lastRebalancePrice": "63218", + "state": "3", + "currentTick": "304188", + "currentPrice": "61651", + "twapSlow": "61700", + "twapFast": "61651", + "depositTokenBalance": "492119442", + "pairedTokenBalance": "236649", + "usedToken0": "69228194735", + "usedToken1": "109850680083620936173657", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304140", + "topTick": "305220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "304140" + } + } + }, + { + "transactionHash": "0x77eb622162ef0483dbdebafc2a89294035906c3819712051e5c22864016dea9d", + "state": { + "depositToken": 0, + "blockNumber": 53933313, + "lastRebalancePrice": "61651", + "state": "1", + "currentTick": "304376", + "currentPrice": "60503", + "twapSlow": "60569", + "twapFast": "60503", + "depositTokenBalance": "60760677", + "pairedTokenBalance": "335179", + "usedToken0": "56082644322", + "usedToken1": "319558878933819970682064", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "303840", + "topTick": "304320" + } + } + }, + { + "transactionHash": "0x884873d62d97e051d9ca65a8e387954169b036c870f9f7af39738d8e02268d95", + "state": { + "depositToken": 0, + "blockNumber": 53953460, + "lastRebalancePrice": "60503", + "state": "2", + "currentTick": "304295", + "currentPrice": "60995", + "twapSlow": "60666", + "twapFast": "60995", + "depositTokenBalance": "253594783", + "pairedTokenBalance": "77526", + "usedToken0": "57425751447", + "usedToken1": "300112402951949788783723", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "303780", + "topTick": "304260" + } + } + }, + { + "transactionHash": "0xe0878917d337a26066f5d908f0719d0b0fb75db41c67fd5275d139f740717c63", + "state": { + "depositToken": 0, + "blockNumber": 53973387, + "lastRebalancePrice": "60995", + "state": "2", + "currentTick": "304408", + "currentPrice": "60310", + "twapSlow": "60539", + "twapFast": "60310", + "depositTokenBalance": "2854846", + "pairedTokenBalance": "31515", + "usedToken0": "57107327686", + "usedToken1": "305482580252812203464662", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "304380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "303900", + "topTick": "304380" + } + } + }, + { + "transactionHash": "0xf5f5f24e3a7ae7dd4dc97bcb645d2cf2ff74fd55b99464db43b7f6d45c43e317", + "state": { + "depositToken": 0, + "blockNumber": 54187887, + "lastRebalancePrice": "66679", + "state": "0", + "currentTick": "303176", + "currentPrice": "68216", + "twapSlow": "67971", + "twapFast": "68155", + "depositTokenBalance": "2519558490", + "pairedTokenBalance": "213371", + "usedToken0": "76612178512", + "usedToken1": "1869849452847666523778", + "priceChangeTrigger": "30", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "200", + "someVolatility": "40", + "dtrDelta": "300", + "baseLowPct": "1000", + "baseHighPct": "500", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "303180" + }, + "limitPosition": { + "bottomTick": "303180", + "topTick": "304260" + } + } + }, + { + "transactionHash": "0x13ef3c342a1f899db083ae2af2e66f478e330e463aa1a0b9c9c3ff392fef51c3", + "state": { + "depositToken": 0, + "blockNumber": 54233034, + "lastRebalancePrice": "92035", + "state": "0", + "currentTick": "300353", + "currentPrice": "90466", + "twapSlow": "90258", + "twapFast": "90466", + "depositTokenBalance": "1119597262", + "pairedTokenBalance": "1174889", + "usedToken0": "75025075555", + "usedToken1": "61597351301907434394494", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "300360" + }, + "limitPosition": { + "bottomTick": "300360", + "topTick": "309540" + } + } + }, + { + "transactionHash": "0xce867ab0c3556163152aab2436cef19d26569d43ad25404943f1816a94ca32a2", + "state": { + "depositToken": 0, + "blockNumber": 54314568, + "lastRebalancePrice": "75783", + "state": "1", + "currentTick": "301950", + "currentPrice": "77114", + "twapSlow": "77144", + "twapFast": "77114", + "depositTokenBalance": "3401821280", + "pairedTokenBalance": "451859", + "usedToken0": "82614151909", + "usedToken1": "267991667492686461151072", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "300840", + "topTick": "311100" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "300840" + } + } + }, + { + "transactionHash": "0xbebe6f9ebe0ba0728eca68bd9eace083e35edab473214998748a6f6f89ad5a04", + "state": { + "depositToken": 0, + "blockNumber": 54466135, + "lastRebalancePrice": "89530", + "state": "0", + "currentTick": "300226", + "currentPrice": "91622", + "twapSlow": "89664", + "twapFast": "91604", + "depositTokenBalance": "0", + "pairedTokenBalance": "2709850", + "usedToken0": "105326526857", + "usedToken1": "66260246286421327979026", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "300240" + }, + "limitPosition": { + "bottomTick": "300240", + "topTick": "309420" + } + } + }, + { + "transactionHash": "0x93cba7a528226a899a7548d6f3431b6c82151b9f5cee9b2ce61063cc13e92f75", + "state": { + "depositToken": 0, + "blockNumber": 54471661, + "lastRebalancePrice": "91622", + "state": "0", + "currentTick": "300427", + "currentPrice": "89799", + "twapSlow": "90974", + "twapFast": "89880", + "depositTokenBalance": "0", + "pairedTokenBalance": "2701454", + "usedToken0": "102652685268", + "usedToken1": "95724173885994544440903", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "300480" + }, + "limitPosition": { + "bottomTick": "300480", + "topTick": "309600" + } + } + }, + { + "transactionHash": "0x57e443e73e6709f7286eabb5291e5365a9aee6676391c00fae0448e4123776b5", + "state": { + "depositToken": 0, + "blockNumber": 54480383, + "lastRebalancePrice": "89799", + "state": "0", + "currentTick": "300480", + "currentPrice": "89324", + "twapSlow": "89476", + "twapFast": "89324", + "depositTokenBalance": "1952013388", + "pairedTokenBalance": "2205725", + "usedToken0": "104575860575", + "usedToken1": "96311745193017595905733", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "300480" + }, + "limitPosition": { + "bottomTick": "300540", + "topTick": "309660" + } + } + }, + { + "transactionHash": "0x3d86f536a5e2d022e0e032c31f53700aa26ba01c1191a7d0163f4ac3c5c263e3", + "state": { + "depositToken": 0, + "blockNumber": 54509361, + "lastRebalancePrice": "87197", + "state": "1", + "currentTick": "300920", + "currentPrice": "85479", + "twapSlow": "85087", + "twapFast": "85411", + "depositTokenBalance": "7500704901", + "pairedTokenBalance": "2384494", + "usedToken0": "106890637567", + "usedToken1": "157691200002589602566938", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "300480", + "topTick": "310080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "300480" + } + } + }, + { + "transactionHash": "0x74c43cd5288dbe8d734839e02b7e7c39bc6fe87af4cce24e7decc8a4488f58fc", + "state": { + "depositToken": 0, + "blockNumber": 54534891, + "lastRebalancePrice": "85479", + "state": "1", + "currentTick": "300511", + "currentPrice": "89048", + "twapSlow": "88444", + "twapFast": "88968", + "depositTokenBalance": "351996270", + "pairedTokenBalance": "521349", + "usedToken0": "113288774305", + "usedToken1": "88710011432890673735403", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "300540" + }, + "limitPosition": { + "bottomTick": "300540", + "topTick": "309720" + } + } + }, + { + "transactionHash": "0xd82b4d4e5bb542356879b0cf25c020fec18bc8c214c55bcbaaa9740212487244", + "state": { + "depositToken": 0, + "blockNumber": 54563764, + "lastRebalancePrice": "90901", + "state": "0", + "currentTick": "300485", + "currentPrice": "89280", + "twapSlow": "89835", + "twapFast": "89280", + "depositTokenBalance": "1785684", + "pairedTokenBalance": "1195863", + "usedToken0": "113236487780", + "usedToken1": "126910015690890056813748", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "6000", + "baseHighPct": "3000", + "limitReservePct": "10000" + }, + "rebalance": { + "basePosition": { + "bottomTick": "300180", + "topTick": "309600" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "300180" + } + } + } + ] +} diff --git a/src/plugin/test/almRebalances3.json b/src/plugin/test/almRebalances3.json new file mode 100644 index 000000000..50329e755 --- /dev/null +++ b/src/plugin/test/almRebalances3.json @@ -0,0 +1,51886 @@ +{ + "rebalances3": [ + { + "transactionHash": "0x2f318d871eda278a8a9843a1ce237a09db959f353f9004c28c581b936de6129d", + "state": { + "depositToken": 0, + "blockNumber": 166369556, + "lastRebalancePrice": "2003644", + "state": "0", + "currentTick": "-269627", + "currentPrice": "1953590", + "twapSlow": "2000641", + "twapFast": "1953590", + "depositTokenBalance": "0", + "pairedTokenBalance": "17831", + "usedToken0": "18856133576094151543", + "usedToken1": "508030106", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "-269800" + } + } + }, + { + "transactionHash": "0x93bbfe8ca7662e8749b9b39bbb15a5e57ccec745976c9fb136f375cb695de66a", + "state": { + "depositToken": 0, + "blockNumber": 166789073, + "lastRebalancePrice": "1953590", + "state": "0", + "currentTick": "-270030", + "currentPrice": "1876430", + "twapSlow": "1946960", + "twapFast": "1876430", + "depositTokenBalance": "1000000", + "pairedTokenBalance": "370363", + "usedToken0": "38641793026855857392", + "usedToken1": "470827911", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273400", + "topTick": "-269600" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x91bcd1b09a3f64078864291612531fcdfe389c42c7b4d65ca8741a5c4a4e9604", + "state": { + "depositToken": 0, + "blockNumber": 167205759, + "lastRebalancePrice": "1876430", + "state": "1", + "currentTick": "-270815", + "currentPrice": "1734770", + "twapSlow": "1839828", + "twapFast": "1839828", + "depositTokenBalance": "0", + "pairedTokenBalance": "492941", + "usedToken0": "103568965983020172466", + "usedToken1": "353961676", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270800" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xbe961a08fa3783f00ca80e32be3046e50efe9cbb6121cd376ccb031fc76756fb", + "state": { + "depositToken": 0, + "blockNumber": 167221151, + "lastRebalancePrice": "1734770", + "state": "3", + "currentTick": "-270815", + "currentPrice": "1734770", + "twapSlow": "1734770", + "twapFast": "1734770", + "depositTokenBalance": "0", + "pairedTokenBalance": "540266", + "usedToken0": "104198569283343046104", + "usedToken1": "354155545", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270800" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0xe06cea5d9a44b5d0ff49e9cee7f547f895fdc8b7fa6ae632b3006d3b28f12a27", + "state": { + "depositToken": 0, + "blockNumber": 167723356, + "lastRebalancePrice": "1734770", + "state": "2", + "currentTick": "-270469", + "currentPrice": "1795840", + "twapSlow": "1764688", + "twapFast": "1795840", + "depositTokenBalance": "0", + "pairedTokenBalance": "18973", + "usedToken0": "74724549208388340230", + "usedToken1": "406213069", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-269200" + } + } + }, + { + "transactionHash": "0x168ff8f6a8f82c1d95533447ae03dee925e7b0c7a3f7504ce70c1cc25b1a4690", + "state": { + "depositToken": 0, + "blockNumber": 168105035, + "lastRebalancePrice": "1795840", + "state": "2", + "currentTick": "-270894", + "currentPrice": "1721120", + "twapSlow": "1789387", + "twapFast": "1721120", + "depositTokenBalance": "0", + "pairedTokenBalance": "37292", + "usedToken0": "79996948942194867876", + "usedToken1": "398820116", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270800" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x691bc69c9c5a40da8b254bce3f539186d5feb4147bbcb8855fe7765bf38ba3de", + "state": { + "depositToken": 0, + "blockNumber": 168460107, + "lastRebalancePrice": "1721120", + "state": "2", + "currentTick": "-270642", + "currentPrice": "1765041", + "twapSlow": "1724738", + "twapFast": "1765041", + "depositTokenBalance": "0", + "pairedTokenBalance": "15121", + "usedToken0": "68242305214827965305", + "usedToken1": "419450062", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274200", + "topTick": "-269800" + }, + "limitPosition": { + "bottomTick": "-269800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x5ec4d8551a8cd0f8a0504b9eadbfdb0e1b5a022e88b4f943cb5f03ab28730146", + "state": { + "depositToken": 0, + "blockNumber": 169163981, + "lastRebalancePrice": "1765041", + "state": "1", + "currentTick": "-269909", + "currentPrice": "1899271", + "twapSlow": "1834133", + "twapFast": "1899271", + "depositTokenBalance": "0", + "pairedTokenBalance": "522108", + "usedToken0": "15800970798489900689", + "usedToken1": "515636226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "-270000" + } + } + }, + { + "transactionHash": "0xbb0d9ca70b502e0c47c2eb553a5380ca20fd3895fb864f1e0a1829587221c99c", + "state": { + "depositToken": 0, + "blockNumber": 194523287, + "lastRebalancePrice": "1899271", + "state": "3", + "currentTick": "-265887", + "currentPrice": "2839563", + "twapSlow": "2839563", + "twapFast": "2839563", + "depositTokenBalance": "0", + "pairedTokenBalance": "574475", + "usedToken0": "12922428385390142110", + "usedToken1": "523097132", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0x15b3cf212abf442811e6faff815a161c2f1d1530ed4269c584415f0f79193935", + "state": { + "depositToken": 0, + "blockNumber": 194538919, + "lastRebalancePrice": "2839563", + "state": "0", + "currentTick": "-265887", + "currentPrice": "2839563", + "twapSlow": "2839563", + "twapFast": "2839563", + "depositTokenBalance": "0", + "pairedTokenBalance": "487081", + "usedToken0": "18724326255997967371", + "usedToken1": "532774914", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "-265600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7538a1e74e393079e6b5d8f7e1d912de5f56377f476d67121ade5dae83b4a3bd", + "state": { + "depositToken": 0, + "blockNumber": 194554563, + "lastRebalancePrice": "2839563", + "state": "1", + "currentTick": "-265887", + "currentPrice": "2839563", + "twapSlow": "2839563", + "twapFast": "2839563", + "depositTokenBalance": "158057790", + "pairedTokenBalance": "7108", + "usedToken0": "18724326255997967370", + "usedToken1": "532774913", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "-265600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbfea609fe663e8a669ae9221ecbd2e181baff14135bec93fe75899189779d1a5", + "state": { + "depositToken": 0, + "blockNumber": 194570065, + "lastRebalancePrice": "2839563", + "state": "1", + "currentTick": "-265887", + "currentPrice": "2839563", + "twapSlow": "2839563", + "twapFast": "2839563", + "depositTokenBalance": "158057789", + "pairedTokenBalance": "7107", + "usedToken0": "18724326255997967369", + "usedToken1": "532774912", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "-265600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xff58ed421bb8c26c28dc627a03a87946c9b3d0bb54601b58592e67cddaa728d2", + "state": { + "depositToken": 0, + "blockNumber": 194585636, + "lastRebalancePrice": "2839563", + "state": "1", + "currentTick": "-266100", + "currentPrice": "2779723", + "twapSlow": "2796730", + "twapFast": "2779723", + "depositTokenBalance": "158057788", + "pairedTokenBalance": "7106", + "usedToken0": "32780506830173054556", + "usedToken1": "493281817", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-265800" + }, + "limitPosition": { + "bottomTick": "-265800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xfe8005901d8dba6fce335fda62e83f42cbbb9d9c45a09e84f30f97a39a849e04", + "state": { + "depositToken": 0, + "blockNumber": 194593180, + "lastRebalancePrice": "2779723", + "state": "1", + "currentTick": "-266302", + "currentPrice": "2724139", + "twapSlow": "2768627", + "twapFast": "2730411", + "depositTokenBalance": "0", + "pairedTokenBalance": "32207", + "usedToken0": "51002244738955239127", + "usedToken1": "443448821", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266200" + }, + "limitPosition": { + "bottomTick": "-266200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x329377f0b775701730cbdd8ca4312e512b982aca969d30531aaf2cf528c13f23", + "state": { + "depositToken": 0, + "blockNumber": 194608729, + "lastRebalancePrice": "2724139", + "state": "3", + "currentTick": "-266443", + "currentPrice": "2686000", + "twapSlow": "2702704", + "twapFast": "2686000", + "depositTokenBalance": "0", + "pairedTokenBalance": "222040", + "usedToken0": "52297810862750130477", + "usedToken1": "440339966", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266400" + }, + "limitPosition": { + "bottomTick": "-266400", + "topTick": "-265600" + } + } + }, + { + "transactionHash": "0x575a139a1e76220bef3ece39b8ccedfe92a1ba3a4ba24332503e88bbe271582e", + "state": { + "depositToken": 0, + "blockNumber": 194702684, + "lastRebalancePrice": "2686000", + "state": "2", + "currentTick": "-266672", + "currentPrice": "2625192", + "twapSlow": "2646542", + "twapFast": "2625192", + "depositTokenBalance": "0", + "pairedTokenBalance": "3926", + "usedToken0": "54197167062832517383", + "usedToken1": "435320769", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0xfc3a874c4453556bb815e8e30ca6dbd6353b3e493a9de1e62edea8117d53224a", + "state": { + "depositToken": 0, + "blockNumber": 194757186, + "lastRebalancePrice": "2625192", + "state": "2", + "currentTick": "-266753", + "currentPrice": "2604015", + "twapSlow": "2604015", + "twapFast": "2604015", + "depositTokenBalance": "7163007", + "pairedTokenBalance": "17559", + "usedToken0": "54993763025867241051", + "usedToken1": "440995288", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0x90e352262ef52d609c0f295fb0c39ee208491767000127b610658676d65058af", + "state": { + "depositToken": 0, + "blockNumber": 194801381, + "lastRebalancePrice": "2604015", + "state": "2", + "currentTick": "-267002", + "currentPrice": "2539979", + "twapSlow": "2561148", + "twapFast": "2542012", + "depositTokenBalance": "0", + "pairedTokenBalance": "10164", + "usedToken0": "57113970938091507025", + "usedToken1": "435538877", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0xb78ede78bcfb4585f4c3e7d78a132cfabd981c7a59da21570173d3479e1ed991", + "state": { + "depositToken": 0, + "blockNumber": 195079063, + "lastRebalancePrice": "2539979", + "state": "2", + "currentTick": "-266775", + "currentPrice": "2598293", + "twapSlow": "2571926", + "twapFast": "2596215", + "depositTokenBalance": "12300", + "pairedTokenBalance": "5847", + "usedToken0": "40820538168395250757", + "usedToken1": "477508113", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0xb7aa0fbaee294b045a24a7e1b4d5384b70a2e8a483c1e9db9514c77ca84f17fd", + "state": { + "depositToken": 0, + "blockNumber": 195120838, + "lastRebalancePrice": "2598293", + "state": "2", + "currentTick": "-266533", + "currentPrice": "2661936", + "twapSlow": "2650249", + "twapFast": "2656617", + "depositTokenBalance": "0", + "pairedTokenBalance": "8214", + "usedToken0": "34724033157134993906", + "usedToken1": "493966942", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": { + "bottomTick": "-266200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xdd40cc45f35d3bb8f370e19b4736c464f1b4bad7a907259df84140635d753b7c", + "state": { + "depositToken": 0, + "blockNumber": 195951628, + "lastRebalancePrice": "2661936", + "state": "1", + "currentTick": "-266661", + "currentPrice": "2628082", + "twapSlow": "2664599", + "twapFast": "2628082", + "depositTokenBalance": "0", + "pairedTokenBalance": "34345", + "usedToken0": "46929029830217874871", + "usedToken1": "461814035", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0xa641b1bc0a1ac015d0933b435c5e9f6a2836a94c776bc0c6b6653e40b22243c1", + "state": { + "depositToken": 0, + "blockNumber": 196372268, + "lastRebalancePrice": "2628082", + "state": "2", + "currentTick": "-267101", + "currentPrice": "2514959", + "twapSlow": "2627031", + "twapFast": "2535411", + "depositTokenBalance": "0", + "pairedTokenBalance": "19270", + "usedToken0": "51014411518744947897", + "usedToken1": "451973203", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0x6f64abc643ba8a34e13941e5795a5ccb63fd63cde3ad90b30210179c189e4d88", + "state": { + "depositToken": 0, + "blockNumber": 196468103, + "lastRebalancePrice": "2514959", + "state": "2", + "currentTick": "-267449", + "currentPrice": "2428948", + "twapSlow": "2506924", + "twapFast": "2428948", + "depositTokenBalance": "0", + "pairedTokenBalance": "18644", + "usedToken0": "54340899944664826700", + "usedToken1": "444537596", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267400" + }, + "limitPosition": { + "bottomTick": "-267400", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0x83fe3780486e1e31f0a735eecbe53baa3efa3fa8f275ad7b7fd768792e942cd7", + "state": { + "depositToken": 0, + "blockNumber": 196557189, + "lastRebalancePrice": "2428948", + "state": "2", + "currentTick": "-267810", + "currentPrice": "2342831", + "twapSlow": "2382044", + "twapFast": "2342831", + "depositTokenBalance": "0", + "pairedTokenBalance": "2573", + "usedToken0": "57698491770612628823", + "usedToken1": "436588726", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267800" + }, + "limitPosition": { + "bottomTick": "-267800", + "topTick": "-267000" + } + } + }, + { + "transactionHash": "0x27ce98df545de493b7d696758ebf7f95d2224299dcaeed11f6d4d7d8638ca69d", + "state": { + "depositToken": 0, + "blockNumber": 196680814, + "lastRebalancePrice": "2342831", + "state": "2", + "currentTick": "-268127", + "currentPrice": "2269731", + "twapSlow": "2339319", + "twapFast": "2269731", + "depositTokenBalance": "0", + "pairedTokenBalance": "9458", + "usedToken0": "60722752597957094876", + "usedToken1": "429788670", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "-267200" + } + } + }, + { + "transactionHash": "0x2fb8184475a03cf4d406b92dddb0f09d10c363f6e98235b75ebe06416693eac3", + "state": { + "depositToken": 0, + "blockNumber": 196827274, + "lastRebalancePrice": "2269731", + "state": "2", + "currentTick": "-268367", + "currentPrice": "2215909", + "twapSlow": "2236165", + "twapFast": "2215909", + "depositTokenBalance": "0", + "pairedTokenBalance": "25739", + "usedToken0": "63036706381612645645", + "usedToken1": "424667594", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x75927db1e12888b745e6445fe9bd43139f62c73ed8c943391c634ab0021b29ba", + "state": { + "depositToken": 0, + "blockNumber": 196830953, + "lastRebalancePrice": "2215909", + "state": "2", + "currentTick": "-269278", + "currentPrice": "2022971", + "twapSlow": "2222344", + "twapFast": "2182047", + "depositTokenBalance": "0", + "pairedTokenBalance": "8974", + "usedToken0": "71984325138620063826", + "usedToken1": "405761210", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x5e6ac1dc5a3d060c30a83c354d4ce048c696324495a97f996aca52cae73fdecc", + "state": { + "depositToken": 0, + "blockNumber": 196846607, + "lastRebalancePrice": "2022971", + "state": "3", + "currentTick": "-268681", + "currentPrice": "2147414", + "twapSlow": "2104052", + "twapFast": "2147414", + "depositTokenBalance": "0", + "pairedTokenBalance": "665453", + "usedToken0": "69454168460249245737", + "usedToken1": "411161471", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268600" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0xa33806fd53df5fcd7b823300999b33d510666c7342193ef12b58044468a52f61", + "state": { + "depositToken": 0, + "blockNumber": 196862154, + "lastRebalancePrice": "2147414", + "state": "2", + "currentTick": "-268921", + "currentPrice": "2096492", + "twapSlow": "2102370", + "twapFast": "2096492", + "depositTokenBalance": "0", + "pairedTokenBalance": "9512", + "usedToken0": "71800656699120524485", + "usedToken1": "406345263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268800" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0xced6154bd02eceb2adcdb56d80488878aaf62e9f5552ceefe710533c56d9afbb", + "state": { + "depositToken": 0, + "blockNumber": 196922219, + "lastRebalancePrice": "2096492", + "state": "2", + "currentTick": "-268686", + "currentPrice": "2146340", + "twapSlow": "2130091", + "twapFast": "2146340", + "depositTokenBalance": "0", + "pairedTokenBalance": "18992", + "usedToken0": "60347893934567873782", + "usedToken1": "430826249", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268600" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0x9d09bb5cffe5e88d664c4734f6f23e58c8ace387fc2bce1aee26d7bbcbd5b68d", + "state": { + "depositToken": 0, + "blockNumber": 197100668, + "lastRebalancePrice": "2146340", + "state": "2", + "currentTick": "-268471", + "currentPrice": "2192984", + "twapSlow": "2166827", + "twapFast": "2192984", + "depositTokenBalance": "0", + "pairedTokenBalance": "18496", + "usedToken0": "49686887964380371263", + "usedToken1": "454241579", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268400" + }, + "limitPosition": { + "bottomTick": "-268400", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x343185e10a6bf5f677da2a068ee4e62d7c24b674757fd33c8bd441256639da66", + "state": { + "depositToken": 0, + "blockNumber": 197209213, + "lastRebalancePrice": "2192984", + "state": "2", + "currentTick": "-268149", + "currentPrice": "2264744", + "twapSlow": "2207726", + "twapFast": "2264744", + "depositTokenBalance": "0", + "pairedTokenBalance": "14244", + "usedToken0": "33329082425109916983", + "usedToken1": "491000683", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1f0651fcc5e0ea1620652e7817f93e7fb6f10990d1db9be169875d789db60c20", + "state": { + "depositToken": 0, + "blockNumber": 197224685, + "lastRebalancePrice": "2264744", + "state": "1", + "currentTick": "-268149", + "currentPrice": "2264744", + "twapSlow": "2264744", + "twapFast": "2264744", + "depositTokenBalance": "63935637", + "pairedTokenBalance": "6120", + "usedToken0": "33390890482911399578", + "usedToken1": "491436975", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa2d7ea3399b9e30aecafc878148a78f4add259b0afb295bfa5e2f956bbb88e90", + "state": { + "depositToken": 0, + "blockNumber": 197240240, + "lastRebalancePrice": "2264744", + "state": "1", + "currentTick": "-268197", + "currentPrice": "2253899", + "twapSlow": "2262028", + "twapFast": "2253899", + "depositTokenBalance": "63935636", + "pairedTokenBalance": "6119", + "usedToken0": "38108136077448945920", + "usedToken1": "480778551", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x644b06288c264f23be7eadf665c4625604c1783d9773a13efef193241c4a5685", + "state": { + "depositToken": 0, + "blockNumber": 197255772, + "lastRebalancePrice": "2253899", + "state": "1", + "currentTick": "-268144", + "currentPrice": "2265876", + "twapSlow": "2262933", + "twapFast": "2265876", + "depositTokenBalance": "24110022", + "pairedTokenBalance": "12154", + "usedToken0": "33001218619624088075", + "usedToken1": "492406088", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3b13d432596fdd53016f7d9c2ce85667c110c540aac898a6faf65092be9cbfd4", + "state": { + "depositToken": 0, + "blockNumber": 197271325, + "lastRebalancePrice": "2265876", + "state": "1", + "currentTick": "-268144", + "currentPrice": "2265876", + "twapSlow": "2265876", + "twapFast": "2265876", + "depositTokenBalance": "63610823", + "pairedTokenBalance": "9011", + "usedToken0": "33001387127043903435", + "usedToken1": "492500429", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4f49a7719a3c43b0aef0520c67bce5b2846f514847b9ea42deefe31ee49020b4", + "state": { + "depositToken": 0, + "blockNumber": 197286841, + "lastRebalancePrice": "2265876", + "state": "1", + "currentTick": "-268162", + "currentPrice": "2261801", + "twapSlow": "2264064", + "twapFast": "2261801", + "depositTokenBalance": "63610822", + "pairedTokenBalance": "9010", + "usedToken0": "34701588056333110677", + "usedToken1": "488651228", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1521204fd3290a0d0bc67211f501d3df02e0c799ff6c3d07f395130766e83c33", + "state": { + "depositToken": 0, + "blockNumber": 197302311, + "lastRebalancePrice": "2261801", + "state": "1", + "currentTick": "-268162", + "currentPrice": "2261801", + "twapSlow": "2261801", + "twapFast": "2261801", + "depositTokenBalance": "63442539", + "pairedTokenBalance": "846", + "usedToken0": "34715327053741508310", + "usedToken1": "488651227", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x10a526a6bfb63987bff142e26061ed23f2081b8ffa5eac67dbceded3892b3177", + "state": { + "depositToken": 0, + "blockNumber": 197317698, + "lastRebalancePrice": "2261801", + "state": "1", + "currentTick": "-268162", + "currentPrice": "2261801", + "twapSlow": "2261801", + "twapFast": "2261801", + "depositTokenBalance": "63442538", + "pairedTokenBalance": "845", + "usedToken0": "34715327053741508309", + "usedToken1": "488651226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0d59c13f2380a588046054d82ff089a927826954ca613a1eb979ef401b40377d", + "state": { + "depositToken": 0, + "blockNumber": 197333176, + "lastRebalancePrice": "2261801", + "state": "1", + "currentTick": "-268179", + "currentPrice": "2257960", + "twapSlow": "2260445", + "twapFast": "2257960", + "depositTokenBalance": "63442537", + "pairedTokenBalance": "844", + "usedToken0": "36407927708682232581", + "usedToken1": "484825930", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x174fcb8c6db487172fe6d96d0d734036bbabd0183a78e030f7ddc1a4df6ba0b6", + "state": { + "depositToken": 0, + "blockNumber": 197348641, + "lastRebalancePrice": "2257960", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23844968", + "pairedTokenBalance": "5823", + "usedToken0": "40512179230963350516", + "usedToken1": "475608664", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x29afef6d9d76f11bc42d1d8e9a03c697338fefec7c8742285b36b08239985eea", + "state": { + "depositToken": 0, + "blockNumber": 197364238, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476359", + "pairedTokenBalance": "6553", + "usedToken0": "40545234373922793682", + "usedToken1": "475608663", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x55c288f8bb29c6640bb959819de3c71126ff10485510ef034ba7bfeb55a7a70f", + "state": { + "depositToken": 0, + "blockNumber": 197379833, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476358", + "pairedTokenBalance": "6552", + "usedToken0": "40545234373922793681", + "usedToken1": "475608662", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8b110ef0963f3a1795b564f6caa2f1ed8669f320691824bd7f0666ec08ccb667", + "state": { + "depositToken": 0, + "blockNumber": 197395455, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476357", + "pairedTokenBalance": "6551", + "usedToken0": "40545234373922793680", + "usedToken1": "475608661", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8fd2c4b5571091d5044b55f8c9c77f3943f992e2ef1fb21964bafc9847882c57", + "state": { + "depositToken": 0, + "blockNumber": 197411035, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476356", + "pairedTokenBalance": "6550", + "usedToken0": "40545234373922793679", + "usedToken1": "475608660", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc1b49a99a10ae662f51360a82a760947f3288182272cd690ce7321c6dcd3e556", + "state": { + "depositToken": 0, + "blockNumber": 197426609, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476355", + "pairedTokenBalance": "6549", + "usedToken0": "40545234373922793678", + "usedToken1": "475608659", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6bf6f6b9912aa350b2ac870845852570cf13fa52ff0f9b50220c4e7864de8c34", + "state": { + "depositToken": 0, + "blockNumber": 197442211, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476354", + "pairedTokenBalance": "6548", + "usedToken0": "40545234373922793677", + "usedToken1": "475608658", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc4e55fdc54cc038ca94acd3ab36bb4c83b79b54b80f06db621fea4ce79f4b826", + "state": { + "depositToken": 0, + "blockNumber": 197457813, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476353", + "pairedTokenBalance": "6547", + "usedToken0": "40545234373922793676", + "usedToken1": "475608657", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x99a00836d2b83fb3a2814650cebcea9d2068f33970608af1862257727b5df3a1", + "state": { + "depositToken": 0, + "blockNumber": 197473402, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476352", + "pairedTokenBalance": "6546", + "usedToken0": "40545234373922793675", + "usedToken1": "475608656", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd1c1a61e61dc5621d508e1a6a455fefa11e16641be9813f76393a47775027169", + "state": { + "depositToken": 0, + "blockNumber": 197489019, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476351", + "pairedTokenBalance": "6545", + "usedToken0": "40545234373922793674", + "usedToken1": "475608655", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x95c77b9d2fb4a22e5fa1a74ddaa3c33b69a1967d574dc8302fe34c59a2c25a55", + "state": { + "depositToken": 0, + "blockNumber": 197504657, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-268221", + "currentPrice": "2248497", + "twapSlow": "2248497", + "twapFast": "2248497", + "depositTokenBalance": "23476350", + "pairedTokenBalance": "6544", + "usedToken0": "40545234373922793673", + "usedToken1": "475608654", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3216e43fb3681cee916b95e7fd626299f1ef9d1f2b8c30f736edc566d82d1531", + "state": { + "depositToken": 0, + "blockNumber": 197520297, + "lastRebalancePrice": "2248497", + "state": "1", + "currentTick": "-267983", + "currentPrice": "2302650", + "twapSlow": "2277233", + "twapFast": "2302650", + "depositTokenBalance": "23476349", + "pairedTokenBalance": "6543", + "usedToken0": "17434777054645712282", + "usedToken1": "528197815", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x19986f7f8f2a657f7e3a885cdc798f3e9a2b6546f4d44cefbfc6e33983d8c961", + "state": { + "depositToken": 0, + "blockNumber": 197535916, + "lastRebalancePrice": "2302650", + "state": "1", + "currentTick": "-267949", + "currentPrice": "2310492", + "twapSlow": "2305876", + "twapFast": "2310492", + "depositTokenBalance": "63372755", + "pairedTokenBalance": "573", + "usedToken0": "14246902464815657321", + "usedToken1": "535976250", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270200", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0xbaf6e9fceceb7f6963fcc30212fbea76cc9056ac3e8a6abc25712e0604f9b256", + "state": { + "depositToken": 0, + "blockNumber": 197578336, + "lastRebalancePrice": "2310492", + "state": "0", + "currentTick": "-267714", + "currentPrice": "2365429", + "twapSlow": "2328816", + "twapFast": "2363301", + "depositTokenBalance": "0", + "pairedTokenBalance": "326289", + "usedToken0": "14080551412954421616", + "usedToken1": "536424570", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0xeb83d22368281651653ebefad4294197d8137946d57b9d14bd076ff3e2ce82be", + "state": { + "depositToken": 0, + "blockNumber": 197744452, + "lastRebalancePrice": "2365429", + "state": "0", + "currentTick": "-267880", + "currentPrice": "2326489", + "twapSlow": "2339787", + "twapFast": "2326489", + "depositTokenBalance": "0", + "pairedTokenBalance": "326288", + "usedToken0": "22921416591085825072", + "usedToken1": "515775744", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb4a5ebb501a8dc7e2d2d86782bff06650ab268d2170fa4cb5352de5823b23da0", + "state": { + "depositToken": 0, + "blockNumber": 197760038, + "lastRebalancePrice": "2326489", + "state": "1", + "currentTick": "-267880", + "currentPrice": "2326489", + "twapSlow": "2326489", + "twapFast": "2326489", + "depositTokenBalance": "128521932", + "pairedTokenBalance": "6895", + "usedToken0": "22992857925858604089", + "usedToken1": "515775743", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1f1abe7045973483b68a83335b83ad01f13823be5bb043d4ad980e30d25b4ecb", + "state": { + "depositToken": 0, + "blockNumber": 197775646, + "lastRebalancePrice": "2326489", + "state": "1", + "currentTick": "-267880", + "currentPrice": "2326489", + "twapSlow": "2326489", + "twapFast": "2326489", + "depositTokenBalance": "128521931", + "pairedTokenBalance": "6894", + "usedToken0": "22992857925858604088", + "usedToken1": "515775742", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x01d3d7473d2fa94ad97ed36db1d2425546b033b7599d69f84b731fc377ef87d7", + "state": { + "depositToken": 0, + "blockNumber": 197791274, + "lastRebalancePrice": "2326489", + "state": "1", + "currentTick": "-267918", + "currentPrice": "2317665", + "twapSlow": "2324861", + "twapFast": "2317665", + "depositTokenBalance": "128521930", + "pairedTokenBalance": "6893", + "usedToken0": "26094402979811826892", + "usedToken1": "508573405", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9f2b54c51077296b58e32811176377d3c84a9b3b4dab3b72ee7866b244010a20", + "state": { + "depositToken": 0, + "blockNumber": 197806889, + "lastRebalancePrice": "2317665", + "state": "1", + "currentTick": "-267955", + "currentPrice": "2309106", + "twapSlow": "2310723", + "twapFast": "2309106", + "depositTokenBalance": "128156899", + "pairedTokenBalance": "1380", + "usedToken0": "29228778174311559439", + "usedToken1": "501380014", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267800" + }, + "limitPosition": { + "bottomTick": "-267800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x307e811c5237e19b517518d371004b552cef4e57e2c0f9bb7c6ccdb8f592c52d", + "state": { + "depositToken": 0, + "blockNumber": 197836400, + "lastRebalancePrice": "2309106", + "state": "1", + "currentTick": "-268194", + "currentPrice": "2254576", + "twapSlow": "2279056", + "twapFast": "2254576", + "depositTokenBalance": "0", + "pairedTokenBalance": "513351", + "usedToken0": "56121987077504322949", + "usedToken1": "440074395", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "-267400" + } + } + }, + { + "transactionHash": "0x6d7b6586f0682d4bf64f3470bcbf87e9d3ae114dd002c8299d086c75789aa392", + "state": { + "depositToken": 0, + "blockNumber": 198820817, + "lastRebalancePrice": "2254576", + "state": "2", + "currentTick": "-267966", + "currentPrice": "2306568", + "twapSlow": "2274730", + "twapFast": "2306568", + "depositTokenBalance": "0", + "pairedTokenBalance": "15636", + "usedToken0": "51241371840765794317", + "usedToken1": "451763921", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267800" + }, + "limitPosition": { + "bottomTick": "-267800", + "topTick": "-267200" + } + } + }, + { + "transactionHash": "0x83a71d83e136ca43d71cac3e0dd87cf8b8917e2f10912c4416ef53b784d5ae0d", + "state": { + "depositToken": 0, + "blockNumber": 198836370, + "lastRebalancePrice": "2306568", + "state": "2", + "currentTick": "-267664", + "currentPrice": "2377285", + "twapSlow": "2354338", + "twapFast": "2377285", + "depositTokenBalance": "0", + "pairedTokenBalance": "1209", + "usedToken0": "38198081046004024650", + "usedToken1": "482726587", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "-267400" + }, + "limitPosition": { + "bottomTick": "-267400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x5a7996880766f1b58d3bf6b242e4df884dfba564bd6bb7eff2b1bc7329c2173c", + "state": { + "depositToken": 0, + "blockNumber": 199074049, + "lastRebalancePrice": "2377285", + "state": "1", + "currentTick": "-267407", + "currentPrice": "2439170", + "twapSlow": "2421188", + "twapFast": "2439170", + "depositTokenBalance": "0", + "pairedTokenBalance": "63190", + "usedToken0": "12615621885007202454", + "usedToken1": "544583873", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269800", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x9c5cf16319685f18c262e54420ebaabb7fe574815532c74cd07bae7097fb4023", + "state": { + "depositToken": 0, + "blockNumber": 199202135, + "lastRebalancePrice": "2439170", + "state": "0", + "currentTick": "-267722", + "currentPrice": "2363537", + "twapSlow": "2433323", + "twapFast": "2363537", + "depositTokenBalance": "0", + "pairedTokenBalance": "334708", + "usedToken0": "26018963742325227005", + "usedToken1": "513202584", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "-267400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xab6945406c7e1d9c675648d4c030372f722986987f51d24e22ca82bec483210b", + "state": { + "depositToken": 0, + "blockNumber": 199217708, + "lastRebalancePrice": "2363537", + "state": "1", + "currentTick": "-267690", + "currentPrice": "2371113", + "twapSlow": "2373959", + "twapFast": "2371113", + "depositTokenBalance": "130354406", + "pairedTokenBalance": "10248", + "usedToken0": "23510070126627055009", + "usedToken1": "519431508", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "-267400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x748df89751c88bb0348a33213c2eb630d49bec37c36661fd8acf28bca2492ae3", + "state": { + "depositToken": 0, + "blockNumber": 199233199, + "lastRebalancePrice": "2371113", + "state": "1", + "currentTick": "-267716", + "currentPrice": "2364956", + "twapSlow": "2369927", + "twapFast": "2364956", + "depositTokenBalance": "129576949", + "pairedTokenBalance": "3229", + "usedToken0": "25711539185213909064", + "usedToken1": "514545416", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "-267400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x35c3e763928a12508b3e2320d25e9d24b5e7fe0aae7a6fed15d67978c22fb37a", + "state": { + "depositToken": 0, + "blockNumber": 199245536, + "lastRebalancePrice": "2364956", + "state": "1", + "currentTick": "-268143", + "currentPrice": "2266103", + "twapSlow": "2358344", + "twapFast": "2344940", + "depositTokenBalance": "129317657", + "pairedTokenBalance": "6209", + "usedToken0": "61259823248456013110", + "usedToken1": "432285860", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xd5cbdc07420faae347ec3acf42a90f7458d30b5d5561b15502fdd7092d4b7c61", + "state": { + "depositToken": 0, + "blockNumber": 199260982, + "lastRebalancePrice": "2266103", + "state": "3", + "currentTick": "-268441", + "currentPrice": "2199572", + "twapSlow": "2203535", + "twapFast": "2199572", + "depositTokenBalance": "0", + "pairedTokenBalance": "592902", + "usedToken0": "64407845923443618150", + "usedToken1": "425898235", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268400" + }, + "limitPosition": { + "bottomTick": "-268400", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x61ae757d748a7c7bfda06bb413632308468648ecc40422b03fde2311c832449f", + "state": { + "depositToken": 0, + "blockNumber": 199264398, + "lastRebalancePrice": "2199572", + "state": "2", + "currentTick": "-267261", + "currentPrice": "2475041", + "twapSlow": "2199792", + "twapFast": "2204637", + "depositTokenBalance": "0", + "pairedTokenBalance": "10193", + "usedToken0": "10193", + "usedToken1": "573971440", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x26d4ddfa56bcf038f9ce9cf51b2286e31647ce40782c389e40e899870ae605c1", + "state": { + "depositToken": 0, + "blockNumber": 199279966, + "lastRebalancePrice": "2475041", + "state": "3", + "currentTick": "-267537", + "currentPrice": "2407668", + "twapSlow": "2461467", + "twapFast": "2412729", + "depositTokenBalance": "575167990", + "pairedTokenBalance": "593", + "usedToken0": "54430", + "usedToken1": "575167990", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1fc340d88276c50a3c2e6b78a446c24f317177622a2d9f1f1bd098848c7586c5", + "state": { + "depositToken": 0, + "blockNumber": 199287122, + "lastRebalancePrice": "2407668", + "state": "0", + "currentTick": "-268104", + "currentPrice": "2274957", + "twapSlow": "2388245", + "twapFast": "2320448", + "depositTokenBalance": "0", + "pairedTokenBalance": "54787", + "usedToken0": "58832734524938766742", + "usedToken1": "437906781", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x847e2a8dac2ff5c409e4b155966f548a3c4fb23f58a2ea266c7ee27a92fb69cc", + "state": { + "depositToken": 0, + "blockNumber": 199302686, + "lastRebalancePrice": "2274957", + "state": "3", + "currentTick": "-268800", + "currentPrice": "2122012", + "twapSlow": "2125835", + "twapFast": "2122012", + "depositTokenBalance": "0", + "pairedTokenBalance": "538739", + "usedToken0": "66125446648140569344", + "usedToken1": "422929733", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268800" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0x436c34c6be56d13468cd1cea4ccb0d34ee521e7194f940fd1a0487b9eda111dc", + "state": { + "depositToken": 0, + "blockNumber": 199331011, + "lastRebalancePrice": "2122012", + "state": "2", + "currentTick": "-268450", + "currentPrice": "2197594", + "twapSlow": "2141410", + "twapFast": "2193861", + "depositTokenBalance": "0", + "pairedTokenBalance": "12000", + "usedToken0": "49450013733001127811", + "usedToken1": "459469720", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268400" + }, + "limitPosition": { + "bottomTick": "-268400", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x60f1dd2e7bb21063b2094890116f7d0051c40cd1b8a4c9c78d294ba4d68d0f65", + "state": { + "depositToken": 0, + "blockNumber": 199370891, + "lastRebalancePrice": "2197594", + "state": "2", + "currentTick": "-268211", + "currentPrice": "2250746", + "twapSlow": "2216574", + "twapFast": "2250746", + "depositTokenBalance": "0", + "pairedTokenBalance": "19849", + "usedToken0": "37175230289806781801", + "usedToken1": "487118936", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb0f177688365923c212bdd38dfb296325e94eb3a509176ca0a951a1fa0857da4", + "state": { + "depositToken": 0, + "blockNumber": 199386480, + "lastRebalancePrice": "2250746", + "state": "1", + "currentTick": "-268211", + "currentPrice": "2250746", + "twapSlow": "2250746", + "twapFast": "2250746", + "depositTokenBalance": "60531406", + "pairedTokenBalance": "7793", + "usedToken0": "37175230289806781800", + "usedToken1": "487339979", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x98f38a172ee2eb36ad5dcb5c2a0bdd88f2d9b252acf341be681bb40b23db9cf0", + "state": { + "depositToken": 0, + "blockNumber": 199402053, + "lastRebalancePrice": "2250746", + "state": "1", + "currentTick": "-268211", + "currentPrice": "2250746", + "twapSlow": "2250746", + "twapFast": "2250746", + "depositTokenBalance": "60531405", + "pairedTokenBalance": "7792", + "usedToken0": "37175230289806781799", + "usedToken1": "487339978", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1b0715a2eae9ceae704325b45ab003dbdf5836785b0aef00cc75ab91b84f38bf", + "state": { + "depositToken": 0, + "blockNumber": 199417658, + "lastRebalancePrice": "2250746", + "state": "1", + "currentTick": "-268141", + "currentPrice": "2266556", + "twapSlow": "2254801", + "twapFast": "2266556", + "depositTokenBalance": "60531404", + "pairedTokenBalance": "7791", + "usedToken0": "30757820062065998853", + "usedToken1": "501835192", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb277bfad4cd27852ceb7637d71b8e683943c384d6842ac22cb529b74819c9762", + "state": { + "depositToken": 0, + "blockNumber": 199433247, + "lastRebalancePrice": "2266556", + "state": "1", + "currentTick": "-268147", + "currentPrice": "2265197", + "twapSlow": "2265423", + "twapFast": "2265197", + "depositTokenBalance": "97710914", + "pairedTokenBalance": "4748", + "usedToken0": "31289820313947624750", + "usedToken1": "500754539", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb54f217ba97dbdcafcb186b2c62c44144635683d23cbb30df9da98ba86c4e81d", + "state": { + "depositToken": 0, + "blockNumber": 199448836, + "lastRebalancePrice": "2265197", + "state": "1", + "currentTick": "-268088", + "currentPrice": "2278600", + "twapSlow": "2270412", + "twapFast": "2278600", + "depositTokenBalance": "97655716", + "pairedTokenBalance": "3797", + "usedToken0": "25911321895210072361", + "usedToken1": "512984626", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb69c9a979b121af4ed630c15200cdde7d5cb64ef4b5c682409a96591648edd5b", + "state": { + "depositToken": 0, + "blockNumber": 199464426, + "lastRebalancePrice": "2278600", + "state": "1", + "currentTick": "-268036", + "currentPrice": "2290479", + "twapSlow": "2279740", + "twapFast": "2290479", + "depositTokenBalance": "97754544", + "pairedTokenBalance": "3796", + "usedToken0": "21235503721058254209", + "usedToken1": "523766194", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x891459b91b5e641f4eea04f04a09d693578d962f9e98a0287d004aa0816ae840", + "state": { + "depositToken": 0, + "blockNumber": 199480025, + "lastRebalancePrice": "2290479", + "state": "1", + "currentTick": "-268036", + "currentPrice": "2290479", + "twapSlow": "2290479", + "twapFast": "2290479", + "depositTokenBalance": "97840868", + "pairedTokenBalance": "3795", + "usedToken0": "21235503721058254208", + "usedToken1": "523852518", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0f3a8994d50511b2373518ea331b659a1c5f58088614aa38f9a7970bcfccffcf", + "state": { + "depositToken": 0, + "blockNumber": 199495616, + "lastRebalancePrice": "2290479", + "state": "1", + "currentTick": "-268036", + "currentPrice": "2290479", + "twapSlow": "2290479", + "twapFast": "2290479", + "depositTokenBalance": "97840867", + "pairedTokenBalance": "3794", + "usedToken0": "21235503721058254207", + "usedToken1": "523852517", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9faf139f522846a85d9f7b307aa4277eebb455f6be3aa6ac4ffdc2eaae809824", + "state": { + "depositToken": 0, + "blockNumber": 199511206, + "lastRebalancePrice": "2290479", + "state": "1", + "currentTick": "-268036", + "currentPrice": "2290479", + "twapSlow": "2290479", + "twapFast": "2290479", + "depositTokenBalance": "97840866", + "pairedTokenBalance": "3793", + "usedToken0": "21235503721058254206", + "usedToken1": "523852516", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8c62ee5dedb4fe95e6249d01e12db151628fb830c6c0d6955e392d3f1e3f459e", + "state": { + "depositToken": 0, + "blockNumber": 199526821, + "lastRebalancePrice": "2290479", + "state": "1", + "currentTick": "-268036", + "currentPrice": "2290479", + "twapSlow": "2290479", + "twapFast": "2290479", + "depositTokenBalance": "97840865", + "pairedTokenBalance": "3792", + "usedToken0": "21235503721058254205", + "usedToken1": "523852515", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xef5bd413d2858cbcb7f87e80b4f7e841a0923e7002ff6b211ac0b708c50bd104", + "state": { + "depositToken": 0, + "blockNumber": 199542380, + "lastRebalancePrice": "2290479", + "state": "1", + "currentTick": "-267743", + "currentPrice": "2358579", + "twapSlow": "2294147", + "twapFast": "2337449", + "depositTokenBalance": "97840864", + "pairedTokenBalance": "3791", + "usedToken0": "3791", + "usedToken1": "573070283", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2c232a9ee00d0f5d57aa7a553534281272b69007a9535cf8d68e7de7bf14061a", + "state": { + "depositToken": 0, + "blockNumber": 199710418, + "lastRebalancePrice": "2358579", + "state": "0", + "currentTick": "-266791", + "currentPrice": "2594139", + "twapSlow": "2348930", + "twapFast": "2353161", + "depositTokenBalance": "0", + "pairedTokenBalance": "3791", + "usedToken0": "3791", + "usedToken1": "573468002", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": null, + "limitPosition": null + } + }, + { + "transactionHash": "0xa761e9118fd4a60926fe21578ea2b291223ba5142ad2de07be5623bb39eb5b41", + "state": { + "depositToken": 0, + "blockNumber": 199725969, + "lastRebalancePrice": "2594139", + "state": "3", + "currentTick": "-265013", + "currentPrice": "3098896", + "twapSlow": "3089305", + "twapFast": "3098896", + "depositTokenBalance": "573468002", + "pairedTokenBalance": "3791", + "usedToken0": "3791", + "usedToken1": "573468002", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267400", + "topTick": "-265200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x971c715ff24d9492b81c5ee1f6d6dae931daa8f95f174cb19c5ff84878c8ac18", + "state": { + "depositToken": 0, + "blockNumber": 199831376, + "lastRebalancePrice": "3098896", + "state": "0", + "currentTick": "-264645", + "currentPrice": "3215054", + "twapSlow": "3147930", + "twapFast": "3186568", + "depositTokenBalance": "0", + "pairedTokenBalance": "3791", + "usedToken0": "3791", + "usedToken1": "573468001", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267000", + "topTick": "-264800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x26ba91dc345a5fd4c6a9ca1391e51d5ab2fedbd2b8bc1e62027d11d63ef357c0", + "state": { + "depositToken": 0, + "blockNumber": 200303960, + "lastRebalancePrice": "3215054", + "state": "0", + "currentTick": "-264866", + "currentPrice": "3144784", + "twapSlow": "3152971", + "twapFast": "3146671", + "depositTokenBalance": "0", + "pairedTokenBalance": "3791", + "usedToken0": "5708896082597356052", + "usedToken1": "555455003", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-265000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-267200", + "topTick": "-265000" + } + } + }, + { + "transactionHash": "0x78c9035c3ff2ff3f2fb915b01343ea543879e9db4d374a65483aa1172efce492", + "state": { + "depositToken": 0, + "blockNumber": 200319251, + "lastRebalancePrice": "3144784", + "state": "0", + "currentTick": "-265501", + "currentPrice": "2951308", + "twapSlow": "3021481", + "twapFast": "2971147", + "depositTokenBalance": "0", + "pairedTokenBalance": "249968", + "usedToken0": "49395750090984183761", + "usedToken1": "423541609", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-265400" + }, + "limitPosition": { + "bottomTick": "-265400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x112d102ef8acb09f9203185d839a9ad4273b7769fc26e08949da9fa3e9f7baf1", + "state": { + "depositToken": 0, + "blockNumber": 200345389, + "lastRebalancePrice": "2951308", + "state": "3", + "currentTick": "-265623", + "currentPrice": "2915522", + "twapSlow": "2945706", + "twapFast": "2915522", + "depositTokenBalance": "0", + "pairedTokenBalance": "450872", + "usedToken0": "50625961975297812984", + "usedToken1": "420966773", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-265600" + }, + "limitPosition": { + "bottomTick": "-265600", + "topTick": "-264800" + } + } + }, + { + "transactionHash": "0x5979f382b6cf39ba7f5765594f6d5abf7d93bc8ef6a3b65ef4f6844bdf29c455", + "state": { + "depositToken": 0, + "blockNumber": 200360779, + "lastRebalancePrice": "2915522", + "state": "2", + "currentTick": "-266102", + "currentPrice": "2779167", + "twapSlow": "2864374", + "twapFast": "2779167", + "depositTokenBalance": "0", + "pairedTokenBalance": "1991", + "usedToken0": "54128705021168550283", + "usedToken1": "411015862", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266000" + }, + "limitPosition": { + "bottomTick": "-266000", + "topTick": "-265200" + } + } + }, + { + "transactionHash": "0x1f2b2a26e74ebcbaab2216114012bda14a61a80d4bdeaacbffb69e6b0a442fc1", + "state": { + "depositToken": 0, + "blockNumber": 200696422, + "lastRebalancePrice": "2779167", + "state": "2", + "currentTick": "-266389", + "currentPrice": "2700543", + "twapSlow": "2764477", + "twapFast": "2700543", + "depositTokenBalance": "0", + "pairedTokenBalance": "12384", + "usedToken0": "56292473118567418542", + "usedToken1": "405164962", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266200" + }, + "limitPosition": { + "bottomTick": "-266200", + "topTick": "-265600" + } + } + }, + { + "transactionHash": "0xc27ce618c4aaef96ca7b851b4b56a53c37c716a05fc4b318dcd5bccaed2f4430", + "state": { + "depositToken": 0, + "blockNumber": 200711950, + "lastRebalancePrice": "2700543", + "state": "2", + "currentTick": "-266908", + "currentPrice": "2563966", + "twapSlow": "2580427", + "twapFast": "2563966", + "depositTokenBalance": "0", + "pairedTokenBalance": "6487", + "usedToken0": "60259897774407838853", + "usedToken1": "394796817", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0x88a61208f4819d71db7b367820b1f27cf68d70152c9a4ca10eddf7822c661a0c", + "state": { + "depositToken": 0, + "blockNumber": 200729168, + "lastRebalancePrice": "2563966", + "state": "2", + "currentTick": "-267190", + "currentPrice": "2492676", + "twapSlow": "2545827", + "twapFast": "2492676", + "depositTokenBalance": "0", + "pairedTokenBalance": "20417", + "usedToken0": "62482555309838273850", + "usedToken1": "389258110", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x938b0e4a6eda180438ed58437f595bb0db67033ede93c6b40d59251d93f1c816", + "state": { + "depositToken": 0, + "blockNumber": 200817684, + "lastRebalancePrice": "2492676", + "state": "2", + "currentTick": "-266950", + "currentPrice": "2553221", + "twapSlow": "2524786", + "twapFast": "2553221", + "depositTokenBalance": "0", + "pairedTokenBalance": "1922", + "usedToken0": "55802664824920217347", + "usedToken1": "406271513", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0xcca17f04a743b071fb635fcf07485e0a428a0aa2e34d140d997e5b4d3ccafe3f", + "state": { + "depositToken": 0, + "blockNumber": 200884930, + "lastRebalancePrice": "2553221", + "state": "2", + "currentTick": "-266738", + "currentPrice": "2607924", + "twapSlow": "2599333", + "twapFast": "2607924", + "depositTokenBalance": "0", + "pairedTokenBalance": "22962", + "usedToken0": "50303257351245880544", + "usedToken1": "420674317", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0xb4b28b230d9125f72918c17df47d3cb0dc38c5da5f29f9dae2df5c6c5dbe79e2", + "state": { + "depositToken": 0, + "blockNumber": 201216811, + "lastRebalancePrice": "2607924", + "state": "2", + "currentTick": "-266521", + "currentPrice": "2665132", + "twapSlow": "2660073", + "twapFast": "2664332", + "depositTokenBalance": "0", + "pairedTokenBalance": "10140", + "usedToken0": "44193731856987939030", + "usedToken1": "436976918", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266400" + }, + "limitPosition": { + "bottomTick": "-266400", + "topTick": "-265600" + } + } + }, + { + "transactionHash": "0xaa08ec2d77b0de9277e70e44920af0884760331a4c76990afb7fbc58db6f1f95", + "state": { + "depositToken": 0, + "blockNumber": 201451174, + "lastRebalancePrice": "2665132", + "state": "2", + "currentTick": "-266994", + "currentPrice": "2542012", + "twapSlow": "2605839", + "twapFast": "2542012", + "depositTokenBalance": "0", + "pairedTokenBalance": "16509", + "usedToken0": "48160098644066256920", + "usedToken1": "426960563", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0xdbc2ef0c2c693fad8b151f48df3f1de86d51af1555dc0cee328bc3ad1790d031", + "state": { + "depositToken": 0, + "blockNumber": 201586655, + "lastRebalancePrice": "2542012", + "state": "2", + "currentTick": "-267200", + "currentPrice": "2490185", + "twapSlow": "2506924", + "twapFast": "2490185", + "depositTokenBalance": "0", + "pairedTokenBalance": "2325", + "usedToken0": "49938384378487427857", + "usedToken1": "422632888", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267200" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x8e0219ab514cb6c921cfa8fb01afe42ecf5528b795c96cd3d4258bbfadba553d", + "state": { + "depositToken": 0, + "blockNumber": 201981305, + "lastRebalancePrice": "2490185", + "state": "2", + "currentTick": "-267521", + "currentPrice": "2411523", + "twapSlow": "2451886", + "twapFast": "2411523", + "depositTokenBalance": "0", + "pairedTokenBalance": "12957", + "usedToken0": "52695945529652868522", + "usedToken1": "415909614", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267400" + }, + "limitPosition": { + "bottomTick": "-267400", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0x5826f17293dc7a3ac8c8bc1aa678d03a5f05382c622c11ef8e362da254a97ac0", + "state": { + "depositToken": 0, + "blockNumber": 202026845, + "lastRebalancePrice": "2411523", + "state": "2", + "currentTick": "-267758", + "currentPrice": "2355044", + "twapSlow": "2377047", + "twapFast": "2355044", + "depositTokenBalance": "0", + "pairedTokenBalance": "23949", + "usedToken0": "54773490419283390382", + "usedToken1": "411035705", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267600" + }, + "limitPosition": { + "bottomTick": "-267600", + "topTick": "-267000" + } + } + }, + { + "transactionHash": "0xd80b4d6d05d498fcc2039fbf5fee9005f52b0c00f9949b2700ead2994429f607", + "state": { + "depositToken": 0, + "blockNumber": 202049373, + "lastRebalancePrice": "2355044", + "state": "2", + "currentTick": "-268063", + "currentPrice": "2284303", + "twapSlow": "2322537", + "twapFast": "2284303", + "depositTokenBalance": "0", + "pairedTokenBalance": "1582", + "usedToken0": "57475979409196770843", + "usedToken1": "404805559", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "-267200" + } + } + }, + { + "transactionHash": "0x631271e01b33043a6f66ecddc7b9956b45394c14905198b83d45fa0e30a5779a", + "state": { + "depositToken": 0, + "blockNumber": 202211304, + "lastRebalancePrice": "2284303", + "state": "2", + "currentTick": "-268324", + "currentPrice": "2225457", + "twapSlow": "2249621", + "twapFast": "2225457", + "depositTokenBalance": "0", + "pairedTokenBalance": "205", + "usedToken0": "59823453713560310120", + "usedToken1": "399561401", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-267400" + } + } + }, + { + "transactionHash": "0x7b1138d662cbf2c4d1d5771cb4d4483853456fb55b11c9ac02a2e3404d857dd3", + "state": { + "depositToken": 0, + "blockNumber": 202480266, + "lastRebalancePrice": "2225457", + "state": "2", + "currentTick": "-268560", + "currentPrice": "2173554", + "twapSlow": "2215687", + "twapFast": "2173554", + "depositTokenBalance": "0", + "pairedTokenBalance": "8398", + "usedToken0": "61975472864128350006", + "usedToken1": "394869458", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268400" + }, + "limitPosition": { + "bottomTick": "-268400", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0x62976395b05aa8872cdfa35f1121ea3fabae0eba8600c72f77a37f1d534ec6e9", + "state": { + "depositToken": 0, + "blockNumber": 202495502, + "lastRebalancePrice": "2173554", + "state": "2", + "currentTick": "-268911", + "currentPrice": "2098589", + "twapSlow": "2117349", + "twapFast": "2098589", + "depositTokenBalance": "0", + "pairedTokenBalance": "14939", + "usedToken0": "65209185069533790220", + "usedToken1": "388005568", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268800" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0x58b9720881d253c03bbdace9800259a19b0be9a666949820c1dfeb52e12342ab", + "state": { + "depositToken": 0, + "blockNumber": 202553927, + "lastRebalancePrice": "2098589", + "state": "2", + "currentTick": "-268675", + "currentPrice": "2148702", + "twapSlow": "2122224", + "twapFast": "2148702", + "depositTokenBalance": "0", + "pairedTokenBalance": "3874", + "usedToken0": "53951349144055232362", + "usedToken1": "412075438", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268600" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0x3d0711335d77bb731a8e3aadfa8cb68a2bc88cadeb7bc982a185244ab58c3669", + "state": { + "depositToken": 0, + "blockNumber": 202581856, + "lastRebalancePrice": "2148702", + "state": "2", + "currentTick": "-268401", + "currentPrice": "2208388", + "twapSlow": "2178341", + "twapFast": "2208388", + "depositTokenBalance": "0", + "pairedTokenBalance": "14299", + "usedToken0": "39784742249713756158", + "usedToken1": "443224764", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270600", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x7e79ba09ff3f15d9d2f4debce256928de0a39af275b03728ff41b8c8feead193", + "state": { + "depositToken": 0, + "blockNumber": 202621891, + "lastRebalancePrice": "2208388", + "state": "1", + "currentTick": "-268158", + "currentPrice": "2262706", + "twapSlow": "2248722", + "twapFast": "2262706", + "depositTokenBalance": "0", + "pairedTokenBalance": "39553", + "usedToken0": "16446795245461697212", + "usedToken1": "495646456", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-268200" + } + } + }, + { + "transactionHash": "0x02679ff3803cdf371d9a078b3ee4e0ea87e01cece523428c86d322e4aa9d161a", + "state": { + "depositToken": 0, + "blockNumber": 203047181, + "lastRebalancePrice": "2262706", + "state": "0", + "currentTick": "-267948", + "currentPrice": "2310723", + "twapSlow": "2298969", + "twapFast": "2310723", + "depositTokenBalance": "0", + "pairedTokenBalance": "516808", + "usedToken0": "16275415411419138333", + "usedToken1": "496459935", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270200", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0x5f34d39ab3696fc4388a2f028cf69f46a8dc15f9aef933cfbdbf9489dac56eba", + "state": { + "depositToken": 0, + "blockNumber": 203561289, + "lastRebalancePrice": "2310723", + "state": "0", + "currentTick": "-267731", + "currentPrice": "2361411", + "twapSlow": "2354574", + "twapFast": "2361411", + "depositTokenBalance": "0", + "pairedTokenBalance": "455409", + "usedToken0": "16099853211047957331", + "usedToken1": "496873226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0x29707007417d5cbef16da43587c716ff57b150f788d1bc275bdf20b5bee556d2", + "state": { + "depositToken": 0, + "blockNumber": 203576734, + "lastRebalancePrice": "2361411", + "state": "0", + "currentTick": "-267390", + "currentPrice": "2443320", + "twapSlow": "2380615", + "twapFast": "2443320", + "depositTokenBalance": "0", + "pairedTokenBalance": "455408", + "usedToken0": "15827580093556469340", + "usedToken1": "497530556", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269800", + "topTick": "-267400" + } + } + }, + { + "transactionHash": "0xa44b8175c13be5b09162104dcf05f5963ff7631bbf4c7a85ec96efea5464e08a", + "state": { + "depositToken": 0, + "blockNumber": 203598719, + "lastRebalancePrice": "2443320", + "state": "0", + "currentTick": "-266960", + "currentPrice": "2550669", + "twapSlow": "2461467", + "twapFast": "2537694", + "depositTokenBalance": "0", + "pairedTokenBalance": "455407", + "usedToken0": "15490496052592763009", + "usedToken1": "498377389", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "-267000" + } + } + }, + { + "transactionHash": "0xd802365eb762dd3995decd67f9589101b8e8179cab205e83982d54b96b5fdfa7", + "state": { + "depositToken": 0, + "blockNumber": 203614105, + "lastRebalancePrice": "2550669", + "state": "0", + "currentTick": "-266561", + "currentPrice": "2654493", + "twapSlow": "2631500", + "twapFast": "2654493", + "depositTokenBalance": "0", + "pairedTokenBalance": "455406", + "usedToken0": "15184807883336371628", + "usedToken1": "499179660", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0xf698fd1d890fb70e6ca4b283679c23fbca05cb6ae61ace5e5952b55368e12eb8", + "state": { + "depositToken": 0, + "blockNumber": 204007124, + "lastRebalancePrice": "2654493", + "state": "0", + "currentTick": "-266649", + "currentPrice": "2631237", + "twapSlow": "2649454", + "twapFast": "2631237", + "depositTokenBalance": "0", + "pairedTokenBalance": "73183", + "usedToken0": "19648559585632953723", + "usedToken1": "487414741", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x41feb3543b43a93ddc5c11a9f0fadba83f74bd071cdccc94ec5848098cc42874", + "state": { + "depositToken": 0, + "blockNumber": 204022300, + "lastRebalancePrice": "2631237", + "state": "1", + "currentTick": "-266796", + "currentPrice": "2592843", + "twapSlow": "2593621", + "twapFast": "2592843", + "depositTokenBalance": "60276907", + "pairedTokenBalance": "4669", + "usedToken0": "31434876356849385477", + "usedToken1": "456729934", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9dfca5553e58f3c23918f545b8eaf2253d92860a375f05d7ac5657bd8ba79aa3", + "state": { + "depositToken": 0, + "blockNumber": 204037488, + "lastRebalancePrice": "2592843", + "state": "1", + "currentTick": "-266831", + "currentPrice": "2583784", + "twapSlow": "2585593", + "twapFast": "2583784", + "depositTokenBalance": "21366270", + "pairedTokenBalance": "395", + "usedToken0": "34349342424970206466", + "usedToken1": "449511355", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4a42620baff034be59f69468914168132c1a28273f7850b7488472a67b0ba293", + "state": { + "depositToken": 0, + "blockNumber": 204052743, + "lastRebalancePrice": "2583784", + "state": "1", + "currentTick": "-266839", + "currentPrice": "2581718", + "twapSlow": "2582751", + "twapFast": "2581718", + "depositTokenBalance": "21083822", + "pairedTokenBalance": "4671", + "usedToken0": "35021915521607543026", + "usedToken1": "447832755", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa1bc68fb458f1e59eff085fa9fd87a63f4b34648c72b543fab13a1621affbdc1", + "state": { + "depositToken": 0, + "blockNumber": 204068145, + "lastRebalancePrice": "2581718", + "state": "1", + "currentTick": "-266839", + "currentPrice": "2581718", + "twapSlow": "2581718", + "twapFast": "2581718", + "depositTokenBalance": "21019827", + "pairedTokenBalance": "7683", + "usedToken0": "35027167342769569981", + "usedToken1": "447832754", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2ef9233d28d2953cdc1013734bd8afe384e40fa34341c55968119c3ecd732b9f", + "state": { + "depositToken": 0, + "blockNumber": 204083581, + "lastRebalancePrice": "2581718", + "state": "1", + "currentTick": "-266881", + "currentPrice": "2570898", + "twapSlow": "2576560", + "twapFast": "2570898", + "depositTokenBalance": "21019826", + "pairedTokenBalance": "7682", + "usedToken0": "38406129249351122275", + "usedToken1": "439127286", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3c8315f9869ee65a712c33408841650d060587f2cea25e9c4c12ca5a44b68f6d", + "state": { + "depositToken": 0, + "blockNumber": 204098907, + "lastRebalancePrice": "2570898", + "state": "1", + "currentTick": "-266899", + "currentPrice": "2566275", + "twapSlow": "2567301", + "twapFast": "2566275", + "depositTokenBalance": "20722572", + "pairedTokenBalance": "11467", + "usedToken0": "39850415034875826347", + "usedToken1": "435487425", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8dfadcea98b4fd228fcec4e695fdf4fa9367248003c1b3294baedf93a63a99b0", + "state": { + "depositToken": 0, + "blockNumber": 204114259, + "lastRebalancePrice": "2566275", + "state": "1", + "currentTick": "-266962", + "currentPrice": "2550159", + "twapSlow": "2555264", + "twapFast": "2550159", + "depositTokenBalance": "20603395", + "pairedTokenBalance": "3705", + "usedToken0": "44971957217465027455", + "usedToken1": "422413622", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0x25e0447398b4f797c1a9b75108d84848a091ab498688e224f866852aad656ac1", + "state": { + "depositToken": 0, + "blockNumber": 204424853, + "lastRebalancePrice": "2550159", + "state": "2", + "currentTick": "-267178", + "currentPrice": "2495669", + "twapSlow": "2514707", + "twapFast": "2495669", + "depositTokenBalance": "0", + "pairedTokenBalance": "6437", + "usedToken0": "46817028676318288748", + "usedToken1": "417862853", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0xb5fd9458f7cd10e2c788f9baf24956e1f4dc4444e2c313b05bc49e89ef0a1393", + "state": { + "depositToken": 0, + "blockNumber": 204641474, + "lastRebalancePrice": "2495669", + "state": "2", + "currentTick": "-267383", + "currentPrice": "2445031", + "twapSlow": "2466148", + "twapFast": "2445031", + "depositTokenBalance": "0", + "pairedTokenBalance": "13279", + "usedToken0": "48553910937163421734", + "usedToken1": "413608207", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267200" + }, + "limitPosition": { + "bottomTick": "-267200", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0xb6c55a796ef1c8a4e16a20fbe6fc9ff836ce04e42655b4a96c83aa82e3beb728", + "state": { + "depositToken": 0, + "blockNumber": 205190387, + "lastRebalancePrice": "2445031", + "state": "2", + "currentTick": "-267622", + "currentPrice": "2387290", + "twapSlow": "2403819", + "twapFast": "2387290", + "depositTokenBalance": "0", + "pairedTokenBalance": "9023", + "usedToken0": "50599201373195729090", + "usedToken1": "408700105", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267600" + }, + "limitPosition": { + "bottomTick": "-267600", + "topTick": "-266800" + } + } + }, + { + "transactionHash": "0x7773ed77971f2d943087a8ab265a0e9f5f954587eab07eae8e04723de2466125", + "state": { + "depositToken": 0, + "blockNumber": 206062752, + "lastRebalancePrice": "2387290", + "state": "2", + "currentTick": "-267906", + "currentPrice": "2320448", + "twapSlow": "2346113", + "twapFast": "2320448", + "depositTokenBalance": "0", + "pairedTokenBalance": "22438", + "usedToken0": "53068977808138916327", + "usedToken1": "402954598", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267800" + }, + "limitPosition": { + "bottomTick": "-267800", + "topTick": "-267000" + } + } + }, + { + "transactionHash": "0xa6e30a432a059913748da2368fa8eba3f57a75c7f0b0551088e4f453143b06a0", + "state": { + "depositToken": 0, + "blockNumber": 206162643, + "lastRebalancePrice": "2320448", + "state": "2", + "currentTick": "-268121", + "currentPrice": "2271093", + "twapSlow": "2282705", + "twapFast": "2271093", + "depositTokenBalance": "0", + "pairedTokenBalance": "16015", + "usedToken0": "55031357886277454778", + "usedToken1": "398793741", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "-267200" + } + } + }, + { + "transactionHash": "0xa2aaf3478dfaa3b383a19accc217adcd36981cea251c50d1ad939ca4d5ed1609", + "state": { + "depositToken": 0, + "blockNumber": 206329821, + "lastRebalancePrice": "2271093", + "state": "2", + "currentTick": "-268359", + "currentPrice": "2217682", + "twapSlow": "2257508", + "twapFast": "2217682", + "depositTokenBalance": "0", + "pairedTokenBalance": "17921", + "usedToken0": "57146285524892133614", + "usedToken1": "394081045", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x12971cf140a0d3e935c58521479257ad57254ef7d220e584217eeaae9fc5902d", + "state": { + "depositToken": 0, + "blockNumber": 206367611, + "lastRebalancePrice": "2217682", + "state": "2", + "currentTick": "-268574", + "currentPrice": "2170513", + "twapSlow": "2190354", + "twapFast": "2170513", + "depositTokenBalance": "0", + "pairedTokenBalance": "7132", + "usedToken0": "59085041999745590862", + "usedToken1": "389864397", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268400" + }, + "limitPosition": { + "bottomTick": "-268400", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0xe9c6a167c987c9790be193612d8d420ca1264046a382644df3e3e7d342e40f41", + "state": { + "depositToken": 0, + "blockNumber": 206399065, + "lastRebalancePrice": "2170513", + "state": "2", + "currentTick": "-268832", + "currentPrice": "2115233", + "twapSlow": "2125835", + "twapFast": "2115233", + "depositTokenBalance": "0", + "pairedTokenBalance": "13204", + "usedToken0": "61430661596225006598", + "usedToken1": "384871423", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268800" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0x1f9710fad3906ded434c1d818abc37881e4097a1ab07f74e74347d52785c7a91", + "state": { + "depositToken": 0, + "blockNumber": 206414115, + "lastRebalancePrice": "2115233", + "state": "2", + "currentTick": "-269085", + "currentPrice": "2062391", + "twapSlow": "2092722", + "twapFast": "2062391", + "depositTokenBalance": "0", + "pairedTokenBalance": "7564", + "usedToken0": "63771966471040246626", + "usedToken1": "380020382", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269000" + }, + "limitPosition": { + "bottomTick": "-269000", + "topTick": "-268200" + } + } + }, + { + "transactionHash": "0x94748677c243e5a3fde292b61f6c609420ccd512de3695fa4a6f4ad46419e651", + "state": { + "depositToken": 0, + "blockNumber": 206648902, + "lastRebalancePrice": "2062391", + "state": "2", + "currentTick": "-269394", + "currentPrice": "1999641", + "twapSlow": "2026413", + "twapFast": "1999641", + "depositTokenBalance": "0", + "pairedTokenBalance": "18482", + "usedToken0": "66653466582058260277", + "usedToken1": "374206793", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "-268600" + } + } + }, + { + "transactionHash": "0x86c4e904f287739c017a163ab6a3f399376e35a4a97386a193f9653cad6f6d87", + "state": { + "depositToken": 0, + "blockNumber": 206770643, + "lastRebalancePrice": "1999641", + "state": "2", + "currentTick": "-269607", + "currentPrice": "1957501", + "twapSlow": "1992057", + "twapFast": "1957306", + "depositTokenBalance": "0", + "pairedTokenBalance": "6479", + "usedToken0": "68723189514865991255", + "usedToken1": "370298115", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269600" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "-268800" + } + } + }, + { + "transactionHash": "0x8742d502e29f7cfdc9c3d5d02e1e7bc360fa434f87adf260c4eea4ae8d761e7b", + "state": { + "depositToken": 0, + "blockNumber": 206920305, + "lastRebalancePrice": "1957501", + "state": "2", + "currentTick": "-269391", + "currentPrice": "2000241", + "twapSlow": "1990663", + "twapFast": "2000241", + "depositTokenBalance": "0", + "pairedTokenBalance": "7515", + "usedToken0": "50390183990315427958", + "usedToken1": "406660977", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "-268600" + } + } + }, + { + "transactionHash": "0x63ed6443af7fe4ee838e7c44f9acd5e2b2086bf28efdfc9951efd9491b4d91b6", + "state": { + "depositToken": 0, + "blockNumber": 207054514, + "lastRebalancePrice": "2000241", + "state": "2", + "currentTick": "-269112", + "currentPrice": "2056831", + "twapSlow": "2019333", + "twapFast": "2056831", + "depositTokenBalance": "0", + "pairedTokenBalance": "2686", + "usedToken0": "41344941694772984528", + "usedToken1": "425906625", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271200", + "topTick": "-268800" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x23b7a5c10ad66463b425463b9832b413f1e9be0c846bb7a654ea8029f409e1fb", + "state": { + "depositToken": 0, + "blockNumber": 207092157, + "lastRebalancePrice": "2056831", + "state": "1", + "currentTick": "-268866", + "currentPrice": "2108054", + "twapSlow": "2093350", + "twapFast": "2108054", + "depositTokenBalance": "0", + "pairedTokenBalance": "548305", + "usedToken0": "15768575004611883954", + "usedToken1": "479348358", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271200", + "topTick": "-269000" + } + } + }, + { + "transactionHash": "0xc32a4dfb9177332574b40335448890ea3e22394504fdaa535210d5c3b2727801", + "state": { + "depositToken": 0, + "blockNumber": 207190832, + "lastRebalancePrice": "2108054", + "state": "0", + "currentTick": "-268627", + "currentPrice": "2159041", + "twapSlow": "2145697", + "twapFast": "2159041", + "depositTokenBalance": "0", + "pairedTokenBalance": "590326", + "usedToken0": "15581539685399085393", + "usedToken1": "480179361", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271000", + "topTick": "-268800" + } + } + }, + { + "transactionHash": "0xda70007105ba5c7d3a7c4ae14f96646c6d17ffe8ee38afd18b8ab898b7535b8a", + "state": { + "depositToken": 0, + "blockNumber": 207405242, + "lastRebalancePrice": "2159041", + "state": "0", + "currentTick": "-268405", + "currentPrice": "2207505", + "twapSlow": "2185541", + "twapFast": "2207505", + "depositTokenBalance": "0", + "pairedTokenBalance": "673330", + "usedToken0": "15409909527725648636", + "usedToken1": "480558253", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "-268600" + } + } + }, + { + "transactionHash": "0xed0bdef57aa7b6162f86d3a1107205c6a9afac967b1b6a9ac16957a4c71d7207", + "state": { + "depositToken": 0, + "blockNumber": 207429111, + "lastRebalancePrice": "2207505", + "state": "0", + "currentTick": "-268119", + "currentPrice": "2271548", + "twapSlow": "2246025", + "twapFast": "2271548", + "depositTokenBalance": "0", + "pairedTokenBalance": "297", + "usedToken0": "15191549459125777877", + "usedToken1": "481050272", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-268200" + } + } + }, + { + "transactionHash": "0x9afc8c67258f64c6fcc7ac27c49c160c738a6464c81461e1f1175baa60c5f663", + "state": { + "depositToken": 0, + "blockNumber": 207562888, + "lastRebalancePrice": "2271548", + "state": "0", + "currentTick": "-267648", + "currentPrice": "2381092", + "twapSlow": "2313498", + "twapFast": "2381092", + "depositTokenBalance": "0", + "pairedTokenBalance": "320464", + "usedToken0": "14837424152406454784", + "usedToken1": "481877861", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0xf114fcaeb9589e72054c5ce1712d38611ce39e43e022be143462df7037af2ec3", + "state": { + "depositToken": 0, + "blockNumber": 207612462, + "lastRebalancePrice": "2381092", + "state": "0", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2383951", + "twapFast": "2390396", + "depositTokenBalance": "0", + "pairedTokenBalance": "320463", + "usedToken0": "13776021060127948364", + "usedToken1": "484606756", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266000" + }, + "limitPosition": { + "bottomTick": "-266000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x204751f8b078eaf289d72c7017c28444a53239a8c3f5edd4cf0fa933ef7764bd", + "state": { + "depositToken": 0, + "blockNumber": 207628042, + "lastRebalancePrice": "2762267", + "state": "3", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "0", + "pairedTokenBalance": "28723", + "usedToken0": "13776021060127948362", + "usedToken1": "484628753", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x091b1840f0326fde9deb5f47676b6327ea3f6fa221e3288385b998baf00ab1f7", + "state": { + "depositToken": 0, + "blockNumber": 207643628, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581755", + "pairedTokenBalance": "2010", + "usedToken0": "13776021060127948361", + "usedToken1": "484628752", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0f513133c680c2554eea034b0b6609b6d04465349b40b62e4d9675bd5984d1fa", + "state": { + "depositToken": 0, + "blockNumber": 207659182, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581754", + "pairedTokenBalance": "2009", + "usedToken0": "13776021060127948360", + "usedToken1": "484628751", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3cf2dbd7a1bad862843efa8770273392214f4ade7207bcd7e0508e8c8501262f", + "state": { + "depositToken": 0, + "blockNumber": 207674738, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581753", + "pairedTokenBalance": "2008", + "usedToken0": "13776021060127948359", + "usedToken1": "484628750", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x318f8a3520a9f26e8126d1e219c1e3678fa834f0bfabe187afe5b943095b813b", + "state": { + "depositToken": 0, + "blockNumber": 207690336, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581752", + "pairedTokenBalance": "2007", + "usedToken0": "13776021060127948358", + "usedToken1": "484628749", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2a2f643427dc1fa23fad1acce6da93ffd2edc7ece3f7a43ee42aefaf1b63df18", + "state": { + "depositToken": 0, + "blockNumber": 207705923, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581751", + "pairedTokenBalance": "2006", + "usedToken0": "13776021060127948357", + "usedToken1": "484628748", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x55d07e9027f69497e9e88b588f60fa13f138d71f67d3834e38987a9c55a55dc8", + "state": { + "depositToken": 0, + "blockNumber": 207721503, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581750", + "pairedTokenBalance": "2005", + "usedToken0": "13776021060127948356", + "usedToken1": "484628747", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaef92a456bd2fd9979260fb64bd2f086e7d247c79fd1c8c3e804b622310af3ea", + "state": { + "depositToken": 0, + "blockNumber": 207737085, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581749", + "pairedTokenBalance": "2004", + "usedToken0": "13776021060127948355", + "usedToken1": "484628746", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2564f58d147f47751db0f0a1a397ffb99d6ab1408145038651738feab78af7ae", + "state": { + "depositToken": 0, + "blockNumber": 207752681, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-266163", + "currentPrice": "2762267", + "twapSlow": "2762267", + "twapFast": "2762267", + "depositTokenBalance": "29581748", + "pairedTokenBalance": "2003", + "usedToken0": "13776021060127948354", + "usedToken1": "484628745", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7576bbcfd09f001550d99d181ba0bf5b5dcb05ca77cc5102be8bef816ddc0deb", + "state": { + "depositToken": 0, + "blockNumber": 207768258, + "lastRebalancePrice": "2762267", + "state": "1", + "currentTick": "-265687", + "currentPrice": "2896923", + "twapSlow": "2864661", + "twapFast": "2896923", + "depositTokenBalance": "25029581747", + "pairedTokenBalance": "2002", + "usedToken0": "2002", + "usedToken1": "25523381383", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "-265800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf3ef30fa13083d88b6aef087430b36c4611fa64c1447fb27d413cdb6a32b42d1", + "state": { + "depositToken": 0, + "blockNumber": 208571613, + "lastRebalancePrice": "2896923", + "state": "0", + "currentTick": "-265896", + "currentPrice": "2837009", + "twapSlow": "2841268", + "twapFast": "2837009", + "depositTokenBalance": "0", + "pairedTokenBalance": "2002", + "usedToken0": "409300270325455364985", + "usedToken1": "24356497219", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0xe6e43c1673b17579c66015927ea264af6594e918069f3c57de0e17bfe3b303eb", + "state": { + "depositToken": 0, + "blockNumber": 208602463, + "lastRebalancePrice": "2837009", + "state": "0", + "currentTick": "-266104", + "currentPrice": "2778612", + "twapSlow": "2797290", + "twapFast": "2778612", + "depositTokenBalance": "0", + "pairedTokenBalance": "278063", + "usedToken0": "844924390885631105050", + "usedToken1": "23148874953", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-266000" + }, + "limitPosition": { + "bottomTick": "-266000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xa1d79bab8f49f5d751cd0d73684717464543a3b24930dad90971200f35f86d7f", + "state": { + "depositToken": 0, + "blockNumber": 208838050, + "lastRebalancePrice": "2778612", + "state": "1", + "currentTick": "-266367", + "currentPrice": "2706490", + "twapSlow": "2737793", + "twapFast": "2706490", + "depositTokenBalance": "0", + "pairedTokenBalance": "548043", + "usedToken0": "1957094272537003546089", + "usedToken1": "20108282485", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266200" + }, + "limitPosition": { + "bottomTick": "-266200", + "topTick": "-265600" + } + } + }, + { + "transactionHash": "0xef18a51b2c976e990313a8fec6feaa1c13624d9cff32245e94498d16dd116af9", + "state": { + "depositToken": 0, + "blockNumber": 208862328, + "lastRebalancePrice": "2706490", + "state": "2", + "currentTick": "-266638", + "currentPrice": "2634133", + "twapSlow": "2700003", + "twapFast": "2634133", + "depositTokenBalance": "0", + "pairedTokenBalance": "21143", + "usedToken0": "2067608379020574872208", + "usedToken1": "19837517569", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0x7289b6242136e7098e034870d0a3b1f0f9998bb47e20cbce9b02d238642ff960", + "state": { + "depositToken": 0, + "blockNumber": 208952405, + "lastRebalancePrice": "2634133", + "state": "2", + "currentTick": "-266861", + "currentPrice": "2576045", + "twapSlow": "2625717", + "twapFast": "2576045", + "depositTokenBalance": "0", + "pairedTokenBalance": "26903", + "usedToken0": "2152782942279414437229", + "usedToken1": "19617769744", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0xef8b8483fccc6da109e64ed8e5c0770f0f010d27fc00a2170801b16e1eb4d8cb", + "state": { + "depositToken": 0, + "blockNumber": 209079381, + "lastRebalancePrice": "2576045", + "state": "2", + "currentTick": "-267127", + "currentPrice": "2508429", + "twapSlow": "2566018", + "twapFast": "2509683", + "depositTokenBalance": "0", + "pairedTokenBalance": "27013", + "usedToken0": "2255682268681356720798", + "usedToken1": "19359320529", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0x1de9aa9512906a65420bbd5f001c0340c65072079d9fa39c38bdd3a3639738c8", + "state": { + "depositToken": 0, + "blockNumber": 209153207, + "lastRebalancePrice": "2508429", + "state": "2", + "currentTick": "-267713", + "currentPrice": "2365666", + "twapSlow": "2492177", + "twapFast": "2365666", + "depositTokenBalance": "0", + "pairedTokenBalance": "18697", + "usedToken0": "2486221081493411480117", + "usedToken1": "18799980348", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267600" + }, + "limitPosition": { + "bottomTick": "-267600", + "topTick": "-266800" + } + } + }, + { + "transactionHash": "0xb280f2d100a18d6a472fc6bcb38d0c2537020559677f08edaada322629d53f60", + "state": { + "depositToken": 0, + "blockNumber": 209168687, + "lastRebalancePrice": "2365666", + "state": "2", + "currentTick": "-267252", + "currentPrice": "2477270", + "twapSlow": "2429433", + "twapFast": "2477270", + "depositTokenBalance": "0", + "pairedTokenBalance": "25327", + "usedToken0": "1366967305967418764240", + "usedToken1": "21526950057", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269400", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x38ee5eb58e3da4ac4085197d863c4ac309647a0fdc3ec3def6a58b6b84d16282", + "state": { + "depositToken": 0, + "blockNumber": 209241388, + "lastRebalancePrice": "2457777", + "state": "1", + "currentTick": "-267481", + "currentPrice": "2421188", + "twapSlow": "2458023", + "twapFast": "2429190", + "depositTokenBalance": "0", + "pairedTokenBalance": "146103", + "usedToken0": "1596176217262945730915", + "usedToken1": "12951885643", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267400" + }, + "limitPosition": { + "bottomTick": "-267400", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0xbcb199d6997d74d09edb52dfe90c7b2dd11a2ecc5770e3b9d92067538803ed5b", + "state": { + "depositToken": 0, + "blockNumber": 209249446, + "lastRebalancePrice": "2421188", + "state": "2", + "currentTick": "-268250", + "currentPrice": "2241986", + "twapSlow": "2389201", + "twapFast": "2245351", + "depositTokenBalance": "0", + "pairedTokenBalance": "23621", + "usedToken0": "1825961394354255583717", + "usedToken1": "12503409298", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x4acb466f399e4b167497fdc49fc6c1fb3dd9253436a5cb77a1519f6e20698d06", + "state": { + "depositToken": 0, + "blockNumber": 209264949, + "lastRebalancePrice": "2241986", + "state": "3", + "currentTick": "-268250", + "currentPrice": "2241986", + "twapSlow": "2241986", + "twapFast": "2241986", + "depositTokenBalance": "0", + "pairedTokenBalance": "601845", + "usedToken0": "1827695097444142999068", + "usedToken1": "12503486170", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-267400" + } + } + }, + { + "transactionHash": "0x0238a6ac525d16c596fe105a262da08b70c8ae45bcfeb3f80386033ec55a6093", + "state": { + "depositToken": 0, + "blockNumber": 209296860, + "lastRebalancePrice": "2241986", + "state": "2", + "currentTick": "-267692", + "currentPrice": "2370638", + "twapSlow": "2251422", + "twapFast": "2370638", + "depositTokenBalance": "0", + "pairedTokenBalance": "23339", + "usedToken0": "652384182640671395768", + "usedToken1": "15219043454", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269800", + "topTick": "-267600" + }, + "limitPosition": { + "bottomTick": "-267600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x46ce8913b059abfc020d5a04fb8ff8b548f706eb6a07307fa1b1cd0a82c28ada", + "state": { + "depositToken": 0, + "blockNumber": 209423669, + "lastRebalancePrice": "2370638", + "state": "1", + "currentTick": "-267588", + "currentPrice": "2395420", + "twapSlow": "2374434", + "twapFast": "2395420", + "depositTokenBalance": "0", + "pairedTokenBalance": "500852", + "usedToken0": "360245353882132400750", + "usedToken1": "15942392077", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x5969323eb88c1bfa3728ae04f6b155ee8c6e7868a6b002d1cc543381b1874b5b", + "state": { + "depositToken": 0, + "blockNumber": 209477382, + "lastRebalancePrice": "2395420", + "state": "0", + "currentTick": "-267233", + "currentPrice": "2481981", + "twapSlow": "2425065", + "twapFast": "2486204", + "depositTokenBalance": "0", + "pairedTokenBalance": "253706", + "usedToken0": "354784353793006633438", + "usedToken1": "15965727880", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "-267400" + } + } + }, + { + "transactionHash": "0x76f4b30b698cfada9c1d61323e5f4b335e8b976e3147911c722afb119ca7e059", + "state": { + "depositToken": 0, + "blockNumber": 209519423, + "lastRebalancePrice": "2481981", + "state": "0", + "currentTick": "-267019", + "currentPrice": "2535665", + "twapSlow": "2523019", + "twapFast": "2535665", + "depositTokenBalance": "0", + "pairedTokenBalance": "261686", + "usedToken0": "351226127002457851293", + "usedToken1": "15975822117", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269400", + "topTick": "-267200" + } + } + }, + { + "transactionHash": "0xb69ba10ab69d23d38131b7854c4b2390e2d199fcc37b4c8b4ae9f1c38ac94335", + "state": { + "depositToken": 0, + "blockNumber": 209553460, + "lastRebalancePrice": "2535665", + "state": "0", + "currentTick": "-266782", + "currentPrice": "2596475", + "twapSlow": "2565762", + "twapFast": "2596475", + "depositTokenBalance": "0", + "pairedTokenBalance": "426739", + "usedToken0": "347088216444374120315", + "usedToken1": "15986544660", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "-266800" + } + } + }, + { + "transactionHash": "0x77392096a73681cfcf63ef18168b04c9cb33ae5ef15dbb74109f10260c444bdc", + "state": { + "depositToken": 0, + "blockNumber": 209569067, + "lastRebalancePrice": "2596475", + "state": "0", + "currentTick": "-266511", + "currentPrice": "2667798", + "twapSlow": "2636504", + "twapFast": "2667798", + "depositTokenBalance": "0", + "pairedTokenBalance": "426738", + "usedToken0": "342422365044499206036", + "usedToken1": "15998911548", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0x982bdd3e68f477d81c83ce00a28e778a520d402f34a0d9da1cc04bb06a092563", + "state": { + "depositToken": 0, + "blockNumber": 209584697, + "lastRebalancePrice": "2667798", + "state": "0", + "currentTick": "-266285", + "currentPrice": "2728774", + "twapSlow": "2676081", + "twapFast": "2728774", + "depositTokenBalance": "0", + "pairedTokenBalance": "426737", + "usedToken0": "338584105981480002561", + "usedToken1": "16009367200", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x6bd9528adc8d355e7fe93927034d715db36dbd8d91df141849b095ff178da7e6", + "state": { + "depositToken": 0, + "blockNumber": 209658166, + "lastRebalancePrice": "2728774", + "state": "0", + "currentTick": "-265772", + "currentPrice": "2872405", + "twapSlow": "2744097", + "twapFast": "2852940", + "depositTokenBalance": "0", + "pairedTokenBalance": "426736", + "usedToken0": "329997043145774476165", + "usedToken1": "16033492954", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-265800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0x53f9f8163adfcc750d9d8310d6147c4a996d5136592ae4ee3ef7995f09751730", + "state": { + "depositToken": 0, + "blockNumber": 209673744, + "lastRebalancePrice": "2872405", + "state": "0", + "currentTick": "-265946", + "currentPrice": "2822860", + "twapSlow": "2822860", + "twapFast": "2822860", + "depositTokenBalance": "0", + "pairedTokenBalance": "426735", + "usedToken0": "691859459594018148664", + "usedToken1": "15004678319", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "-265800" + }, + "limitPosition": { + "bottomTick": "-265800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xe3e09696bdc1c2cefd81f0d24fade5720f5d5a567f1b1ff2afa632bc4065646e", + "state": { + "depositToken": 0, + "blockNumber": 209839719, + "lastRebalancePrice": "2822860", + "state": "1", + "currentTick": "-266144", + "currentPrice": "2767520", + "twapSlow": "2793935", + "twapFast": "2767520", + "depositTokenBalance": "0", + "pairedTokenBalance": "559064", + "usedToken0": "1237719935399925319694", + "usedToken1": "13487099947", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266000" + }, + "limitPosition": { + "bottomTick": "-266000", + "topTick": "-265200" + } + } + }, + { + "transactionHash": "0xdc10c75f91f556cd515ed6345deb829217cc85543aab23f337eac4c220d57878", + "state": { + "depositToken": 0, + "blockNumber": 209854979, + "lastRebalancePrice": "2767520", + "state": "2", + "currentTick": "-267037", + "currentPrice": "2531105", + "twapSlow": "2627293", + "twapFast": "2533891", + "depositTokenBalance": "0", + "pairedTokenBalance": "3038", + "usedToken0": "1464380748671597373784", + "usedToken1": "12898783846", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0x41433c3a728d05d33c11a050d22a7ea4ccae9cdf66a0c34557187d6bf92123ad", + "state": { + "depositToken": 0, + "blockNumber": 209870361, + "lastRebalancePrice": "2531105", + "state": "2", + "currentTick": "-267255", + "currentPrice": "2476527", + "twapSlow": "2478013", + "twapFast": "2476527", + "depositTokenBalance": "0", + "pairedTokenBalance": "18437", + "usedToken0": "1522026977608277394908", + "usedToken1": "12758940126", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267200" + }, + "limitPosition": { + "bottomTick": "-267200", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0xbd44d6ba72d4ebf7d4665396c9906c481344234d812b04ffc6d99d3595178268", + "state": { + "depositToken": 0, + "blockNumber": 210005590, + "lastRebalancePrice": "2476527", + "state": "2", + "currentTick": "-267014", + "currentPrice": "2536933", + "twapSlow": "2469603", + "twapFast": "2536933", + "depositTokenBalance": "0", + "pairedTokenBalance": "17248", + "usedToken0": "1152272665113089288236", + "usedToken1": "13689020699", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0xe5d0d0728914cdb192d3d85f471ed86e22e3aeeba19289c090f09e3819e283e6", + "state": { + "depositToken": 0, + "blockNumber": 210021197, + "lastRebalancePrice": "2536933", + "state": "2", + "currentTick": "-266861", + "currentPrice": "2576045", + "twapSlow": "2563966", + "twapFast": "2576045", + "depositTokenBalance": "0", + "pairedTokenBalance": "26130", + "usedToken0": "945404418025302449207", + "usedToken1": "14226259085", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xd12083db261a7f7c751f58dbb16a06a4bcf24bf23f01513a408bc84c10a39e2c", + "state": { + "depositToken": 0, + "blockNumber": 211344343, + "lastRebalancePrice": "2560379", + "state": "1", + "currentTick": "-267028", + "currentPrice": "2533384", + "twapSlow": "2569356", + "twapFast": "2532877", + "depositTokenBalance": "0", + "pairedTokenBalance": "365153", + "usedToken0": "1402410553184655254191", + "usedToken1": "13063038697", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0x9943b944b13a5c80e94c9c50bd85dfbd65203b9364d2408110cd897f48f0afa0", + "state": { + "depositToken": 0, + "blockNumber": 211550055, + "lastRebalancePrice": "2533384", + "state": "2", + "currentTick": "-266821", + "currentPrice": "2586369", + "twapSlow": "2570898", + "twapFast": "2586369", + "depositTokenBalance": "0", + "pairedTokenBalance": "8962", + "usedToken0": "1086622565282202837951", + "usedToken1": "13929358220", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "-266400" + }, + "limitPosition": { + "bottomTick": "-266400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xfc98416710024e957005f4df1f567560873783873541c4f5e2bd9fea0dca6601", + "state": { + "depositToken": 0, + "blockNumber": 211671179, + "lastRebalancePrice": "2586369", + "state": "1", + "currentTick": "-266546", + "currentPrice": "2658477", + "twapSlow": "2650779", + "twapFast": "2657149", + "depositTokenBalance": "0", + "pairedTokenBalance": "217749", + "usedToken0": "373993463381564554833", + "usedToken1": "15804971931", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0x75804e38634ab1289058881114daffcba2824b3ef6867938f8a97681cf897d8f", + "state": { + "depositToken": 0, + "blockNumber": 211898920, + "lastRebalancePrice": "2658477", + "state": "0", + "currentTick": "-266321", + "currentPrice": "2718968", + "twapSlow": "2677151", + "twapFast": "2718968", + "depositTokenBalance": "0", + "pairedTokenBalance": "473041", + "usedToken0": "369809823273165350489", + "usedToken1": "15831322368", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x3c429766d36b67d72723e5db07c27c4de7ecbe8765bcf7b5c0a2db2b8815d08a", + "state": { + "depositToken": 0, + "blockNumber": 211913707, + "lastRebalancePrice": "2718968", + "state": "0", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "0", + "pairedTokenBalance": "25229", + "usedToken0": "1238020033597201932555", + "usedToken1": "13524883666", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa945f66a11ba48d803ee49e4653f0fced8b6effcc8aac4b860e96739ecc8be53", + "state": { + "depositToken": 0, + "blockNumber": 211928891, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067367", + "pairedTokenBalance": "5173", + "usedToken0": "1245850628992988205919", + "usedToken1": "13527019129", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x02e63305511f214a464634c0e27c6eade016a61ac7abc9d9eff2249797b5a061", + "state": { + "depositToken": 0, + "blockNumber": 211944270, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067366", + "pairedTokenBalance": "5172", + "usedToken0": "1245850628992988205918", + "usedToken1": "13527019128", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb82890a855450abc459f3ac749d3328f8e1be0aee0f343cff9435a4cff098186", + "state": { + "depositToken": 0, + "blockNumber": 211959740, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067365", + "pairedTokenBalance": "5171", + "usedToken0": "1245850628992988205917", + "usedToken1": "13527019127", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8c8ac47b32e240c760443637cfa2e793813e547c229af587a0509be7e032d381", + "state": { + "depositToken": 0, + "blockNumber": 211975020, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067364", + "pairedTokenBalance": "5170", + "usedToken0": "1245850628992988205916", + "usedToken1": "13527019126", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4129047bba54a90e61b1b928caf8d9a265ad994fc08f2097b319d0d467aac249", + "state": { + "depositToken": 0, + "blockNumber": 211990547, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067363", + "pairedTokenBalance": "5169", + "usedToken0": "1245850628992988205915", + "usedToken1": "13527019125", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x926511e6fbb722fdcf8daf102242d315cc8e43f0245787e4626f35256b471171", + "state": { + "depositToken": 0, + "blockNumber": 212006056, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067362", + "pairedTokenBalance": "5168", + "usedToken0": "1245850628992988205914", + "usedToken1": "13527019124", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd21109e566cdf6ada1abacd31be7ece0f94536b67c87359310cc61a2e79512b4", + "state": { + "depositToken": 0, + "blockNumber": 212021567, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067361", + "pairedTokenBalance": "5167", + "usedToken0": "1245850628992988205913", + "usedToken1": "13527019123", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe86b121b8113ddb27035b5f78083bda53f234bdfa4d76b11f5109eb75ef2598d", + "state": { + "depositToken": 0, + "blockNumber": 212037044, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067360", + "pairedTokenBalance": "5166", + "usedToken0": "1245850628992988205912", + "usedToken1": "13527019122", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe0e1890c87b53fb8a4d82eb75878c5356f16003dcce1f18b8e370842b0094481", + "state": { + "depositToken": 0, + "blockNumber": 212052483, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067359", + "pairedTokenBalance": "5165", + "usedToken0": "1245850628992988205911", + "usedToken1": "13527019121", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8b500ab235c8f9ae3953a934b9dcf6d1d9f10bfac551fcd93d962406ea1ecf66", + "state": { + "depositToken": 0, + "blockNumber": 212067824, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067358", + "pairedTokenBalance": "5164", + "usedToken0": "1245850628992988205910", + "usedToken1": "13527019120", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x158674a4d6e7623e493e70d9254800f510fc9d97e7c5aa641a6be570def052f4", + "state": { + "depositToken": 0, + "blockNumber": 212083088, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067357", + "pairedTokenBalance": "5163", + "usedToken0": "1245850628992988205909", + "usedToken1": "13527019119", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x23220a95e42c5fd98c8512355d360940bb58a3cf7240d60b747ed1186fb190c0", + "state": { + "depositToken": 0, + "blockNumber": 212098287, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266706", + "currentPrice": "2616282", + "twapSlow": "2616282", + "twapFast": "2616282", + "depositTokenBalance": "538067356", + "pairedTokenBalance": "5162", + "usedToken0": "1245850628992988205908", + "usedToken1": "13527019118", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268800", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdbc449c1f9be5690dda34645da7022d9cd15b19ca09320d2aead04e667e9cb2e", + "state": { + "depositToken": 0, + "blockNumber": 212113534, + "lastRebalancePrice": "2616282", + "state": "1", + "currentTick": "-266542", + "currentPrice": "2659541", + "twapSlow": "2630185", + "twapFast": "2657680", + "depositTokenBalance": "538067355", + "pairedTokenBalance": "5161", + "usedToken0": "838854613135318295028", + "usedToken1": "14600651171", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa22215eb21e75d8cebf0046f12e6c9905c29508c2fab62f92a389fe8e65c2667", + "state": { + "depositToken": 0, + "blockNumber": 212128568, + "lastRebalancePrice": "2659541", + "state": "1", + "currentTick": "-266454", + "currentPrice": "2683047", + "twapSlow": "2676348", + "twapFast": "2681706", + "depositTokenBalance": "1729069560", + "pairedTokenBalance": "5160", + "usedToken0": "621405921272406036639", + "usedToken1": "15190208942", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x288f5d9a1c54b6606d7c8186f39b6591671f6df5f307ea4da943851b456fc113", + "state": { + "depositToken": 0, + "blockNumber": 212143866, + "lastRebalancePrice": "2683047", + "state": "1", + "currentTick": "-266448", + "currentPrice": "2684657", + "twapSlow": "2684389", + "twapFast": "2684657", + "depositTokenBalance": "1733763560", + "pairedTokenBalance": "5159", + "usedToken0": "606414962358214829676", + "usedToken1": "15235137915", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd3decb35e1e99489324396a3adf63c0e1b5c5990ef29b0d67685c707633ed3cd", + "state": { + "depositToken": 0, + "blockNumber": 212159244, + "lastRebalancePrice": "2684657", + "state": "1", + "currentTick": "-266448", + "currentPrice": "2684657", + "twapSlow": "2684657", + "twapFast": "2684657", + "depositTokenBalance": "1734088691", + "pairedTokenBalance": "5158", + "usedToken0": "606414962358214829675", + "usedToken1": "15235463046", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x185e1227b30e4b674d6095c2aa7b57014dd32a7fc21bbd9d6bc6c7ef09c39c67", + "state": { + "depositToken": 0, + "blockNumber": 212174621, + "lastRebalancePrice": "2684657", + "state": "1", + "currentTick": "-266448", + "currentPrice": "2684657", + "twapSlow": "2684657", + "twapFast": "2684657", + "depositTokenBalance": "1734088690", + "pairedTokenBalance": "5157", + "usedToken0": "606414962358214829674", + "usedToken1": "15235463045", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x20134c55c513efcb6fb8ad2520d44b2196a6585857e639542d2b8625f8dfe2ce", + "state": { + "depositToken": 0, + "blockNumber": 212190052, + "lastRebalancePrice": "2684657", + "state": "1", + "currentTick": "-266448", + "currentPrice": "2684657", + "twapSlow": "2684657", + "twapFast": "2684657", + "depositTokenBalance": "1734088689", + "pairedTokenBalance": "5156", + "usedToken0": "606414962358214829673", + "usedToken1": "15235463044", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xee09d0b443e0c3a0b5d8469228086befb33806d47d3d6f4bf8a64c7355b546fb", + "state": { + "depositToken": 0, + "blockNumber": 212204955, + "lastRebalancePrice": "2684657", + "state": "1", + "currentTick": "-266375", + "currentPrice": "2704326", + "twapSlow": "2687343", + "twapFast": "2687074", + "depositTokenBalance": "1734088688", + "pairedTokenBalance": "5155", + "usedToken0": "426574161250116940330", + "usedToken1": "15720061548", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x19f5a8d600b6dc93f36b53091b69ba776e0888faf7d888a33115692a3a0551ce", + "state": { + "depositToken": 0, + "blockNumber": 212219209, + "lastRebalancePrice": "2704326", + "state": "0", + "currentTick": "-266564", + "currentPrice": "2653697", + "twapSlow": "2655289", + "twapFast": "2653697", + "depositTokenBalance": "0", + "pairedTokenBalance": "261821", + "usedToken0": "849744427602142531631", + "usedToken1": "14594365423", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9ea2742751ef65e79cd1c0863be2681f132ebf5d8baf6827de42b1be8e06e326", + "state": { + "depositToken": 0, + "blockNumber": 212233751, + "lastRebalancePrice": "2653697", + "state": "1", + "currentTick": "-266477", + "currentPrice": "2676883", + "twapSlow": "2661403", + "twapFast": "2671802", + "depositTokenBalance": "2393611957", + "pairedTokenBalance": "7373", + "usedToken0": "649285197453135449918", + "usedToken1": "15144692725", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x03270abcbd014d3b188b5f47f965427b2bf1116573e2f72b3afb5df6205add0c", + "state": { + "depositToken": 0, + "blockNumber": 212248501, + "lastRebalancePrice": "2676883", + "state": "1", + "currentTick": "-266444", + "currentPrice": "2685731", + "twapSlow": "2683852", + "twapFast": "2685731", + "depositTokenBalance": "2398031228", + "pairedTokenBalance": "7372", + "usedToken0": "572385523008754438090", + "usedToken1": "15355308595", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4b27d30a641b2edccc9c1a3bc03b693a7bc6c8eb18a7b8c555e6fe73fc750ab5", + "state": { + "depositToken": 0, + "blockNumber": 212262669, + "lastRebalancePrice": "2685731", + "state": "1", + "currentTick": "-266444", + "currentPrice": "2685731", + "twapSlow": "2685731", + "twapFast": "2685731", + "depositTokenBalance": "2399697465", + "pairedTokenBalance": "7371", + "usedToken0": "572385523008754438089", + "usedToken1": "15356974832", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdee8369efc9d05e88833d0a6c61ff759cb74e9fd50311845018bf50e32ac7532", + "state": { + "depositToken": 0, + "blockNumber": 212277759, + "lastRebalancePrice": "2685731", + "state": "1", + "currentTick": "-266444", + "currentPrice": "2685731", + "twapSlow": "2685731", + "twapFast": "2685731", + "depositTokenBalance": "2399697464", + "pairedTokenBalance": "7370", + "usedToken0": "572385523008754438088", + "usedToken1": "15356974831", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x058d9fc346b3a72068128b0edac75951754c739e4b56ee76af13d931fddbbbb6", + "state": { + "depositToken": 0, + "blockNumber": 212293173, + "lastRebalancePrice": "2685731", + "state": "1", + "currentTick": "-266444", + "currentPrice": "2685731", + "twapSlow": "2685731", + "twapFast": "2685731", + "depositTokenBalance": "2399697463", + "pairedTokenBalance": "7369", + "usedToken0": "572385523008754438087", + "usedToken1": "15356974830", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb4aec57dd3a249cd3f2df6b0abc4e4f69fb670dfaf28be325fc20f2b185d1594", + "state": { + "depositToken": 0, + "blockNumber": 212308583, + "lastRebalancePrice": "2685731", + "state": "1", + "currentTick": "-266444", + "currentPrice": "2685731", + "twapSlow": "2685731", + "twapFast": "2685731", + "depositTokenBalance": "2399697462", + "pairedTokenBalance": "7368", + "usedToken0": "572385523008754438086", + "usedToken1": "15356974829", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4e2850dd5f65b759ddeb92e0696b6fd3c81308cef2a56ded608c71c93a77f136", + "state": { + "depositToken": 0, + "blockNumber": 212324089, + "lastRebalancePrice": "2685731", + "state": "1", + "currentTick": "-266335", + "currentPrice": "2715164", + "twapSlow": "2688687", + "twapFast": "2715164", + "depositTokenBalance": "2399697461", + "pairedTokenBalance": "7367", + "usedToken0": "315736318918719997302", + "usedToken1": "16050035239", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0xf41df6a72fec0776ec0092b8bf1d0acd3327b28bab6185c8e54173c5dcf9102a", + "state": { + "depositToken": 0, + "blockNumber": 212453510, + "lastRebalancePrice": "2715164", + "state": "0", + "currentTick": "-266517", + "currentPrice": "2666198", + "twapSlow": "2721688", + "twapFast": "2666464", + "depositTokenBalance": "0", + "pairedTokenBalance": "445865", + "usedToken0": "649844781693039998032", + "usedToken1": "15159552234", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266400" + }, + "limitPosition": { + "bottomTick": "-266400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x157289cb84debe22064995fe198f41972de12bc67bc118c64c79e8971e5adf1b", + "state": { + "depositToken": 0, + "blockNumber": 212978029, + "lastRebalancePrice": "2666198", + "state": "1", + "currentTick": "-266826", + "currentPrice": "2585076", + "twapSlow": "2618900", + "twapFast": "2618376", + "depositTokenBalance": "0", + "pairedTokenBalance": "22427", + "usedToken0": "1547954784154712983560", + "usedToken1": "12808698210", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x8e4aade0ac24527a6e866726eae228a3c8894f4e6656f9efd89ff8e2ef0c89f7", + "state": { + "depositToken": 0, + "blockNumber": 212992165, + "lastRebalancePrice": "2585076", + "state": "3", + "currentTick": "-266826", + "currentPrice": "2585076", + "twapSlow": "2585076", + "twapFast": "2585076", + "depositTokenBalance": "0", + "pairedTokenBalance": "210261", + "usedToken0": "1555651030410041078391", + "usedToken1": "12809887932", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0x4690278ddd896b9c99fbb179f22c0d67d50b9a59ce3ec03c2dc509b5c460402b", + "state": { + "depositToken": 0, + "blockNumber": 213235678, + "lastRebalancePrice": "2585076", + "state": "2", + "currentTick": "-266614", + "currentPrice": "2640462", + "twapSlow": "2637296", + "twapFast": "2639670", + "depositTokenBalance": "0", + "pairedTokenBalance": "7488", + "usedToken0": "1183035309274380865676", + "usedToken1": "13784497655", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0x989cff7af212e664fc8e196e0749f07d15c67117e2c2fbdd88cb0fd058b0ed01", + "state": { + "depositToken": 0, + "blockNumber": 213263149, + "lastRebalancePrice": "2640462", + "state": "2", + "currentTick": "-266492", + "currentPrice": "2672871", + "twapSlow": "2657946", + "twapFast": "2672871", + "depositTokenBalance": "0", + "pairedTokenBalance": "21237", + "usedToken0": "1017087382340426753224", + "usedToken1": "14233489716", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "-266200" + }, + "limitPosition": { + "bottomTick": "-266200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x44d4a739415338a5614074415f133516e2e324b1d87962c0c2d996efdf5aad92", + "state": { + "depositToken": 0, + "blockNumber": 213293466, + "lastRebalancePrice": "2672871", + "state": "1", + "currentTick": "-266165", + "currentPrice": "2761714", + "twapSlow": "2684120", + "twapFast": "2754268", + "depositTokenBalance": "0", + "pairedTokenBalance": "532392", + "usedToken0": "245665884183407123901", + "usedToken1": "16329333431", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-266200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268400", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0x36ed91ae58892eee9b2b6abfc03a1c5e0ae0f4be6269e6eeb5b657972f85896b", + "state": { + "depositToken": 0, + "blockNumber": 213308685, + "lastRebalancePrice": "2761714", + "state": "0", + "currentTick": "-265738", + "currentPrice": "2882187", + "twapSlow": "2795053", + "twapFast": "2878155", + "depositTokenBalance": "0", + "pairedTokenBalance": "532391", + "usedToken0": "240468925815071029366", + "usedToken1": "16360903570", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-265800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0x60d80a9b37c804ccc10a2d1b69fe75cf09edca679eae684aa52c777dcb5179ee", + "state": { + "depositToken": 0, + "blockNumber": 213323432, + "lastRebalancePrice": "2882187", + "state": "0", + "currentTick": "-266101", + "currentPrice": "2779445", + "twapSlow": "2864088", + "twapFast": "2779445", + "depositTokenBalance": "0", + "pairedTokenBalance": "532390", + "usedToken0": "1070564380987306516032", + "usedToken1": "14018707178", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "-265800" + }, + "limitPosition": { + "bottomTick": "-265800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xe0b4060cc274bd3511a4d50cb9e437fe0aa2a548703fd543cc493e1728141b83", + "state": { + "depositToken": 0, + "blockNumber": 213860937, + "lastRebalancePrice": "2779445", + "state": "1", + "currentTick": "-266180", + "currentPrice": "2757575", + "twapSlow": "2762267", + "twapFast": "2757575", + "depositTokenBalance": "0", + "pairedTokenBalance": "368088", + "usedToken0": "1278109982884035818861", + "usedToken1": "13462655177", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266000" + }, + "limitPosition": { + "bottomTick": "-266000", + "topTick": "-265400" + } + } + }, + { + "transactionHash": "0x60a95f8486f209ab82aba9ada6975138a96ee1327f077d41cc371f1e299a9fa6", + "state": { + "depositToken": 0, + "blockNumber": 214246862, + "lastRebalancePrice": "2757575", + "state": "2", + "currentTick": "-266459", + "currentPrice": "2681706", + "twapSlow": "2726864", + "twapFast": "2681706", + "depositTokenBalance": "0", + "pairedTokenBalance": "11306", + "usedToken0": "1354053756727010428938", + "usedToken1": "13292316355", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266400" + }, + "limitPosition": { + "bottomTick": "-266400", + "topTick": "-265600" + } + } + }, + { + "transactionHash": "0x383b6033d02929477d8c8aa0213a03af3840353b44d4f56eea6dd710072afff8", + "state": { + "depositToken": 0, + "blockNumber": 214288853, + "lastRebalancePrice": "2681706", + "state": "2", + "currentTick": "-266798", + "currentPrice": "2592324", + "twapSlow": "2668332", + "twapFast": "2592324", + "depositTokenBalance": "0", + "pairedTokenBalance": "11067", + "usedToken0": "1439693984847207369720", + "usedToken1": "13069253063", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0xb411778725aa721eb4543f0558bcfa4d71a3722c79fe7a54dfc08b55b5b961a8", + "state": { + "depositToken": 0, + "blockNumber": 214610656, + "lastRebalancePrice": "2592324", + "state": "2", + "currentTick": "-267049", + "currentPrice": "2528070", + "twapSlow": "2551179", + "twapFast": "2528070", + "depositTokenBalance": "0", + "pairedTokenBalance": "8945", + "usedToken0": "1503957885508238089845", + "usedToken1": "12906483091", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0xc8097d7b1e07cca1e08d60a3b00cbf052efee4510a163280b1f4997aa8d861f5", + "state": { + "depositToken": 0, + "blockNumber": 214913469, + "lastRebalancePrice": "2528070", + "state": "2", + "currentTick": "-267253", + "currentPrice": "2477022", + "twapSlow": "2478509", + "twapFast": "2477022", + "depositTokenBalance": "0", + "pairedTokenBalance": "11524", + "usedToken0": "1557180904031917953589", + "usedToken1": "12776164921", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267200" + }, + "limitPosition": { + "bottomTick": "-267200", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x13a1208ee97b3a7b824713ac28c9cc5056472e5fd53193980f9b414479aab4ba", + "state": { + "depositToken": 0, + "blockNumber": 215017219, + "lastRebalancePrice": "2477022", + "state": "2", + "currentTick": "-267479", + "currentPrice": "2421672", + "twapSlow": "2430162", + "twapFast": "2421672", + "depositTokenBalance": "0", + "pairedTokenBalance": "18751", + "usedToken0": "1616565680707327530809", + "usedToken1": "12632971047", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267400" + }, + "limitPosition": { + "bottomTick": "-267400", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0xed0475583fb060c9c776f24a92ffe717242c5fd1de6e00f310c832438324a3fa", + "state": { + "depositToken": 0, + "blockNumber": 215116183, + "lastRebalancePrice": "2421672", + "state": "2", + "currentTick": "-267693", + "currentPrice": "2370401", + "twapSlow": "2382521", + "twapFast": "2370401", + "depositTokenBalance": "0", + "pairedTokenBalance": "9984", + "usedToken0": "1673032736898801080418", + "usedToken1": "12498813614", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267600" + }, + "limitPosition": { + "bottomTick": "-267600", + "topTick": "-266800" + } + } + }, + { + "transactionHash": "0xbca85c26d3aab4f6e8a9a9be883dfafe935b59f26cbbff33c234a69f6487946a", + "state": { + "depositToken": 0, + "blockNumber": 215275367, + "lastRebalancePrice": "2370401", + "state": "2", + "currentTick": "-268012", + "currentPrice": "2295983", + "twapSlow": "2328118", + "twapFast": "2295983", + "depositTokenBalance": "0", + "pairedTokenBalance": "4999", + "usedToken0": "1758711961919691309692", + "usedToken1": "12301930642", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "-267200" + } + } + }, + { + "transactionHash": "0xa50ab4cd6b4f3e35cd7bd64c3578d3043d459851f14f8c4374a02f8d96852506", + "state": { + "depositToken": 0, + "blockNumber": 215626730, + "lastRebalancePrice": "2295983", + "state": "2", + "currentTick": "-267439", + "currentPrice": "2431378", + "twapSlow": "2333012", + "twapFast": "2408631", + "depositTokenBalance": "0", + "pairedTokenBalance": "21959", + "usedToken0": "516972359521376828516", + "usedToken1": "15240057263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "-267200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x36349a27657295b0687875b75934e44d5031a67dc2d2fbabfa9a48b065837f55", + "state": { + "depositToken": 0, + "blockNumber": 215642756, + "lastRebalancePrice": "2431378", + "state": "1", + "currentTick": "-267227", + "currentPrice": "2483470", + "twapSlow": "2451396", + "twapFast": "2483470", + "depositTokenBalance": "4405787343", + "pairedTokenBalance": "7233", + "usedToken0": "57786616059350432933", + "usedToken1": "16394803846", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "-267400" + } + } + }, + { + "transactionHash": "0x56e0e226ab5b87fb778b6e371e3e6097b72a8970d4164ed921966ae866cce70e", + "state": { + "depositToken": 0, + "blockNumber": 215834282, + "lastRebalancePrice": "2483470", + "state": "0", + "currentTick": "-267431", + "currentPrice": "2433323", + "twapSlow": "2440390", + "twapFast": "2433323", + "depositTokenBalance": "0", + "pairedTokenBalance": "404815", + "usedToken0": "158577130027154926184", + "usedToken1": "16167822956", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-269800", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x993d30f66017d72924eb04e000b01b0a25d4e9f7c956142b3c4afd9258b0882d", + "state": { + "depositToken": 0, + "blockNumber": 215926925, + "lastRebalancePrice": "2433323", + "state": "0", + "currentTick": "-267679", + "currentPrice": "2373722", + "twapSlow": "2399016", + "twapFast": "2377285", + "depositTokenBalance": "0", + "pairedTokenBalance": "225026", + "usedToken0": "417393261620162378744", + "usedToken1": "15552896152", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0x9bf86e0f17ce53b8b73ff62a3f2d0e384fb5cc3b9d080880c80f411b8670c285", + "state": { + "depositToken": 0, + "blockNumber": 216531640, + "lastRebalancePrice": "2373722", + "state": "0", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2329282", + "twapFast": "2328351", + "depositTokenBalance": "0", + "pairedTokenBalance": "267587", + "usedToken0": "650430905430468471345", + "usedToken1": "15013150998", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5090d65fe35f8db7bb20fe7d695fb2e4f897eb0dca3ecd924e9823502aabea75", + "state": { + "depositToken": 0, + "blockNumber": 216547244, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835774", + "pairedTokenBalance": "7060", + "usedToken0": "652887238657747584665", + "usedToken1": "15014529567", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6ab549018adf1caee9bac9f914f94311a0bee8b3f26f1027264daf5ae9618d64", + "state": { + "depositToken": 0, + "blockNumber": 216562890, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835773", + "pairedTokenBalance": "7059", + "usedToken0": "652887238657747584664", + "usedToken1": "15014529566", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9c9b695fc2ec1d4f10b480a240af5c5f0192eb42cb027d6bb5f87da2f1be8260", + "state": { + "depositToken": 0, + "blockNumber": 216578545, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835772", + "pairedTokenBalance": "7058", + "usedToken0": "652887238657747584663", + "usedToken1": "15014529565", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa510eb1842334ee114276f980e171b6cd8b5f05d6e38d036784bc089f536e6b9", + "state": { + "depositToken": 0, + "blockNumber": 216594207, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835771", + "pairedTokenBalance": "7057", + "usedToken0": "652887238657747584662", + "usedToken1": "15014529564", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbc48209fb194883f57e150fafb93511dc16aad824b2936fe047e7887b12c0e8a", + "state": { + "depositToken": 0, + "blockNumber": 216609826, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835770", + "pairedTokenBalance": "7056", + "usedToken0": "652887238657747584661", + "usedToken1": "15014529563", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xea14660606c0453ca46324858a8fc8328d5bc469270bfe27219555501970f647", + "state": { + "depositToken": 0, + "blockNumber": 216625452, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835769", + "pairedTokenBalance": "7055", + "usedToken0": "652887238657747584660", + "usedToken1": "15014529562", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1d66ac5b8413c6a79c82c49b05404cee565d9f525fc254b6021c806be98aa787", + "state": { + "depositToken": 0, + "blockNumber": 216641086, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835768", + "pairedTokenBalance": "7054", + "usedToken0": "652887238657747584659", + "usedToken1": "15014529561", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x03c3c70dffa3f4553002fc95321713117be67ab2ab4064e222d2ad6e1341afe7", + "state": { + "depositToken": 0, + "blockNumber": 216656731, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267872", + "currentPrice": "2328351", + "twapSlow": "2328351", + "twapFast": "2328351", + "depositTokenBalance": "3638835767", + "pairedTokenBalance": "7053", + "usedToken0": "652887238657747584658", + "usedToken1": "15014529560", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5c9cebaf8d636b51b2828f5c98080d1171846868dea93fb088bc74fc20274a43", + "state": { + "depositToken": 0, + "blockNumber": 216672336, + "lastRebalancePrice": "2328351", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2329282", + "twapFast": "2330214", + "depositTokenBalance": "3638835766", + "pairedTokenBalance": "7052", + "usedToken0": "632701406371331815631", + "usedToken1": "15061550520", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x599ead809f7d59827ab997b7db41d8c171e9f168154aa5b6395cb2460a800fd7", + "state": { + "depositToken": 0, + "blockNumber": 216687981, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215733", + "pairedTokenBalance": "7051", + "usedToken0": "632701406371331815630", + "usedToken1": "15061930487", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf67cc1fa6dee0d9bde4a6d4a29cb02e4555e969c51290112e95e20376e01fc61", + "state": { + "depositToken": 0, + "blockNumber": 216703619, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215732", + "pairedTokenBalance": "7050", + "usedToken0": "632701406371331815629", + "usedToken1": "15061930486", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf6a0f6933e23f9283bb4ddf29b0f6be77e5ec393981ddedc3e9bbbe6beb06b18", + "state": { + "depositToken": 0, + "blockNumber": 216719177, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215731", + "pairedTokenBalance": "7049", + "usedToken0": "632701406371331815628", + "usedToken1": "15061930485", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x45912c7ad6a61629bb66f1cd7a7fb116b8ad871e5f4d69ed5e217927e2e822e5", + "state": { + "depositToken": 0, + "blockNumber": 216734805, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215730", + "pairedTokenBalance": "7048", + "usedToken0": "632701406371331815627", + "usedToken1": "15061930484", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xedbb1bb03e2cd6f721e1339dbd2e8db67ae347c59a2159659da8aa2c6338ec61", + "state": { + "depositToken": 0, + "blockNumber": 216750388, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215729", + "pairedTokenBalance": "7047", + "usedToken0": "632701406371331815626", + "usedToken1": "15061930483", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa4cf9f640622c2ddafa2bc3b5321f0f2905d7d648078191be87aaf10bfd7aad2", + "state": { + "depositToken": 0, + "blockNumber": 216765966, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215728", + "pairedTokenBalance": "7046", + "usedToken0": "632701406371331815625", + "usedToken1": "15061930482", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x773cc195b3f6e146d019f4ac98f3be3969c82345347c38fff17cf922bd05ff63", + "state": { + "depositToken": 0, + "blockNumber": 216781608, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215727", + "pairedTokenBalance": "7045", + "usedToken0": "632701406371331815624", + "usedToken1": "15061930481", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6c1a14923f8a56e812b4fb808504a5b09dfb1aac19a9b27d31bf3a7181a9830c", + "state": { + "depositToken": 0, + "blockNumber": 216797185, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215726", + "pairedTokenBalance": "7044", + "usedToken0": "632701406371331815623", + "usedToken1": "15061930480", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x113dcf9ca5001a36f025d4b53ea3083fd7a37f5b81da11c7b2ca073959fcb61c", + "state": { + "depositToken": 0, + "blockNumber": 216812819, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215725", + "pairedTokenBalance": "7043", + "usedToken0": "632701406371331815622", + "usedToken1": "15061930479", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc3c478223b717589642f3e107a75bd8f5f087a31c27d9f365febbb8a056c56dd", + "state": { + "depositToken": 0, + "blockNumber": 216828446, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215724", + "pairedTokenBalance": "7042", + "usedToken0": "632701406371331815621", + "usedToken1": "15061930478", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8c0a6d37a2a81c66833eb3ce6b9ec8867ef9714df3f56fda0168406fcca6590e", + "state": { + "depositToken": 0, + "blockNumber": 216844057, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215723", + "pairedTokenBalance": "7041", + "usedToken0": "632701406371331815620", + "usedToken1": "15061930477", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x583952f1ffae12b35aa0462e1760f09aed0c23c24b4774485b2c21aef99b6712", + "state": { + "depositToken": 0, + "blockNumber": 216859669, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215722", + "pairedTokenBalance": "7040", + "usedToken0": "632701406371331815619", + "usedToken1": "15061930476", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xecd02690760cc907891358807e20dc4efab9e7ca2bb466b6c161ed87135f53ff", + "state": { + "depositToken": 0, + "blockNumber": 216875040, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215721", + "pairedTokenBalance": "7039", + "usedToken0": "632701406371331815618", + "usedToken1": "15061930475", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x320d7c9c79a41c051a2cbc15606c8a9c9663fe7b554e977451fcbb829272a81a", + "state": { + "depositToken": 0, + "blockNumber": 216890546, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215720", + "pairedTokenBalance": "7038", + "usedToken0": "632701406371331815617", + "usedToken1": "15061930474", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x74be44daed76dd996785b5d586cf1f199ec7f269adce5c6eab5e8184f3f885f4", + "state": { + "depositToken": 0, + "blockNumber": 216906072, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215719", + "pairedTokenBalance": "7037", + "usedToken0": "632701406371331815616", + "usedToken1": "15061930473", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x636890817e2bb80648e382f22c501a1de40d9bd2182d647f582717c25a3e88a4", + "state": { + "depositToken": 0, + "blockNumber": 216921668, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215718", + "pairedTokenBalance": "7036", + "usedToken0": "632701406371331815615", + "usedToken1": "15061930472", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0b8204609506992c9a509498722a96535b067531b68829551b99206a9ad26129", + "state": { + "depositToken": 0, + "blockNumber": 216937316, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2330214", + "twapFast": "2330214", + "depositTokenBalance": "3639215717", + "pairedTokenBalance": "7035", + "usedToken0": "632701406371331815614", + "usedToken1": "15061930471", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa3a5a652aa2ac69355c97bce08e9aa167c8f7cce11a0d4ce314469c601388834", + "state": { + "depositToken": 0, + "blockNumber": 216952885, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267849", + "currentPrice": "2333712", + "twapSlow": "2333712", + "twapFast": "2333712", + "depositTokenBalance": "3639215716", + "pairedTokenBalance": "7034", + "usedToken0": "597307760986313670375", + "usedToken1": "15144471363", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xffb02ae13f71279f94d03ece14bcd211c02ceba14fd25adf6bde7f39f75b155c", + "state": { + "depositToken": 0, + "blockNumber": 216968444, + "lastRebalancePrice": "2333712", + "state": "1", + "currentTick": "-267871", + "currentPrice": "2328584", + "twapSlow": "2330680", + "twapFast": "2328584", + "depositTokenBalance": "3639882713", + "pairedTokenBalance": "7033", + "usedToken0": "649142974192242393321", + "usedToken1": "15024295448", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4cc74da5431626707fa172b50c5aade410d04429cd150b115d18535b88ecbc90", + "state": { + "depositToken": 0, + "blockNumber": 216983949, + "lastRebalancePrice": "2328584", + "state": "1", + "currentTick": "-267871", + "currentPrice": "2328584", + "twapSlow": "2328584", + "twapFast": "2328584", + "depositTokenBalance": "3632536729", + "pairedTokenBalance": "8414", + "usedToken0": "649561844601987271889", + "usedToken1": "15024295447", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5e2130f747674cc59c48171a07169ff5f6a370b968ec4fa5eceeec9cdf3db422", + "state": { + "depositToken": 0, + "blockNumber": 216999537, + "lastRebalancePrice": "2328584", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2326489", + "twapFast": "2325791", + "depositTokenBalance": "3632536728", + "pairedTokenBalance": "8413", + "usedToken0": "679592198550444138985", + "usedToken1": "14954404314", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa411915a0bdfd2ee3eb7a66f37f94bab8ec214a91c10724933c3a0319a294723", + "state": { + "depositToken": 0, + "blockNumber": 217015125, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493903", + "pairedTokenBalance": "5118", + "usedToken0": "679834868077300356092", + "usedToken1": "14954404313", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7a4ef8660cb49bfce0d81697919937fda844d82707e00e1ee758703dac2a0e0b", + "state": { + "depositToken": 0, + "blockNumber": 217030740, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493902", + "pairedTokenBalance": "5117", + "usedToken0": "679834868077300356091", + "usedToken1": "14954404312", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8e05063b95b4579c7b6b18b638f60d47f912cf7ca440bc5c2175a18c35f8fb00", + "state": { + "depositToken": 0, + "blockNumber": 217046376, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493901", + "pairedTokenBalance": "5116", + "usedToken0": "679834868077300356090", + "usedToken1": "14954404311", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9cb946ff36864f5cadf709829debd652335b21131d4fc56b7372b38133825a9e", + "state": { + "depositToken": 0, + "blockNumber": 217061996, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493900", + "pairedTokenBalance": "5115", + "usedToken0": "679834868077300356089", + "usedToken1": "14954404310", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0e87f380d1d8f4695a1f7e5fb1663fe9ea3a777011e311d2499b2977b701bf29", + "state": { + "depositToken": 0, + "blockNumber": 217077639, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493899", + "pairedTokenBalance": "5114", + "usedToken0": "679834868077300356088", + "usedToken1": "14954404309", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x615c1ddb8e5c0a15da9b9185ead46c4bbd5003f6627c0fad1252cb28bb9664b4", + "state": { + "depositToken": 0, + "blockNumber": 217093274, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493898", + "pairedTokenBalance": "5113", + "usedToken0": "679834868077300356087", + "usedToken1": "14954404308", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe69f14888047d7cf16cd57f851c4d4b80e25e8b22465f9cf529d983f57ff8579", + "state": { + "depositToken": 0, + "blockNumber": 217108891, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493897", + "pairedTokenBalance": "5112", + "usedToken0": "679834868077300356086", + "usedToken1": "14954404307", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x841fe56d4ded72b341b4e0bdfea6dd06465dbf3f8b1cd68302677080ce23d02a", + "state": { + "depositToken": 0, + "blockNumber": 217124460, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493896", + "pairedTokenBalance": "5111", + "usedToken0": "679834868077300356085", + "usedToken1": "14954404306", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x833fd9b98052651a320735ec6645c9af4f658d1d3dc4d1a1529b304ad31fb599", + "state": { + "depositToken": 0, + "blockNumber": 217140105, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493895", + "pairedTokenBalance": "5110", + "usedToken0": "679834868077300356084", + "usedToken1": "14954404305", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x89624774bf639490bff2f73b1c7dadf85b238b95b7c3ada28b555dd715b0c3d0", + "state": { + "depositToken": 0, + "blockNumber": 217155729, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493894", + "pairedTokenBalance": "5109", + "usedToken0": "679834868077300356083", + "usedToken1": "14954404304", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7a6b7b6e5b3d20e5cba7285a117f9d68d5e0ee845d80538c4f391479405ea6c2", + "state": { + "depositToken": 0, + "blockNumber": 217171342, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493893", + "pairedTokenBalance": "5108", + "usedToken0": "679834868077300356082", + "usedToken1": "14954404303", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4404f9c440770a51d0c4b9808177c5057ad32eae559cb6927620078dd3314b7a", + "state": { + "depositToken": 0, + "blockNumber": 217187014, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493892", + "pairedTokenBalance": "5107", + "usedToken0": "679834868077300356081", + "usedToken1": "14954404302", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xeab8b17ebe131abd9a71fff6f40916670f77bacaea6bf56621ef8a2fe59932b3", + "state": { + "depositToken": 0, + "blockNumber": 217202643, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493891", + "pairedTokenBalance": "5106", + "usedToken0": "679834868077300356080", + "usedToken1": "14954404301", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x094269fe1f037af24d99f5d7d80ab587f7bb840550609c4fc6c66e7e3fabdedd", + "state": { + "depositToken": 0, + "blockNumber": 217218305, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493890", + "pairedTokenBalance": "5105", + "usedToken0": "679834868077300356079", + "usedToken1": "14954404300", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb4b1e54f48e973befc9b5962cab682038eb5d9742d5ee578486bcc46b9b57dfc", + "state": { + "depositToken": 0, + "blockNumber": 217234037, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493889", + "pairedTokenBalance": "5104", + "usedToken0": "679834868077300356078", + "usedToken1": "14954404299", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf39c2c36a7edd4e74371380099d5cfb41c66e331f4ca483f63bd0521a25a1cc4", + "state": { + "depositToken": 0, + "blockNumber": 217249616, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493888", + "pairedTokenBalance": "5103", + "usedToken0": "679834868077300356077", + "usedToken1": "14954404298", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x78e4f430856c908cf7c9c558af9b43dc2f1971db96d80b5575b8a8f0050a41a8", + "state": { + "depositToken": 0, + "blockNumber": 217265225, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493887", + "pairedTokenBalance": "5102", + "usedToken0": "679834868077300356076", + "usedToken1": "14954404297", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb132306b7881d694ddba0272485cb0b909f37015284756a11849566357091df0", + "state": { + "depositToken": 0, + "blockNumber": 217280943, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493886", + "pairedTokenBalance": "5101", + "usedToken0": "679834868077300356075", + "usedToken1": "14954404296", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x20cef128e09a0f4aaa64fdfb9e0ca1afa650b18ed0f29fa307cd7a9bd4e22680", + "state": { + "depositToken": 0, + "blockNumber": 217296598, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493885", + "pairedTokenBalance": "5100", + "usedToken0": "679834868077300356074", + "usedToken1": "14954404295", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3d523838cb30abd9f80c2b201cfd92d5d92b3dcfcdbe14a0c9955cfebd04820d", + "state": { + "depositToken": 0, + "blockNumber": 217312197, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493884", + "pairedTokenBalance": "5099", + "usedToken0": "679834868077300356073", + "usedToken1": "14954404294", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb710d277d30b3ee06b1177cafb195bd0bed11ccd8543872f82b864aa862de16a", + "state": { + "depositToken": 0, + "blockNumber": 217327683, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493883", + "pairedTokenBalance": "5098", + "usedToken0": "679834868077300356072", + "usedToken1": "14954404293", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3d4209955eb960fb1224dbdba3db3685586e59595226341fcecab97b8a1b9a21", + "state": { + "depositToken": 0, + "blockNumber": 217343332, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493882", + "pairedTokenBalance": "5097", + "usedToken0": "679834868077300356071", + "usedToken1": "14954404292", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x705485c4dc83d9ecb1c51a2be01fc231e5c397dfebadca73cf41998fa441b94c", + "state": { + "depositToken": 0, + "blockNumber": 217358965, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493881", + "pairedTokenBalance": "5096", + "usedToken0": "679834868077300356070", + "usedToken1": "14954404291", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaac9f99e82130a25ddc298bb0dc93e759bb57cb6b9522e185fb09570e529c063", + "state": { + "depositToken": 0, + "blockNumber": 217374610, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493880", + "pairedTokenBalance": "5095", + "usedToken0": "679834868077300356069", + "usedToken1": "14954404290", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x07bc87653256a07f7a407ccb93f8b78d9484d394aa617384c3a90110083be328", + "state": { + "depositToken": 0, + "blockNumber": 217390235, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493879", + "pairedTokenBalance": "5094", + "usedToken0": "679834868077300356068", + "usedToken1": "14954404289", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x75d88e135717d50a6ec49238c547983be51f169732312a0b5515a764af9806f4", + "state": { + "depositToken": 0, + "blockNumber": 217405865, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493878", + "pairedTokenBalance": "5093", + "usedToken0": "679834868077300356067", + "usedToken1": "14954404288", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x03f571ea00ea0480e09f56f481909931307f5a85c86aaa6b549d631bf8b5ee38", + "state": { + "depositToken": 0, + "blockNumber": 217421486, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493877", + "pairedTokenBalance": "5092", + "usedToken0": "679834868077300356066", + "usedToken1": "14954404287", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6bd1fe7c5366d2144a2317062878626e599ddc1981542ac8f615d63e96887903", + "state": { + "depositToken": 0, + "blockNumber": 217437089, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493876", + "pairedTokenBalance": "5091", + "usedToken0": "679834868077300356065", + "usedToken1": "14954404286", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3b739e2b2cfb7154c5df66f3a1d9e943515bc36fe379195d6ab2989cc277ade4", + "state": { + "depositToken": 0, + "blockNumber": 217452712, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493875", + "pairedTokenBalance": "5090", + "usedToken0": "679834868077300356064", + "usedToken1": "14954404285", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdb51f2ed9149707f1c418bf7fcc5e15cbff6baca58b2f58cf16d85118030948a", + "state": { + "depositToken": 0, + "blockNumber": 217468312, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493874", + "pairedTokenBalance": "5089", + "usedToken0": "679834868077300356063", + "usedToken1": "14954404284", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xce87f366cd6d917d4ce2aa58d4083b84d5acd14b518089521cab44ff859aec0b", + "state": { + "depositToken": 0, + "blockNumber": 217483976, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493873", + "pairedTokenBalance": "5088", + "usedToken0": "679834868077300356062", + "usedToken1": "14954404283", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x133e9d8e3c2c96a34c11919620464c5235dc9b1f691e1c06428a1587e38db8ed", + "state": { + "depositToken": 0, + "blockNumber": 217499623, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493872", + "pairedTokenBalance": "5087", + "usedToken0": "679834868077300356061", + "usedToken1": "14954404282", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5d41c3a3dae82073c6a0030ef2b4b6e09000fc9625984435e1244deeaaceab2d", + "state": { + "depositToken": 0, + "blockNumber": 217515228, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493871", + "pairedTokenBalance": "5086", + "usedToken0": "679834868077300356060", + "usedToken1": "14954404281", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa484f3da1c8ab45a0228e2e2412e06b42bb346adf7fa441aa99dde67f056ca82", + "state": { + "depositToken": 0, + "blockNumber": 217530845, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493870", + "pairedTokenBalance": "5085", + "usedToken0": "679834868077300356059", + "usedToken1": "14954404280", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaf354cbe477a6d897383758cfad5affd0723027e29e9f15603e7a53368aae69a", + "state": { + "depositToken": 0, + "blockNumber": 217546455, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493869", + "pairedTokenBalance": "5084", + "usedToken0": "679834868077300356058", + "usedToken1": "14954404279", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x349a7ef584663702c834055e7f52843856acb7e29702be396de92cd00c341937", + "state": { + "depositToken": 0, + "blockNumber": 217562092, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493868", + "pairedTokenBalance": "5083", + "usedToken0": "679834868077300356057", + "usedToken1": "14954404278", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x42877bc037f9d878b4b008a7d04e4a2369b4b4dde262ee9a708eb44d535bceed", + "state": { + "depositToken": 0, + "blockNumber": 217577757, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493867", + "pairedTokenBalance": "5082", + "usedToken0": "679834868077300356056", + "usedToken1": "14954404277", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x08f77824c08818b6d17c1dcc6f17b03d79ee20904018c56a4f955b885c37eca5", + "state": { + "depositToken": 0, + "blockNumber": 217593399, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493866", + "pairedTokenBalance": "5081", + "usedToken0": "679834868077300356055", + "usedToken1": "14954404276", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1db47c335de3207d59adb4f655a26e5c73f0541ec56805f7f2198d1c96cc8876", + "state": { + "depositToken": 0, + "blockNumber": 217609036, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493865", + "pairedTokenBalance": "5080", + "usedToken0": "679834868077300356054", + "usedToken1": "14954404275", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf1f515cfe455e7752c5e63c9db24c058cf689ecdf659c64f28b7ceaca49d12c0", + "state": { + "depositToken": 0, + "blockNumber": 217624652, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493864", + "pairedTokenBalance": "5079", + "usedToken0": "679834868077300356053", + "usedToken1": "14954404274", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd4c15bdd50d86dd874771b90a27b88cc76457c6dace5acab95abf3d9b9886fb0", + "state": { + "depositToken": 0, + "blockNumber": 217640307, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493863", + "pairedTokenBalance": "5078", + "usedToken0": "679834868077300356052", + "usedToken1": "14954404273", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x583c59e96715494d3451f0636a163aa8499c431229b974fdd3ef690f358e7ec1", + "state": { + "depositToken": 0, + "blockNumber": 217655953, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493862", + "pairedTokenBalance": "5077", + "usedToken0": "679834868077300356051", + "usedToken1": "14954404272", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1f1345cf0fb4d6c55c09817320cf9e21598606e440e2fe047b720356a935750d", + "state": { + "depositToken": 0, + "blockNumber": 217671628, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493861", + "pairedTokenBalance": "5076", + "usedToken0": "679834868077300356050", + "usedToken1": "14954404271", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x42ba2ad6edb5fe12969b9526c7882ceb4254b1bf34ac1650a920fdab1d541191", + "state": { + "depositToken": 0, + "blockNumber": 217687246, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493860", + "pairedTokenBalance": "5075", + "usedToken0": "679834868077300356049", + "usedToken1": "14954404270", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfb65098bc062e4c1c2a7f59ad09d5da409dcae06176b1d511b81cda2a39f9b35", + "state": { + "depositToken": 0, + "blockNumber": 217702888, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493859", + "pairedTokenBalance": "5074", + "usedToken0": "679834868077300356048", + "usedToken1": "14954404269", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4ef0f27fc590e579753e3cf76b40171e7989118eee6c8095d97a98cc3bf4fbe7", + "state": { + "depositToken": 0, + "blockNumber": 217718512, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493858", + "pairedTokenBalance": "5073", + "usedToken0": "679834868077300356047", + "usedToken1": "14954404268", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0f9c9221c05c932ea4ce6f1319d81648138779efeb4fa18a5bec669564aa8440", + "state": { + "depositToken": 0, + "blockNumber": 217734116, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493857", + "pairedTokenBalance": "5072", + "usedToken0": "679834868077300356046", + "usedToken1": "14954404267", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x21f160bebbbab03b8b3b0aa326eb923e958daa638c9dac28dfd191c0b99c3dfb", + "state": { + "depositToken": 0, + "blockNumber": 217749713, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493856", + "pairedTokenBalance": "5071", + "usedToken0": "679834868077300356045", + "usedToken1": "14954404266", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcaa7d2b931e12c1410cda94b4fcdde95038f28568ae55c1ba88ae5964e7fd4e9", + "state": { + "depositToken": 0, + "blockNumber": 217765229, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493855", + "pairedTokenBalance": "5070", + "usedToken0": "679834868077300356044", + "usedToken1": "14954404265", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe6641b5956cc41592be1a0e5572b2a95d2e98e53472d13ba8becfa5920c20713", + "state": { + "depositToken": 0, + "blockNumber": 217780694, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493854", + "pairedTokenBalance": "5069", + "usedToken0": "679834868077300356043", + "usedToken1": "14954404264", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbc3d627d07b0d4db9ffed141277aa74a54de21f08865d3b4314b7dd92327f09f", + "state": { + "depositToken": 0, + "blockNumber": 217796117, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493853", + "pairedTokenBalance": "5068", + "usedToken0": "679834868077300356042", + "usedToken1": "14954404263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x131c0a577a056b8a0499e06bdaa881eae61fce5f71c660249152811f99590fa0", + "state": { + "depositToken": 0, + "blockNumber": 217811608, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493852", + "pairedTokenBalance": "5067", + "usedToken0": "679834868077300356041", + "usedToken1": "14954404262", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5f0e44429f866716421dda625aad7336699f007be2e9b3747710a03a8e854fd6", + "state": { + "depositToken": 0, + "blockNumber": 217827198, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493851", + "pairedTokenBalance": "5066", + "usedToken0": "679834868077300356040", + "usedToken1": "14954404261", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x509e6639a0ae5fae2ca43b0078921d091fa8b35e3db21a8aa3eac8ebf8834645", + "state": { + "depositToken": 0, + "blockNumber": 217842768, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493850", + "pairedTokenBalance": "5065", + "usedToken0": "679834868077300356039", + "usedToken1": "14954404260", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x96a2591018ac75ea1e82a381d5115f0f539e87d36b4224fceafa7075f295efa5", + "state": { + "depositToken": 0, + "blockNumber": 217858393, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493849", + "pairedTokenBalance": "5064", + "usedToken0": "679834868077300356038", + "usedToken1": "14954404259", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7acbc97c3770afd61a504ee9ce1d595467917138856754e93e891349d7d72a86", + "state": { + "depositToken": 0, + "blockNumber": 217874015, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493848", + "pairedTokenBalance": "5063", + "usedToken0": "679834868077300356037", + "usedToken1": "14954404258", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa7033e58ab7170bc712e66d37e588663273b737fd6ca8d8a96acdc31889d6310", + "state": { + "depositToken": 0, + "blockNumber": 217889540, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493847", + "pairedTokenBalance": "5062", + "usedToken0": "679834868077300356036", + "usedToken1": "14954404257", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x74fbecfa828a6d0ed76dfdea87565aa7b7aa984b0bfec7622a50bdebd4a1a448", + "state": { + "depositToken": 0, + "blockNumber": 217905161, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493846", + "pairedTokenBalance": "5061", + "usedToken0": "679834868077300356035", + "usedToken1": "14954404256", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6f1d513bcc5ab0b2dd85092ae9234e5a86fccbcd197bb4e2b296ed5c6da5710b", + "state": { + "depositToken": 0, + "blockNumber": 217920637, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493845", + "pairedTokenBalance": "5060", + "usedToken0": "679834868077300356034", + "usedToken1": "14954404255", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1dbad3f121957c3247b7bbe3f34a71d9684c15044e22171ee6f7cf83c57e1cc6", + "state": { + "depositToken": 0, + "blockNumber": 217936222, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493844", + "pairedTokenBalance": "5059", + "usedToken0": "679834868077300356033", + "usedToken1": "14954404254", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1f1db1253ed038c89303195c43854f3c7e35f55e5ff82f67d98c8d4876d1420b", + "state": { + "depositToken": 0, + "blockNumber": 217951825, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267883", + "currentPrice": "2325791", + "twapSlow": "2325791", + "twapFast": "2325791", + "depositTokenBalance": "3628493843", + "pairedTokenBalance": "5058", + "usedToken0": "679834868077300356032", + "usedToken1": "14954404253", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe570ab3799fa68c5782f598ef97c5d389d374e5ff9109efed6a9ddfc8a53f1c3", + "state": { + "depositToken": 0, + "blockNumber": 217967461, + "lastRebalancePrice": "2325791", + "state": "1", + "currentTick": "-267868", + "currentPrice": "2329282", + "twapSlow": "2329282", + "twapFast": "2329282", + "depositTokenBalance": "3628493842", + "pairedTokenBalance": "5057", + "usedToken0": "643253356800348992298", + "usedToken1": "15039553715", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe4ef464b21b046fb6028f3bf802b63b7a17982c48ce55f1e0184324b3fc82133", + "state": { + "depositToken": 0, + "blockNumber": 217983073, + "lastRebalancePrice": "2329282", + "state": "1", + "currentTick": "-267864", + "currentPrice": "2330214", + "twapSlow": "2329282", + "twapFast": "2330214", + "depositTokenBalance": "3629181917", + "pairedTokenBalance": "5056", + "usedToken0": "633368609994023416383", + "usedToken1": "15063272236", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc6f9239a63aa9efd98b1f20cd93899a8c20f93050cca91b778b9116de28acf20", + "state": { + "depositToken": 0, + "blockNumber": 217998687, + "lastRebalancePrice": "2330214", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2331146", + "twapFast": "2332079", + "depositTokenBalance": "3629368020", + "pairedTokenBalance": "5055", + "usedToken0": "613849620125806516345", + "usedToken1": "15108963206", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe81a739061171886edeb4a2e26911bd1ad3d4ffecf429468cef99faab1f6750c", + "state": { + "depositToken": 0, + "blockNumber": 218014217, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735735", + "pairedTokenBalance": "5054", + "usedToken0": "613849620125806516344", + "usedToken1": "15109330921", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x86ffb6019b4837ddaca87992495c38c1fbfa547d4cf3a9d85911accd7529a539", + "state": { + "depositToken": 0, + "blockNumber": 218029834, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735734", + "pairedTokenBalance": "5053", + "usedToken0": "613849620125806516343", + "usedToken1": "15109330920", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x76cc9a47b15ced532a4e2548ec35dc8f551345d9bad7989f32455c78e425b183", + "state": { + "depositToken": 0, + "blockNumber": 218045446, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735733", + "pairedTokenBalance": "5052", + "usedToken0": "613849620125806516342", + "usedToken1": "15109330919", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4402dcfa19741e0a30082fb571bc0c85e94077f87bd9131c91e08af11c9fe70a", + "state": { + "depositToken": 0, + "blockNumber": 218061063, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735732", + "pairedTokenBalance": "5051", + "usedToken0": "613849620125806516341", + "usedToken1": "15109330918", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd925d45e4cead982bdd239c9396ab3bf2d4e894f0cb31acc283db00e6df8183a", + "state": { + "depositToken": 0, + "blockNumber": 218076677, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735731", + "pairedTokenBalance": "5050", + "usedToken0": "613849620125806516340", + "usedToken1": "15109330917", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbc740cee21611338c1587685dbe46ecea4a7df4f542446c11fd6552c228832f7", + "state": { + "depositToken": 0, + "blockNumber": 218092303, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735730", + "pairedTokenBalance": "5049", + "usedToken0": "613849620125806516339", + "usedToken1": "15109330916", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaba03a8ba9e340605fff92d1c279b66a684dd99eeb509bb07f4c961609f93b88", + "state": { + "depositToken": 0, + "blockNumber": 218107843, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735729", + "pairedTokenBalance": "5048", + "usedToken0": "613849620125806516338", + "usedToken1": "15109330915", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5534ecf1ec8c39b6cd0ae4e70f6aade7a90228de867f3f8b3f39c9d83ce28b49", + "state": { + "depositToken": 0, + "blockNumber": 218123411, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735728", + "pairedTokenBalance": "5047", + "usedToken0": "613849620125806516337", + "usedToken1": "15109330914", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x38120c61fdb96a87ab9a29f1338b09392f3dab2a3ee009ad39b1d6997fc4b108", + "state": { + "depositToken": 0, + "blockNumber": 218138942, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735727", + "pairedTokenBalance": "5046", + "usedToken0": "613849620125806516336", + "usedToken1": "15109330913", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "-267600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9301aea485a8d64e756088f60d29bc004ef9986e31a6441c10fab740c0ea561f", + "state": { + "depositToken": 0, + "blockNumber": 218198491, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-267856", + "currentPrice": "2332079", + "twapSlow": "2332079", + "twapFast": "2332079", + "depositTokenBalance": "3629735726", + "pairedTokenBalance": "5045", + "usedToken0": "613849620125806516335", + "usedToken1": "15109330912", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-265000", + "topTick": "-260000" + } + } + }, + { + "transactionHash": "0xfbb296bbdbb9e46c1472a61558d5cb31bf901f4fc95694e88c548fbbff58526c", + "state": { + "depositToken": 0, + "blockNumber": 218492190, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-265139", + "currentPrice": "3060097", + "twapSlow": "3073283", + "twapFast": "3060097", + "depositTokenBalance": "0", + "pairedTokenBalance": "81554", + "usedToken0": "613849620125806516334", + "usedToken1": "15109330911", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-267200", + "topTick": "-265000" + }, + "limitPosition": { + "bottomTick": "-265000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x10cc72e71366d177ccab185612b98b51b687d126641756af2c17ec07c63e3eed", + "state": { + "depositToken": 0, + "blockNumber": 218756165, + "lastRebalancePrice": "2332079", + "state": "1", + "currentTick": "-265418", + "currentPrice": "2975904", + "twapSlow": "3018763", + "twapFast": "3018461", + "depositTokenBalance": "0", + "pairedTokenBalance": "468820", + "usedToken0": "1322509764304051186293", + "usedToken1": "12970689450", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-265400" + }, + "limitPosition": { + "bottomTick": "-265400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x9783f69db8a7d8ec0d3655b7f1197befcdb047019536369b31b765b488d40181", + "state": { + "depositToken": 0, + "blockNumber": 218771715, + "lastRebalancePrice": "2975904", + "state": "3", + "currentTick": "-265418", + "currentPrice": "2975904", + "twapSlow": "2975904", + "twapFast": "2975904", + "depositTokenBalance": "0", + "pairedTokenBalance": "439408", + "usedToken0": "1328236310923673365447", + "usedToken1": "12970689449", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-265400" + }, + "limitPosition": { + "bottomTick": "-265400", + "topTick": "-264600" + } + } + }, + { + "transactionHash": "0xe4e2e93f9eb905f0b9448637d1c50fdb91f00d2d0411cee48480c1a5c52692c2", + "state": { + "depositToken": 0, + "blockNumber": 219457745, + "lastRebalancePrice": "2975904", + "state": "2", + "currentTick": "-265911", + "currentPrice": "2832757", + "twapSlow": "2914356", + "twapFast": "2832190", + "depositTokenBalance": "0", + "pairedTokenBalance": "11949", + "usedToken0": "1436895106216305520531", + "usedToken1": "12655183587", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-265800" + }, + "limitPosition": { + "bottomTick": "-265800", + "topTick": "-265000" + } + } + }, + { + "transactionHash": "0x44c3e25ce66405e8d95791956e940e2884735d772ad96fff087a294f58e0af53", + "state": { + "depositToken": 0, + "blockNumber": 219810547, + "lastRebalancePrice": "2832757", + "state": "2", + "currentTick": "-266280", + "currentPrice": "2730138", + "twapSlow": "2791143", + "twapFast": "2730138", + "depositTokenBalance": "0", + "pairedTokenBalance": "20019", + "usedToken0": "1523476891126335128928", + "usedToken1": "12430011302", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266200" + }, + "limitPosition": { + "bottomTick": "-266200", + "topTick": "-265400" + } + } + }, + { + "transactionHash": "0x53493fc3fb2b82d04e5395a497cca78b282ff9014e482f62af3b48be4d248f4b", + "state": { + "depositToken": 0, + "blockNumber": 219826137, + "lastRebalancePrice": "2730138", + "state": "2", + "currentTick": "-266620", + "currentPrice": "2638878", + "twapSlow": "2655024", + "twapFast": "2638878", + "depositTokenBalance": "0", + "pairedTokenBalance": "25218", + "usedToken0": "1602147879487293333450", + "usedToken1": "12220654584", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266600" + }, + "limitPosition": { + "bottomTick": "-266600", + "topTick": "-265800" + } + } + }, + { + "transactionHash": "0x4d22fbe905aa04ff9d6f735afb32845b4643a7e05c8f1505de640e19b70566cc", + "state": { + "depositToken": 0, + "blockNumber": 220669105, + "lastRebalancePrice": "2638878", + "state": "2", + "currentTick": "-266833", + "currentPrice": "2583267", + "twapSlow": "2589474", + "twapFast": "2583267", + "depositTokenBalance": "59675442", + "pairedTokenBalance": "19364", + "usedToken0": "1647524319804949228197", + "usedToken1": "12114232354", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0xfe30cb51bc1c27ad8bed78e95c180239d42a2051fd104a783946f3d43912d889", + "state": { + "depositToken": 0, + "blockNumber": 220775733, + "lastRebalancePrice": "2583267", + "state": "2", + "currentTick": "-267121", + "currentPrice": "2509934", + "twapSlow": "2574242", + "twapFast": "2509934", + "depositTokenBalance": "0", + "pairedTokenBalance": "25058", + "usedToken0": "1715743139573969195996", + "usedToken1": "11941270792", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267000" + }, + "limitPosition": { + "bottomTick": "-267000", + "topTick": "-266200" + } + } + }, + { + "transactionHash": "0xc17c88b810dce0a57e956a55cf6d254961c1185f1e761b00aa3f7dfc3535e1dc", + "state": { + "depositToken": 0, + "blockNumber": 221093164, + "lastRebalancePrice": "2509934", + "state": "2", + "currentTick": "-266905", + "currentPrice": "2564736", + "twapSlow": "2534398", + "twapFast": "2564736", + "depositTokenBalance": "0", + "pairedTokenBalance": "11743", + "usedToken0": "1483496015617540463703", + "usedToken1": "12534722741", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-266800" + }, + "limitPosition": { + "bottomTick": "-266800", + "topTick": "-266000" + } + } + }, + { + "transactionHash": "0x16e2ebdb1bfcab10654233bcad43a84ed7026650089e692b21ff53a64f35de43", + "state": { + "depositToken": 0, + "blockNumber": 221482219, + "lastRebalancePrice": "2564736", + "state": "2", + "currentTick": "-267292", + "currentPrice": "2467381", + "twapSlow": "2511691", + "twapFast": "2467381", + "depositTokenBalance": "0", + "pairedTokenBalance": "5379", + "usedToken0": "1578916316690577127252", + "usedToken1": "12299805071", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267200" + }, + "limitPosition": { + "bottomTick": "-267200", + "topTick": "-266400" + } + } + }, + { + "transactionHash": "0x794ba9d63e22b5ca8eb66c015870c836ee0fc6a76ddca52896c7946a45a52ac5", + "state": { + "depositToken": 0, + "blockNumber": 221605558, + "lastRebalancePrice": "2467381", + "state": "2", + "currentTick": "-267519", + "currentPrice": "2412005", + "twapSlow": "2436976", + "twapFast": "2412005", + "depositTokenBalance": "0", + "pairedTokenBalance": "20832", + "usedToken0": "1636697147336187940059", + "usedToken1": "12160718536", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267400" + }, + "limitPosition": { + "bottomTick": "-267400", + "topTick": "-266600" + } + } + }, + { + "transactionHash": "0x134df4d1415a9cb564d2a6925d491c7a5d030e0c06fc75688f8dc50f91140657", + "state": { + "depositToken": 0, + "blockNumber": 221674210, + "lastRebalancePrice": "2412005", + "state": "2", + "currentTick": "-267821", + "currentPrice": "2340255", + "twapSlow": "2401176", + "twapFast": "2342128", + "depositTokenBalance": "0", + "pairedTokenBalance": "17367", + "usedToken0": "1713736143294025316007", + "usedToken1": "11978768775", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267800" + }, + "limitPosition": { + "bottomTick": "-267800", + "topTick": "-267000" + } + } + }, + { + "transactionHash": "0x91e38aa421d119d722c49d58ee4fd1beb30a6d61136db02c9231b47242b999d9", + "state": { + "depositToken": 0, + "blockNumber": 221745326, + "lastRebalancePrice": "2340255", + "state": "2", + "currentTick": "-267650", + "currentPrice": "2380615", + "twapSlow": "2364247", + "twapFast": "2387290", + "depositTokenBalance": "0", + "pairedTokenBalance": "4142", + "usedToken0": "1381959961110198270344", + "usedToken1": "12764085314", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-267600" + }, + "limitPosition": { + "bottomTick": "-267600", + "topTick": "-266800" + } + } + }, + { + "transactionHash": "0xed6800c57ab5f8d876f97cdaddd97b84b1fd78ebd9ab59aa2b9bcdcd98042abf", + "state": { + "depositToken": 0, + "blockNumber": 221760142, + "lastRebalancePrice": "2380615", + "state": "2", + "currentTick": "-268639", + "currentPrice": "2156451", + "twapSlow": "2316507", + "twapFast": "2176817", + "depositTokenBalance": "0", + "pairedTokenBalance": "16085", + "usedToken0": "1658143302597589983052", + "usedToken1": "12163119011", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268600" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x09d814df22d1ac85458a9ab6b50a521b160551b1c133dde6cf43a07b5af5e38e", + "state": { + "depositToken": 0, + "blockNumber": 221775804, + "lastRebalancePrice": "2156451", + "state": "3", + "currentTick": "-269311", + "currentPrice": "2016306", + "twapSlow": "2042076", + "twapFast": "2016306", + "depositTokenBalance": "0", + "pairedTokenBalance": "92858", + "usedToken0": "1853101262200854167569", + "usedToken1": "11761169388", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "-268400" + } + } + }, + { + "transactionHash": "0x40e5d0ef4dd518d9699c48e67b7b49f4791e7f1f44c37c85f3b74141cc73853f", + "state": { + "depositToken": 0, + "blockNumber": 221813931, + "lastRebalancePrice": "2016306", + "state": "2", + "currentTick": "-268699", + "currentPrice": "2143552", + "twapSlow": "2048006", + "twapFast": "2145053", + "depositTokenBalance": "0", + "pairedTokenBalance": "9101", + "usedToken0": "671213417740702448024", + "usedToken1": "14233256347", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270800", + "topTick": "-268600" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x1ca55122a1e3080ffd548bad2ddbbd97e91374a813673f5768bb95a679f523d7", + "state": { + "depositToken": 0, + "blockNumber": 221947973, + "lastRebalancePrice": "2143552", + "state": "1", + "currentTick": "-268538", + "currentPrice": "2178341", + "twapSlow": "2127536", + "twapFast": "2178341", + "depositTokenBalance": "0", + "pairedTokenBalance": "30344", + "usedToken0": "346278004944702130926", + "usedToken1": "14967869643", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "-268600" + } + } + }, + { + "transactionHash": "0x646c828cfb04701fd1fbb6d2a3752d73cdc8966b747d971ee33ba23d93c82371", + "state": { + "depositToken": 0, + "blockNumber": 222251266, + "lastRebalancePrice": "2178341", + "state": "0", + "currentTick": "-268133", + "currentPrice": "2268370", + "twapSlow": "2204417", + "twapFast": "2268370", + "depositTokenBalance": "0", + "pairedTokenBalance": "160389", + "usedToken0": "342166263354154950727", + "usedToken1": "14995351859", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-268200" + } + } + }, + { + "transactionHash": "0xb9e3b8a24869c4feec28d3cb3288260c08f0f396645e8dc64e338e806fbfbe35", + "state": { + "depositToken": 0, + "blockNumber": 222549664, + "lastRebalancePrice": "2268370", + "state": "0", + "currentTick": "-267850", + "currentPrice": "2333478", + "twapSlow": "2282705", + "twapFast": "2333478", + "depositTokenBalance": "0", + "pairedTokenBalance": "540526", + "usedToken0": "337375242583375143727", + "usedToken1": "15006567244", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-268000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-270200", + "topTick": "-268000" + } + } + }, + { + "transactionHash": "0x7def784766ad5fcec668272c8733edbe98d7dc66065bfcc7026b9742f3a68c40", + "state": { + "depositToken": 0, + "blockNumber": 222771575, + "lastRebalancePrice": "2333478", + "state": "0", + "currentTick": "-268206", + "currentPrice": "2251872", + "twapSlow": "2327652", + "twapFast": "2251872", + "depositTokenBalance": "0", + "pairedTokenBalance": "540525", + "usedToken0": "985585055710929330718", + "usedToken1": "13531686521", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xad0d36f44f83ab3312e147f91ef3b38ba1facfc04645681abef91ad608f2656d", + "state": { + "depositToken": 0, + "blockNumber": 222787171, + "lastRebalancePrice": "2251872", + "state": "1", + "currentTick": "-268206", + "currentPrice": "2251872", + "twapSlow": "2251872", + "twapFast": "2251872", + "depositTokenBalance": "1963931839", + "pairedTokenBalance": "10803", + "usedToken0": "990832681997295474692", + "usedToken1": "13531708925", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x64e2cc087f6d4cbaabf55094be3c8b995aef37e119c087c2ca7e1f0d9b912f9a", + "state": { + "depositToken": 0, + "blockNumber": 222802808, + "lastRebalancePrice": "2251872", + "state": "1", + "currentTick": "-268206", + "currentPrice": "2251872", + "twapSlow": "2251872", + "twapFast": "2251872", + "depositTokenBalance": "1963931838", + "pairedTokenBalance": "10802", + "usedToken0": "990832681997295474691", + "usedToken1": "13531708924", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x331e0ecc639a140989785fe1f5b523ab17aebc25f13641fc546251634f548618", + "state": { + "depositToken": 0, + "blockNumber": 222818436, + "lastRebalancePrice": "2251872", + "state": "1", + "currentTick": "-268206", + "currentPrice": "2251872", + "twapSlow": "2251872", + "twapFast": "2251872", + "depositTokenBalance": "1963931837", + "pairedTokenBalance": "10801", + "usedToken0": "990832681997295474690", + "usedToken1": "13531708923", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0f15aaaa5357dab8401558144f6abf87d4d206c6be304b21701d1772ce117ce1", + "state": { + "depositToken": 0, + "blockNumber": 222834004, + "lastRebalancePrice": "2251872", + "state": "1", + "currentTick": "-268206", + "currentPrice": "2251872", + "twapSlow": "2251872", + "twapFast": "2251872", + "depositTokenBalance": "1963931836", + "pairedTokenBalance": "10800", + "usedToken0": "990832681997295474689", + "usedToken1": "13531708922", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb87ef30ff61ca462e86c6205029e0be01bae65c2a855826359ad0a073b13a8d0", + "state": { + "depositToken": 0, + "blockNumber": 222849679, + "lastRebalancePrice": "2251872", + "state": "1", + "currentTick": "-268206", + "currentPrice": "2251872", + "twapSlow": "2251872", + "twapFast": "2251872", + "depositTokenBalance": "1963931835", + "pairedTokenBalance": "10799", + "usedToken0": "990832681997295474688", + "usedToken1": "13531708921", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-267800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1a6b8912c603d957c73f3198d1c48cc221ca476274dd1a4b7affe62aa9808b16", + "state": { + "depositToken": 0, + "blockNumber": 222865148, + "lastRebalancePrice": "2251872", + "state": "1", + "currentTick": "-268350", + "currentPrice": "2219679", + "twapSlow": "2236388", + "twapFast": "2219679", + "depositTokenBalance": "1963931834", + "pairedTokenBalance": "10798", + "usedToken0": "1349187448663148102379", + "usedToken1": "12730474701", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "-268000" + }, + "limitPosition": { + "bottomTick": "-268000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x1c9194b8492d5c87f71dfedeedbeb9f53fa813db61b780627da77ed9091e9fbe", + "state": { + "depositToken": 0, + "blockNumber": 222980932, + "lastRebalancePrice": "2219679", + "state": "1", + "currentTick": "-268395", + "currentPrice": "2209713", + "twapSlow": "2219901", + "twapFast": "2209713", + "depositTokenBalance": "0", + "pairedTokenBalance": "144249", + "usedToken0": "1485806718977920404718", + "usedToken1": "12434311807", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268200" + }, + "limitPosition": { + "bottomTick": "-268200", + "topTick": "-267600" + } + } + }, + { + "transactionHash": "0x905bef452f00a76128be8edcaf7c0620b97119622a2728d7b2636cca295712ec", + "state": { + "depositToken": 0, + "blockNumber": 222998132, + "lastRebalancePrice": "2209713", + "state": "2", + "currentTick": "-268699", + "currentPrice": "2143552", + "twapSlow": "2184012", + "twapFast": "2143552", + "depositTokenBalance": "0", + "pairedTokenBalance": "14948", + "usedToken0": "1573122321639555641537", + "usedToken1": "12247320582", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268600" + }, + "limitPosition": { + "bottomTick": "-268600", + "topTick": "-267800" + } + } + }, + { + "transactionHash": "0x7134bb7d7a96b4e3061f2840c39628b765a85952376fdc60ee07a2435485cd3d", + "state": { + "depositToken": 0, + "blockNumber": 223185707, + "lastRebalancePrice": "2143552", + "state": "2", + "currentTick": "-268958", + "currentPrice": "2088750", + "twapSlow": "2111851", + "twapFast": "2088750", + "depositTokenBalance": "0", + "pairedTokenBalance": "19508", + "usedToken0": "1648160902837849694677", + "usedToken1": "12090003062", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-268800" + }, + "limitPosition": { + "bottomTick": "-268800", + "topTick": "-268200" + } + } + }, + { + "transactionHash": "0x62d618cb2d4809fb9627dc6e52ae67143bb1713b612cd1a9f5a8687ba3be13d7", + "state": { + "depositToken": 0, + "blockNumber": 224165493, + "lastRebalancePrice": "2088750", + "state": "2", + "currentTick": "-269295", + "currentPrice": "2019535", + "twapSlow": "2090212", + "twapFast": "2019535", + "depositTokenBalance": "0", + "pairedTokenBalance": "18373", + "usedToken0": "1747268435413336584697", + "usedToken1": "11887675621", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269200" + }, + "limitPosition": { + "bottomTick": "-269200", + "topTick": "-268400" + } + } + }, + { + "transactionHash": "0x68f8247051649d33a46c8390e421b0069d28934ba0621c6df9d65ce9b4e7e9ad", + "state": { + "depositToken": 0, + "blockNumber": 225838312, + "lastRebalancePrice": "2019535", + "state": "2", + "currentTick": "-269920", + "currentPrice": "1897183", + "twapSlow": "1993452", + "twapFast": "1902312", + "depositTokenBalance": "0", + "pairedTokenBalance": "18188", + "usedToken0": "1936059930848204123824", + "usedToken1": "11525062373", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269800" + }, + "limitPosition": { + "bottomTick": "-269800", + "topTick": "-269000" + } + } + }, + { + "transactionHash": "0x1d2bf08afbf3b3fda8ab557d9dcdfe81b570bb27cb7fe1cfa3db3f33a6416194", + "state": { + "depositToken": 0, + "blockNumber": 225840221, + "lastRebalancePrice": "1897183", + "state": "2", + "currentTick": "-270509", + "currentPrice": "1788672", + "twapSlow": "1975592", + "twapFast": "1855718", + "depositTokenBalance": "0", + "pairedTokenBalance": "11856", + "usedToken0": "2121292818716693610557", + "usedToken1": "11194402047", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x5dcc33242d244db84508e2db68a415e26960ea21eca052042d677496786680f4", + "state": { + "depositToken": 0, + "blockNumber": 225855861, + "lastRebalancePrice": "1788672", + "state": "3", + "currentTick": "-270942", + "currentPrice": "1712879", + "twapSlow": "1715450", + "twapFast": "1712879", + "depositTokenBalance": "0", + "pairedTokenBalance": "242821", + "usedToken0": "2259703847215396458561", + "usedToken1": "10954686679", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270800" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "-270000" + } + } + }, + { + "transactionHash": "0xbc750aa67b484fe84678ee70adb00ae15759fdd2c3ba02a12050d70dd4ef0c72", + "state": { + "depositToken": 0, + "blockNumber": 225992106, + "lastRebalancePrice": "1712879", + "state": "2", + "currentTick": "-270254", + "currentPrice": "1834867", + "twapSlow": "1732863", + "twapFast": "1834867", + "depositTokenBalance": "0", + "pairedTokenBalance": "28387", + "usedToken0": "693799405215004290925", + "usedToken1": "13749806343", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2b8cf398fc741148e978e8d8c4f0090bd606b7de980ed8daeeabd0115a03e7d7", + "state": { + "depositToken": 0, + "blockNumber": 226007732, + "lastRebalancePrice": "1834867", + "state": "1", + "currentTick": "-270261", + "currentPrice": "1833583", + "twapSlow": "1833950", + "twapFast": "1833583", + "depositTokenBalance": "3504748774", + "pairedTokenBalance": "3232", + "usedToken0": "712231384823350366713", + "usedToken1": "13739106732", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x70098b187761109a915b09a267c6e07e027fbbca085191a7d38aa7e5c4097716", + "state": { + "depositToken": 0, + "blockNumber": 226023328, + "lastRebalancePrice": "1833583", + "state": "1", + "currentTick": "-270270", + "currentPrice": "1831934", + "twapSlow": "1833033", + "twapFast": "1831934", + "depositTokenBalance": "3502625054", + "pairedTokenBalance": "3882", + "usedToken0": "737375476227915341106", + "usedToken1": "13693292911", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9d5d4e83d7c2b5fa53228ec8910c5877d5a4be11fd1159f81e7da480e33270be", + "state": { + "depositToken": 0, + "blockNumber": 226038934, + "lastRebalancePrice": "1831934", + "state": "1", + "currentTick": "-270273", + "currentPrice": "1831384", + "twapSlow": "1831384", + "twapFast": "1831384", + "depositTokenBalance": "3499833510", + "pairedTokenBalance": "8468", + "usedToken0": "744574590988139705438", + "usedToken1": "13680475862", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2ba0c625d12105f24c877a5c8d5eda100804d4700a25d7d29f95749aef5d3c79", + "state": { + "depositToken": 0, + "blockNumber": 226054525, + "lastRebalancePrice": "1831384", + "state": "1", + "currentTick": "-270273", + "currentPrice": "1831384", + "twapSlow": "1831384", + "twapFast": "1831384", + "depositTokenBalance": "3499060399", + "pairedTokenBalance": "12916", + "usedToken0": "744631133408180834388", + "usedToken1": "13680475861", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5e8a3dbbd0197441e75ea265c3f608374fbcf6aee1b3933e6ebbef718a7071d5", + "state": { + "depositToken": 0, + "blockNumber": 226070040, + "lastRebalancePrice": "1831384", + "state": "1", + "currentTick": "-270273", + "currentPrice": "1831384", + "twapSlow": "1831384", + "twapFast": "1831384", + "depositTokenBalance": "3499060398", + "pairedTokenBalance": "12915", + "usedToken0": "744631133408180834387", + "usedToken1": "13680475860", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfbe3ca7bbb55c906e3539c05c7111ef73f6036c7a1d988d7e736711af7862ed7", + "state": { + "depositToken": 0, + "blockNumber": 226085709, + "lastRebalancePrice": "1831384", + "state": "1", + "currentTick": "-270273", + "currentPrice": "1831384", + "twapSlow": "1831384", + "twapFast": "1831384", + "depositTokenBalance": "3499060397", + "pairedTokenBalance": "12914", + "usedToken0": "744631133408180834386", + "usedToken1": "13680475859", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9d532a4890953e21c3967b22805059f615182715206e509192dd435bb0079746", + "state": { + "depositToken": 0, + "blockNumber": 226101371, + "lastRebalancePrice": "1831384", + "state": "1", + "currentTick": "-270274", + "currentPrice": "1831201", + "twapSlow": "1831201", + "twapFast": "1831201", + "depositTokenBalance": "3499060396", + "pairedTokenBalance": "12913", + "usedToken0": "749377727824688640202", + "usedToken1": "13671783093", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8f054891f4626646e7a56d28b5a8bf97f4b89fc94b2975a955582ac6b0c10c21", + "state": { + "depositToken": 0, + "blockNumber": 226116957, + "lastRebalancePrice": "1831201", + "state": "1", + "currentTick": "-270274", + "currentPrice": "1831201", + "twapSlow": "1831201", + "twapFast": "1831201", + "depositTokenBalance": "3498539712", + "pairedTokenBalance": "3890", + "usedToken0": "749416084143205874996", + "usedToken1": "13671783092", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x231bae995441468aa95a1e67f6d11b74b197466783dc4e42b125afc1d639b0f1", + "state": { + "depositToken": 0, + "blockNumber": 226132631, + "lastRebalancePrice": "1831201", + "state": "1", + "currentTick": "-270014", + "currentPrice": "1879434", + "twapSlow": "1868379", + "twapFast": "1879434", + "depositTokenBalance": "3498539711", + "pairedTokenBalance": "3889", + "usedToken0": "37091099653575662760", + "usedToken1": "14993287678", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272400", + "topTick": "-270200" + } + } + }, + { + "transactionHash": "0x1fa388723821b7a41274a841e52e92162c3a134fc9deebbdd49f0f3af6a22a1c", + "state": { + "depositToken": 0, + "blockNumber": 226202888, + "lastRebalancePrice": "1879434", + "state": "0", + "currentTick": "-269388", + "currentPrice": "2000841", + "twapSlow": "1887910", + "twapFast": "1981726", + "depositTokenBalance": "0", + "pairedTokenBalance": "24540", + "usedToken0": "36051560253142399516", + "usedToken1": "15006391151", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271800", + "topTick": "-269400" + } + } + }, + { + "transactionHash": "0x6b495a43f27d6b666c6bb976ce8a86d7e77461c109f4b0af8b2e9813e59f8284", + "state": { + "depositToken": 0, + "blockNumber": 226663870, + "lastRebalancePrice": "2000841", + "state": "0", + "currentTick": "-269593", + "currentPrice": "1960244", + "twapSlow": "1964168", + "twapFast": "1960244", + "depositTokenBalance": "0", + "pairedTokenBalance": "101404", + "usedToken0": "678319877978050338001", + "usedToken1": "13735167371", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272000", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x8c1f2e2d253ca0e0f1afcbed9e856abfef325bbf8ba3be4d20509da648df95a5", + "state": { + "depositToken": 0, + "blockNumber": 226700297, + "lastRebalancePrice": "1960244", + "state": "0", + "currentTick": "-269605", + "currentPrice": "1957893", + "twapSlow": "1959852", + "twapFast": "1957893", + "depositTokenBalance": "0", + "pairedTokenBalance": "503162", + "usedToken0": "698690878341289918501", + "usedToken1": "13706773037", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": { + "bottomTick": "-269400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x9f3b8ff13fe71a3393777489ffc0578b3b2cd3a89567a6371d00492269487018", + "state": { + "depositToken": 0, + "blockNumber": 226747132, + "lastRebalancePrice": "1957893", + "state": "1", + "currentTick": "-269523", + "currentPrice": "1974013", + "twapSlow": "1956327", + "twapFast": "1974013", + "depositTokenBalance": "0", + "pairedTokenBalance": "558374", + "usedToken0": "421418603614962853633", + "usedToken1": "14252139809", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271800", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x9972e934a7094ad72f48a48fd7cda0136ea802b4b313dcb8791905493b6905bb", + "state": { + "depositToken": 0, + "blockNumber": 227285566, + "lastRebalancePrice": "1974013", + "state": "0", + "currentTick": "-269741", + "currentPrice": "1931447", + "twapSlow": "2000641", + "twapFast": "1930482", + "depositTokenBalance": "0", + "pairedTokenBalance": "446041", + "usedToken0": "917764573338621450413", + "usedToken1": "13293009237", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x26952426f847cde2a877dcde233dc8866ab05a0d4eb062ab9dc4c51d45466937", + "state": { + "depositToken": 0, + "blockNumber": 227301191, + "lastRebalancePrice": "1931447", + "state": "1", + "currentTick": "-269741", + "currentPrice": "1931447", + "twapSlow": "1931447", + "twapFast": "1931447", + "depositTokenBalance": "2973391902", + "pairedTokenBalance": "8558", + "usedToken0": "923586368891488002062", + "usedToken1": "13296517352", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x558ff194630fc2f5631ea2795c8a5f02ce136326b3a9ecf51204f9560e518d7b", + "state": { + "depositToken": 0, + "blockNumber": 227316830, + "lastRebalancePrice": "1931447", + "state": "1", + "currentTick": "-269739", + "currentPrice": "1931833", + "twapSlow": "1931447", + "twapFast": "1931833", + "depositTokenBalance": "2973391901", + "pairedTokenBalance": "8557", + "usedToken0": "916836752456361626851", + "usedToken1": "13309555504", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3916e83578b8b58c389f90b09b6256f5c5c3401afb7ba6bedb443d554bafcf27", + "state": { + "depositToken": 0, + "blockNumber": 227332440, + "lastRebalancePrice": "1931833", + "state": "1", + "currentTick": "-269737", + "currentPrice": "1932220", + "twapSlow": "1932027", + "twapFast": "1932220", + "depositTokenBalance": "2973497259", + "pairedTokenBalance": "8556", + "usedToken0": "910841948083881356480", + "usedToken1": "13321243655", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5d48799d24da221da1b9625d0cde6a7fdbc2ae98ef8faf12733f432c2081c087", + "state": { + "depositToken": 0, + "blockNumber": 227348050, + "lastRebalancePrice": "1932220", + "state": "1", + "currentTick": "-269737", + "currentPrice": "1932220", + "twapSlow": "1932220", + "twapFast": "1932220", + "depositTokenBalance": "2973590856", + "pairedTokenBalance": "8555", + "usedToken0": "910841948083881356479", + "usedToken1": "13321337252", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xac2b51889a433a1cbb16120f1bb097a1aa9cb93b277eccf93b3e44232fa3cb37", + "state": { + "depositToken": 0, + "blockNumber": 227363673, + "lastRebalancePrice": "1932220", + "state": "1", + "currentTick": "-269723", + "currentPrice": "1934927", + "twapSlow": "1932413", + "twapFast": "1933766", + "depositTokenBalance": "2973590855", + "pairedTokenBalance": "8554", + "usedToken0": "873200927983625416053", + "usedToken1": "13394123060", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2cf95b2e542a35e2a4dd7fb9693057c16938556a71fa5cd5702465ebd73bf898", + "state": { + "depositToken": 0, + "blockNumber": 227379294, + "lastRebalancePrice": "1934927", + "state": "1", + "currentTick": "-269425", + "currentPrice": "1993452", + "twapSlow": "1992655", + "twapFast": "1993452", + "depositTokenBalance": "2974179022", + "pairedTokenBalance": "8553", + "usedToken0": "67020198140609508665", + "usedToken1": "14978068854", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271800", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0xaa8709333037dd1bfed5ad6f835e0ef9317ea4703845c6dfdce47d3ae1081f5a", + "state": { + "depositToken": 0, + "blockNumber": 227439957, + "lastRebalancePrice": "1993452", + "state": "0", + "currentTick": "-269150", + "currentPrice": "2049030", + "twapSlow": "1998042", + "twapFast": "2049030", + "depositTokenBalance": "0", + "pairedTokenBalance": "624489", + "usedToken0": "66103409533940957400", + "usedToken1": "14992716595", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271400", + "topTick": "-269200" + } + } + }, + { + "transactionHash": "0x64014173ce934438817e64ce1557e87010bb5d7eaf65e0947fbd8c3f227c99c3", + "state": { + "depositToken": 0, + "blockNumber": 227729989, + "lastRebalancePrice": "2049030", + "state": "0", + "currentTick": "-268847", + "currentPrice": "2112063", + "twapSlow": "2063217", + "twapFast": "2112063", + "depositTokenBalance": "0", + "pairedTokenBalance": "624488", + "usedToken0": "65110118105049394685", + "usedToken1": "14994798013", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271200", + "topTick": "-269000" + } + } + }, + { + "transactionHash": "0x7e816b06cec5348198194132417988e786df8a234782d57bd8b655928c5f9975", + "state": { + "depositToken": 0, + "blockNumber": 228251061, + "lastRebalancePrice": "2112063", + "state": "0", + "currentTick": "-269059", + "currentPrice": "2067760", + "twapSlow": "2091257", + "twapFast": "2067760", + "depositTokenBalance": "0", + "pairedTokenBalance": "624487", + "usedToken0": "269399797369944300821", + "usedToken1": "14571129466", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271400", + "topTick": "-269200" + } + } + }, + { + "transactionHash": "0x4ba97c120df12e6caae6b86ad53888222c62b251ce43526fe2ac80ee3ae135cc", + "state": { + "depositToken": 0, + "blockNumber": 228437082, + "lastRebalancePrice": "2067760", + "state": "0", + "currentTick": "-269311", + "currentPrice": "2016306", + "twapSlow": "2048825", + "twapFast": "2016306", + "depositTokenBalance": "0", + "pairedTokenBalance": "84395", + "usedToken0": "651545449474650508310", + "usedToken1": "13799681844", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-271600", + "topTick": "-269400" + } + } + }, + { + "transactionHash": "0x890440d77b42decf3d612147030a906485730a0c637466868ca110d80283de97", + "state": { + "depositToken": 0, + "blockNumber": 228521627, + "lastRebalancePrice": "2016306", + "state": "0", + "currentTick": "-269413", + "currentPrice": "1995846", + "twapSlow": "2014493", + "twapFast": "1995846", + "depositTokenBalance": "0", + "pairedTokenBalance": "241513", + "usedToken0": "699636380282970069348", + "usedToken1": "13709772636", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271600", + "topTick": "-269200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4df0cf440502c5cb4a80983dbb5dabbd2b59336de0dbb30256a7e7792d7701b7", + "state": { + "depositToken": 0, + "blockNumber": 228668295, + "lastRebalancePrice": "1995846", + "state": "1", + "currentTick": "-269762", + "currentPrice": "1927395", + "twapSlow": "1981132", + "twapFast": "1980339", + "depositTokenBalance": "26944489", + "pairedTokenBalance": "8948", + "usedToken0": "1864080350350565651183", + "usedToken1": "11426538709", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269600" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x4580582793a1a7d50ec73fdceba1ff739e5e6657d098cefb44f63253e5eb95b2", + "state": { + "depositToken": 0, + "blockNumber": 228683859, + "lastRebalancePrice": "1927395", + "state": "3", + "currentTick": "-269762", + "currentPrice": "1927395", + "twapSlow": "1927395", + "twapFast": "1927395", + "depositTokenBalance": "0", + "pairedTokenBalance": "20675", + "usedToken0": "1873489867603980523866", + "usedToken1": "11426544146", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269600" + }, + "limitPosition": { + "bottomTick": "-269600", + "topTick": "-269000" + } + } + }, + { + "transactionHash": "0x4ba28296523cbb4c35aa5e97263cf883510e7057b3a0411ba056767015e905a8", + "state": { + "depositToken": 0, + "blockNumber": 228852330, + "lastRebalancePrice": "1927395", + "state": "2", + "currentTick": "-270380", + "currentPrice": "1811894", + "twapSlow": "1888855", + "twapFast": "1811894", + "depositTokenBalance": "0", + "pairedTokenBalance": "19559", + "usedToken0": "2059384767413351600760", + "usedToken1": "11079125944", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270200" + }, + "limitPosition": { + "bottomTick": "-270200", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x3c0cfda419f6b7b1403d9a3d3b28b8e947285c1936c4e68b8ced79eb276ae58f", + "state": { + "depositToken": 0, + "blockNumber": 228898464, + "lastRebalancePrice": "1811894", + "state": "2", + "currentTick": "-270739", + "currentPrice": "1748004", + "twapSlow": "1778862", + "twapFast": "1748004", + "depositTokenBalance": "0", + "pairedTokenBalance": "25887", + "usedToken0": "2171934450196233217627", + "usedToken1": "10882360880", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270600" + }, + "limitPosition": { + "bottomTick": "-270600", + "topTick": "-269800" + } + } + }, + { + "transactionHash": "0xfe9c5b34271b5edc47b438216ceb52123b444623a8757ac0fbb684261e3a2175", + "state": { + "depositToken": 0, + "blockNumber": 229407717, + "lastRebalancePrice": "1748004", + "state": "2", + "currentTick": "-270505", + "currentPrice": "1789387", + "twapSlow": "1750278", + "twapFast": "1789387", + "depositTokenBalance": "0", + "pairedTokenBalance": "27936", + "usedToken0": "1871445048594520916821", + "usedToken1": "11418223904", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x5c118455fb37c6c41a89cf0fa94af047c1ebad32a7a28814212f23e513dfce88", + "state": { + "depositToken": 0, + "blockNumber": 229886142, + "lastRebalancePrice": "1789387", + "state": "2", + "currentTick": "-270797", + "currentPrice": "1737895", + "twapSlow": "1767160", + "twapFast": "1737895", + "depositTokenBalance": "0", + "pairedTokenBalance": "28604", + "usedToken0": "1965664978264982478774", + "usedToken1": "11257635438", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270600" + }, + "limitPosition": { + "bottomTick": "-270600", + "topTick": "-270000" + } + } + }, + { + "transactionHash": "0x5bc6f192f569c4890c99b05b41663cb1780d05979c2d3eb3437dd8921cea9373", + "state": { + "depositToken": 0, + "blockNumber": 230282591, + "lastRebalancePrice": "1737895", + "state": "2", + "currentTick": "-270553", + "currentPrice": "1780819", + "twapSlow": "1761515", + "twapFast": "1780641", + "depositTokenBalance": "0", + "pairedTokenBalance": "19457", + "usedToken0": "1750426740875193745665", + "usedToken1": "11640260204", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-269800" + } + } + }, + { + "transactionHash": "0x11c3f269d6f75242f4694742255d7e5a81626e1d999c5a83901a540300177106", + "state": { + "depositToken": 0, + "blockNumber": 231129891, + "lastRebalancePrice": "1780819", + "state": "2", + "currentTick": "-270785", + "currentPrice": "1739982", + "twapSlow": "1745035", + "twapFast": "1739982", + "depositTokenBalance": "0", + "pairedTokenBalance": "24624", + "usedToken0": "1827258555003094192805", + "usedToken1": "11509947456", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270600" + }, + "limitPosition": { + "bottomTick": "-270600", + "topTick": "-270000" + } + } + }, + { + "transactionHash": "0x1a673b5bfea3a823cfd14060d05f6419426028912e7b69eb512d5b196c00cb42", + "state": { + "depositToken": 0, + "blockNumber": 231476133, + "lastRebalancePrice": "1739982", + "state": "2", + "currentTick": "-271135", + "currentPrice": "1680139", + "twapSlow": "1714250", + "twapFast": "1680139", + "depositTokenBalance": "0", + "pairedTokenBalance": "16056", + "usedToken0": "1944912350614607618499", + "usedToken1": "11311102280", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271000" + }, + "limitPosition": { + "bottomTick": "-271000", + "topTick": "-270200" + } + } + }, + { + "transactionHash": "0x13b6f8cfb0ac36911e7b285c5e008633ff3bbe140532ecb739f2615a9549d3e8", + "state": { + "depositToken": 0, + "blockNumber": 231478073, + "lastRebalancePrice": "1680139", + "state": "2", + "currentTick": "-271658", + "currentPrice": "1594530", + "twapSlow": "1700251", + "twapFast": "1597882", + "depositTokenBalance": "0", + "pairedTokenBalance": "10477", + "usedToken0": "2124182475060062160290", + "usedToken1": "11019198154", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271600" + }, + "limitPosition": { + "bottomTick": "-271600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x167cc80d99e67e61d0b1cbaa0a35242dbd6a8a5e5198d0a9bfa4703dfd70e655", + "state": { + "depositToken": 0, + "blockNumber": 231493808, + "lastRebalancePrice": "1594530", + "state": "3", + "currentTick": "-271408", + "currentPrice": "1634894", + "twapSlow": "1596444", + "twapFast": "1619275", + "depositTokenBalance": "0", + "pairedTokenBalance": "206142", + "usedToken0": "2085721098579866583039", + "usedToken1": "11083431437", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271400" + }, + "limitPosition": { + "bottomTick": "-271400", + "topTick": "-270600" + } + } + }, + { + "transactionHash": "0x23d6730ad4ca659d4375f6373d8588ed837fcddc2cef936ae7dd6554b3f62145", + "state": { + "depositToken": 0, + "blockNumber": 231509437, + "lastRebalancePrice": "1634894", + "state": "2", + "currentTick": "-271155", + "currentPrice": "1676782", + "twapSlow": "1676782", + "twapFast": "1676782", + "depositTokenBalance": "0", + "pairedTokenBalance": "8493", + "usedToken0": "1435418621903859679118", + "usedToken1": "12161403042", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273200", + "topTick": "-270800" + }, + "limitPosition": { + "bottomTick": "-270800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x99f14da41219918378bd0753a8f2cb5a99e2ad918c67c942ebdb88d2e32526a1", + "state": { + "depositToken": 0, + "blockNumber": 231612481, + "lastRebalancePrice": "1676782", + "state": "1", + "currentTick": "-270846", + "currentPrice": "1729401", + "twapSlow": "1697533", + "twapFast": "1729401", + "depositTokenBalance": "0", + "pairedTokenBalance": "549128", + "usedToken0": "297355561330458335518", + "usedToken1": "14129068597", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "-271000" + } + } + }, + { + "transactionHash": "0xfa874fcb5a0e47c714b6efb9dc5806d8fb74ba5e42edaef916958e016818cf18", + "state": { + "depositToken": 0, + "blockNumber": 231877494, + "lastRebalancePrice": "1729401", + "state": "0", + "currentTick": "-270698", + "currentPrice": "1755185", + "twapSlow": "1731131", + "twapFast": "1753080", + "depositTokenBalance": "0", + "pairedTokenBalance": "14617", + "usedToken0": "299742306593348630283", + "usedToken1": "14156571448", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-273000", + "topTick": "-270800" + } + } + }, + { + "transactionHash": "0x100ab67fa6f71ee995ee58c5f0df9ef22084fd4c283f91dbcc981c823f08ad63", + "state": { + "depositToken": 0, + "blockNumber": 232002349, + "lastRebalancePrice": "1755185", + "state": "0", + "currentTick": "-270377", + "currentPrice": "1812438", + "twapSlow": "1773179", + "twapFast": "1812438", + "depositTokenBalance": "0", + "pairedTokenBalance": "399254", + "usedToken0": "297325563524838007516", + "usedToken1": "14169266879", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272800", + "topTick": "-270400" + } + } + }, + { + "transactionHash": "0x0bff3fa3b54240c629e3a67c1d0e8f7110b6ca6e43611fdc6b936051d8e190b3", + "state": { + "depositToken": 0, + "blockNumber": 232228002, + "lastRebalancePrice": "1812438", + "state": "0", + "currentTick": "-270590", + "currentPrice": "1774243", + "twapSlow": "1804842", + "twapFast": "1774243", + "depositTokenBalance": "0", + "pairedTokenBalance": "217282", + "usedToken0": "961077175931912506696", + "usedToken1": "12987369876", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272800", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xbab8e849e7f5fa00f67564884e43a758bd9dccea53628f4ab08c2dae0c21f7d0", + "state": { + "depositToken": 0, + "blockNumber": 232255627, + "lastRebalancePrice": "1774243", + "state": "1", + "currentTick": "-270460", + "currentPrice": "1797457", + "twapSlow": "1778862", + "twapFast": "1797457", + "depositTokenBalance": "0", + "pairedTokenBalance": "312094", + "usedToken0": "512831328827991117096", + "usedToken1": "13797409416", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272800", + "topTick": "-270600" + } + } + }, + { + "transactionHash": "0xbfc52b3900b029aca4b281f9b54cf78a4ebff7bedd69d475251f2c250b5fef54", + "state": { + "depositToken": 0, + "blockNumber": 232388671, + "lastRebalancePrice": "1797457", + "state": "0", + "currentTick": "-270217", + "currentPrice": "1841668", + "twapSlow": "1833400", + "twapFast": "1841668", + "depositTokenBalance": "0", + "pairedTokenBalance": "280351", + "usedToken0": "506637123732881862296", + "usedToken1": "13815225268", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272600", + "topTick": "-270400" + } + } + }, + { + "transactionHash": "0xf3f866364566c982a98d5df87ea97e48d18cc3ab3f1c2f2f68f00a5de4f6c432", + "state": { + "depositToken": 0, + "blockNumber": 232533170, + "lastRebalancePrice": "1841668", + "state": "0", + "currentTick": "-269808", + "currentPrice": "1918550", + "twapSlow": "1863900", + "twapFast": "1914909", + "depositTokenBalance": "0", + "pairedTokenBalance": "280350", + "usedToken0": "496373073780305481678", + "usedToken1": "13834610520", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272200", + "topTick": "-270000" + } + } + }, + { + "transactionHash": "0x25a14c26450ba96005e06ca4eafe4cafd4e291cd44f1e595750c99c73c3ab0ab", + "state": { + "depositToken": 0, + "blockNumber": 232868047, + "lastRebalancePrice": "1918550", + "state": "0", + "currentTick": "-269580", + "currentPrice": "1962793", + "twapSlow": "1941516", + "twapFast": "1962793", + "depositTokenBalance": "0", + "pairedTokenBalance": "280349", + "usedToken0": "490741412235204925380", + "usedToken1": "13845695635", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272000", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x364e2fae65a53c4d5255a1d6aad2139d92881456dbac0d213567ef931eba9b1d", + "state": { + "depositToken": 0, + "blockNumber": 232922627, + "lastRebalancePrice": "1962793", + "state": "0", + "currentTick": "-269729", + "currentPrice": "1933766", + "twapSlow": "1960244", + "twapFast": "1933766", + "depositTokenBalance": "0", + "pairedTokenBalance": "503806", + "usedToken0": "894418476607103406021", + "usedToken1": "13060393968", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc9b2106e96829d06ac45003a2e082e31384652b5b9d081e6f5456a0264c207c4", + "state": { + "depositToken": 0, + "blockNumber": 232938264, + "lastRebalancePrice": "1933766", + "state": "1", + "currentTick": "-269756", + "currentPrice": "1928552", + "twapSlow": "1930675", + "twapFast": "1928552", + "depositTokenBalance": "2578112709", + "pairedTokenBalance": "11500", + "usedToken0": "972910175334251515282", + "usedToken1": "12915108253", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x76e20288ab5b415f9a05fa8e9b064377f92ce0d711b42c188691b20377088947", + "state": { + "depositToken": 0, + "blockNumber": 232953892, + "lastRebalancePrice": "1928552", + "state": "1", + "currentTick": "-269775", + "currentPrice": "1924892", + "twapSlow": "1926239", + "twapFast": "1924892", + "depositTokenBalance": "2571653651", + "pairedTokenBalance": "7343", + "usedToken0": "1026057126744722741573", + "usedToken1": "12813878899", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd23160203a5db39b1803f8e979c28984e876c7e41dc7ad48fe7aa7ac48c5df25", + "state": { + "depositToken": 0, + "blockNumber": 232969511, + "lastRebalancePrice": "1924892", + "state": "1", + "currentTick": "-269775", + "currentPrice": "1924892", + "twapSlow": "1924892", + "twapFast": "1924892", + "depositTokenBalance": "1610632690", + "pairedTokenBalance": "12887", + "usedToken0": "1026481684561671232382", + "usedToken1": "12813878898", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x31ec372c53ad1233b57cefeabf97d124183a92fe9d34797cd83fb85f6ad654a7", + "state": { + "depositToken": 0, + "blockNumber": 232985071, + "lastRebalancePrice": "1924892", + "state": "1", + "currentTick": "-269775", + "currentPrice": "1924892", + "twapSlow": "1924892", + "twapFast": "1924892", + "depositTokenBalance": "1610632689", + "pairedTokenBalance": "12886", + "usedToken0": "1026481684561671232381", + "usedToken1": "12813878897", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe8236bd1bdc34492928beb57e1f53313f5d41bbe9051a736974c22921612efc4", + "state": { + "depositToken": 0, + "blockNumber": 233000695, + "lastRebalancePrice": "1924892", + "state": "1", + "currentTick": "-269646", + "currentPrice": "1949882", + "twapSlow": "1942487", + "twapFast": "1949882", + "depositTokenBalance": "1610632688", + "pairedTokenBalance": "12885", + "usedToken0": "670411235744049110017", + "usedToken1": "13503727293", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x56a6874cdcb283089c580045cc085629fc02ca34c22dba92bbfd3df301b89dc1", + "state": { + "depositToken": 0, + "blockNumber": 233016316, + "lastRebalancePrice": "1949882", + "state": "1", + "currentTick": "-269646", + "currentPrice": "1949882", + "twapSlow": "1949882", + "twapFast": "1949882", + "depositTokenBalance": "2572990194", + "pairedTokenBalance": "4143", + "usedToken0": "670411235744049110016", + "usedToken1": "13509301827", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7410147c217fe2d93efde0689bdd33ca87098986622ff440d463eaea615e7a4d", + "state": { + "depositToken": 0, + "blockNumber": 233031961, + "lastRebalancePrice": "1949882", + "state": "1", + "currentTick": "-269646", + "currentPrice": "1949882", + "twapSlow": "1949882", + "twapFast": "1949882", + "depositTokenBalance": "2572990193", + "pairedTokenBalance": "4142", + "usedToken0": "670411235744049110015", + "usedToken1": "13509301826", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8607dbf4fef5d814794c27a5c8a800a3d69de284aaf01711f6590f6419060f4f", + "state": { + "depositToken": 0, + "blockNumber": 233047586, + "lastRebalancePrice": "1949882", + "state": "1", + "currentTick": "-269646", + "currentPrice": "1949882", + "twapSlow": "1949882", + "twapFast": "1949882", + "depositTokenBalance": "2572990192", + "pairedTokenBalance": "4141", + "usedToken0": "670411235744049110014", + "usedToken1": "13509301825", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa9116c9879b971ab1702947be41baf5d572a87c70934486ba27f978573075492", + "state": { + "depositToken": 0, + "blockNumber": 233063216, + "lastRebalancePrice": "1949882", + "state": "1", + "currentTick": "-269640", + "currentPrice": "1951052", + "twapSlow": "1950857", + "twapFast": "1951052", + "depositTokenBalance": "2572990191", + "pairedTokenBalance": "4140", + "usedToken0": "654644807849707521218", + "usedToken1": "13540054447", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8a4ab064f5cc573161db1707ab5e979ca34aa2a17f293e24e001c08c53c71680", + "state": { + "depositToken": 0, + "blockNumber": 233078829, + "lastRebalancePrice": "1951052", + "state": "1", + "currentTick": "-269625", + "currentPrice": "1953981", + "twapSlow": "1953981", + "twapFast": "1953981", + "depositTokenBalance": "2573238697", + "pairedTokenBalance": "4139", + "usedToken0": "611498762399094668894", + "usedToken1": "13624550244", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x73037916e6f3b2f6a5c668c0bad84d0dca29cbebe1ed592d9fc03d3544183d30", + "state": { + "depositToken": 0, + "blockNumber": 233094425, + "lastRebalancePrice": "1953981", + "state": "1", + "currentTick": "-269616", + "currentPrice": "1955740", + "twapSlow": "1953981", + "twapFast": "1954567", + "depositTokenBalance": "2573919483", + "pairedTokenBalance": "4138", + "usedToken0": "586546685783851555764", + "usedToken1": "13674013142", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9b88706af3e59e162a71071cda8151d7b2596de799212833d7483e9d7f450cba", + "state": { + "depositToken": 0, + "blockNumber": 233110079, + "lastRebalancePrice": "1955740", + "state": "1", + "currentTick": "-269611", + "currentPrice": "1956718", + "twapSlow": "1955936", + "twapFast": "1956718", + "depositTokenBalance": "2574313681", + "pairedTokenBalance": "4137", + "usedToken0": "573615209029490063183", + "usedToken1": "13699706261", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa7e4ccd197d0f20bc31a6c4badea49eb2c2cfb33eff562f6b681db95345b8e56", + "state": { + "depositToken": 0, + "blockNumber": 233125735, + "lastRebalancePrice": "1956718", + "state": "1", + "currentTick": "-269611", + "currentPrice": "1956718", + "twapSlow": "1956718", + "twapFast": "1956718", + "depositTokenBalance": "2574518116", + "pairedTokenBalance": "4136", + "usedToken0": "573615209029490063182", + "usedToken1": "13699910696", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf6d6579f99986d754bb3e136287cfbeca0f719d4edb2af99e00f2960a321843c", + "state": { + "depositToken": 0, + "blockNumber": 233141380, + "lastRebalancePrice": "1956718", + "state": "1", + "currentTick": "-269611", + "currentPrice": "1956718", + "twapSlow": "1956718", + "twapFast": "1956718", + "depositTokenBalance": "2574518115", + "pairedTokenBalance": "4135", + "usedToken0": "573615209029490063181", + "usedToken1": "13699910695", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x531696649424a367da6f4229bb9aee492dd8a6f9eadf2072d6da6d08032c64cd", + "state": { + "depositToken": 0, + "blockNumber": 233156994, + "lastRebalancePrice": "1956718", + "state": "1", + "currentTick": "-269611", + "currentPrice": "1956718", + "twapSlow": "1956718", + "twapFast": "1956718", + "depositTokenBalance": "2574518114", + "pairedTokenBalance": "4134", + "usedToken0": "573615209029490063180", + "usedToken1": "13699910694", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5717478b79d9c3f742211465805442bb53123b869e26086637ae547e378d18d4", + "state": { + "depositToken": 0, + "blockNumber": 233172636, + "lastRebalancePrice": "1956718", + "state": "1", + "currentTick": "-269611", + "currentPrice": "1956718", + "twapSlow": "1956718", + "twapFast": "1956718", + "depositTokenBalance": "2574518113", + "pairedTokenBalance": "4133", + "usedToken0": "573615209029490063179", + "usedToken1": "13699910693", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x30572094619b8d5189a1100e3669b6414ddf1d93b69d9189a2f6e6154fc9bda2", + "state": { + "depositToken": 0, + "blockNumber": 233188278, + "lastRebalancePrice": "1956718", + "state": "1", + "currentTick": "-269611", + "currentPrice": "1956718", + "twapSlow": "1956718", + "twapFast": "1956718", + "depositTokenBalance": "2574518112", + "pairedTokenBalance": "4132", + "usedToken0": "573615209029490063178", + "usedToken1": "13699910692", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe2ce299dd78496afa971ab9ee354893f22f0fbef057fd1a8198f1e238697b729", + "state": { + "depositToken": 0, + "blockNumber": 233203897, + "lastRebalancePrice": "1956718", + "state": "1", + "currentTick": "-269602", + "currentPrice": "1958480", + "twapSlow": "1957501", + "twapFast": "1958480", + "depositTokenBalance": "2574518111", + "pairedTokenBalance": "4131", + "usedToken0": "548927804477560262223", + "usedToken1": "13748241864", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7626d047800c7b34fb0b34dc12864bf0d86e5f698f0d7bd92433df633a615bc1", + "state": { + "depositToken": 0, + "blockNumber": 233219439, + "lastRebalancePrice": "1958480", + "state": "1", + "currentTick": "-269602", + "currentPrice": "1958480", + "twapSlow": "1958480", + "twapFast": "1958480", + "depositTokenBalance": "2574908666", + "pairedTokenBalance": "4130", + "usedToken0": "548927804477560262222", + "usedToken1": "13748632419", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcbffb61a104cdc53d3de9966eed16473a2745f35444dfb9d5071ffb9215951c4", + "state": { + "depositToken": 0, + "blockNumber": 233235034, + "lastRebalancePrice": "1958480", + "state": "1", + "currentTick": "-269619", + "currentPrice": "1955154", + "twapSlow": "1955349", + "twapFast": "1955154", + "depositTokenBalance": "2574908665", + "pairedTokenBalance": "4129", + "usedToken0": "595466621299652032423", + "usedToken1": "13657558466", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x52dc5c990ba594b9650d00e8c1ec1b5d22944aa8ab622c43a7cd74c2b62f3d8f", + "state": { + "depositToken": 0, + "blockNumber": 233250656, + "lastRebalancePrice": "1955154", + "state": "1", + "currentTick": "-269619", + "currentPrice": "1955154", + "twapSlow": "1955154", + "twapFast": "1955154", + "depositTokenBalance": "2567909337", + "pairedTokenBalance": "3840", + "usedToken0": "595842692546699238646", + "usedToken1": "13657558465", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd883ec382ec65c2fbe1199d38c356578fb566abb159de0866fafb0d6bb4f6966", + "state": { + "depositToken": 0, + "blockNumber": 233266260, + "lastRebalancePrice": "1955154", + "state": "1", + "currentTick": "-269619", + "currentPrice": "1955154", + "twapSlow": "1955154", + "twapFast": "1955154", + "depositTokenBalance": "2567909336", + "pairedTokenBalance": "3839", + "usedToken0": "595842692546699238645", + "usedToken1": "13657558464", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x496f8139dc7e461ce28f4fb329609fd954afa4c50ff2bff1f3f07cbcbf6858fa", + "state": { + "depositToken": 0, + "blockNumber": 233281850, + "lastRebalancePrice": "1955154", + "state": "1", + "currentTick": "-269664", + "currentPrice": "1946376", + "twapSlow": "1950272", + "twapFast": "1946376", + "depositTokenBalance": "2567909335", + "pairedTokenBalance": "3838", + "usedToken0": "719755424430702166422", + "usedToken1": "13415819473", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4372aeb94c361a88281ed183bf88bc6dcdcf4c3881b5a8be485cd2c229ff495d", + "state": { + "depositToken": 0, + "blockNumber": 233297409, + "lastRebalancePrice": "1946376", + "state": "1", + "currentTick": "-269676", + "currentPrice": "1944042", + "twapSlow": "1945403", + "twapFast": "1944042", + "depositTokenBalance": "2552817853", + "pairedTokenBalance": "8751", + "usedToken0": "753300132558451661248", + "usedToken1": "13352511606", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfa5ee302b99e87386b66540cc47679dfe2e05c01e5391c31e103f9a5e3cddbdf", + "state": { + "depositToken": 0, + "blockNumber": 233313008, + "lastRebalancePrice": "1944042", + "state": "1", + "currentTick": "-269688", + "currentPrice": "1941710", + "twapSlow": "1942487", + "twapFast": "1941710", + "depositTokenBalance": "2549047682", + "pairedTokenBalance": "6853", + "usedToken0": "786148799051353138248", + "usedToken1": "13289196307", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc25778d3c294873f32d9f48774dcf95305cf64ab45d6b1cc34d8520907ad2b8b", + "state": { + "depositToken": 0, + "blockNumber": 233328629, + "lastRebalancePrice": "1941710", + "state": "1", + "currentTick": "-269699", + "currentPrice": "1939576", + "twapSlow": "1940158", + "twapFast": "1939576", + "depositTokenBalance": "2545450294", + "pairedTokenBalance": "4264", + "usedToken0": "819037810068671786026", + "usedToken1": "13225878158", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb0bba8ab0745ce367e29b28f6ba45ef8ffd23a6af39d189ed3ea1e7579b0892f", + "state": { + "depositToken": 0, + "blockNumber": 233344203, + "lastRebalancePrice": "1939576", + "state": "1", + "currentTick": "-269699", + "currentPrice": "1939576", + "twapSlow": "1939576", + "twapFast": "1939576", + "depositTokenBalance": "2542012346", + "pairedTokenBalance": "8125", + "usedToken0": "819301452026761901135", + "usedToken1": "13225878157", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf5762948058b35835b6bb4ebdcaeae864396a6d649315d3d35758f2aa0eca957", + "state": { + "depositToken": 0, + "blockNumber": 233359729, + "lastRebalancePrice": "1939576", + "state": "1", + "currentTick": "-269699", + "currentPrice": "1939576", + "twapSlow": "1939576", + "twapFast": "1939576", + "depositTokenBalance": "2542012345", + "pairedTokenBalance": "8124", + "usedToken0": "819301452026761901134", + "usedToken1": "13225878156", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2dccf36267756fdea03e92556f20158fcc9851b7e10600c0ab368d81897e0b25", + "state": { + "depositToken": 0, + "blockNumber": 233375140, + "lastRebalancePrice": "1939576", + "state": "1", + "currentTick": "-269699", + "currentPrice": "1939576", + "twapSlow": "1939576", + "twapFast": "1939576", + "depositTokenBalance": "2542012344", + "pairedTokenBalance": "8123", + "usedToken0": "819301452026761901133", + "usedToken1": "13225878155", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc83337c0fad1bc706964eb7ef0b0e44ffcf46340fe537ba6614a296bc0e44179", + "state": { + "depositToken": 0, + "blockNumber": 233390508, + "lastRebalancePrice": "1939576", + "state": "1", + "currentTick": "-269699", + "currentPrice": "1939576", + "twapSlow": "1939576", + "twapFast": "1939576", + "depositTokenBalance": "2542012343", + "pairedTokenBalance": "8122", + "usedToken0": "819301452026761901132", + "usedToken1": "13225878154", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbdb4b0c8431edb3e634c86ead5df251b6fd9336986e83f8cad9ff7d44078a861", + "state": { + "depositToken": 0, + "blockNumber": 233405721, + "lastRebalancePrice": "1939576", + "state": "1", + "currentTick": "-269699", + "currentPrice": "1939576", + "twapSlow": "1939576", + "twapFast": "1939576", + "depositTokenBalance": "2542012342", + "pairedTokenBalance": "8121", + "usedToken0": "819301452026761901131", + "usedToken1": "13225878153", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf4f2ea8fded926a7527c889c374c6c442652bb56722666bcf43e9f28fc6c2f9c", + "state": { + "depositToken": 0, + "blockNumber": 233421239, + "lastRebalancePrice": "1939576", + "state": "1", + "currentTick": "-269589", + "currentPrice": "1961028", + "twapSlow": "1952614", + "twapFast": "1961028", + "depositTokenBalance": "2542012341", + "pairedTokenBalance": "8120", + "usedToken0": "514617579217356193663", + "usedToken1": "13820120280", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272000", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x6801c85aef50e88d8a37ce885a74a8701cbf7f7a0c1d0cd4903ff391bc7f9f4a", + "state": { + "depositToken": 0, + "blockNumber": 233539604, + "lastRebalancePrice": "1961028", + "state": "0", + "currentTick": "-269679", + "currentPrice": "1943459", + "twapSlow": "1955349", + "twapFast": "1943459", + "depositTokenBalance": "0", + "pairedTokenBalance": "72512", + "usedToken0": "760673535151684150894", + "usedToken1": "13344817760", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x033d2c83f39e54ddcff52a84abe04716aa5e3dbf5710912f26445814531870cf", + "state": { + "depositToken": 0, + "blockNumber": 233555159, + "lastRebalancePrice": "1943459", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936475", + "twapFast": "1936281", + "depositTokenBalance": "2561338557", + "pairedTokenBalance": "4616", + "usedToken0": "864004120671210588539", + "usedToken1": "13148216731", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf8652de379d697a9a40b386fbbb24b7dbca9d34f31214d2929c4a6de8055c162", + "state": { + "depositToken": 0, + "blockNumber": 233570749, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304016", + "pairedTokenBalance": "1816", + "usedToken0": "864823047980806397534", + "usedToken1": "13148216730", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xadf20075e6a8950af903a9035dfe399a08da9e7b0ea214af2a463e6276dcddf9", + "state": { + "depositToken": 0, + "blockNumber": 233586333, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304015", + "pairedTokenBalance": "1815", + "usedToken0": "864823047980806397533", + "usedToken1": "13148216729", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x735aa23b170a16b1fcd54bf43dd2036120f457e53e052055d28b8933d763da19", + "state": { + "depositToken": 0, + "blockNumber": 233601879, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304014", + "pairedTokenBalance": "1814", + "usedToken0": "864823047980806397532", + "usedToken1": "13148216728", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc449cfcffa1cc328acc374693514d35d35a3ab41c6115e28218eb37d09bb8b69", + "state": { + "depositToken": 0, + "blockNumber": 233617515, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304013", + "pairedTokenBalance": "1813", + "usedToken0": "864823047980806397531", + "usedToken1": "13148216727", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc6aa4d6abb90395211b582f5ac3c12f0bf51fb28386837e1bc42e4056e9e21e8", + "state": { + "depositToken": 0, + "blockNumber": 233633145, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304012", + "pairedTokenBalance": "1812", + "usedToken0": "864823047980806397530", + "usedToken1": "13148216726", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x747dcfbe54a6c47a0b795ca87852bb9cdf6e2ed32440ada33821d340cf9f799f", + "state": { + "depositToken": 0, + "blockNumber": 233648777, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304011", + "pairedTokenBalance": "1811", + "usedToken0": "864823047980806397529", + "usedToken1": "13148216725", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1b62023c558d0b363cfc6e124465389d1741e50afc581da53ee0cc5bc9710f09", + "state": { + "depositToken": 0, + "blockNumber": 233664412, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269716", + "currentPrice": "1936281", + "twapSlow": "1936281", + "twapFast": "1936281", + "depositTokenBalance": "2551304010", + "pairedTokenBalance": "1810", + "usedToken0": "864823047980806397528", + "usedToken1": "13148216724", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x270c40e148f7dd0265a806f2b50e7b226484978aeadb61c99ca942465c2c39e1", + "state": { + "depositToken": 0, + "blockNumber": 233680017, + "lastRebalancePrice": "1936281", + "state": "1", + "currentTick": "-269760", + "currentPrice": "1927781", + "twapSlow": "1934346", + "twapFast": "1927781", + "depositTokenBalance": "2551304009", + "pairedTokenBalance": "1809", + "usedToken0": "987824682548712245690", + "usedToken1": "12910563643", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x14b10060693db7fc1551c37f587ac87663687442492914f9132831fc8849eb33", + "state": { + "depositToken": 0, + "blockNumber": 233695557, + "lastRebalancePrice": "1927781", + "state": "1", + "currentTick": "-269760", + "currentPrice": "1927781", + "twapSlow": "1927781", + "twapFast": "1927781", + "depositTokenBalance": "2540880486", + "pairedTokenBalance": "13822", + "usedToken0": "988818635151281181837", + "usedToken1": "12910563642", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x31ae615844e9d35796af29ab8a3be62247e04c8f90473e7ed0005fac9681315f", + "state": { + "depositToken": 0, + "blockNumber": 233711113, + "lastRebalancePrice": "1927781", + "state": "1", + "currentTick": "-269760", + "currentPrice": "1927781", + "twapSlow": "1927781", + "twapFast": "1927781", + "depositTokenBalance": "2540880485", + "pairedTokenBalance": "13821", + "usedToken0": "988818635151281181836", + "usedToken1": "12910563641", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0a3ff93abb2344efdc8bd88053f6005bb3fc6d903eb2c06c7f74cb0899544ed1", + "state": { + "depositToken": 0, + "blockNumber": 233726734, + "lastRebalancePrice": "1927781", + "state": "1", + "currentTick": "-269760", + "currentPrice": "1927781", + "twapSlow": "1927781", + "twapFast": "1927781", + "depositTokenBalance": "2540880484", + "pairedTokenBalance": "13820", + "usedToken0": "988818635151281181835", + "usedToken1": "12910563640", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x03ed1ef21e45cc93070012b2da13f27a71b68a7f3fa1b5983530b5c8d4ff9819", + "state": { + "depositToken": 0, + "blockNumber": 233742364, + "lastRebalancePrice": "1927781", + "state": "1", + "currentTick": "-269760", + "currentPrice": "1927781", + "twapSlow": "1927781", + "twapFast": "1927781", + "depositTokenBalance": "2540880483", + "pairedTokenBalance": "13819", + "usedToken0": "988818635151281181834", + "usedToken1": "12910563639", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1c56206a108c391dd54fdf0bb8a4dbd2cbdec909fae4e26e9f085755e3285d76", + "state": { + "depositToken": 0, + "blockNumber": 233757956, + "lastRebalancePrice": "1927781", + "state": "1", + "currentTick": "-269760", + "currentPrice": "1927781", + "twapSlow": "1927781", + "twapFast": "1927781", + "depositTokenBalance": "2540880482", + "pairedTokenBalance": "13818", + "usedToken0": "988818635151281181833", + "usedToken1": "12910563638", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3c6333cf373c0c1a8122a3c9402208a4e2ab88ec05eaa233a581e720933bd1b8", + "state": { + "depositToken": 0, + "blockNumber": 233773510, + "lastRebalancePrice": "1927781", + "state": "1", + "currentTick": "-269764", + "currentPrice": "1927010", + "twapSlow": "1927588", + "twapFast": "1927395", + "depositTokenBalance": "2540880481", + "pairedTokenBalance": "13817", + "usedToken0": "999928077332485657290", + "usedToken1": "12889150874", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9d78547587f747f15e0b8f60765a23cc96728aabe5f26cf0501671655cb8fca5", + "state": { + "depositToken": 0, + "blockNumber": 233789083, + "lastRebalancePrice": "1927010", + "state": "1", + "currentTick": "-269767", + "currentPrice": "1926432", + "twapSlow": "1926432", + "twapFast": "1926432", + "depositTokenBalance": "2539951416", + "pairedTokenBalance": "10380", + "usedToken0": "1006331670694117700783", + "usedToken1": "12876985197", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x38d8fb4507a621ad590900b3a578b994d5dc178f47ba0b063c4fb4e25357e931", + "state": { + "depositToken": 0, + "blockNumber": 233804691, + "lastRebalancePrice": "1926432", + "state": "1", + "currentTick": "-269857", + "currentPrice": "1909173", + "twapSlow": "1912421", + "twapFast": "1909173", + "depositTokenBalance": "2539427330", + "pairedTokenBalance": "11805", + "usedToken0": "1258837185276209416088", + "usedToken1": "12392805606", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7112618ffc82422dfc3832b7d25720f9856b06c2a2f68e14f3e5349644997568", + "state": { + "depositToken": 0, + "blockNumber": 233820318, + "lastRebalancePrice": "1909173", + "state": "1", + "currentTick": "-269929", + "currentPrice": "1895477", + "twapSlow": "1896425", + "twapFast": "1895477", + "depositTokenBalance": "1561018296", + "pairedTokenBalance": "19727", + "usedToken0": "1459899979127305994437", + "usedToken1": "12014180382", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x56e53255b1dc33b6a081995910ba6be0d984694b7216ecf37e9ffd7348b639ff", + "state": { + "depositToken": 0, + "blockNumber": 233835919, + "lastRebalancePrice": "1895477", + "state": "1", + "currentTick": "-269929", + "currentPrice": "1895477", + "twapSlow": "1895477", + "twapFast": "1895477", + "depositTokenBalance": "1549502814", + "pairedTokenBalance": "19943", + "usedToken0": "1461508243834679333540", + "usedToken1": "12014180381", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x45faa0531979669967fe096c4685b0ba76e4e0beec150ccbc591c6929783f11a", + "state": { + "depositToken": 0, + "blockNumber": 233851507, + "lastRebalancePrice": "1895477", + "state": "1", + "currentTick": "-269929", + "currentPrice": "1895477", + "twapSlow": "1895477", + "twapFast": "1895477", + "depositTokenBalance": "1549502813", + "pairedTokenBalance": "19942", + "usedToken0": "1463626440880313995239", + "usedToken1": "12010165141", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe7e31aa01abca18544a3ff7624e9426434eb08d6ef69298fa71f80b6b5055e54", + "state": { + "depositToken": 0, + "blockNumber": 233867002, + "lastRebalancePrice": "1895477", + "state": "1", + "currentTick": "-269929", + "currentPrice": "1895477", + "twapSlow": "1895477", + "twapFast": "1895477", + "depositTokenBalance": "1549380477", + "pairedTokenBalance": "18471", + "usedToken0": "1463643557624117103615", + "usedToken1": "12010165140", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2c221ef709a89cf2f954ce10999c815945be00c59fe15917cb47796a948cef10", + "state": { + "depositToken": 0, + "blockNumber": 233882553, + "lastRebalancePrice": "1895477", + "state": "1", + "currentTick": "-269929", + "currentPrice": "1895477", + "twapSlow": "1895477", + "twapFast": "1895477", + "depositTokenBalance": "1549380476", + "pairedTokenBalance": "18470", + "usedToken0": "1463643557624117103614", + "usedToken1": "12010165139", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5649bc63b1816704efb071d4688bbd0b093e5210fc4ec98462225572425675ba", + "state": { + "depositToken": 0, + "blockNumber": 233898106, + "lastRebalancePrice": "1895477", + "state": "1", + "currentTick": "-269875", + "currentPrice": "1905740", + "twapSlow": "1901932", + "twapFast": "1904596", + "depositTokenBalance": "1549380475", + "pairedTokenBalance": "18469", + "usedToken0": "1312094365301632399094", + "usedToken1": "12298208039", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x31844e121f5d819e088f55eab503e7bfad127a8ebf516ea92e9d3c5dfcf371b5", + "state": { + "depositToken": 0, + "blockNumber": 233913688, + "lastRebalancePrice": "1905740", + "state": "1", + "currentTick": "-269845", + "currentPrice": "1911465", + "twapSlow": "1908791", + "twapFast": "1911465", + "depositTokenBalance": "1551708097", + "pairedTokenBalance": "18468", + "usedToken0": "1226451336459601400675", + "usedToken1": "12464004779", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbd2cb655cd242b4a7ef64ec6211ad20ac539fe7e0e74c6e48df3de78dda3d958", + "state": { + "depositToken": 0, + "blockNumber": 233929265, + "lastRebalancePrice": "1911465", + "state": "1", + "currentTick": "-269761", + "currentPrice": "1927588", + "twapSlow": "1922968", + "twapFast": "1926239", + "depositTokenBalance": "1553029061", + "pairedTokenBalance": "18467", + "usedToken0": "993364107114242784762", + "usedToken1": "12912774633", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd4be6cc4021a197038426bbeee474e91303280a79fa13b076aa8940c77f065b7", + "state": { + "depositToken": 0, + "blockNumber": 233944822, + "lastRebalancePrice": "1927588", + "state": "1", + "currentTick": "-269706", + "currentPrice": "1938219", + "twapSlow": "1937056", + "twapFast": "1938219", + "depositTokenBalance": "2520157255", + "pairedTokenBalance": "5605", + "usedToken0": "842028782337184278526", + "usedToken1": "13208916267", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf74e2479c2244b181d0f095911058fe744cb9d4d9440e7fe1b538412357ca2ca", + "state": { + "depositToken": 0, + "blockNumber": 233960440, + "lastRebalancePrice": "1938219", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938219", + "twapFast": "1938412", + "depositTokenBalance": "2522521102", + "pairedTokenBalance": "5604", + "usedToken0": "837995585366125151960", + "usedToken1": "13219097977", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x95b467663069075f7b25e27bf091016d749d566ef33eddd4423dd8bf36600fff", + "state": { + "depositToken": 0, + "blockNumber": 233976055, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938412", + "twapFast": "1938412", + "depositTokenBalance": "2522584277", + "pairedTokenBalance": "5603", + "usedToken0": "837995585366125151959", + "usedToken1": "13219161152", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe8ce6e62d96c0b8ab8a4ee1e0a00dbb262aa0f4c9c735078af3684b9aebf243d", + "state": { + "depositToken": 0, + "blockNumber": 233991646, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938412", + "twapFast": "1938412", + "depositTokenBalance": "2522584276", + "pairedTokenBalance": "5602", + "usedToken0": "837995585366125151958", + "usedToken1": "13219161151", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd9e53f8853550454e7bdbeba124af91377eee24915bad8657c8ac607194c8f5f", + "state": { + "depositToken": 0, + "blockNumber": 234007224, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938412", + "twapFast": "1938412", + "depositTokenBalance": "2522584275", + "pairedTokenBalance": "5601", + "usedToken0": "837995585366125151957", + "usedToken1": "13219161150", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x65c71b19031d3b6aac10954564d8dcf89e4bfca38e5e4885624ace16cc15f5e8", + "state": { + "depositToken": 0, + "blockNumber": 234022825, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938412", + "twapFast": "1938412", + "depositTokenBalance": "2522584274", + "pairedTokenBalance": "5600", + "usedToken0": "837995585366125151956", + "usedToken1": "13219161149", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0a3ef2719c6c0daccba09a25911919d882dba347989f69f47984b904f2809985", + "state": { + "depositToken": 0, + "blockNumber": 234038426, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938412", + "twapFast": "1938412", + "depositTokenBalance": "2522584273", + "pairedTokenBalance": "5599", + "usedToken0": "837995585366125151955", + "usedToken1": "13219161148", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x92a23b09e8ab245ac1dabaffb13a387feeb985a153e319f27c519c794f3145cd", + "state": { + "depositToken": 0, + "blockNumber": 234054020, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269705", + "currentPrice": "1938412", + "twapSlow": "1938412", + "twapFast": "1938412", + "depositTokenBalance": "2522584272", + "pairedTokenBalance": "5598", + "usedToken0": "837995585366125151954", + "usedToken1": "13219161147", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1260731d34d1fa6ab81b74e9a73ef744b3229883e4f4c181111d013644914f73", + "state": { + "depositToken": 0, + "blockNumber": 234069639, + "lastRebalancePrice": "1938412", + "state": "1", + "currentTick": "-269695", + "currentPrice": "1940352", + "twapSlow": "1938800", + "twapFast": "1940352", + "depositTokenBalance": "2522584271", + "pairedTokenBalance": "5597", + "usedToken0": "810583644823457931955", + "usedToken1": "13272326006", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x952667c015e287cc5e56ac37524972b82689d9a5a04961a583daf448185a1d17", + "state": { + "depositToken": 0, + "blockNumber": 234085243, + "lastRebalancePrice": "1940352", + "state": "1", + "currentTick": "-269695", + "currentPrice": "1940352", + "twapSlow": "1940352", + "twapFast": "1940352", + "depositTokenBalance": "2523013886", + "pairedTokenBalance": "5596", + "usedToken0": "810583644823457931954", + "usedToken1": "13272755621", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x18daa99c365295299394aaf607b11445e3eb00e214b30220f83565eda9e18883", + "state": { + "depositToken": 0, + "blockNumber": 234100853, + "lastRebalancePrice": "1940352", + "state": "1", + "currentTick": "-269637", + "currentPrice": "1951638", + "twapSlow": "1942876", + "twapFast": "1951443", + "depositTokenBalance": "2523013885", + "pairedTokenBalance": "5595", + "usedToken0": "650580127275814438223", + "usedToken1": "13584130932", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8789f876a338554870039e32490df1bf65961b3db4f570639e47bfdd091ad23c", + "state": { + "depositToken": 0, + "blockNumber": 234116476, + "lastRebalancePrice": "1951638", + "state": "1", + "currentTick": "-269599", + "currentPrice": "1959068", + "twapSlow": "1953590", + "twapFast": "1959068", + "depositTokenBalance": "2525530051", + "pairedTokenBalance": "5594", + "usedToken0": "545705058400999676037", + "usedToken1": "13791719219", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x152cc643ed412b336f69efa2623d03a46a714eb277f4809cc6b7c9a756361808", + "state": { + "depositToken": 0, + "blockNumber": 234132105, + "lastRebalancePrice": "1959068", + "state": "1", + "currentTick": "-269599", + "currentPrice": "1959068", + "twapSlow": "1959068", + "twapFast": "1959068", + "depositTokenBalance": "2527187200", + "pairedTokenBalance": "5593", + "usedToken0": "545705058400999676036", + "usedToken1": "13793376368", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc543a5e37496c6f1e206de1c8066d844c60164162628b6a2a48a9e118745521a", + "state": { + "depositToken": 0, + "blockNumber": 234147738, + "lastRebalancePrice": "1959068", + "state": "1", + "currentTick": "-269595", + "currentPrice": "1959852", + "twapSlow": "1959264", + "twapFast": "1959852", + "depositTokenBalance": "2527187199", + "pairedTokenBalance": "5592", + "usedToken0": "533195325765700996583", + "usedToken1": "13817889877", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3595bf9f0c751b5834a9d13e99fc815ab833523f4adf27b279ed329b4c9b9af9", + "state": { + "depositToken": 0, + "blockNumber": 234163348, + "lastRebalancePrice": "1959852", + "state": "1", + "currentTick": "-269595", + "currentPrice": "1959852", + "twapSlow": "1959852", + "twapFast": "1959852", + "depositTokenBalance": "2527385287", + "pairedTokenBalance": "5591", + "usedToken0": "533195325765700996582", + "usedToken1": "13818087965", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2ff0d75d98ba4fa589f13cb8c813f7968ed60fb122d6d8a921159af8f380ada4", + "state": { + "depositToken": 0, + "blockNumber": 234178981, + "lastRebalancePrice": "1959852", + "state": "1", + "currentTick": "-269595", + "currentPrice": "1959852", + "twapSlow": "1959852", + "twapFast": "1959852", + "depositTokenBalance": "2527385286", + "pairedTokenBalance": "5590", + "usedToken0": "533195325765700996581", + "usedToken1": "13818087964", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xad46c1a81d7f1d7a619c4de64a4763e140a555a6c8d4081b31d6ddd6c3b83dad", + "state": { + "depositToken": 0, + "blockNumber": 234194612, + "lastRebalancePrice": "1959852", + "state": "1", + "currentTick": "-269595", + "currentPrice": "1959852", + "twapSlow": "1959852", + "twapFast": "1959852", + "depositTokenBalance": "2527385285", + "pairedTokenBalance": "5589", + "usedToken0": "533195325765700996580", + "usedToken1": "13818087963", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6d4195ab9b3df09f08f852cb3bf91ef121b452a97fe50b70a9a408bb976120e2", + "state": { + "depositToken": 0, + "blockNumber": 234210225, + "lastRebalancePrice": "1959852", + "state": "1", + "currentTick": "-269595", + "currentPrice": "1959852", + "twapSlow": "1959852", + "twapFast": "1959852", + "depositTokenBalance": "2527385284", + "pairedTokenBalance": "5588", + "usedToken0": "533195325765700996579", + "usedToken1": "13818087962", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaf0db6d6ba4343342b602ae8735ec16c2af7260e0affd65dd04404fadf54084e", + "state": { + "depositToken": 0, + "blockNumber": 234225840, + "lastRebalancePrice": "1959852", + "state": "1", + "currentTick": "-269586", + "currentPrice": "1961616", + "twapSlow": "1961420", + "twapFast": "1961616", + "depositTokenBalance": "2527385283", + "pairedTokenBalance": "5587", + "usedToken0": "508273622192809876891", + "usedToken1": "13866956560", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272000", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x577828dca2d618f9059afc00343e88d24177c9207c5b2a53e0a55019765df897", + "state": { + "depositToken": 0, + "blockNumber": 234607852, + "lastRebalancePrice": "1961616", + "state": "0", + "currentTick": "-269696", + "currentPrice": "1940158", + "twapSlow": "1955936", + "twapFast": "1940158", + "depositTokenBalance": "0", + "pairedTokenBalance": "503653", + "usedToken0": "809056166779135308460", + "usedToken1": "13280966526", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x427574332d1ab831e262e487eb2d9a5fdd606cdcccffc928fb9087713c97bca5", + "state": { + "depositToken": 0, + "blockNumber": 234623354, + "lastRebalancePrice": "1940158", + "state": "1", + "currentTick": "-269696", + "currentPrice": "1940158", + "twapSlow": "1940158", + "twapFast": "1940158", + "depositTokenBalance": "2563820411", + "pairedTokenBalance": "7341", + "usedToken0": "811944453136726059998", + "usedToken1": "13281862067", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdad88ffea6555bf5a922640fb52cb037a544a4ef2ce4551ceb0a2508c9d24d83", + "state": { + "depositToken": 0, + "blockNumber": 234638943, + "lastRebalancePrice": "1940158", + "state": "1", + "currentTick": "-269660", + "currentPrice": "1947154", + "twapSlow": "1940740", + "twapFast": "1945403", + "depositTokenBalance": "2563820410", + "pairedTokenBalance": "7340", + "usedToken0": "712392768206160681501", + "usedToken1": "13475361214", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2225a689dfa754dff163837b4b995c1aea88a00f3929d1fd6bade52aa19f1f40", + "state": { + "depositToken": 0, + "blockNumber": 234654488, + "lastRebalancePrice": "1947154", + "state": "1", + "currentTick": "-269653", + "currentPrice": "1948518", + "twapSlow": "1948518", + "twapFast": "1948518", + "depositTokenBalance": "2565384040", + "pairedTokenBalance": "7339", + "usedToken0": "691187460603667068306", + "usedToken1": "13518231887", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf3751ab17135f50e0166c9e950651417d5d51ee2ce33c4f0bdd9175500abdbd4", + "state": { + "depositToken": 0, + "blockNumber": 234670062, + "lastRebalancePrice": "1948518", + "state": "1", + "currentTick": "-269599", + "currentPrice": "1959068", + "twapSlow": "1955154", + "twapFast": "1959068", + "depositTokenBalance": "2565717834", + "pairedTokenBalance": "7338", + "usedToken0": "543227118603480069360", + "usedToken1": "13807671870", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x97373f1bf36cf5e5f0236083f565e49cc08f23cb1df63ec8b7cecee629202b5a", + "state": { + "depositToken": 0, + "blockNumber": 234685687, + "lastRebalancePrice": "1959068", + "state": "1", + "currentTick": "-269591", + "currentPrice": "1960636", + "twapSlow": "1959852", + "twapFast": "1960636", + "depositTokenBalance": "2568054045", + "pairedTokenBalance": "7337", + "usedToken0": "522988108182531189836", + "usedToken1": "13849674844", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-269600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272000", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x82a66398e8e0cd34e2e1b83f1e364c459740fee77d48f94358056ddf29b1349c", + "state": { + "depositToken": 0, + "blockNumber": 234899475, + "lastRebalancePrice": "1960636", + "state": "0", + "currentTick": "-269672", + "currentPrice": "1944819", + "twapSlow": "1953786", + "twapFast": "1947739", + "depositTokenBalance": "0", + "pairedTokenBalance": "429716", + "usedToken0": "746754535818405375075", + "usedToken1": "13413225076", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6392a8318d04d2ba61da7dfaaa6694475ce361989e0a3ee885e71f327665f6dd", + "state": { + "depositToken": 0, + "blockNumber": 234915027, + "lastRebalancePrice": "1944819", + "state": "1", + "currentTick": "-269672", + "currentPrice": "1944819", + "twapSlow": "1944819", + "twapFast": "1944819", + "depositTokenBalance": "2506332871", + "pairedTokenBalance": "12187", + "usedToken0": "748562749375058903847", + "usedToken1": "13413225075", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4d8b948914f8dec5c70b475046f33c44388531ae02abe0b008183e1307ed4e7c", + "state": { + "depositToken": 0, + "blockNumber": 234930625, + "lastRebalancePrice": "1944819", + "state": "1", + "currentTick": "-269682", + "currentPrice": "1942876", + "twapSlow": "1944042", + "twapFast": "1942876", + "depositTokenBalance": "2506332870", + "pairedTokenBalance": "12186", + "usedToken0": "776446502200501271068", + "usedToken1": "13359020020", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5136137e3845973be169d9f37cd69b8e0551b2a5bc1d99258c80470246423aed", + "state": { + "depositToken": 0, + "blockNumber": 234946208, + "lastRebalancePrice": "1942876", + "state": "1", + "currentTick": "-269682", + "currentPrice": "1942876", + "twapSlow": "1942876", + "twapFast": "1942876", + "depositTokenBalance": "2503183441", + "pairedTokenBalance": "9622", + "usedToken0": "776671825455656360903", + "usedToken1": "13359020019", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1d04459e3572de296caec978a02488780e60eb8c4aabb896a263795a5b05bbac", + "state": { + "depositToken": 0, + "blockNumber": 234961901, + "lastRebalancePrice": "1942876", + "state": "1", + "currentTick": "-269682", + "currentPrice": "1942876", + "twapSlow": "1942876", + "twapFast": "1942876", + "depositTokenBalance": "2503183440", + "pairedTokenBalance": "9621", + "usedToken0": "776671825455656360902", + "usedToken1": "13359020018", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1d3ecebb7eeeb84184888ea83a163d5c4597d3603cc434ada21a6045adf11bfc", + "state": { + "depositToken": 0, + "blockNumber": 234977464, + "lastRebalancePrice": "1942876", + "state": "1", + "currentTick": "-269682", + "currentPrice": "1942876", + "twapSlow": "1942876", + "twapFast": "1942876", + "depositTokenBalance": "2503183439", + "pairedTokenBalance": "9620", + "usedToken0": "776671825455656360901", + "usedToken1": "13359020017", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x31979bf5bc8147f1d1c5ca62d80bd1e9d0103c319435411140905332b0428d46", + "state": { + "depositToken": 0, + "blockNumber": 234992996, + "lastRebalancePrice": "1942876", + "state": "1", + "currentTick": "-269682", + "currentPrice": "1942876", + "twapSlow": "1942876", + "twapFast": "1942876", + "depositTokenBalance": "2503183438", + "pairedTokenBalance": "9619", + "usedToken0": "776671825455656360900", + "usedToken1": "13359020016", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8e944feb2c01936ccc849b348b1be45708e93d582567570e21915f5c8cce30eb", + "state": { + "depositToken": 0, + "blockNumber": 235008607, + "lastRebalancePrice": "1942876", + "state": "1", + "currentTick": "-269698", + "currentPrice": "1939770", + "twapSlow": "1942681", + "twapFast": "1941516", + "depositTokenBalance": "2503183437", + "pairedTokenBalance": "9618", + "usedToken0": "820520355113371121681", + "usedToken1": "13273889903", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x09208c113c637f7b067e20d308427c598f71fa32b1a71bc2ff749d2fde4760c9", + "state": { + "depositToken": 0, + "blockNumber": 235024142, + "lastRebalancePrice": "1939770", + "state": "1", + "currentTick": "-269752", + "currentPrice": "1929324", + "twapSlow": "1934540", + "twapFast": "1929324", + "depositTokenBalance": "2498532240", + "pairedTokenBalance": "11466", + "usedToken0": "973191940599317709528", + "usedToken1": "12979211748", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-271800", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe95ab202572ca947e23da44d4181c73b308ca16994862e2ce1f7a3c74cf1c388", + "state": { + "depositToken": 0, + "blockNumber": 235039704, + "lastRebalancePrice": "1929324", + "state": "1", + "currentTick": "-269789", + "currentPrice": "1922199", + "twapSlow": "1927588", + "twapFast": "1923737", + "depositTokenBalance": "2485276778", + "pairedTokenBalance": "4629", + "usedToken0": "1075944285821727850794", + "usedToken1": "12783696031", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc180ba91fd5313eae42d0f4835c3c8a79dafb732b0e8fe13dfc598a8ce36b703", + "state": { + "depositToken": 0, + "blockNumber": 235055296, + "lastRebalancePrice": "1922199", + "state": "1", + "currentTick": "-269789", + "currentPrice": "1922199", + "twapSlow": "1922199", + "twapFast": "1922199", + "depositTokenBalance": "1508386509", + "pairedTokenBalance": "10342", + "usedToken0": "1076764661569008502026", + "usedToken1": "12783696030", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x131d8da033bcfcd68f5758478ab68adde50910f47d1ce1c037b295cb591ca7c0", + "state": { + "depositToken": 0, + "blockNumber": 235070907, + "lastRebalancePrice": "1922199", + "state": "1", + "currentTick": "-269789", + "currentPrice": "1922199", + "twapSlow": "1922199", + "twapFast": "1922199", + "depositTokenBalance": "1508386508", + "pairedTokenBalance": "10341", + "usedToken0": "1076764661569008502025", + "usedToken1": "12783696029", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdab27a1f3b704cbbcc8f78ca57dced40be6053f5cc96de2b4e58e9ecaf4c6af9", + "state": { + "depositToken": 0, + "blockNumber": 235086481, + "lastRebalancePrice": "1922199", + "state": "1", + "currentTick": "-269789", + "currentPrice": "1922199", + "twapSlow": "1922199", + "twapFast": "1922199", + "depositTokenBalance": "1508386507", + "pairedTokenBalance": "10340", + "usedToken0": "1076764661569008502024", + "usedToken1": "12783696028", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x56c5218368cc88ac1ef1edb74ebf0a882b97452ff499bbd80ca0f28ae2acf272", + "state": { + "depositToken": 0, + "blockNumber": 235102086, + "lastRebalancePrice": "1922199", + "state": "1", + "currentTick": "-269789", + "currentPrice": "1922199", + "twapSlow": "1922199", + "twapFast": "1922199", + "depositTokenBalance": "1508386506", + "pairedTokenBalance": "10339", + "usedToken0": "1076764661569008502023", + "usedToken1": "12783696027", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0a37ec5a19584ef0487d13823108e215f46d1bf5fc9e7183d4bb83a8af0a8598", + "state": { + "depositToken": 0, + "blockNumber": 235117632, + "lastRebalancePrice": "1922199", + "state": "1", + "currentTick": "-269822", + "currentPrice": "1915866", + "twapSlow": "1918742", + "twapFast": "1915866", + "depositTokenBalance": "1508386505", + "pairedTokenBalance": "10338", + "usedToken0": "1169492865079661102467", + "usedToken1": "12605733324", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbb523996dd00185a6f390c7dd5b952fc16eb76806cd8bc1a95700eb06bc44180", + "state": { + "depositToken": 0, + "blockNumber": 235133210, + "lastRebalancePrice": "1915866", + "state": "1", + "currentTick": "-269936", + "currentPrice": "1894150", + "twapSlow": "1910319", + "twapFast": "1894150", + "depositTokenBalance": "1501276199", + "pairedTokenBalance": "7774", + "usedToken0": "1492504338721270472508", + "usedToken1": "11991797509", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3fc2df513fb251f33dbeca2ce70c359549840df20a251d3f2c9a96c3f86bc1aa", + "state": { + "depositToken": 0, + "blockNumber": 235148886, + "lastRebalancePrice": "1894150", + "state": "1", + "currentTick": "-269936", + "currentPrice": "1894150", + "twapSlow": "1894150", + "twapFast": "1894150", + "depositTokenBalance": "1482972217", + "pairedTokenBalance": "16094", + "usedToken0": "1495108477346121879959", + "usedToken1": "11991797508", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x72d6a192dffbecab8aa064c5a9483a13ef9ea62b59f9f22b1d00f179156d24a0", + "state": { + "depositToken": 0, + "blockNumber": 235164447, + "lastRebalancePrice": "1894150", + "state": "1", + "currentTick": "-269936", + "currentPrice": "1894150", + "twapSlow": "1894150", + "twapFast": "1894150", + "depositTokenBalance": "1482972216", + "pairedTokenBalance": "16093", + "usedToken0": "1495108477346121879958", + "usedToken1": "11991797507", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x65bab315ae2f58ddbedf74721120f3ae3e334883ac8b966906285da6b9a6c0fe", + "state": { + "depositToken": 0, + "blockNumber": 235180027, + "lastRebalancePrice": "1894150", + "state": "1", + "currentTick": "-269936", + "currentPrice": "1894150", + "twapSlow": "1894150", + "twapFast": "1894150", + "depositTokenBalance": "1482972215", + "pairedTokenBalance": "16092", + "usedToken0": "1495108477346121879957", + "usedToken1": "11991797506", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbe1eea724d4aad4c53399a17c190915ad0e01285c69d31e3e775047fd08a607f", + "state": { + "depositToken": 0, + "blockNumber": 235195591, + "lastRebalancePrice": "1894150", + "state": "1", + "currentTick": "-269936", + "currentPrice": "1894150", + "twapSlow": "1894150", + "twapFast": "1894150", + "depositTokenBalance": "1482972214", + "pairedTokenBalance": "16091", + "usedToken0": "1495108477346121879956", + "usedToken1": "11991797505", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfc3fa0c837d16b5894cd4674e58e4ada2f9a41576cf945c95ad8bfb42a550806", + "state": { + "depositToken": 0, + "blockNumber": 235211223, + "lastRebalancePrice": "1894150", + "state": "1", + "currentTick": "-269936", + "currentPrice": "1894150", + "twapSlow": "1894150", + "twapFast": "1894150", + "depositTokenBalance": "1482972213", + "pairedTokenBalance": "16090", + "usedToken0": "1495108477346121879955", + "usedToken1": "11991797504", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1fd1daa1fbb036df245d4af4758acd95a070c4cbd31014a0b1574699278a9708", + "state": { + "depositToken": 0, + "blockNumber": 235226806, + "lastRebalancePrice": "1894150", + "state": "1", + "currentTick": "-269914", + "currentPrice": "1898322", + "twapSlow": "1896235", + "twapFast": "1898322", + "depositTokenBalance": "1482972212", + "pairedTokenBalance": "16089", + "usedToken0": "1431834165729959931430", + "usedToken1": "12111786611", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xed686ea816df6ef6e123e17d93d6f0db5306bf3f2b7ffee7ad1e72750b7331c4", + "state": { + "depositToken": 0, + "blockNumber": 235242277, + "lastRebalancePrice": "1898322", + "state": "1", + "currentTick": "-269914", + "currentPrice": "1898322", + "twapSlow": "1898322", + "twapFast": "1898322", + "depositTokenBalance": "1483941820", + "pairedTokenBalance": "16088", + "usedToken0": "1431834165729959931429", + "usedToken1": "12112756219", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1686d481def3639868af3dbf868d4ca12ba16ce6592af6c1b0ca8578be25d4b0", + "state": { + "depositToken": 0, + "blockNumber": 235257772, + "lastRebalancePrice": "1898322", + "state": "1", + "currentTick": "-269914", + "currentPrice": "1898322", + "twapSlow": "1898322", + "twapFast": "1898322", + "depositTokenBalance": "1483941819", + "pairedTokenBalance": "16087", + "usedToken0": "1431834165729959931428", + "usedToken1": "12112756218", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7ea5a9b11124b660024d1d7b8ba5156cbdbbd213025c128a3e0f288d5cd08d31", + "state": { + "depositToken": 0, + "blockNumber": 235273356, + "lastRebalancePrice": "1898322", + "state": "1", + "currentTick": "-269914", + "currentPrice": "1898322", + "twapSlow": "1898322", + "twapFast": "1898322", + "depositTokenBalance": "1483941818", + "pairedTokenBalance": "16086", + "usedToken0": "1431834165729959931427", + "usedToken1": "12112756217", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272000", + "topTick": "-269400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2a0340a22f300d5541ff5ad0644982618b740fedb6fb6f49148eeed3fa825b2a", + "state": { + "depositToken": 0, + "blockNumber": 235288872, + "lastRebalancePrice": "1898322", + "state": "1", + "currentTick": "-269966", + "currentPrice": "1888477", + "twapSlow": "1890366", + "twapFast": "1888477", + "depositTokenBalance": "1483941817", + "pairedTokenBalance": "16085", + "usedToken0": "1578173515668887702623", + "usedToken1": "11835655062", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-269800" + }, + "limitPosition": { + "bottomTick": "-269800", + "topTick": "-269200" + } + } + }, + { + "transactionHash": "0xfac8c483343423369271e09d2ffaaa747c59b2807d335e640d61c41e013b3c21", + "state": { + "depositToken": 0, + "blockNumber": 235359659, + "lastRebalancePrice": "1888477", + "state": "2", + "currentTick": "-270173", + "currentPrice": "1849789", + "twapSlow": "1862782", + "twapFast": "1849789", + "depositTokenBalance": "0", + "pairedTokenBalance": "17813", + "usedToken0": "1644576148160407518393", + "usedToken1": "11713745179", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270000" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "-269400" + } + } + }, + { + "transactionHash": "0x5e4147a65eedd431208a5c35b4150a3e5a1484247cd5a9465c1826ffb3362ab1", + "state": { + "depositToken": 0, + "blockNumber": 235742211, + "lastRebalancePrice": "1849789", + "state": "2", + "currentTick": "-270441", + "currentPrice": "1800876", + "twapSlow": "1831934", + "twapFast": "1800876", + "depositTokenBalance": "0", + "pairedTokenBalance": "13895", + "usedToken0": "1730630623283322008152", + "usedToken1": "11557632002", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-269600" + } + } + }, + { + "transactionHash": "0x7f4032ead5d5db29dfd78224de8a3c5b6211648a982766500a3581ba362c7e5b", + "state": { + "depositToken": 0, + "blockNumber": 235782458, + "lastRebalancePrice": "1800876", + "state": "2", + "currentTick": "-270669", + "currentPrice": "1760282", + "twapSlow": "1769282", + "twapFast": "1760282", + "depositTokenBalance": "0", + "pairedTokenBalance": "24710", + "usedToken0": "1805187700543968725775", + "usedToken1": "11427408300", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270600" + }, + "limitPosition": { + "bottomTick": "-270600", + "topTick": "-269800" + } + } + }, + { + "transactionHash": "0x473bcdaddd0fdce310ed140c01b3fdfd24070819b17a4100aae2dbaed66ce2b4", + "state": { + "depositToken": 0, + "blockNumber": 236044860, + "lastRebalancePrice": "1760282", + "state": "2", + "currentTick": "-270408", + "currentPrice": "1806828", + "twapSlow": "1782244", + "twapFast": "1806828", + "depositTokenBalance": "0", + "pairedTokenBalance": "10161", + "usedToken0": "1348095552022025429122", + "usedToken1": "12245973330", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270000" + }, + "limitPosition": { + "bottomTick": "-270000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x0d9d9b427c4075076725ab2fed783aa67e75f23ef0b3fd011394eb21811b5fde", + "state": { + "depositToken": 0, + "blockNumber": 236148793, + "lastRebalancePrice": "1806828", + "state": "1", + "currentTick": "-270150", + "currentPrice": "1854048", + "twapSlow": "1827725", + "twapFast": "1854048", + "depositTokenBalance": "0", + "pairedTokenBalance": "164289", + "usedToken0": "511910525824945629430", + "usedToken1": "13783519444", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272400", + "topTick": "-270200" + } + } + }, + { + "transactionHash": "0x2469c9a4b75193aaa5d9381c3a1af4a5c4a899973175e74a02472a323eb21d20", + "state": { + "depositToken": 0, + "blockNumber": 237053885, + "lastRebalancePrice": "1854048", + "state": "0", + "currentTick": "-270296", + "currentPrice": "1827177", + "twapSlow": "1837254", + "twapFast": "1829554", + "depositTokenBalance": "0", + "pairedTokenBalance": "394414", + "usedToken0": "857356054514150681976", + "usedToken1": "13161633825", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5e1938a90b0d5e361313c27cadf56885646452ec50c2b51e9e625526c85340b5", + "state": { + "depositToken": 0, + "blockNumber": 237069506, + "lastRebalancePrice": "1827177", + "state": "1", + "currentTick": "-270374", + "currentPrice": "1812981", + "twapSlow": "1812981", + "twapFast": "1812981", + "depositTokenBalance": "2463425181", + "pairedTokenBalance": "1724", + "usedToken0": "1088661054731578792951", + "usedToken1": "12746283003", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7c41d74c7302ff5862a2e75c12f058cbbb73d24ea94d6089c39fe3f30124556a", + "state": { + "depositToken": 0, + "blockNumber": 237085065, + "lastRebalancePrice": "1812981", + "state": "1", + "currentTick": "-270374", + "currentPrice": "1812981", + "twapSlow": "1812981", + "twapFast": "1812981", + "depositTokenBalance": "1484920576", + "pairedTokenBalance": "3479", + "usedToken0": "1090506356177044750507", + "usedToken1": "12746283002", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x46df78fd36f0f559b311c656134c95443bfc4945f8768bf41d4aab46cc02a2f1", + "state": { + "depositToken": 0, + "blockNumber": 237100663, + "lastRebalancePrice": "1812981", + "state": "1", + "currentTick": "-270374", + "currentPrice": "1812981", + "twapSlow": "1812981", + "twapFast": "1812981", + "depositTokenBalance": "1484920575", + "pairedTokenBalance": "3478", + "usedToken0": "1090506356177044750506", + "usedToken1": "12746283001", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa43f41d3ece70fe70bd9f196071e5b5956ce159c4060b317de49153c2969096f", + "state": { + "depositToken": 0, + "blockNumber": 237116229, + "lastRebalancePrice": "1812981", + "state": "1", + "currentTick": "-270374", + "currentPrice": "1812981", + "twapSlow": "1812981", + "twapFast": "1812981", + "depositTokenBalance": "1484920574", + "pairedTokenBalance": "3477", + "usedToken0": "1090506356177044750505", + "usedToken1": "12746283000", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x315c662eea3465499923662c6791f4038f9475812baba5a73bf0a613de0dc1fb", + "state": { + "depositToken": 0, + "blockNumber": 237131830, + "lastRebalancePrice": "1812981", + "state": "1", + "currentTick": "-270374", + "currentPrice": "1812981", + "twapSlow": "1812981", + "twapFast": "1812981", + "depositTokenBalance": "1484920573", + "pairedTokenBalance": "3476", + "usedToken0": "1090506356177044750504", + "usedToken1": "12746282999", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9480af5bb520919261f20ebbb800291ceb882556b1e181b1a0247630b948565a", + "state": { + "depositToken": 0, + "blockNumber": 237147389, + "lastRebalancePrice": "1812981", + "state": "1", + "currentTick": "-270333", + "currentPrice": "1820429", + "twapSlow": "1814432", + "twapFast": "1820429", + "depositTokenBalance": "1484920572", + "pairedTokenBalance": "3475", + "usedToken0": "971009727917006253523", + "usedToken1": "12963380877", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5a979bca716c38ff6d808766577ada3948be70c24867c41ae8ddcece4a8bc974", + "state": { + "depositToken": 0, + "blockNumber": 237162994, + "lastRebalancePrice": "1820429", + "state": "1", + "currentTick": "-270173", + "currentPrice": "1849789", + "twapSlow": "1847571", + "twapFast": "1849789", + "depositTokenBalance": "2447749862", + "pairedTokenBalance": "3474", + "usedToken0": "502470543574198644234", + "usedToken1": "13824938782", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-270200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-272600", + "topTick": "-270200" + } + } + }, + { + "transactionHash": "0x9d03d66319ae35a1a52f35c52292d36e0bf5c13c0498ea40c6edca68f80d5a62", + "state": { + "depositToken": 0, + "blockNumber": 237734057, + "lastRebalancePrice": "1849789", + "state": "0", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1833950", + "twapFast": "1827908", + "depositTokenBalance": "0", + "pairedTokenBalance": "585217", + "usedToken0": "814630697723543750272", + "usedToken1": "13258698133", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9c6c0ab14a63a7fd8d7598c6abd454ba6531f7ac107c10d088df2ed01e09c938", + "state": { + "depositToken": 0, + "blockNumber": 237749629, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684090", + "pairedTokenBalance": "9684", + "usedToken0": "817179368674404102077", + "usedToken1": "13258746845", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x02df0bfc8076502adc41e06d881a45195e451f6ee00e4dfc0de77b16d7f3b2fc", + "state": { + "depositToken": 0, + "blockNumber": 237765236, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684089", + "pairedTokenBalance": "9683", + "usedToken0": "817179368674404102076", + "usedToken1": "13258746844", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf3268c62ed28645114fb20e8ff37842c4330481ebb844e7cf33821e26f006d77", + "state": { + "depositToken": 0, + "blockNumber": 237780839, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684088", + "pairedTokenBalance": "9682", + "usedToken0": "817179368674404102075", + "usedToken1": "13258746843", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x647cf6f8b87f605a8965ef3e174ed61f42991c7e68f1c6734a39a87062e0fbc2", + "state": { + "depositToken": 0, + "blockNumber": 237796440, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684087", + "pairedTokenBalance": "9681", + "usedToken0": "817179368674404102074", + "usedToken1": "13258746842", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x73c9683fb76a0193cc0c23386332df8c8d384ceb8c7ff9317fe4442b6802b288", + "state": { + "depositToken": 0, + "blockNumber": 237812032, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684086", + "pairedTokenBalance": "9680", + "usedToken0": "817179368674404102073", + "usedToken1": "13258746841", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x02de9784e29f3ddf82447531af40622f5d62256f2dc0b3d6229d0fec77689042", + "state": { + "depositToken": 0, + "blockNumber": 237827644, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684085", + "pairedTokenBalance": "9679", + "usedToken0": "817179368674404102072", + "usedToken1": "13258746840", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4176f620239803300ff631469a39baf8a671578addd33418edee488212b8f526", + "state": { + "depositToken": 0, + "blockNumber": 237843252, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684084", + "pairedTokenBalance": "9678", + "usedToken0": "817179368674404102071", + "usedToken1": "13258746839", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x16b0cba087f19635ccbc1de2812ec0f063991e53984fc8e1932f8b2c0390c074", + "state": { + "depositToken": 0, + "blockNumber": 237858879, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270294", + "currentPrice": "1827543", + "twapSlow": "1827543", + "twapFast": "1827543", + "depositTokenBalance": "3019684083", + "pairedTokenBalance": "9677", + "usedToken0": "817179368674404102070", + "usedToken1": "13258746838", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272400", + "topTick": "-270000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xeed0efceb1bb8ca3fccd05b3693ae45bf036549c45cf43433ceb22aabfa5dfbb", + "state": { + "depositToken": 0, + "blockNumber": 237874508, + "lastRebalancePrice": "1827543", + "state": "1", + "currentTick": "-270412", + "currentPrice": "1806105", + "twapSlow": "1817883", + "twapFast": "1806105", + "depositTokenBalance": "3019684082", + "pairedTokenBalance": "9676", + "usedToken0": "1148114629144456375846", + "usedToken1": "12657482720", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272600", + "topTick": "-270200" + }, + "limitPosition": { + "bottomTick": "-270200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xc0188dc490682543ef08b23e2698571b4c8db7d1c08ebdbb3d322b73c5c62edb", + "state": { + "depositToken": 0, + "blockNumber": 238084218, + "lastRebalancePrice": "1806105", + "state": "1", + "currentTick": "-270568", + "currentPrice": "1778150", + "twapSlow": "1784206", + "twapFast": "1778150", + "depositTokenBalance": "0", + "pairedTokenBalance": "693095", + "usedToken0": "1679759618945936052153", + "usedToken1": "11709472932", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270400" + }, + "limitPosition": { + "bottomTick": "-270400", + "topTick": "-269800" + } + } + }, + { + "transactionHash": "0xddfea045597082fbd72ec283ed54f2e277a46ba455f1ab0c6dd765c152f55e7d", + "state": { + "depositToken": 0, + "blockNumber": 238196080, + "lastRebalancePrice": "1778150", + "state": "2", + "currentTick": "-270784", + "currentPrice": "1740156", + "twapSlow": "1747305", + "twapFast": "1740156", + "depositTokenBalance": "0", + "pairedTokenBalance": "26479", + "usedToken0": "1755687874064963811450", + "usedToken1": "11583425158", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-270600" + }, + "limitPosition": { + "bottomTick": "-270600", + "topTick": "-270000" + } + } + }, + { + "transactionHash": "0x5f41c98909ab2e01fbf76d6d24c02de482ae0d365574155331da5eefc1fd0198", + "state": { + "depositToken": 0, + "blockNumber": 238356914, + "lastRebalancePrice": "1740156", + "state": "2", + "currentTick": "-271025", + "currentPrice": "1698721", + "twapSlow": "1713907", + "twapFast": "1698721", + "depositTokenBalance": "0", + "pairedTokenBalance": "26733", + "usedToken0": "1836833954354753241834", + "usedToken1": "11444900059", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271000" + }, + "limitPosition": { + "bottomTick": "-271000", + "topTick": "-270200" + } + } + }, + { + "transactionHash": "0x156c74104ce435e66d122af9ba059661bf07ec3bb7eba5ae1f0006c80866e13e", + "state": { + "depositToken": 0, + "blockNumber": 238683205, + "lastRebalancePrice": "1698721", + "state": "2", + "currentTick": "-271309", + "currentPrice": "1651159", + "twapSlow": "1664087", + "twapFast": "1656451", + "depositTokenBalance": "0", + "pairedTokenBalance": "12753", + "usedToken0": "1933814403082232762372", + "usedToken1": "11283561190", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271200" + }, + "limitPosition": { + "bottomTick": "-271200", + "topTick": "-270400" + } + } + }, + { + "transactionHash": "0x59a4a6ff3a72ee8803b70b683aba288e7b3af8cfa1c80e38ad203ad58c338f66", + "state": { + "depositToken": 0, + "blockNumber": 238700905, + "lastRebalancePrice": "1651159", + "state": "2", + "currentTick": "-271617", + "currentPrice": "1601081", + "twapSlow": "1623003", + "twapFast": "1601081", + "depositTokenBalance": "0", + "pairedTokenBalance": "22681", + "usedToken0": "2041127604497590806424", + "usedToken1": "11111924331", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271600" + }, + "limitPosition": { + "bottomTick": "-271600", + "topTick": "-270800" + } + } + }, + { + "transactionHash": "0x460a2d2faf805ff58f2a5420c6da6ec9f125e1fac644d0d4f708ab83caff7bea", + "state": { + "depositToken": 0, + "blockNumber": 239127678, + "lastRebalancePrice": "1601081", + "state": "2", + "currentTick": "-271827", + "currentPrice": "1567810", + "twapSlow": "1572520", + "twapFast": "1567810", + "depositTokenBalance": "0", + "pairedTokenBalance": "19593", + "usedToken0": "2115388115779642331113", + "usedToken1": "10995622819", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-271800" + }, + "limitPosition": { + "bottomTick": "-271800", + "topTick": "-271000" + } + } + }, + { + "transactionHash": "0xedd78dfc9eeff8f93176c11d1eaf08c04ca6c8425ed93bc500e246b99f9abebd", + "state": { + "depositToken": 0, + "blockNumber": 239382134, + "lastRebalancePrice": "1567810", + "state": "2", + "currentTick": "-272039", + "currentPrice": "1534924", + "twapSlow": "1555474", + "twapFast": "1534924", + "depositTokenBalance": "0", + "pairedTokenBalance": "1662", + "usedToken0": "2194611069970152979914", + "usedToken1": "10886312039", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-272000" + }, + "limitPosition": { + "bottomTick": "-272000", + "topTick": "-271200" + } + } + }, + { + "transactionHash": "0x6fec4a9b68e4adbc66b2e5a5218b0d506e5923d0955978f991559afb39361950", + "state": { + "depositToken": 0, + "blockNumber": 239409729, + "lastRebalancePrice": "1534924", + "state": "2", + "currentTick": "-272286", + "currentPrice": "1497478", + "twapSlow": "1512073", + "twapFast": "1498676", + "depositTokenBalance": "0", + "pairedTokenBalance": "30640", + "usedToken0": "2283325946771446974853", + "usedToken1": "10752718996", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-272200" + }, + "limitPosition": { + "bottomTick": "-272200", + "topTick": "-271400" + } + } + }, + { + "transactionHash": "0x0c896d935877fc3cb7c51b7905b101b48cc44dd8dcd9e587a1179a2c4a0e07bd", + "state": { + "depositToken": 0, + "blockNumber": 239433173, + "lastRebalancePrice": "1497478", + "state": "2", + "currentTick": "-272865", + "currentPrice": "1413240", + "twapSlow": "1415928", + "twapFast": "1413240", + "depositTokenBalance": "0", + "pairedTokenBalance": "27327", + "usedToken0": "2494825068411070094013", + "usedToken1": "10446053564", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-272800" + }, + "limitPosition": { + "bottomTick": "-272800", + "topTick": "-272000" + } + } + }, + { + "transactionHash": "0xf0779a069b7589207e383b3e91280f6faa135737b523ebdc0e55563281cf00e4", + "state": { + "depositToken": 0, + "blockNumber": 239565874, + "lastRebalancePrice": "1413240", + "state": "2", + "currentTick": "-274218", + "currentPrice": "1234408", + "twapSlow": "1233791", + "twapFast": "1234408", + "depositTokenBalance": "0", + "pairedTokenBalance": "33229", + "usedToken0": "3013847539769680522486", + "usedToken1": "9762721303", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0x3d2d371df8a504f9a9062f68ced4493b2b12ca3d61fc0df3d1f0d184d440835d", + "state": { + "depositToken": 0, + "blockNumber": 239651118, + "lastRebalancePrice": "1234408", + "state": "2", + "currentTick": "-274000", + "currentPrice": "1261612", + "twapSlow": "1267302", + "twapFast": "1261612", + "depositTokenBalance": "0", + "pairedTokenBalance": "35499", + "usedToken0": "2249489454338316842984", + "usedToken1": "10731862413", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274000" + }, + "limitPosition": { + "bottomTick": "-273800", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0xe26d2aefb515b5164036c0f3f53fbc72286fb20b9946a7b8e0cb43dca8ba2d97", + "state": { + "depositToken": 0, + "blockNumber": 239689910, + "lastRebalancePrice": "1261612", + "state": "2", + "currentTick": "-274241", + "currentPrice": "1231573", + "twapSlow": "1241712", + "twapFast": "1231573", + "depositTokenBalance": "0", + "pairedTokenBalance": "23482", + "usedToken0": "2358610416545268154601", + "usedToken1": "10619181838", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0xe146ef9e5975945b8a55afd238b7b89c878077f4dc3244add9c872a89ef73647", + "state": { + "depositToken": 0, + "blockNumber": 239709249, + "lastRebalancePrice": "1231573", + "state": "2", + "currentTick": "-273933", + "currentPrice": "1270093", + "twapSlow": "1234902", + "twapFast": "1269331", + "depositTokenBalance": "0", + "pairedTokenBalance": "13068", + "usedToken0": "1547690445870916107479", + "usedToken1": "11636220301", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "-273600" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xf2ff53c51982d89bf58f141abc1ea9aba1d9a56d613778720e83241a57bbf56b", + "state": { + "depositToken": 0, + "blockNumber": 239724717, + "lastRebalancePrice": "1270093", + "state": "1", + "currentTick": "-273667", + "currentPrice": "1304329", + "twapSlow": "1294454", + "twapFast": "1304329", + "depositTokenBalance": "0", + "pairedTokenBalance": "373815", + "usedToken0": "315678601648984928948", + "usedToken1": "13231301141", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-273800" + } + } + }, + { + "transactionHash": "0x05cead9793bc6ec2128d79531c1aaba317c8c3b9a9ccbb0bc2fb7afc95168d55", + "state": { + "depositToken": 0, + "blockNumber": 239741814, + "lastRebalancePrice": "1304329", + "state": "0", + "currentTick": "-273413", + "currentPrice": "1337882", + "twapSlow": "1307202", + "twapFast": "1337882", + "depositTokenBalance": "0", + "pairedTokenBalance": "509141", + "usedToken0": "311704508425422767947", + "usedToken1": "13249370171", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-273600" + } + } + }, + { + "transactionHash": "0xb55c2cd91113842ebb86c716b7591cfcad3a3619d2cdefcf4fa7c4fbabf4d89b", + "state": { + "depositToken": 0, + "blockNumber": 239871642, + "lastRebalancePrice": "1337882", + "state": "0", + "currentTick": "-273184", + "currentPrice": "1368871", + "twapSlow": "1352409", + "twapFast": "1368871", + "depositTokenBalance": "0", + "pairedTokenBalance": "509140", + "usedToken0": "308154255461348934050", + "usedToken1": "13254217152", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0xcda9462dbef6e9157ca2907e025d09fad1f9e96a58344a33be287ca6d4023a8f", + "state": { + "depositToken": 0, + "blockNumber": 240038371, + "lastRebalancePrice": "1368871", + "state": "0", + "currentTick": "-273437", + "currentPrice": "1334675", + "twapSlow": "1356879", + "twapFast": "1334675", + "depositTokenBalance": "0", + "pairedTokenBalance": "391132", + "usedToken0": "1329977519842217751249", + "usedToken1": "11874228753", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xfbd46a7a99eddbad89a33c6fc7e6a3058b65d1023cb54d21f939550149ab1f00", + "state": { + "depositToken": 0, + "blockNumber": 240053900, + "lastRebalancePrice": "1334675", + "state": "1", + "currentTick": "-273285", + "currentPrice": "1355116", + "twapSlow": "1346606", + "twapFast": "1355116", + "depositTokenBalance": "0", + "pairedTokenBalance": "812590", + "usedToken0": "680926134360238434115", + "usedToken1": "12758232825", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0xd8f36bfb7dd498db8f5db303e75a80ca313b916c48fa1954e90ccb33b4b8ba0c", + "state": { + "depositToken": 0, + "blockNumber": 240095408, + "lastRebalancePrice": "1355116", + "state": "0", + "currentTick": "-273081", + "currentPrice": "1383043", + "twapSlow": "1372847", + "twapFast": "1383043", + "depositTokenBalance": "0", + "pairedTokenBalance": "750190", + "usedToken0": "676252844838406892235", + "usedToken1": "12777991367", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0x2237e3f90b6bef44edb65c46e1f387c7cdda60b9f6816e21820486ad83f786e3", + "state": { + "depositToken": 0, + "blockNumber": 240176180, + "lastRebalancePrice": "1383043", + "state": "0", + "currentTick": "-273303", + "currentPrice": "1352679", + "twapSlow": "1362998", + "twapFast": "1352679", + "depositTokenBalance": "0", + "pairedTokenBalance": "750189", + "usedToken0": "1139439664718181228844", + "usedToken1": "12148199674", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x08016e0f27f324de8cf6971d477b52c97a9bf8e06c4d96995cc8618a4ad41d20", + "state": { + "depositToken": 0, + "blockNumber": 240191671, + "lastRebalancePrice": "1352679", + "state": "1", + "currentTick": "-273312", + "currentPrice": "1351462", + "twapSlow": "1352544", + "twapFast": "1351733", + "depositTokenBalance": "1875053494", + "pairedTokenBalance": "1180", + "usedToken0": "1178795551309721094917", + "usedToken1": "12100044833", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7faf54599885dfd036746d774fac5fd92383f0087868b590319149c149b9b7cf", + "state": { + "depositToken": 0, + "blockNumber": 240207233, + "lastRebalancePrice": "1351462", + "state": "1", + "currentTick": "-273348", + "currentPrice": "1346606", + "twapSlow": "1348627", + "twapFast": "1346606", + "depositTokenBalance": "1872557247", + "pairedTokenBalance": "5526", + "usedToken0": "1315378282384806055068", + "usedToken1": "11916165075", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5f0e42ae636af5b8ad731b624968047b23080621ebd97b3d3b75b0f531c61b25", + "state": { + "depositToken": 0, + "blockNumber": 240222771, + "lastRebalancePrice": "1346606", + "state": "1", + "currentTick": "-273331", + "currentPrice": "1348897", + "twapSlow": "1345664", + "twapFast": "1348897", + "depositTokenBalance": "1864147679", + "pairedTokenBalance": "11199", + "usedToken0": "1251045799369511029754", + "usedToken1": "12004361970", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc93d58ff071be0aba8ddfa5cd5cdc99e6f4da61b682cc45746a27d6a9a39efab", + "state": { + "depositToken": 0, + "blockNumber": 240238236, + "lastRebalancePrice": "1348897", + "state": "1", + "currentTick": "-273243", + "currentPrice": "1360819", + "twapSlow": "1356607", + "twapFast": "1360819", + "depositTokenBalance": "1861962749", + "pairedTokenBalance": "11187", + "usedToken0": "917287932278748965914", + "usedToken1": "12458458629", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x80fa8cf07fbce19f2e9c552f7b7fe922c819a0aacb9c489fd8999a7cf20ee289", + "state": { + "depositToken": 0, + "blockNumber": 240253801, + "lastRebalancePrice": "1360819", + "state": "1", + "currentTick": "-273243", + "currentPrice": "1360819", + "twapSlow": "1360819", + "twapFast": "1360819", + "depositTokenBalance": "1865621798", + "pairedTokenBalance": "11186", + "usedToken0": "917287932278748965913", + "usedToken1": "12462117678", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x58db61886b95e988b7d80bfe8cbe3593aabb59877bd07016ff67d94483537163", + "state": { + "depositToken": 0, + "blockNumber": 240269362, + "lastRebalancePrice": "1360819", + "state": "1", + "currentTick": "-273211", + "currentPrice": "1365181", + "twapSlow": "1362589", + "twapFast": "1364362", + "depositTokenBalance": "1865621797", + "pairedTokenBalance": "11185", + "usedToken0": "796985809838847482764", + "usedToken1": "12626095884", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x03a5c05be07508632af261d446e4006402feddf5c78814137e398d6c2e8900a3", + "state": { + "depositToken": 0, + "blockNumber": 240284922, + "lastRebalancePrice": "1365181", + "state": "1", + "currentTick": "-273196", + "currentPrice": "1367230", + "twapSlow": "1366956", + "twapFast": "1367230", + "depositTokenBalance": "1866946874", + "pairedTokenBalance": "11184", + "usedToken0": "739537627206206291481", + "usedToken1": "12705909121", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x177a7c2042eb6b4634c0f909ae85a06a414d93514287afc25c1d74a0249860ce", + "state": { + "depositToken": 0, + "blockNumber": 240300513, + "lastRebalancePrice": "1367230", + "state": "1", + "currentTick": "-273196", + "currentPrice": "1367230", + "twapSlow": "1367230", + "twapFast": "1367230", + "depositTokenBalance": "1867581122", + "pairedTokenBalance": "11183", + "usedToken0": "739537627206206291480", + "usedToken1": "12706543369", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x01ee5128bced1e31eea43835310ca33d79b8dcde451ea7596e0960dcb996fd4f", + "state": { + "depositToken": 0, + "blockNumber": 240316083, + "lastRebalancePrice": "1367230", + "state": "1", + "currentTick": "-273196", + "currentPrice": "1367230", + "twapSlow": "1367230", + "twapFast": "1367230", + "depositTokenBalance": "1867581121", + "pairedTokenBalance": "11182", + "usedToken0": "739537627206206291479", + "usedToken1": "12706543368", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x095ba2723cdcb1b769ab6e0f45efebefdaf5ac7016828e45d644dd4efb6fb290", + "state": { + "depositToken": 0, + "blockNumber": 240331668, + "lastRebalancePrice": "1367230", + "state": "1", + "currentTick": "-273168", + "currentPrice": "1371063", + "twapSlow": "1368598", + "twapFast": "1371063", + "depositTokenBalance": "1867581120", + "pairedTokenBalance": "11181", + "usedToken0": "632071763782889206015", + "usedToken1": "12853687009", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0xd0c4d42b862113087565daf2a8fb9855d5e3d9fec2cb26c0522dc2f8771ff94f", + "state": { + "depositToken": 0, + "blockNumber": 240378303, + "lastRebalancePrice": "1371063", + "state": "0", + "currentTick": "-273279", + "currentPrice": "1355929", + "twapSlow": "1361636", + "twapFast": "1355929", + "depositTokenBalance": "0", + "pairedTokenBalance": "413074", + "usedToken0": "958873643265118405367", + "usedToken1": "12409976006", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x54a904e97099ce051fe5707043e899aa982fb70106313e5e346f5e42f8d66f97", + "state": { + "depositToken": 0, + "blockNumber": 240393843, + "lastRebalancePrice": "1355929", + "state": "1", + "currentTick": "-273292", + "currentPrice": "1354168", + "twapSlow": "1355794", + "twapFast": "1354439", + "depositTokenBalance": "2908607893", + "pairedTokenBalance": "12556", + "usedToken0": "1007569513781252764836", + "usedToken1": "12347564796", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3b8d149fdb3ac12bf193ed161751d934fc2c8b4edaa17bfeec1ecd8ab683742b", + "state": { + "depositToken": 0, + "blockNumber": 240409285, + "lastRebalancePrice": "1354168", + "state": "1", + "currentTick": "-273513", + "currentPrice": "1324570", + "twapSlow": "1338150", + "twapFast": "1324570", + "depositTokenBalance": "2905121462", + "pairedTokenBalance": "15662", + "usedToken0": "1784004527894742002442", + "usedToken1": "11308159008", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xca200cf7e929481c980851cf68bea884d712e723de5724b9d41b09cba80bc121", + "state": { + "depositToken": 0, + "blockNumber": 240461537, + "lastRebalancePrice": "1324570", + "state": "1", + "currentTick": "-273621", + "currentPrice": "1310343", + "twapSlow": "1317437", + "twapFast": "1310605", + "depositTokenBalance": "0", + "pairedTokenBalance": "341926", + "usedToken0": "2255901766466750837138", + "usedToken1": "10694715184", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273600" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "-272800" + } + } + }, + { + "transactionHash": "0x2dbb1e521b2c8607bb8c1fec0f2b7516af2598a6f5bacf5ed15010da8c77883a", + "state": { + "depositToken": 0, + "blockNumber": 240719108, + "lastRebalancePrice": "1310343", + "state": "2", + "currentTick": "-273306", + "currentPrice": "1352273", + "twapSlow": "1331343", + "twapFast": "1346068", + "depositTokenBalance": "0", + "pairedTokenBalance": "22328", + "usedToken0": "1412921295875801047959", + "usedToken1": "11822869498", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": { + "bottomTick": "-273000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x375765e9259c088427a60b95baac5c05536d2ee1436e8957a7cfc290abbbe1e5", + "state": { + "depositToken": 0, + "blockNumber": 240770900, + "lastRebalancePrice": "1352273", + "state": "1", + "currentTick": "-273089", + "currentPrice": "1381937", + "twapSlow": "1358372", + "twapFast": "1378487", + "depositTokenBalance": "0", + "pairedTokenBalance": "87277", + "usedToken0": "461774802367261822043", + "usedToken1": "13133991235", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0x5faee95e78f8c02e280b2e3df6a5707bce2c23742030d38c3cde9030439005e0", + "state": { + "depositToken": 0, + "blockNumber": 240866497, + "lastRebalancePrice": "1381937", + "state": "0", + "currentTick": "-272850", + "currentPrice": "1415361", + "twapSlow": "1394430", + "twapFast": "1415361", + "depositTokenBalance": "0", + "pairedTokenBalance": "512054", + "usedToken0": "459705759916803123078", + "usedToken1": "13156909765", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-273000" + } + } + }, + { + "transactionHash": "0x2d6dcf1885038c87aa905bcfa406c0714c0139f80837dec1126bf990dd3b5aa7", + "state": { + "depositToken": 0, + "blockNumber": 241078442, + "lastRebalancePrice": "1415361", + "state": "0", + "currentTick": "-273065", + "currentPrice": "1385257", + "twapSlow": "1397641", + "twapFast": "1385257", + "depositTokenBalance": "0", + "pairedTokenBalance": "512053", + "usedToken0": "755259883425454783870", + "usedToken1": "12746156242", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0x5da5a2941b4cf9f24c56ff42cc4279a828f68829cb42d7167fba1666c6ceb3f7", + "state": { + "depositToken": 0, + "blockNumber": 241829121, + "lastRebalancePrice": "1385257", + "state": "0", + "currentTick": "-273246", + "currentPrice": "1360411", + "twapSlow": "1366683", + "twapFast": "1360411", + "depositTokenBalance": "0", + "pairedTokenBalance": "662176", + "usedToken0": "967225348319266775520", + "usedToken1": "12460382942", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x08d59bd9e5c686d14e0255a243908366b844edb47eabca82c1e2ecc81315422f", + "state": { + "depositToken": 0, + "blockNumber": 241844792, + "lastRebalancePrice": "1360411", + "state": "1", + "currentTick": "-273347", + "currentPrice": "1346741", + "twapSlow": "1346741", + "twapFast": "1346741", + "depositTokenBalance": "1423209573", + "pairedTokenBalance": "15932", + "usedToken0": "1371049850957345140641", + "usedToken1": "11918568743", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0e4425c06b8d942231d1265f475e24ed6fce23237a1d743cb0595ccaecf0049d", + "state": { + "depositToken": 0, + "blockNumber": 241860334, + "lastRebalancePrice": "1346741", + "state": "1", + "currentTick": "-273379", + "currentPrice": "1342438", + "twapSlow": "1345529", + "twapFast": "1342438", + "depositTokenBalance": "1398391703", + "pairedTokenBalance": "8689", + "usedToken0": "1503784384944017689030", + "usedToken1": "11744446566", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x78ee6a809c2cf5a32d6727f6d2c2dddb944cf04f2d6052e4b38a80cbd5f385eb", + "state": { + "depositToken": 0, + "blockNumber": 241875850, + "lastRebalancePrice": "1342438", + "state": "1", + "currentTick": "-273401", + "currentPrice": "1339488", + "twapSlow": "1340158", + "twapFast": "1339488", + "depositTokenBalance": "422520674", + "pairedTokenBalance": "15029", + "usedToken0": "1593380507674950156408", + "usedToken1": "11625701469", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9f97dd71ab8353c5e9bd2aa429a3ab7f77084285dff6b638fd9335cf028a0ca0", + "state": { + "depositToken": 0, + "blockNumber": 241891371, + "lastRebalancePrice": "1339488", + "state": "1", + "currentTick": "-273401", + "currentPrice": "1339488", + "twapSlow": "1339488", + "twapFast": "1339488", + "depositTokenBalance": "417489563", + "pairedTokenBalance": "17162", + "usedToken0": "1594096060958688644299", + "usedToken1": "11625701468", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbab739c537d0e26db0149586f9cb1f7bc052494f1c69c0e85e6c5008f7bcc974", + "state": { + "depositToken": 0, + "blockNumber": 241906797, + "lastRebalancePrice": "1339488", + "state": "1", + "currentTick": "-273528", + "currentPrice": "1322585", + "twapSlow": "1326824", + "twapFast": "1322585", + "depositTokenBalance": "417489562", + "pairedTokenBalance": "17161", + "usedToken0": "2106358036011010093972", + "usedToken1": "10943862521", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "-272600" + } + } + }, + { + "transactionHash": "0xbfb1fabf0ae3d31f206280cf2978f4ab3116d9eab695a207d792c28008ea2982", + "state": { + "depositToken": 0, + "blockNumber": 241969478, + "lastRebalancePrice": "1322585", + "state": "2", + "currentTick": "-273755", + "currentPrice": "1292902", + "twapSlow": "1314805", + "twapFast": "1292902", + "depositTokenBalance": "0", + "pairedTokenBalance": "19307", + "usedToken0": "2204617152049575984794", + "usedToken1": "10820779532", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273600" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "-273000" + } + } + }, + { + "transactionHash": "0x70ccdcfd83e80fddc02896dcc7b5a4dff815b61bdbd2be7a302db2c34150ba12", + "state": { + "depositToken": 0, + "blockNumber": 242072301, + "lastRebalancePrice": "1292902", + "state": "2", + "currentTick": "-273522", + "currentPrice": "1323379", + "twapSlow": "1300422", + "twapFast": "1323247", + "depositTokenBalance": "0", + "pairedTokenBalance": "31789", + "usedToken0": "1855654766815154265936", + "usedToken1": "11280835946", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "-272600" + } + } + }, + { + "transactionHash": "0x84c28446193279f9a45655722be68dccdd25360236ab0eb65d9dc27f6dfc379c", + "state": { + "depositToken": 0, + "blockNumber": 242093778, + "lastRebalancePrice": "1323379", + "state": "2", + "currentTick": "-273363", + "currentPrice": "1344588", + "twapSlow": "1334542", + "twapFast": "1344588", + "depositTokenBalance": "0", + "pairedTokenBalance": "27001", + "usedToken0": "1719940816872349198716", + "usedToken1": "11468316166", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-273000" + }, + "limitPosition": { + "bottomTick": "-273000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x5eedbe222e35fc6dee266f4abc39ab0cf5939c59709edd76f915904c7a9f9983", + "state": { + "depositToken": 0, + "blockNumber": 243222119, + "lastRebalancePrice": "1344588", + "state": "1", + "currentTick": "-273597", + "currentPrice": "1313491", + "twapSlow": "1336144", + "twapFast": "1333874", + "depositTokenBalance": "0", + "pairedTokenBalance": "321092", + "usedToken0": "2755535305458291709916", + "usedToken1": "10093522482", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x666d75f2871e888a551ea04e582c27be8905985b6294ead1d90f1de5f7a77883", + "state": { + "depositToken": 0, + "blockNumber": 243237613, + "lastRebalancePrice": "1313491", + "state": "3", + "currentTick": "-273869", + "currentPrice": "1278247", + "twapSlow": "1292385", + "twapFast": "1278247", + "depositTokenBalance": "0", + "pairedTokenBalance": "472531", + "usedToken0": "2880820885835502997405", + "usedToken1": "9973119585", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273800" + }, + "limitPosition": { + "bottomTick": "-273800", + "topTick": "-273000" + } + } + }, + { + "transactionHash": "0x16c82e0b2ec58c22d0998a4db3579703f140fedddea65effabf6765db156ad7d", + "state": { + "depositToken": 0, + "blockNumber": 243936076, + "lastRebalancePrice": "1278247", + "state": "2", + "currentTick": "-273831", + "currentPrice": "1283114", + "twapSlow": "1293937", + "twapFast": "1283114", + "depositTokenBalance": "4195865688", + "pairedTokenBalance": "38189", + "usedToken0": "2870639717928791676470", + "usedToken1": "14193194348", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273800" + }, + "limitPosition": { + "bottomTick": "-273800", + "topTick": "-273000" + } + } + }, + { + "transactionHash": "0xb58941a4c9c3ab03074a1d2316eb856753fb022fee1ad3bd3c1fbec310bee380", + "state": { + "depositToken": 0, + "blockNumber": 244176680, + "lastRebalancePrice": "1283114", + "state": "2", + "currentTick": "-273584", + "currentPrice": "1315200", + "twapSlow": "1303286", + "twapFast": "1315200", + "depositTokenBalance": "0", + "pairedTokenBalance": "31600", + "usedToken0": "2071477255944447069438", + "usedToken1": "15230669510", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf3493ece8c1b6467a38357e8e4729648e6c8c4e193ad6d248a1198a40a6dc3bf", + "state": { + "depositToken": 0, + "blockNumber": 244192473, + "lastRebalancePrice": "1315200", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1315200", + "twapFast": "1315726", + "depositTokenBalance": "211218579", + "pairedTokenBalance": "20201", + "usedToken0": "1945014793329272633835", + "usedToken1": "15405724854", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x89faf8f0c8ad420729ddd6379ea2ce5ecbdd3c9c4d827a61e1ab93c3eddeffc6", + "state": { + "depositToken": 0, + "blockNumber": 244208035, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536966", + "pairedTokenBalance": "20200", + "usedToken0": "1945014793329272633834", + "usedToken1": "15407071042", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb52eac148f13e252bee020ce8106071f1fb7d51bf2cd8eb48b2d65715a05abad", + "state": { + "depositToken": 0, + "blockNumber": 244223635, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536965", + "pairedTokenBalance": "20199", + "usedToken0": "1945014793329272633833", + "usedToken1": "15407071041", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8a33baf7e2ef4fe4a8ca80f94dc0d8c7649fb53fcdf4c095881f5c6201e821bf", + "state": { + "depositToken": 0, + "blockNumber": 244239198, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536964", + "pairedTokenBalance": "20198", + "usedToken0": "1945014793329272633832", + "usedToken1": "15407071040", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4319321da6f0d82e1145e6699db6817b913a6fa85b70f1b6e05c0273d2b5fde1", + "state": { + "depositToken": 0, + "blockNumber": 244254762, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536963", + "pairedTokenBalance": "20197", + "usedToken0": "1945014793329272633831", + "usedToken1": "15407071039", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb8f965cf15abdd487208a68b634845497c7bdd95fa5e09241e0cf5d0a28fd166", + "state": { + "depositToken": 0, + "blockNumber": 244270017, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536962", + "pairedTokenBalance": "20196", + "usedToken0": "1945014793329272633830", + "usedToken1": "15407071038", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x35fa0c96733d247c46a1df2d109dd536b43c7193a5f21724e77447a2305035f0", + "state": { + "depositToken": 0, + "blockNumber": 244285147, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536961", + "pairedTokenBalance": "20195", + "usedToken0": "1945014793329272633829", + "usedToken1": "15407071037", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x89a3d495c8b8a517663ddb28cc09ddf2663830c09f29155b4a1fc687203d07ec", + "state": { + "depositToken": 0, + "blockNumber": 244300319, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273561", + "currentPrice": "1318228", + "twapSlow": "1318228", + "twapFast": "1318228", + "depositTokenBalance": "1501536960", + "pairedTokenBalance": "20194", + "usedToken0": "1945014793329272633828", + "usedToken1": "15407071036", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x97a1c259e0ccf083eadb21a2f4da6e17e665f99e68da6d49f516ff937d847f01", + "state": { + "depositToken": 0, + "blockNumber": 244315739, + "lastRebalancePrice": "1318228", + "state": "1", + "currentTick": "-273567", + "currentPrice": "1317437", + "twapSlow": "1317701", + "twapFast": "1317437", + "depositTokenBalance": "1501536959", + "pairedTokenBalance": "20193", + "usedToken0": "1974593218466723353421", + "usedToken1": "15368089423", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf8cb92349a9255e0a6a17a7b13782e71bea50d6ce7dfa14a9009da16c6f9b582", + "state": { + "depositToken": 0, + "blockNumber": 244331305, + "lastRebalancePrice": "1317437", + "state": "1", + "currentTick": "-273567", + "currentPrice": "1317437", + "twapSlow": "1317437", + "twapFast": "1317437", + "depositTokenBalance": "1499858461", + "pairedTokenBalance": "12941", + "usedToken0": "1974832236043591642066", + "usedToken1": "15368089422", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x43695824329607f6744d23b861e83130ada044993e07094f3a0d090d6b7d1870", + "state": { + "depositToken": 0, + "blockNumber": 244346983, + "lastRebalancePrice": "1317437", + "state": "1", + "currentTick": "-273568", + "currentPrice": "1317306", + "twapSlow": "1317306", + "twapFast": "1317306", + "depositTokenBalance": "1499858460", + "pairedTokenBalance": "12940", + "usedToken0": "1982847837585044151707", + "usedToken1": "15357529252", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6792eb06bfc6285d7b70340561c0154133a3b019f07869bd2a0650dca20b53b4", + "state": { + "depositToken": 0, + "blockNumber": 244362656, + "lastRebalancePrice": "1317306", + "state": "1", + "currentTick": "-273568", + "currentPrice": "1317306", + "twapSlow": "1317306", + "twapFast": "1317306", + "depositTokenBalance": "210235443", + "pairedTokenBalance": "20078", + "usedToken0": "1982912610122752858855", + "usedToken1": "15357529251", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x49986ed3bf065736954ed0c034082ea6d5b3c2e7dd207734425459fb815d3c5d", + "state": { + "depositToken": 0, + "blockNumber": 244378353, + "lastRebalancePrice": "1317306", + "state": "1", + "currentTick": "-273568", + "currentPrice": "1317306", + "twapSlow": "1317306", + "twapFast": "1317306", + "depositTokenBalance": "210235442", + "pairedTokenBalance": "20077", + "usedToken0": "1982912610122752858854", + "usedToken1": "15357529250", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6c8d536c83dd576901e4fa23619a8363bdf3fed8aa6b7274a361f3773823815c", + "state": { + "depositToken": 0, + "blockNumber": 244393866, + "lastRebalancePrice": "1317306", + "state": "1", + "currentTick": "-273568", + "currentPrice": "1317306", + "twapSlow": "1317306", + "twapFast": "1317306", + "depositTokenBalance": "210235441", + "pairedTokenBalance": "20076", + "usedToken0": "1982912610122752858853", + "usedToken1": "15357529249", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x60d773d2ca64f8ce7b19c2f1e6a0f4bc356357f60c0804b7680a12ee5fe77626", + "state": { + "depositToken": 0, + "blockNumber": 244409489, + "lastRebalancePrice": "1317306", + "state": "1", + "currentTick": "-273571", + "currentPrice": "1316911", + "twapSlow": "1317042", + "twapFast": "1316911", + "depositTokenBalance": "210235440", + "pairedTokenBalance": "20075", + "usedToken0": "1998771312245217926598", + "usedToken1": "15336640753", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x01026f83b410a8ca95bd0531a9dcef6ed6929a55544182637c7b20ac853f1ea4", + "state": { + "depositToken": 0, + "blockNumber": 244425171, + "lastRebalancePrice": "1316911", + "state": "1", + "currentTick": "-273636", + "currentPrice": "1308379", + "twapSlow": "1311129", + "twapFast": "1308379", + "depositTokenBalance": "209265610", + "pairedTokenBalance": "20034", + "usedToken0": "2355197350429826731921", + "usedToken1": "14868936970", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4565ff28d872a52efea98c3d9a54d212c7aa4c11445e57d43b92efe5e7f2503a", + "state": { + "depositToken": 0, + "blockNumber": 244440764, + "lastRebalancePrice": "1308379", + "state": "1", + "currentTick": "-273636", + "currentPrice": "1308379", + "twapSlow": "1308379", + "twapFast": "1308379", + "depositTokenBalance": "191344496", + "pairedTokenBalance": "30318", + "usedToken0": "2358076525274726501307", + "usedToken1": "14868936969", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa0e9ac099b5cabd209a6439680e0a58a56d53fe8002c8b28c42fb6e5607de5bf", + "state": { + "depositToken": 0, + "blockNumber": 244456319, + "lastRebalancePrice": "1308379", + "state": "1", + "currentTick": "-273643", + "currentPrice": "1307463", + "twapSlow": "1308117", + "twapFast": "1307463", + "depositTokenBalance": "191344495", + "pairedTokenBalance": "30317", + "usedToken0": "2392684787925208815733", + "usedToken1": "14823669998", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2adad1b05230b8951333cc0ec07ddeb70e3f39742bce22a5881f9fd3ba8ce91f", + "state": { + "depositToken": 0, + "blockNumber": 244471897, + "lastRebalancePrice": "1307463", + "state": "1", + "currentTick": "-273682", + "currentPrice": "1302374", + "twapSlow": "1305243", + "twapFast": "1302505", + "depositTokenBalance": "189634233", + "pairedTokenBalance": "23574", + "usedToken0": "2610056033330575558995", + "usedToken1": "14540370009", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "-273200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1dcfebee26ec8e031019d06239127c8d73c870235296cc07f6469fcb086ea021", + "state": { + "depositToken": 0, + "blockNumber": 244556792, + "lastRebalancePrice": "1302374", + "state": "1", + "currentTick": "-273710", + "currentPrice": "1298733", + "twapSlow": "1298733", + "twapFast": "1298733", + "depositTokenBalance": "179988790", + "pairedTokenBalance": "27211", + "usedToken0": "2761793984418602158784", + "usedToken1": "14345298581", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273600" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "-272800" + } + } + }, + { + "transactionHash": "0xfbcc0a42a3a87b4e7505e8e74cff7d21a9e64eb3fcc013f4f870dbfc42f86c08", + "state": { + "depositToken": 0, + "blockNumber": 244709417, + "lastRebalancePrice": "1298733", + "state": "2", + "currentTick": "-273493", + "currentPrice": "1327222", + "twapSlow": "1324570", + "twapFast": "1327222", + "depositTokenBalance": "0", + "pairedTokenBalance": "33602", + "usedToken0": "2332045994413326756988", + "usedToken1": "14913395253", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "-272600" + } + } + }, + { + "transactionHash": "0xe79ccf68c2c80c39279875a363ef7dd49b6c58a78a0d7223c104807237bca493", + "state": { + "depositToken": 0, + "blockNumber": 244725024, + "lastRebalancePrice": "1327222", + "state": "2", + "currentTick": "-273376", + "currentPrice": "1342841", + "twapSlow": "1335743", + "twapFast": "1342841", + "depositTokenBalance": "0", + "pairedTokenBalance": "14033", + "usedToken0": "2209393664165508907803", + "usedToken1": "15082636384", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "-273000" + }, + "limitPosition": { + "bottomTick": "-273000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x7610dbf3cbd4676d0951a742d851351af914452f1fecebd5ea23538330f9f74c", + "state": { + "depositToken": 0, + "blockNumber": 244933683, + "lastRebalancePrice": "1342841", + "state": "1", + "currentTick": "-273488", + "currentPrice": "1327886", + "twapSlow": "1332008", + "twapFast": "1327886", + "depositTokenBalance": "0", + "pairedTokenBalance": "255100", + "usedToken0": "2806603189380434294434", + "usedToken1": "14286429977", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "-272600" + } + } + }, + { + "transactionHash": "0xe16d6f9ad9f04194c548dd7b692a093b4f8f778ce1d4a7e60c4c71db271f6478", + "state": { + "depositToken": 0, + "blockNumber": 245381922, + "lastRebalancePrice": "1327886", + "state": "2", + "currentTick": "-273270", + "currentPrice": "1357150", + "twapSlow": "1347684", + "twapFast": "1357150", + "depositTokenBalance": "0", + "pairedTokenBalance": "16779", + "usedToken0": "2310884085631394193029", + "usedToken1": "14971591126", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "-272400" + } + } + }, + { + "transactionHash": "0xf2ff5d145c78495d5f88d49a980ff8eee44aec65f858c312e5301c62132af624", + "state": { + "depositToken": 0, + "blockNumber": 245406244, + "lastRebalancePrice": "1357150", + "state": "2", + "currentTick": "-273190", + "currentPrice": "1368050", + "twapSlow": "1360139", + "twapFast": "1368050", + "depositTokenBalance": "0", + "pairedTokenBalance": "48459", + "usedToken0": "2243016220806954030188", + "usedToken1": "15070652111", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "-272800" + }, + "limitPosition": { + "bottomTick": "-272800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x15af66f4ff639a55f709e450e0f02b3abe6ca0a37e94cf7b08edda8a36831f0a", + "state": { + "depositToken": 0, + "blockNumber": 245949006, + "lastRebalancePrice": "1368050", + "state": "1", + "currentTick": "-272928", + "currentPrice": "1404365", + "twapSlow": "1398479", + "twapFast": "1404365", + "depositTokenBalance": "0", + "pairedTokenBalance": "351443", + "usedToken0": "667236389479273961988", + "usedToken1": "13012480103", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-273000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-273000" + } + } + }, + { + "transactionHash": "0x3a9c6629caf84b0fe2ad58e2d15e8f0b7e419e28bd9c7d00e62fa2e1f9d677a7", + "state": { + "depositToken": 0, + "blockNumber": 246010109, + "lastRebalancePrice": "1404365", + "state": "0", + "currentTick": "-272719", + "currentPrice": "1434024", + "twapSlow": "1425303", + "twapFast": "1434024", + "depositTokenBalance": "0", + "pairedTokenBalance": "40090", + "usedToken0": "660305887060241598138", + "usedToken1": "13021211065", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-272800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-272800" + } + } + }, + { + "transactionHash": "0xb0658ce4c8f5ab3c7395c3b4fa786b0572234feb2c263934f5d704234c52999b", + "state": { + "depositToken": 0, + "blockNumber": 247092065, + "lastRebalancePrice": "1434024", + "state": "0", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1414230", + "twapFast": "1398759", + "depositTokenBalance": "0", + "pairedTokenBalance": "40089", + "usedToken0": "1402538057705160195580", + "usedToken1": "11974263209", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa4f1b1df539a49110f044a069e84d75ea7149de447f7ad1e9997d4fc3a78772f", + "state": { + "depositToken": 0, + "blockNumber": 247107669, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139239", + "pairedTokenBalance": "16430", + "usedToken0": "1408678649963404765445", + "usedToken1": "11974468679", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0c903cdd3de600c09fec5838ee93fafba1fcbe9943f3e35eb95006c1fc86a866", + "state": { + "depositToken": 0, + "blockNumber": 247123280, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139238", + "pairedTokenBalance": "16429", + "usedToken0": "1408678649963404765444", + "usedToken1": "11974468678", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc0e8fb6832f30fa8f1ac2629dcfa4f1b54c3a59150a0a787f4bd9bbda93068e2", + "state": { + "depositToken": 0, + "blockNumber": 247138901, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139237", + "pairedTokenBalance": "16428", + "usedToken0": "1408678649963404765443", + "usedToken1": "11974468677", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x73d4c75e75bb244bd82964a979a219b2e09ebc4fe4678d3b25514eaba2848f33", + "state": { + "depositToken": 0, + "blockNumber": 247154518, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139236", + "pairedTokenBalance": "16427", + "usedToken0": "1408678649963404765442", + "usedToken1": "11974468676", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x386e5a39a517a809232c329f2c3be19e8714b4084350eecedeff0e083328af5b", + "state": { + "depositToken": 0, + "blockNumber": 247170093, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139235", + "pairedTokenBalance": "16426", + "usedToken0": "1408678649963404765441", + "usedToken1": "11974468675", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf7565d9db8c3ff88c967eee48febc42f385e20b39997a7520d43bd2c8525f2c2", + "state": { + "depositToken": 0, + "blockNumber": 247185714, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139234", + "pairedTokenBalance": "16425", + "usedToken0": "1408678649963404765440", + "usedToken1": "11974468674", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x276b9541e43a8ff45c09c1001d5890ca02673a0df3b9e8f042059ab95175195d", + "state": { + "depositToken": 0, + "blockNumber": 247201348, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272968", + "currentPrice": "1398759", + "twapSlow": "1398759", + "twapFast": "1398759", + "depositTokenBalance": "549139233", + "pairedTokenBalance": "16424", + "usedToken0": "1408678649963404765439", + "usedToken1": "11974468673", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe2765b57893b2b94b6f916678ab2bda6ca626ee9760a2e7dc00bbc7ceee66f1f", + "state": { + "depositToken": 0, + "blockNumber": 247216949, + "lastRebalancePrice": "1398759", + "state": "1", + "currentTick": "-272995", + "currentPrice": "1394988", + "twapSlow": "1398200", + "twapFast": "1396244", + "depositTokenBalance": "549139232", + "pairedTokenBalance": "16423", + "usedToken0": "1513024288847628933990", + "usedToken1": "11828705793", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb6c20d4f0ab18fd10e9a0b048af2374ca83fb3f5cc1321c808695eb40fca0c13", + "state": { + "depositToken": 0, + "blockNumber": 247232531, + "lastRebalancePrice": "1394988", + "state": "1", + "currentTick": "-272995", + "currentPrice": "1394988", + "twapSlow": "1394988", + "twapFast": "1394988", + "depositTokenBalance": "542853213", + "pairedTokenBalance": "5622", + "usedToken0": "1513867485929521654543", + "usedToken1": "11828705792", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa32c48d43948e1cb4b05aa762ba7dde85913d2e8d4d7eb876fbf0459179165bd", + "state": { + "depositToken": 0, + "blockNumber": 247248116, + "lastRebalancePrice": "1394988", + "state": "1", + "currentTick": "-272995", + "currentPrice": "1394988", + "twapSlow": "1394988", + "twapFast": "1394988", + "depositTokenBalance": "542853212", + "pairedTokenBalance": "5621", + "usedToken0": "1513867485929521654542", + "usedToken1": "11828705791", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8b1ec2ac578e3c7cf40c02688dacff6388dc48a2b0e65d3c97199b6502501207", + "state": { + "depositToken": 0, + "blockNumber": 247263718, + "lastRebalancePrice": "1394988", + "state": "1", + "currentTick": "-273030", + "currentPrice": "1390114", + "twapSlow": "1391644", + "twapFast": "1390114", + "depositTokenBalance": "542853211", + "pairedTokenBalance": "5620", + "usedToken0": "1650816866285102903237", + "usedToken1": "11637992790", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd3240ef6d316bbc5966a955064cacd620bddab4418b7e23b820297d6d602082a", + "state": { + "depositToken": 0, + "blockNumber": 247279258, + "lastRebalancePrice": "1390114", + "state": "1", + "currentTick": "-273077", + "currentPrice": "1383596", + "twapSlow": "1387337", + "twapFast": "1383596", + "depositTokenBalance": "535415337", + "pairedTokenBalance": "26604", + "usedToken0": "1833093985471111181890", + "usedToken1": "11386729525", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd0bcbf0e0c6fefa4d449b3a6e39bbc955863e5af3d5cdf8d488a6aface4abe9f", + "state": { + "depositToken": 0, + "blockNumber": 247294753, + "lastRebalancePrice": "1383596", + "state": "1", + "currentTick": "-273102", + "currentPrice": "1380142", + "twapSlow": "1381937", + "twapFast": "1380142", + "depositTokenBalance": "526748915", + "pairedTokenBalance": "4206", + "usedToken0": "1933321167355454354252", + "usedToken1": "11250247698", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x951acff1f7b31d4e34e5174705f174f6de80e1bfd2d7ef7c098cd29e63da10a9", + "state": { + "depositToken": 0, + "blockNumber": 247310317, + "lastRebalancePrice": "1380142", + "state": "1", + "currentTick": "-273115", + "currentPrice": "1378349", + "twapSlow": "1378762", + "twapFast": "1378349", + "depositTokenBalance": "522322191", + "pairedTokenBalance": "16739", + "usedToken0": "1983887122498450077752", + "usedToken1": "11181603810", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdbfc9144f116ed811409b8c695587eeac6dbf80d32fb16747ca200278008e415", + "state": { + "depositToken": 0, + "blockNumber": 247325862, + "lastRebalancePrice": "1378349", + "state": "1", + "currentTick": "-273121", + "currentPrice": "1377522", + "twapSlow": "1377660", + "twapFast": "1377522", + "depositTokenBalance": "520161389", + "pairedTokenBalance": "35396", + "usedToken0": "2008131680058178240277", + "usedToken1": "11148749426", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf6bfcbed5f2244dffd46f7cb83b515b44569046c36102424057de44848f2c451", + "state": { + "depositToken": 0, + "blockNumber": 247341433, + "lastRebalancePrice": "1377522", + "state": "1", + "currentTick": "-273121", + "currentPrice": "1377522", + "twapSlow": "1377522", + "twapFast": "1377522", + "depositTokenBalance": "519141651", + "pairedTokenBalance": "36796", + "usedToken0": "2008324345859898831756", + "usedToken1": "11148749425", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd357ed05ff762c17fa7159a57e59d488f80fa6fb908da7bab592aeea8d7a4e88", + "state": { + "depositToken": 0, + "blockNumber": 247356973, + "lastRebalancePrice": "1377522", + "state": "1", + "currentTick": "-273121", + "currentPrice": "1377522", + "twapSlow": "1377522", + "twapFast": "1377522", + "depositTokenBalance": "519141650", + "pairedTokenBalance": "36795", + "usedToken0": "2008324345859898831755", + "usedToken1": "11148749424", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5362f1c29bdb000e59e4edb8cb2502b20e95ead63340a6a9b92abb15740a497a", + "state": { + "depositToken": 0, + "blockNumber": 247372503, + "lastRebalancePrice": "1377522", + "state": "1", + "currentTick": "-273121", + "currentPrice": "1377522", + "twapSlow": "1377522", + "twapFast": "1377522", + "depositTokenBalance": "519141649", + "pairedTokenBalance": "36794", + "usedToken0": "2008324345859898831754", + "usedToken1": "11148749423", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "-272600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2dc2a83fc1f0e443db41f8c02729fc1870684616935add017e481ad3b17e841b", + "state": { + "depositToken": 0, + "blockNumber": 247382134, + "lastRebalancePrice": "1377522", + "state": "1", + "currentTick": "-273234", + "currentPrice": "1362044", + "twapSlow": "1374632", + "twapFast": "1368461", + "depositTokenBalance": "519141648", + "pairedTokenBalance": "36793", + "usedToken0": "2450924955557340707929", + "usedToken1": "10542473616", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x52d4eb798ebe56628648b937340a21a5d5e975fd05178ba17b4c6d582f98c3b2", + "state": { + "depositToken": 0, + "blockNumber": 247397569, + "lastRebalancePrice": "1362044", + "state": "3", + "currentTick": "-273544", + "currentPrice": "1320471", + "twapSlow": "1331476", + "twapFast": "1320471", + "depositTokenBalance": "0", + "pairedTokenBalance": "683314", + "usedToken0": "2575407063078475675328", + "usedToken1": "10380322465", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "-272600" + } + } + }, + { + "transactionHash": "0x9bb6f1341a701705a6581531bf7bc8aa336240bbed45e8a374526cc81e892154", + "state": { + "depositToken": 0, + "blockNumber": 247907419, + "lastRebalancePrice": "1320471", + "state": "2", + "currentTick": "-273292", + "currentPrice": "1354168", + "twapSlow": "1347010", + "twapFast": "1354168", + "depositTokenBalance": "0", + "pairedTokenBalance": "41981", + "usedToken0": "2171863429709743249028", + "usedToken1": "10924229293", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273200" + }, + "limitPosition": { + "bottomTick": "-273200", + "topTick": "-272400" + } + } + }, + { + "transactionHash": "0xe3d06a41d611b7ffef34deefb42f917ec34c65551301a9ccf59f4741c775b4fa", + "state": { + "depositToken": 0, + "blockNumber": 248337079, + "lastRebalancePrice": "1354168", + "state": "2", + "currentTick": "-273511", + "currentPrice": "1324835", + "twapSlow": "1327886", + "twapFast": "1324835", + "depositTokenBalance": "0", + "pairedTokenBalance": "29071", + "usedToken0": "2261612320413713979970", + "usedToken1": "10810397083", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "-272600" + } + } + }, + { + "transactionHash": "0x8fa06daa6dcd55637203b0474ce7c0051ea5daa80db42958fad53ae52f3a0b5e", + "state": { + "depositToken": 0, + "blockNumber": 248867182, + "lastRebalancePrice": "1324835", + "state": "2", + "currentTick": "-273735", + "currentPrice": "1295490", + "twapSlow": "1306157", + "twapFast": "1295490", + "depositTokenBalance": "0", + "pairedTokenBalance": "34771", + "usedToken0": "2354698584236331198082", + "usedToken1": "10691193350", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273600" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "-272800" + } + } + }, + { + "transactionHash": "0x9b4e6bdb7c3b5998b4f4722d802fa4ab98be692e4532503e2aeca4aa9df70785", + "state": { + "depositToken": 0, + "blockNumber": 248987334, + "lastRebalancePrice": "1295490", + "state": "2", + "currentTick": "-274000", + "currentPrice": "1261612", + "twapSlow": "1283242", + "twapFast": "1261486", + "depositTokenBalance": "0", + "pairedTokenBalance": "17041", + "usedToken0": "2467144861563981647581", + "usedToken1": "10552266996", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274000" + }, + "limitPosition": { + "bottomTick": "-273800", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0x9bd406e40aa8a3918d8ea0dce0c2a99b6b1e6c0cf3d1f1456d722bf7a21d344d", + "state": { + "depositToken": 0, + "blockNumber": 249293422, + "lastRebalancePrice": "1261612", + "state": "2", + "currentTick": "-274254", + "currentPrice": "1229973", + "twapSlow": "1258463", + "twapFast": "1228375", + "depositTokenBalance": "0", + "pairedTokenBalance": "24261", + "usedToken0": "2574625147795973386843", + "usedToken1": "10419497830", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0xe1539a8f9aade40f64107c923e56ab7dba8ccf84ab9092af56b29d34ad9a7395", + "state": { + "depositToken": 0, + "blockNumber": 249453879, + "lastRebalancePrice": "1229973", + "state": "2", + "currentTick": "-274457", + "currentPrice": "1205257", + "twapSlow": "1232558", + "twapFast": "1204775", + "depositTokenBalance": "0", + "pairedTokenBalance": "29680", + "usedToken0": "2662392756409695428388", + "usedToken1": "10314724290", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274400" + }, + "limitPosition": { + "bottomTick": "-274400", + "topTick": "-273600" + } + } + }, + { + "transactionHash": "0x6b4b8c343d2f633e5c835ba7f35238562dc24210059f09b3e348dd6347b5d14c", + "state": { + "depositToken": 0, + "blockNumber": 249674677, + "lastRebalancePrice": "1205257", + "state": "2", + "currentTick": "-274721", + "currentPrice": "1173856", + "twapSlow": "1199126", + "twapFast": "1173856", + "depositTokenBalance": "0", + "pairedTokenBalance": "17924", + "usedToken0": "2777980617654130274215", + "usedToken1": "10180694731", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "-273800" + } + } + }, + { + "transactionHash": "0x92024b33f44518a44fdc29f0b3c1030b45af02e73d353b96cf4fde15cf0bb330", + "state": { + "depositToken": 0, + "blockNumber": 249837762, + "lastRebalancePrice": "1173856", + "state": "2", + "currentTick": "-274994", + "currentPrice": "1142245", + "twapSlow": "1157422", + "twapFast": "1142245", + "depositTokenBalance": "0", + "pairedTokenBalance": "23835", + "usedToken0": "2899193907955357090655", + "usedToken1": "10043822213", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0xc54c921181828cb58194d364a9e62ce91d859127fe61242b180698a169f030cf", + "state": { + "depositToken": 0, + "blockNumber": 250047325, + "lastRebalancePrice": "1142245", + "state": "2", + "currentTick": "-274786", + "currentPrice": "1166251", + "twapSlow": "1165202", + "twapFast": "1166135", + "depositTokenBalance": "0", + "pairedTokenBalance": "21848", + "usedToken0": "2745851816365126593227", + "usedToken1": "10222637278", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "-274000" + } + } + }, + { + "transactionHash": "0x43106307c127dce55000bf5e4be8255b9dceda5207486ebc53ef2b9f700b8bf5", + "state": { + "depositToken": 0, + "blockNumber": 250137446, + "lastRebalancePrice": "1166251", + "state": "2", + "currentTick": "-275041", + "currentPrice": "1136889", + "twapSlow": "1175618", + "twapFast": "1136889", + "depositTokenBalance": "0", + "pairedTokenBalance": "16073", + "usedToken0": "2858982020592114201147", + "usedToken1": "10095342503", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0xb7447279b3f3838305b8250bb2acea56f87f3a654517096b68589d3e339ab8c3", + "state": { + "depositToken": 0, + "blockNumber": 250152600, + "lastRebalancePrice": "1136889", + "state": "2", + "currentTick": "-274721", + "currentPrice": "1173856", + "twapSlow": "1171277", + "twapFast": "1173856", + "depositTokenBalance": "0", + "pairedTokenBalance": "27534", + "usedToken0": "1835694729103577881724", + "usedToken1": "11282840816", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274400" + }, + "limitPosition": { + "bottomTick": "-274400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x3c16b04cba293f2d392a2454d42a82dba1dc6ff10504299de725ffcd15c17694", + "state": { + "depositToken": 0, + "blockNumber": 250207978, + "lastRebalancePrice": "1173856", + "state": "1", + "currentTick": "-274832", + "currentPrice": "1160899", + "twapSlow": "1171745", + "twapFast": "1160899", + "depositTokenBalance": "0", + "pairedTokenBalance": "466868", + "usedToken0": "2377514615149839218755", + "usedToken1": "10659877519", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "-274000" + } + } + }, + { + "transactionHash": "0x51f04b3683148af6d24c6358d7ef251ec4de5aeda7547301be06109c8a5d743d", + "state": { + "depositToken": 0, + "blockNumber": 250255765, + "lastRebalancePrice": "1160899", + "state": "2", + "currentTick": "-275111", + "currentPrice": "1128959", + "twapSlow": "1142017", + "twapFast": "1128959", + "depositTokenBalance": "0", + "pairedTokenBalance": "33380", + "usedToken0": "2511106663475283271834", + "usedToken1": "10511942716", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0xe18a082deb6f1a7ec3afa2c8cdcf336acfc0dbddc93149663b7a6b23823a33fe", + "state": { + "depositToken": 0, + "blockNumber": 250506018, + "lastRebalancePrice": "1128959", + "state": "2", + "currentTick": "-275341", + "currentPrice": "1103291", + "twapSlow": "1111818", + "twapFast": "1103291", + "depositTokenBalance": "0", + "pairedTokenBalance": "35405", + "usedToken0": "2619961927735563115849", + "usedToken1": "10391617611", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x4c91f3a3bbec7ecd13eed6e71e4e789fe50433a15a9d49cd05528b35967a7edb", + "state": { + "depositToken": 0, + "blockNumber": 250714130, + "lastRebalancePrice": "1103291", + "state": "2", + "currentTick": "-275570", + "currentPrice": "1078314", + "twapSlow": "1086105", + "twapFast": "1078314", + "depositTokenBalance": "0", + "pairedTokenBalance": "19154", + "usedToken0": "2729598552388559040759", + "usedToken1": "10274032908", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x89cfb5bb738c09a7474a1387fcadc4d9287e783f2e26613a0c1bdf0f174333e0", + "state": { + "depositToken": 0, + "blockNumber": 250729615, + "lastRebalancePrice": "1078314", + "state": "2", + "currentTick": "-276176", + "currentPrice": "1014911", + "twapSlow": "1046342", + "twapFast": "1014911", + "depositTokenBalance": "0", + "pairedTokenBalance": "48877", + "usedToken0": "3023802966939992778117", + "usedToken1": "9968045389", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276000" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0xb16dcc9170f3dc3252d939dcefede7bac5081f0285caa885b3e379e2dc42af92", + "state": { + "depositToken": 0, + "blockNumber": 250846488, + "lastRebalancePrice": "1014911", + "state": "2", + "currentTick": "-275932", + "currentPrice": "1039979", + "twapSlow": "1030043", + "twapFast": "1039979", + "depositTokenBalance": "0", + "pairedTokenBalance": "27444", + "usedToken0": "2600893608211055812130", + "usedToken1": "10407756792", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xfddde40d4aba64d986b50987fe0f0c2cdc663215931c18946beea0b8c48c2aa7", + "state": { + "depositToken": 0, + "blockNumber": 250893897, + "lastRebalancePrice": "1039979", + "state": "2", + "currentTick": "-275690", + "currentPrice": "1065452", + "twapSlow": "1047493", + "twapFast": "1065452", + "depositTokenBalance": "0", + "pairedTokenBalance": "20506", + "usedToken0": "2186322351126397932879", + "usedToken1": "10870414526", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xa29dfd7d3cd916f56e2288b323c52e8ba7c9f8725a134603e5888faeb59ab941", + "state": { + "depositToken": 0, + "blockNumber": 251050455, + "lastRebalancePrice": "1065452", + "state": "2", + "currentTick": "-275565", + "currentPrice": "1078853", + "twapSlow": "1069080", + "twapFast": "1078853", + "depositTokenBalance": "0", + "pairedTokenBalance": "56744", + "usedToken0": "2046878076864969746380", + "usedToken1": "11030456843", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x88cf0266197acbe002ce333bf4454b9b9c9b7d568d7911b9a82af384a790500a", + "state": { + "depositToken": 0, + "blockNumber": 251624075, + "lastRebalancePrice": "1078853", + "state": "1", + "currentTick": "-275688", + "currentPrice": "1065665", + "twapSlow": "1080580", + "twapFast": "1065665", + "depositTokenBalance": "0", + "pairedTokenBalance": "298154", + "usedToken0": "2701072950059654889967", + "usedToken1": "10331902470", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x89ec6bcc87f3afa11cda0fc8d1ba9665f7b38685ba6e256949d96a38a6aaa472", + "state": { + "depositToken": 0, + "blockNumber": 251712648, + "lastRebalancePrice": "1065665", + "state": "2", + "currentTick": "-275564", + "currentPrice": "1078961", + "twapSlow": "1080040", + "twapFast": "1078961", + "depositTokenBalance": "0", + "pairedTokenBalance": "31592", + "usedToken0": "2543775443538911183701", + "usedToken1": "10513676324", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xe2c81715d48b3d1508cad49af345db2296cc953603b3df70821f858cfbda8e68", + "state": { + "depositToken": 0, + "blockNumber": 251838663, + "lastRebalancePrice": "1078961", + "state": "2", + "currentTick": "-275292", + "currentPrice": "1108710", + "twapSlow": "1098667", + "twapFast": "1107823", + "depositTokenBalance": "0", + "pairedTokenBalance": "48947", + "usedToken0": "2013591905646303772387", + "usedToken1": "11104498911", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xfe26500c2e0656bdadbde87eb8a4198473fe5b9a9dad061ff512ffd8efe4eabf", + "state": { + "depositToken": 0, + "blockNumber": 252299052, + "lastRebalancePrice": "1108710", + "state": "1", + "currentTick": "-275385", + "currentPrice": "1098447", + "twapSlow": "1102960", + "twapFast": "1098447", + "depositTokenBalance": "0", + "pairedTokenBalance": "556936", + "usedToken0": "2483548304709130515721", + "usedToken1": "10590578446", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0x535813aee3bb464b6aa97ce3c4fef800f0f0e34a22eeb4e6ef2c26921b201cf2", + "state": { + "depositToken": 0, + "blockNumber": 252409201, + "lastRebalancePrice": "1098447", + "state": "2", + "currentTick": "-275174", + "currentPrice": "1121869", + "twapSlow": "1120412", + "twapFast": "1121757", + "depositTokenBalance": "0", + "pairedTokenBalance": "30218", + "usedToken0": "2302750531784634307642", + "usedToken1": "10826474635", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x14d54e200c10c74f67887b3ff1723c3e5a555f83797b84aea9385ecd68e7579f", + "state": { + "depositToken": 0, + "blockNumber": 252448836, + "lastRebalancePrice": "1121869", + "state": "2", + "currentTick": "-275382", + "currentPrice": "1098777", + "twapSlow": "1103401", + "twapFast": "1098777", + "depositTokenBalance": "0", + "pairedTokenBalance": "37493", + "usedToken0": "2403560243273954194177", + "usedToken1": "10716324176", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0xdf27f98058817d6ed045b4f7dd0bfdcc46ff39f17765a29f28338e59a006f1ce", + "state": { + "depositToken": 0, + "blockNumber": 252865770, + "lastRebalancePrice": "1098777", + "state": "2", + "currentTick": "-275152", + "currentPrice": "1124340", + "twapSlow": "1114601", + "twapFast": "1124340", + "depositTokenBalance": "0", + "pairedTokenBalance": "41507", + "usedToken0": "2126976828287848942895", + "usedToken1": "11026348786", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0xc6ad13fdbf01e3f729b1c3275d7446782c78df959b1b0bae4e5a5b59435e3fa8", + "state": { + "depositToken": 0, + "blockNumber": 253061520, + "lastRebalancePrice": "1124340", + "state": "2", + "currentTick": "-274920", + "currentPrice": "1150728", + "twapSlow": "1138596", + "twapFast": "1150728", + "depositTokenBalance": "0", + "pairedTokenBalance": "36867", + "usedToken0": "1844001308056674562092", + "usedToken1": "11355348376", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277000", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x85a65fe402b7f4d9b0aed5d960e081395e8d04d964de79039890d4bbb4826da0", + "state": { + "depositToken": 0, + "blockNumber": 253079763, + "lastRebalancePrice": "1150728", + "state": "1", + "currentTick": "-275098", + "currentPrice": "1130428", + "twapSlow": "1150613", + "twapFast": "1150383", + "depositTokenBalance": "0", + "pairedTokenBalance": "667007", + "usedToken0": "2735001308056674562089", + "usedToken1": "10341692906", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x8914b32dc29dc6f58e81a35488123617bf4c673dc4e6af3c7fbceb52708aaae6", + "state": { + "depositToken": 0, + "blockNumber": 253095343, + "lastRebalancePrice": "1130428", + "state": "3", + "currentTick": "-275098", + "currentPrice": "1130428", + "twapSlow": "1130428", + "twapFast": "1130428", + "depositTokenBalance": "0", + "pairedTokenBalance": "779888", + "usedToken0": "2742201308056674562087", + "usedToken1": "10341692905", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0x63d03b99c1698ad3717edf3477cc8bba842e74d5b8283dfaa0f02f04f5353724", + "state": { + "depositToken": 0, + "blockNumber": 253175714, + "lastRebalancePrice": "1130428", + "state": "2", + "currentTick": "-274888", + "currentPrice": "1154417", + "twapSlow": "1153609", + "twapFast": "1154417", + "depositTokenBalance": "0", + "pairedTokenBalance": "44346", + "usedToken0": "2312369050060988803719", + "usedToken1": "10834606755", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "-274000" + } + } + }, + { + "transactionHash": "0x3daa5f497f5ef53cdd8b4bb204548fcbbe82f0ef51dd1f8aa4b0102ce9ecd40b", + "state": { + "depositToken": 0, + "blockNumber": 253194356, + "lastRebalancePrice": "1154417", + "state": "2", + "currentTick": "-274582", + "currentPrice": "1190286", + "twapSlow": "1162758", + "twapFast": "1182811", + "depositTokenBalance": "0", + "pairedTokenBalance": "20677", + "usedToken0": "1641844736360445632356", + "usedToken1": "11627340885", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbf36b04bacc367640b305b8f9c73657e6de90ce4ed52d3a3343804585a40109b", + "state": { + "depositToken": 0, + "blockNumber": 253209730, + "lastRebalancePrice": "1190286", + "state": "1", + "currentTick": "-274566", + "currentPrice": "1192192", + "twapSlow": "1190167", + "twapFast": "1192192", + "depositTokenBalance": "761893754", + "pairedTokenBalance": "23057", + "usedToken0": "1573459427756889596063", + "usedToken1": "11719818855", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe7f61bea944d511ebb94dc936cffa91392ba748061fa3345b1b5e985742dec65", + "state": { + "depositToken": 0, + "blockNumber": 253225113, + "lastRebalancePrice": "1192192", + "state": "1", + "currentTick": "-274566", + "currentPrice": "1192192", + "twapSlow": "1192192", + "twapFast": "1192192", + "depositTokenBalance": "1659939072", + "pairedTokenBalance": "25008", + "usedToken0": "1580065802170073169746", + "usedToken1": "11728372148", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7833d1d4451ffcfb7dc391cfbbf0ba8629a1f9ec10ab2777d3a164f25f4c397a", + "state": { + "depositToken": 0, + "blockNumber": 253240458, + "lastRebalancePrice": "1192192", + "state": "1", + "currentTick": "-274566", + "currentPrice": "1192192", + "twapSlow": "1192192", + "twapFast": "1192192", + "depositTokenBalance": "1659939071", + "pairedTokenBalance": "25007", + "usedToken0": "1580065802170073169745", + "usedToken1": "11728372147", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1e8235db4a2e3a8e6791e05c4f63a06f5b838b1af1bcbf359d4f71134b71ff03", + "state": { + "depositToken": 0, + "blockNumber": 253255789, + "lastRebalancePrice": "1192192", + "state": "1", + "currentTick": "-274562", + "currentPrice": "1192669", + "twapSlow": "1192311", + "twapFast": "1192669", + "depositTokenBalance": "1659939070", + "pairedTokenBalance": "25006", + "usedToken0": "1563447572772709751911", + "usedToken1": "11748189433", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd6ac3d02c6cda6acc8f6d0f32de435286cd2cc2b64c6cac3dc51dc73a4e5f174", + "state": { + "depositToken": 0, + "blockNumber": 253271382, + "lastRebalancePrice": "1192669", + "state": "1", + "currentTick": "-274562", + "currentPrice": "1192669", + "twapSlow": "1192669", + "twapFast": "1192669", + "depositTokenBalance": "1660099209", + "pairedTokenBalance": "8604", + "usedToken0": "1563447572772709751910", + "usedToken1": "11748349572", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb263063e9ba203600980f7b35114d7d4cd5dc51548e421c276320c8d9d89741a", + "state": { + "depositToken": 0, + "blockNumber": 253286993, + "lastRebalancePrice": "1192669", + "state": "1", + "currentTick": "-274562", + "currentPrice": "1192669", + "twapSlow": "1192669", + "twapFast": "1192669", + "depositTokenBalance": "1660099208", + "pairedTokenBalance": "8603", + "usedToken0": "1563447572772709751909", + "usedToken1": "11748349571", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x009c93df4a673582127532557d42ea1991eea99d46f89baa77415c49106a8696", + "state": { + "depositToken": 0, + "blockNumber": 253302618, + "lastRebalancePrice": "1192669", + "state": "1", + "currentTick": "-274577", + "currentPrice": "1190881", + "twapSlow": "1192311", + "twapFast": "1190881", + "depositTokenBalance": "1660099207", + "pairedTokenBalance": "8602", + "usedToken0": "1630520900994398826786", + "usedToken1": "11668410629", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x84fd13379b194d85b6758554951c18044066655290acd29ad622354215936a20", + "state": { + "depositToken": 0, + "blockNumber": 253318207, + "lastRebalancePrice": "1190881", + "state": "1", + "currentTick": "-274577", + "currentPrice": "1190881", + "twapSlow": "1190881", + "twapFast": "1190881", + "depositTokenBalance": "720961037", + "pairedTokenBalance": "15418", + "usedToken0": "1631062907687099344561", + "usedToken1": "11668410628", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x81e2ab000e38cbb37ca9125a710ad10cc40a2dced0903052b634f7f66336198e", + "state": { + "depositToken": 0, + "blockNumber": 253333804, + "lastRebalancePrice": "1190881", + "state": "1", + "currentTick": "-274671", + "currentPrice": "1179740", + "twapSlow": "1189096", + "twapFast": "1179740", + "depositTokenBalance": "720961036", + "pairedTokenBalance": "15417", + "usedToken0": "2041851840112584850466", + "usedToken1": "11181491455", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd5075d7f32778fd2970b6cecf12e9fbd947355499b45adeb231494ad35d967fb", + "state": { + "depositToken": 0, + "blockNumber": 253349363, + "lastRebalancePrice": "1179740", + "state": "1", + "currentTick": "-274671", + "currentPrice": "1179740", + "twapSlow": "1179740", + "twapFast": "1179740", + "depositTokenBalance": "703955002", + "pairedTokenBalance": "30862", + "usedToken0": "2045171346637235238392", + "usedToken1": "11181491454", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa0911447c24d8b1e7c3e6a0f1dd2dbb0f00dbc78d875913478dabb4db32e7572", + "state": { + "depositToken": 0, + "blockNumber": 253364925, + "lastRebalancePrice": "1179740", + "state": "1", + "currentTick": "-274671", + "currentPrice": "1179740", + "twapSlow": "1179740", + "twapFast": "1179740", + "depositTokenBalance": "703955001", + "pairedTokenBalance": "30861", + "usedToken0": "2045171346637235238391", + "usedToken1": "11181491453", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x182e2860c4aae577a8875c33c9dcc22ab4aef1573073081c37e5628bf03148c3", + "state": { + "depositToken": 0, + "blockNumber": 253380478, + "lastRebalancePrice": "1179740", + "state": "1", + "currentTick": "-274681", + "currentPrice": "1178561", + "twapSlow": "1178679", + "twapFast": "1178561", + "depositTokenBalance": "703955000", + "pairedTokenBalance": "30860", + "usedToken0": "2086539100148694254955", + "usedToken1": "11132709517", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x674b1d74d828f258b105158bb4f37a53f308699303a66cb52e3ff9e4062dc49c", + "state": { + "depositToken": 0, + "blockNumber": 253396050, + "lastRebalancePrice": "1178561", + "state": "1", + "currentTick": "-274681", + "currentPrice": "1178561", + "twapSlow": "1178561", + "twapFast": "1178561", + "depositTokenBalance": "702284206", + "pairedTokenBalance": "29076", + "usedToken0": "2086873385025554529835", + "usedToken1": "11132709516", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa01e05bee94644e6568df64f754c412acf009844cc33f139c69ff7a32a22056c", + "state": { + "depositToken": 0, + "blockNumber": 253411594, + "lastRebalancePrice": "1178561", + "state": "1", + "currentTick": "-274681", + "currentPrice": "1178561", + "twapSlow": "1178561", + "twapFast": "1178561", + "depositTokenBalance": "702284205", + "pairedTokenBalance": "29075", + "usedToken0": "2086873385025554529834", + "usedToken1": "11132709515", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xae6f51a010b93a7cfe1a793fc9e0325f51056ca01a9f85e0766d5d1224bdb88b", + "state": { + "depositToken": 0, + "blockNumber": 253427168, + "lastRebalancePrice": "1178561", + "state": "1", + "currentTick": "-274762", + "currentPrice": "1169053", + "twapSlow": "1170574", + "twapFast": "1169053", + "depositTokenBalance": "702284204", + "pairedTokenBalance": "29074", + "usedToken0": "2444632981584243134828", + "usedToken1": "10712735937", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "-274000" + } + } + }, + { + "transactionHash": "0x79e73ab501d86655e05a410640aa43ae44a6b005053f42db1ae17444999958b5", + "state": { + "depositToken": 0, + "blockNumber": 253886830, + "lastRebalancePrice": "1169053", + "state": "2", + "currentTick": "-274978", + "currentPrice": "1144074", + "twapSlow": "1148200", + "twapFast": "1144074", + "depositTokenBalance": "0", + "pairedTokenBalance": "26776", + "usedToken0": "2547118857322811740468", + "usedToken1": "10597547064", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0x56f63de7a6ae8b19225a3d9c40797a153fee669850a9df8b3abba8b7ac5cd7fa", + "state": { + "depositToken": 0, + "blockNumber": 253927067, + "lastRebalancePrice": "1144074", + "state": "2", + "currentTick": "-275242", + "currentPrice": "1114267", + "twapSlow": "1127944", + "twapFast": "1114267", + "depositTokenBalance": "0", + "pairedTokenBalance": "32625", + "usedToken0": "2670915894631404919490", + "usedToken1": "10458671045", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x2840b67a32ca04198118c6f733631edd700d8d974a7b9d10a02434dd1df135db", + "state": { + "depositToken": 0, + "blockNumber": 254517781, + "lastRebalancePrice": "1114267", + "state": "2", + "currentTick": "-274822", + "currentPrice": "1162060", + "twapSlow": "1134504", + "twapFast": "1159739", + "depositTokenBalance": "0", + "pairedTokenBalance": "23690", + "usedToken0": "1384491680769102878218", + "usedToken1": "11926295858", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277000", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x0b7f4c70380cafb2a42d92e3f16545066af43952cde6344edec81381ca30d6c6", + "state": { + "depositToken": 0, + "blockNumber": 254707692, + "lastRebalancePrice": "1142359", + "state": "1", + "currentTick": "-275105", + "currentPrice": "1129637", + "twapSlow": "1146823", + "twapFast": "1147855", + "depositTokenBalance": "0", + "pairedTokenBalance": "489755", + "usedToken0": "2806797733146927090363", + "usedToken1": "10320250565", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xf0a4f55c5d7529034b1063d4899f12eda7d997cb6f5fb1bb0031ee7af2f66d07", + "state": { + "depositToken": 0, + "blockNumber": 254723295, + "lastRebalancePrice": "1129637", + "state": "3", + "currentTick": "-275105", + "currentPrice": "1129637", + "twapSlow": "1129637", + "twapFast": "1129637", + "depositTokenBalance": "0", + "pairedTokenBalance": "895726", + "usedToken0": "2834100600209444743322", + "usedToken1": "10338367804", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0xec7059bad7294fb2a6233a5e0bfbae7359c57b1d79caee6c29f9443d5dc5f94e", + "state": { + "depositToken": 0, + "blockNumber": 254798646, + "lastRebalancePrice": "1129637", + "state": "2", + "currentTick": "-275351", + "currentPrice": "1102188", + "twapSlow": "1117726", + "twapFast": "1102188", + "depositTokenBalance": "0", + "pairedTokenBalance": "30326", + "usedToken0": "2947302375874029387189", + "usedToken1": "10212042542", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x55d0f989987ad7512b2d8867d42abf22c0d64304b9ebcf4c466f2ef0c3d8f2e2", + "state": { + "depositToken": 0, + "blockNumber": 254931637, + "lastRebalancePrice": "1102188", + "state": "2", + "currentTick": "-276227", + "currentPrice": "1009749", + "twapSlow": "1088933", + "twapFast": "1023268", + "depositTokenBalance": "0", + "pairedTokenBalance": "34686", + "usedToken0": "3363235853176400202602", + "usedToken1": "9774184623", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276200" + }, + "limitPosition": { + "bottomTick": "-276200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x6272c6585b673901c4f2ad75248e3b0aaa2fe8b0746b5260a5ce42c196831313", + "state": { + "depositToken": 0, + "blockNumber": 254946813, + "lastRebalancePrice": "1009749", + "state": "3", + "currentTick": "-275669", + "currentPrice": "1067692", + "twapSlow": "1058232", + "twapFast": "1067692", + "depositTokenBalance": "0", + "pairedTokenBalance": "55124", + "usedToken0": "3280259063072807158809", + "usedToken1": "9894402499", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x559e5f276aa52e94735635437f350ba684125a69b5c0b1995de70d7d36f2375d", + "state": { + "depositToken": 0, + "blockNumber": 255152016, + "lastRebalancePrice": "1067692", + "state": "2", + "currentTick": "-275453", + "currentPrice": "1091003", + "twapSlow": "1085997", + "twapFast": "1091003", + "depositTokenBalance": "0", + "pairedTokenBalance": "59631", + "usedToken0": "2647092489499970053380", + "usedToken1": "10597373451", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0x2771e9956b73359379fc0380f1ae23e12b0c2cf2edeb1501bd310acdd7e8e95a", + "state": { + "depositToken": 0, + "blockNumber": 255393067, + "lastRebalancePrice": "1091003", + "state": "2", + "currentTick": "-275194", + "currentPrice": "1119628", + "twapSlow": "1108488", + "twapFast": "1119628", + "depositTokenBalance": "0", + "pairedTokenBalance": "47664", + "usedToken0": "1933730205773267688497", + "usedToken1": "11394010054", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x506e2ed11885adfc56d3264ff305f59b8111aa5a6646eed66dc51221489b0e6a", + "state": { + "depositToken": 0, + "blockNumber": 256298959, + "lastRebalancePrice": "1119628", + "state": "1", + "currentTick": "-274901", + "currentPrice": "1152917", + "twapSlow": "1136435", + "twapFast": "1152917", + "depositTokenBalance": "0", + "pairedTokenBalance": "522053", + "usedToken0": "519965253551607254387", + "usedToken1": "13008168471", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277200", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xfcdf9a8a5a009e416d2aac83936c9e423dee03189bd5661267e2f0567507dab7", + "state": { + "depositToken": 0, + "blockNumber": 256385739, + "lastRebalancePrice": "1152917", + "state": "0", + "currentTick": "-274560", + "currentPrice": "1192907", + "twapSlow": "1169989", + "twapFast": "1192907", + "depositTokenBalance": "0", + "pairedTokenBalance": "830097", + "usedToken0": "516636618582508183236", + "usedToken1": "13037863676", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276800", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0x985fc6e2892ea9d1193ffedece71da2964559d0f89aaac4b3f565265260b69d9", + "state": { + "depositToken": 0, + "blockNumber": 256804823, + "lastRebalancePrice": "1192907", + "state": "0", + "currentTick": "-274118", + "currentPrice": "1246814", + "twapSlow": "1208516", + "twapFast": "1254442", + "depositTokenBalance": "0", + "pairedTokenBalance": "830096", + "usedToken0": "505346258587408187689", + "usedToken1": "13051717579", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276400", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0x515317826d7ea7bd0fb5e31b2384e654fae2f6ae2994fe971fb77834d1bdb49c", + "state": { + "depositToken": 0, + "blockNumber": 256943816, + "lastRebalancePrice": "1246814", + "state": "0", + "currentTick": "-274307", + "currentPrice": "1223471", + "twapSlow": "1225798", + "twapFast": "1223471", + "depositTokenBalance": "0", + "pairedTokenBalance": "320818", + "usedToken0": "1050779511475578332794", + "usedToken1": "12387408427", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276400", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x2aaff9ed50961c5ee59af67a96efcc671f90dd08a2eac6dcf52ffc25fcd5cb45", + "state": { + "depositToken": 0, + "blockNumber": 257803541, + "lastRebalancePrice": "1223471", + "state": "1", + "currentTick": "-274247", + "currentPrice": "1230834", + "twapSlow": "1220173", + "twapFast": "1230834", + "depositTokenBalance": "0", + "pairedTokenBalance": "887937", + "usedToken0": "750345065968404306020", + "usedToken1": "12761487952", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276600", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0xa051a0eb52dab5c2b39b684f70d2984980b3ff8a9ef172902930c645effa4da0", + "state": { + "depositToken": 0, + "blockNumber": 258624807, + "lastRebalancePrice": "1230834", + "state": "0", + "currentTick": "-274453", + "currentPrice": "1205739", + "twapSlow": "1207911", + "twapFast": "1205739", + "depositTokenBalance": "0", + "pairedTokenBalance": "395594", + "usedToken0": "1023566312403450760936", + "usedToken1": "12444409044", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x257bddeff23a033b0d951d3f9ffedce1b72ebfe3813156109eea01f8b7a2625a", + "state": { + "depositToken": 0, + "blockNumber": 258640394, + "lastRebalancePrice": "1205739", + "state": "1", + "currentTick": "-274453", + "currentPrice": "1205739", + "twapSlow": "1205739", + "twapFast": "1205739", + "depositTokenBalance": "2384545275", + "pairedTokenBalance": "13023", + "usedToken0": "1025768015886501106001", + "usedToken1": "12444443845", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5e8b91486639b4e4285be504605c5af7b0f7a2bd23a17302293e01c11d64f928", + "state": { + "depositToken": 0, + "blockNumber": 258655910, + "lastRebalancePrice": "1205739", + "state": "1", + "currentTick": "-274343", + "currentPrice": "1219075", + "twapSlow": "1210209", + "twapFast": "1219075", + "depositTokenBalance": "2384545274", + "pairedTokenBalance": "13022", + "usedToken0": "577199445578731453030", + "usedToken1": "12988332595", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276600", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x08053073de40bf5f0b15728bc72351f4bda18ae75d5606c05224e54ce3701454", + "state": { + "depositToken": 0, + "blockNumber": 258961430, + "lastRebalancePrice": "1219075", + "state": "0", + "currentTick": "-274496", + "currentPrice": "1200566", + "twapSlow": "1206584", + "twapFast": "1200566", + "depositTokenBalance": "0", + "pairedTokenBalance": "769215", + "usedToken0": "1071873521690757693828", + "usedToken1": "12395953934", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "-274400" + }, + "limitPosition": { + "bottomTick": "-274400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xeec96dea2a8d9981323076ba6bd5d667c6655db12dc4d23b8ca86262ba4f2331", + "state": { + "depositToken": 0, + "blockNumber": 259323752, + "lastRebalancePrice": "1200566", + "state": "1", + "currentTick": "-274741", + "currentPrice": "1171511", + "twapSlow": "1172331", + "twapFast": "1171511", + "depositTokenBalance": "0", + "pairedTokenBalance": "576034", + "usedToken0": "2349179802055606715554", + "usedToken1": "10885801622", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "-273800" + } + } + }, + { + "transactionHash": "0xd21d8f98a31176456b4df6cd4af3da96acd3fdea76c9ad5a42be15dd69cdd244", + "state": { + "depositToken": 0, + "blockNumber": 259339205, + "lastRebalancePrice": "1171511", + "state": "2", + "currentTick": "-274994", + "currentPrice": "1142245", + "twapSlow": "1153032", + "twapFast": "1142245", + "depositTokenBalance": "0", + "pairedTokenBalance": "20729", + "usedToken0": "2480377511964178413889", + "usedToken1": "10751535811", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0x0b87c38e6c8314ff9530194c223b72017d0939da2e82c3f593c39582ee48a11a", + "state": { + "depositToken": 0, + "blockNumber": 259495234, + "lastRebalancePrice": "1142245", + "state": "2", + "currentTick": "-274721", + "currentPrice": "1173856", + "twapSlow": "1125127", + "twapFast": "1173856", + "depositTokenBalance": "0", + "pairedTokenBalance": "30218", + "usedToken0": "2069951882952242615583", + "usedToken1": "11231106499", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "-273800" + } + } + }, + { + "transactionHash": "0x50e2a97e307ae35b6f3ac5d157ad9f234cd4659d770a53f809c84ce55948e04d", + "state": { + "depositToken": 0, + "blockNumber": 259617145, + "lastRebalancePrice": "1173856", + "state": "2", + "currentTick": "-274940", + "currentPrice": "1148429", + "twapSlow": "1152571", + "twapFast": "1148429", + "depositTokenBalance": "0", + "pairedTokenBalance": "21560", + "usedToken0": "2192571879939158105246", + "usedToken1": "11132290322", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "-274000" + } + } + }, + { + "transactionHash": "0xd7538073a6b7734a67bfd08ab565e7779b159fe489dc27d1c98981090d0fa03b", + "state": { + "depositToken": 0, + "blockNumber": 259691270, + "lastRebalancePrice": "1148429", + "state": "2", + "currentTick": "-275166", + "currentPrice": "1122767", + "twapSlow": "1139621", + "twapFast": "1122767", + "depositTokenBalance": "0", + "pairedTokenBalance": "17580", + "usedToken0": "2311770881417612455955", + "usedToken1": "11016889505", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x52f5bc027074982a5b82008456764412d7076c7fd2e595f4c14385dcfbd8cd39", + "state": { + "depositToken": 0, + "blockNumber": 259706788, + "lastRebalancePrice": "1122767", + "state": "2", + "currentTick": "-275455", + "currentPrice": "1090785", + "twapSlow": "1114378", + "twapFast": "1090785", + "depositTokenBalance": "0", + "pairedTokenBalance": "23309", + "usedToken0": "2455122265570064819824", + "usedToken1": "10859226077", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0xa765d875b0241f89b3a27e30022407b23b6d504343d503ac9e688b4d585e6973", + "state": { + "depositToken": 0, + "blockNumber": 260176630, + "lastRebalancePrice": "1090785", + "state": "2", + "currentTick": "-275263", + "currentPrice": "1111930", + "twapSlow": "1104726", + "twapFast": "1111930", + "depositTokenBalance": "0", + "pairedTokenBalance": "35497", + "usedToken0": "2006110406518090528884", + "usedToken1": "11356078578", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xafd63197455520e6281d37f3b9d0b07e6c633119628165bf015389015c62d297", + "state": { + "depositToken": 0, + "blockNumber": 260192251, + "lastRebalancePrice": "1111930", + "state": "1", + "currentTick": "-275215", + "currentPrice": "1117279", + "twapSlow": "1116498", + "twapFast": "1117279", + "depositTokenBalance": "1477511449", + "pairedTokenBalance": "11890", + "usedToken0": "1794054618936349175153", + "usedToken1": "11597516928", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x28d6190edebf58b4357bc477f4db760b95a5bc481fda73a5d722dac3a5fa419b", + "state": { + "depositToken": 0, + "blockNumber": 260207837, + "lastRebalancePrice": "1117279", + "state": "1", + "currentTick": "-275149", + "currentPrice": "1124677", + "twapSlow": "1121084", + "twapFast": "1124677", + "depositTokenBalance": "1479425784", + "pairedTokenBalance": "11889", + "usedToken0": "1508443242296532354728", + "usedToken1": "11919604108", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf3eb237dbeb689b6dfce9c608f79805880e8ca88e3bbb1f185ce85716ee42a26", + "state": { + "depositToken": 0, + "blockNumber": 260223431, + "lastRebalancePrice": "1124677", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1122543", + "twapFast": "1120300", + "depositTokenBalance": "2362786018", + "pairedTokenBalance": "28198", + "usedToken0": "1678356899053332354726", + "usedToken1": "11731464466", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3d0aa1ae61d2fa4c583307ae5106507450cfb9aafb7603ceace8401d685e2933", + "state": { + "depositToken": 0, + "blockNumber": 260238999, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628110", + "pairedTokenBalance": "15011", + "usedToken0": "1679729938703892354725", + "usedToken1": "11731464465", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x53c6a1c47d6f6bab71eaeba0a56e1c16d3c456946da217cd7d4ef312b0782237", + "state": { + "depositToken": 0, + "blockNumber": 260254513, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628109", + "pairedTokenBalance": "15010", + "usedToken0": "1679729938703892354724", + "usedToken1": "11731464464", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5fae0ff4d2cc1f73faf5b3c8e4092df67c9fc8d7ba34cc235978dbc98dc9b9dd", + "state": { + "depositToken": 0, + "blockNumber": 260270091, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628108", + "pairedTokenBalance": "15009", + "usedToken0": "1679729938703892354723", + "usedToken1": "11731464463", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7283c352d58d2535d1913aa9f8235a52a0c683acf77a17a0702d9a1f9f23e2fe", + "state": { + "depositToken": 0, + "blockNumber": 260285690, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628107", + "pairedTokenBalance": "15008", + "usedToken0": "1679729938703892354722", + "usedToken1": "11731464462", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x65ae4d2f88324cf0736911fa4c8699f71a42c9031bbf683c72d39db23f71b34f", + "state": { + "depositToken": 0, + "blockNumber": 260301192, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628106", + "pairedTokenBalance": "15007", + "usedToken0": "1679729938703892354721", + "usedToken1": "11731464461", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x08574031efc17dfc01b9584395068dd36bde03be95ce1cc8f5af1db3aa981565", + "state": { + "depositToken": 0, + "blockNumber": 260316760, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628105", + "pairedTokenBalance": "15006", + "usedToken0": "1679729938703892354720", + "usedToken1": "11731464460", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2bf4bf66b0ccf2cb5056dbfa2329508ee5bbdfefac6550479ed7e08a18578465", + "state": { + "depositToken": 0, + "blockNumber": 260332314, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275188", + "currentPrice": "1120300", + "twapSlow": "1120300", + "twapFast": "1120300", + "depositTokenBalance": "1473628104", + "pairedTokenBalance": "15005", + "usedToken0": "1679729938703892354719", + "usedToken1": "11731464459", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdce91b3e2c4b43c15155b24e906c9b8a209e1850920a7c8e66e684d70ca6090c", + "state": { + "depositToken": 0, + "blockNumber": 260347821, + "lastRebalancePrice": "1120300", + "state": "1", + "currentTick": "-275170", + "currentPrice": "1122318", + "twapSlow": "1120748", + "twapFast": "1122318", + "depositTokenBalance": "1473628103", + "pairedTokenBalance": "15004", + "usedToken0": "1600367121583688263566", + "usedToken1": "11820456200", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8625a89aa0b22242484d631db146bb6da17c2c5d63fc59d95f3d619b61ccd227", + "state": { + "depositToken": 0, + "blockNumber": 260363361, + "lastRebalancePrice": "1122318", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1124790", + "twapFast": "1125015", + "depositTokenBalance": "1474347228", + "pairedTokenBalance": "15003", + "usedToken0": "1494182395700479852159", + "usedToken1": "11940496391", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa6561d52693a51a9688dba6e89fea6cddb18a8caf2d39bc0d1621f0c6ff50cf6", + "state": { + "depositToken": 0, + "blockNumber": 260378898, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804965", + "pairedTokenBalance": "15002", + "usedToken0": "1494182395700479852158", + "usedToken1": "11941460602", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xceb7fac2fb68e3db40343de86acd077411a02dda2de1fe7893e5f6ce946ca23c", + "state": { + "depositToken": 0, + "blockNumber": 260394411, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804964", + "pairedTokenBalance": "15001", + "usedToken0": "1494182395700479852157", + "usedToken1": "11941460601", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x034b86b57be051b18716e6c4b2f8f6544bb7d919cb08b5c1a66e63cd59afb122", + "state": { + "depositToken": 0, + "blockNumber": 260409830, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804963", + "pairedTokenBalance": "15000", + "usedToken0": "1494182395700479852156", + "usedToken1": "11941460600", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xabbce9ba8842e3b865318b0ef3df5e70ac6f46df21ce4599cbd24a170e5f6439", + "state": { + "depositToken": 0, + "blockNumber": 260425185, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804962", + "pairedTokenBalance": "14999", + "usedToken0": "1494182395700479852155", + "usedToken1": "11941460599", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9ba7c18fd839acb464054762598d05c7f7c678fe04bec04604077fe4e77081d9", + "state": { + "depositToken": 0, + "blockNumber": 260440433, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804961", + "pairedTokenBalance": "14998", + "usedToken0": "1494182395700479852154", + "usedToken1": "11941460598", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0247c42d3a97270bdb4ce46b9c4e0b9e37e447c9b9621f32fd42a7b8a17624bc", + "state": { + "depositToken": 0, + "blockNumber": 260455665, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804960", + "pairedTokenBalance": "14997", + "usedToken0": "1494182395700479852153", + "usedToken1": "11941460597", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf0e235a77d38b5485c36dc9ceb421d681a7097f7a13d1552625092b105d030be", + "state": { + "depositToken": 0, + "blockNumber": 260471211, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275146", + "currentPrice": "1125015", + "twapSlow": "1125015", + "twapFast": "1125015", + "depositTokenBalance": "2356804959", + "pairedTokenBalance": "14996", + "usedToken0": "1494182395700479852152", + "usedToken1": "11941460596", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc74fc2cf484b872a73cd6fb11820ef31e4b8d89d9f6a249b5c4eff7ff69f8013", + "state": { + "depositToken": 0, + "blockNumber": 260486831, + "lastRebalancePrice": "1125015", + "state": "1", + "currentTick": "-275139", + "currentPrice": "1125803", + "twapSlow": "1125578", + "twapFast": "1125803", + "depositTokenBalance": "2356804958", + "pairedTokenBalance": "14995", + "usedToken0": "1463397538024668797593", + "usedToken1": "11976108230", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x489e8c8fbcf33c4416c79ee7c84e1fd112c5bd4c1d615a1650354f7fadbdb9fe", + "state": { + "depositToken": 0, + "blockNumber": 260502426, + "lastRebalancePrice": "1125803", + "state": "1", + "currentTick": "-275152", + "currentPrice": "1124340", + "twapSlow": "1125352", + "twapFast": "1124340", + "depositTokenBalance": "2357084938", + "pairedTokenBalance": "14994", + "usedToken0": "1518834412094942196387", + "usedToken1": "11914012930", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7e204cba2679a4e752335ad10121f43f93888224f613715c92973f989b374149", + "state": { + "depositToken": 0, + "blockNumber": 260518030, + "lastRebalancePrice": "1124340", + "state": "1", + "currentTick": "-275152", + "currentPrice": "1124340", + "twapSlow": "1124340", + "twapFast": "1124340", + "depositTokenBalance": "2354266156", + "pairedTokenBalance": "18471", + "usedToken0": "1519282386834904001629", + "usedToken1": "11914012929", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6b30b69845595249945bf7b7d343dd0e0ee69276297da61b8f1a97d124ba77c5", + "state": { + "depositToken": 0, + "blockNumber": 260533648, + "lastRebalancePrice": "1124340", + "state": "1", + "currentTick": "-275152", + "currentPrice": "1124340", + "twapSlow": "1124340", + "twapFast": "1124340", + "depositTokenBalance": "2354266155", + "pairedTokenBalance": "18470", + "usedToken0": "1519282386834904001628", + "usedToken1": "11914012928", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa5f1c86bdd9bda82bf3df64b0ae79db8bc8322c17f391af6c093ff96bf6f525a", + "state": { + "depositToken": 0, + "blockNumber": 260549244, + "lastRebalancePrice": "1124340", + "state": "1", + "currentTick": "-275152", + "currentPrice": "1124340", + "twapSlow": "1124340", + "twapFast": "1124340", + "depositTokenBalance": "2354266154", + "pairedTokenBalance": "18469", + "usedToken0": "1519282386834904001627", + "usedToken1": "11914012927", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xda035ef252e1ec38449c0d359be385d1c2c897f42cb4a851b91e47a59c681e97", + "state": { + "depositToken": 0, + "blockNumber": 260564845, + "lastRebalancePrice": "1124340", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125240", + "twapFast": "1125915", + "depositTokenBalance": "2354266153", + "pairedTokenBalance": "18468", + "usedToken0": "1460527992046160322359", + "usedToken1": "11980123444", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x91e7df5577495195cb86eb555407aeab91af2ef2b656b522d5c547cbf1ea1e6a", + "state": { + "depositToken": 0, + "blockNumber": 260580400, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800379", + "pairedTokenBalance": "18467", + "usedToken0": "1460527992046160322358", + "usedToken1": "11980657670", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x311d6a9afb02d2adc7a1f4ee43e580db7e82ef308a818427d2d45013395c1413", + "state": { + "depositToken": 0, + "blockNumber": 260595976, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800378", + "pairedTokenBalance": "18466", + "usedToken0": "1460527992046160322357", + "usedToken1": "11980657669", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4f4616cd85efb0ab65bb27de282e3c4ded926752099f1f7e28754fc78b58ecd1", + "state": { + "depositToken": 0, + "blockNumber": 260611537, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800377", + "pairedTokenBalance": "18465", + "usedToken0": "1460527992046160322356", + "usedToken1": "11980657668", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaa016ae1ae95ddee052f007992753fda6f030b974edcdb1424ed735a2ca5a057", + "state": { + "depositToken": 0, + "blockNumber": 260627019, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800376", + "pairedTokenBalance": "18464", + "usedToken0": "1460527992046160322355", + "usedToken1": "11980657667", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0238333e15c4ef205659509f5c664335379ecfd38e9fb74c61b6cd9c1037e2ec", + "state": { + "depositToken": 0, + "blockNumber": 260642519, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800375", + "pairedTokenBalance": "18463", + "usedToken0": "1460527992046160322354", + "usedToken1": "11980657666", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3da32061c38669d82f9f54830dff1780d1df88ec53473397aa8a73b7e01c049c", + "state": { + "depositToken": 0, + "blockNumber": 260658012, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800374", + "pairedTokenBalance": "18462", + "usedToken0": "1460527992046160322353", + "usedToken1": "11980657665", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3d908e757e6a6ba09c1c5c5f0a969ed94699fcfc03dd941b642940a9d20ab2f6", + "state": { + "depositToken": 0, + "blockNumber": 260673572, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800373", + "pairedTokenBalance": "18461", + "usedToken0": "1460527992046160322352", + "usedToken1": "11980657664", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2fbac9a83eb4c89b2e6e42eafac0233ffb9e12366f4b22da789ae287df4eddda", + "state": { + "depositToken": 0, + "blockNumber": 260689094, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800372", + "pairedTokenBalance": "18460", + "usedToken0": "1460527992046160322351", + "usedToken1": "11980657663", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7966c12ddd11eecaec0953125669b132c78d02ab2e618654994d2df67229c119", + "state": { + "depositToken": 0, + "blockNumber": 260704599, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800371", + "pairedTokenBalance": "18459", + "usedToken0": "1460527992046160322350", + "usedToken1": "11980657662", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3f4fb760770d104049e142062b3756238bbff41a432e4fcc0809c7b678231867", + "state": { + "depositToken": 0, + "blockNumber": 260719889, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800370", + "pairedTokenBalance": "18458", + "usedToken0": "1460527992046160322349", + "usedToken1": "11980657661", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3ff820ce1284ca024cc2c201d8e9c156b9cc8eb73fcaa57d2a2aed23b9cc4696", + "state": { + "depositToken": 0, + "blockNumber": 260735090, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800369", + "pairedTokenBalance": "18457", + "usedToken0": "1460527992046160322348", + "usedToken1": "11980657660", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x77ab46a5c52a51d38c07173d606b28d6a2ff7b1386b600f513f7a28c81811110", + "state": { + "depositToken": 0, + "blockNumber": 260750164, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275138", + "currentPrice": "1125915", + "twapSlow": "1125915", + "twapFast": "1125915", + "depositTokenBalance": "2354800368", + "pairedTokenBalance": "18456", + "usedToken0": "1460527992046160322347", + "usedToken1": "11980657659", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4083abf6bf38c3b59de3d4d1ca7ccd8aeb71022435a6d06282aaa678a5adf6fc", + "state": { + "depositToken": 0, + "blockNumber": 260765128, + "lastRebalancePrice": "1125915", + "state": "1", + "currentTick": "-275297", + "currentPrice": "1108156", + "twapSlow": "1120412", + "twapFast": "1108156", + "depositTokenBalance": "2354800367", + "pairedTokenBalance": "18455", + "usedToken0": "2155519584550160322346", + "usedToken1": "11204309248", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xac6477c05798892907d137d1904368e0f19ad3c44b13f90e1abc1a50ca66794a", + "state": { + "depositToken": 0, + "blockNumber": 260779802, + "lastRebalancePrice": "1108156", + "state": "1", + "currentTick": "-275297", + "currentPrice": "1108156", + "twapSlow": "1108156", + "twapFast": "1108156", + "depositTokenBalance": "1447692551", + "pairedTokenBalance": "9488", + "usedToken0": "2161135678226960322345", + "usedToken1": "11204309247", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x96b7fde144c1e5d2dbbec2ede70fd19a0bb2ae77196a268432a329a151989884", + "state": { + "depositToken": 0, + "blockNumber": 260794455, + "lastRebalancePrice": "1108156", + "state": "1", + "currentTick": "-275297", + "currentPrice": "1108156", + "twapSlow": "1108156", + "twapFast": "1108156", + "depositTokenBalance": "1447692550", + "pairedTokenBalance": "9487", + "usedToken0": "2161135678226960322344", + "usedToken1": "11204309246", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc4c1b315c6074dc370ba346a21040d0340be3a0aea6853099356da2961b978bd", + "state": { + "depositToken": 0, + "blockNumber": 260809817, + "lastRebalancePrice": "1108156", + "state": "1", + "currentTick": "-275297", + "currentPrice": "1108156", + "twapSlow": "1108156", + "twapFast": "1108156", + "depositTokenBalance": "1447692549", + "pairedTokenBalance": "9486", + "usedToken0": "2161135678226960322343", + "usedToken1": "11204309245", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x26647abfb9249b59880889d50db829c27f589361a5016596fcfad8405efcaae2", + "state": { + "depositToken": 0, + "blockNumber": 260825440, + "lastRebalancePrice": "1108156", + "state": "1", + "currentTick": "-275297", + "currentPrice": "1108156", + "twapSlow": "1108156", + "twapFast": "1108156", + "depositTokenBalance": "1447692548", + "pairedTokenBalance": "9485", + "usedToken0": "2161135678226960322342", + "usedToken1": "11204309244", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x10cb4de2047bfc49415adc322ad133ccdf3ed7fc46dd331d928307f6c0d8e2fc", + "state": { + "depositToken": 0, + "blockNumber": 260841027, + "lastRebalancePrice": "1108156", + "state": "1", + "currentTick": "-275297", + "currentPrice": "1108156", + "twapSlow": "1108156", + "twapFast": "1108156", + "depositTokenBalance": "1447692547", + "pairedTokenBalance": "9484", + "usedToken0": "2161135678226960322341", + "usedToken1": "11204309243", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2d5b72bc349901a07b57269807d6da34e7e3efdf11c531b5fb94fa6983c03c47", + "state": { + "depositToken": 0, + "blockNumber": 260856618, + "lastRebalancePrice": "1108156", + "state": "1", + "currentTick": "-275271", + "currentPrice": "1111040", + "twapSlow": "1109153", + "twapFast": "1111040", + "depositTokenBalance": "1447692546", + "pairedTokenBalance": "9483", + "usedToken0": "2046639390878444424757", + "usedToken1": "11331362957", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1e697d9dee02fe9c4dd7ec6a0a6c277a01a935d88f3feb29a41ce1f980f2d416", + "state": { + "depositToken": 0, + "blockNumber": 260872212, + "lastRebalancePrice": "1111040", + "state": "1", + "currentTick": "-275271", + "currentPrice": "1111040", + "twapSlow": "1111040", + "twapFast": "1111040", + "depositTokenBalance": "1448719241", + "pairedTokenBalance": "9482", + "usedToken0": "2046639390878444424756", + "usedToken1": "11332389652", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8a5cd999234fd4d13e85b9b92961262fa471490100dfed1c4ac0445f9ba73fb8", + "state": { + "depositToken": 0, + "blockNumber": 260887751, + "lastRebalancePrice": "1111040", + "state": "1", + "currentTick": "-275271", + "currentPrice": "1111040", + "twapSlow": "1111040", + "twapFast": "1111040", + "depositTokenBalance": "1448719240", + "pairedTokenBalance": "9481", + "usedToken0": "2046639390878444424755", + "usedToken1": "11332389651", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe70680c13f2a4ad2a74ba11a2e3bbfe39634601b4f96051857dce06cefa94e0d", + "state": { + "depositToken": 0, + "blockNumber": 260903295, + "lastRebalancePrice": "1111040", + "state": "1", + "currentTick": "-275271", + "currentPrice": "1111040", + "twapSlow": "1111040", + "twapFast": "1111040", + "depositTokenBalance": "1448719239", + "pairedTokenBalance": "9480", + "usedToken0": "2046639390878444424754", + "usedToken1": "11332389650", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x687c263c38ec006685b9b2d585422b2e60d4728d304a54dcbd2f13768b77fecf", + "state": { + "depositToken": 0, + "blockNumber": 260918828, + "lastRebalancePrice": "1111040", + "state": "1", + "currentTick": "-275271", + "currentPrice": "1111040", + "twapSlow": "1111040", + "twapFast": "1111040", + "depositTokenBalance": "1448719238", + "pairedTokenBalance": "9479", + "usedToken0": "2046639390878444424753", + "usedToken1": "11332389649", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x544fc35fe1857663ff1839608bf39878215ecbcca46b6602324ee1123d3cc26e", + "state": { + "depositToken": 0, + "blockNumber": 260934397, + "lastRebalancePrice": "1111040", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110707", + "twapFast": "1110485", + "depositTokenBalance": "1448719237", + "pairedTokenBalance": "9478", + "usedToken0": "2068621268922723563939", + "usedToken1": "11307971280", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x505f63227ba4980c0aec619b6c6451ba00fcba637675c9d9c45a386e0c0dbb52", + "state": { + "depositToken": 0, + "blockNumber": 260949927, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872627", + "pairedTokenBalance": "29317", + "usedToken0": "2068798900260455112538", + "usedToken1": "11307971279", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf630a8dca20012983453215da945b1d68bae37c8d7c10cfd75766322eb4cded9", + "state": { + "depositToken": 0, + "blockNumber": 260965489, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872626", + "pairedTokenBalance": "29316", + "usedToken0": "2068798900260455112537", + "usedToken1": "11307971278", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x86709a52f77cbb12ba19d6c6f0bb264f4ba0aa6539cb297429b315c9055fc3c9", + "state": { + "depositToken": 0, + "blockNumber": 260981063, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872625", + "pairedTokenBalance": "29315", + "usedToken0": "2068798900260455112536", + "usedToken1": "11307971277", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaf8d477cc519df5afebdf2e6cb9946edde2c15b1a5335e56318c1b19da972fa6", + "state": { + "depositToken": 0, + "blockNumber": 260996627, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872624", + "pairedTokenBalance": "29314", + "usedToken0": "2068798900260455112535", + "usedToken1": "11307971276", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3f3ce1ac454a369abd93601cb7a2d9f9bab11057d958bddbf82b69a476da4ae2", + "state": { + "depositToken": 0, + "blockNumber": 261012201, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872623", + "pairedTokenBalance": "29313", + "usedToken0": "2068798900260455112534", + "usedToken1": "11307971275", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe62e6db85daa998265479a27e5f41ed47f0dd3ffcf28f8f50c0d464cac91a6a0", + "state": { + "depositToken": 0, + "blockNumber": 261027775, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872622", + "pairedTokenBalance": "29312", + "usedToken0": "2068798900260455112533", + "usedToken1": "11307971274", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9e31627a1ee0f1f9a228666483bd3fb06db3389e73acfada2a44e9c70df13385", + "state": { + "depositToken": 0, + "blockNumber": 261043323, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872621", + "pairedTokenBalance": "29311", + "usedToken0": "2068798900260455112532", + "usedToken1": "11307971273", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9d1aaa108ebb1976e2250b086f0b9463b5516749c3a5b64d643b8a22f1381288", + "state": { + "depositToken": 0, + "blockNumber": 261058735, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872620", + "pairedTokenBalance": "29310", + "usedToken0": "2068798900260455112531", + "usedToken1": "11307971272", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6e3088ea2205437ce2fa36f704fa4fe29be7add1865736ea0a182a3d2d7ae260", + "state": { + "depositToken": 0, + "blockNumber": 261074030, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872619", + "pairedTokenBalance": "29309", + "usedToken0": "2068798900260455112530", + "usedToken1": "11307971271", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc97d3e690ec305f70d82527c8ca75f522c41e1fa94f55e26addc0867ebd0b2b7", + "state": { + "depositToken": 0, + "blockNumber": 261089305, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872618", + "pairedTokenBalance": "29308", + "usedToken0": "2068798900260455112529", + "usedToken1": "11307971270", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xae56abc8278dc6b19f2121efc1e5add6d6d690061302bf6f4beb5c6c9a8d952b", + "state": { + "depositToken": 0, + "blockNumber": 261104364, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872617", + "pairedTokenBalance": "29307", + "usedToken0": "2068798900260455112528", + "usedToken1": "11307971269", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf475c2445b74a06b4abb46fbef233e31fada72a5d688d3fbab9f2aa4769af5e4", + "state": { + "depositToken": 0, + "blockNumber": 261119431, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275276", + "currentPrice": "1110485", + "twapSlow": "1110485", + "twapFast": "1110485", + "depositTokenBalance": "1447872616", + "pairedTokenBalance": "29306", + "usedToken0": "2068798900260455112527", + "usedToken1": "11307971268", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9b2e68af9efaaf66d16d11974b0b4f1566e1bb0dba89092d939baaba031d84ba", + "state": { + "depositToken": 0, + "blockNumber": 261134444, + "lastRebalancePrice": "1110485", + "state": "1", + "currentTick": "-275037", + "currentPrice": "1137344", + "twapSlow": "1134051", + "twapFast": "1137344", + "depositTokenBalance": "1447872615", + "pairedTokenBalance": "29305", + "usedToken0": "1022030753904023982429", + "usedToken1": "12484453073", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x87b31c9b3880e190d3a06af96900c76c909d16cb230288eff103919200c2b2fd", + "state": { + "depositToken": 0, + "blockNumber": 261149825, + "lastRebalancePrice": "1137344", + "state": "1", + "currentTick": "-275037", + "currentPrice": "1137344", + "twapSlow": "1137344", + "twapFast": "1137344", + "depositTokenBalance": "2271753858", + "pairedTokenBalance": "19219", + "usedToken0": "1029972344205603207580", + "usedToken1": "12503096172", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbe53fec33dd36121116fc68aac329872f7955b6059798a1cd8247d8a40faab5d", + "state": { + "depositToken": 0, + "blockNumber": 261165411, + "lastRebalancePrice": "1137344", + "state": "1", + "currentTick": "-275037", + "currentPrice": "1137344", + "twapSlow": "1137344", + "twapFast": "1137344", + "depositTokenBalance": "2271753857", + "pairedTokenBalance": "19218", + "usedToken0": "1029972344205603207579", + "usedToken1": "12503096171", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9d427713cf4e212501ff6e077c1a44fc3b153caba87c4a2be64a515ce01d9bb9", + "state": { + "depositToken": 0, + "blockNumber": 261180995, + "lastRebalancePrice": "1137344", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137344", + "twapFast": "1137458", + "depositTokenBalance": "2271753856", + "pairedTokenBalance": "19217", + "usedToken0": "1024772479904167159807", + "usedToken1": "12509011020", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9495e0ae788b9046fbab043756e46261c7273c55956a620c8d6edf021c3474db", + "state": { + "depositToken": 0, + "blockNumber": 261196538, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137458", + "twapFast": "1137458", + "depositTokenBalance": "2271801651", + "pairedTokenBalance": "8263", + "usedToken0": "1024772479904167159806", + "usedToken1": "12509058815", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xce813a03234d7b3b706b76063a87548da3549c5b05c204aee2fe6c8ffadf8736", + "state": { + "depositToken": 0, + "blockNumber": 261212152, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137458", + "twapFast": "1137458", + "depositTokenBalance": "2271801650", + "pairedTokenBalance": "8262", + "usedToken0": "1024772479904167159805", + "usedToken1": "12509058814", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x62e9bb161e479a25ee2c46e6f89a057d61a6a0ecc1ad3bfe59764c2713030539", + "state": { + "depositToken": 0, + "blockNumber": 261227732, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137458", + "twapFast": "1137458", + "depositTokenBalance": "2271801649", + "pairedTokenBalance": "8261", + "usedToken0": "1024772479904167159804", + "usedToken1": "12509058813", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x60395638d202ef3538e687200ea0f32e5a565340cdb0bb861e20726b53357ce9", + "state": { + "depositToken": 0, + "blockNumber": 261243295, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137458", + "twapFast": "1137458", + "depositTokenBalance": "2271801648", + "pairedTokenBalance": "8260", + "usedToken0": "1024772479904167159803", + "usedToken1": "12509058812", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x325c0d69c8e22b9e915aad7724929b511ed0943e2fc5f4bf4df75d7c6fd15a28", + "state": { + "depositToken": 0, + "blockNumber": 261258870, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137458", + "twapFast": "1137458", + "depositTokenBalance": "2271801647", + "pairedTokenBalance": "8259", + "usedToken0": "1024772479904167159802", + "usedToken1": "12509058811", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x41f18055894678ece9f0ff0a46db3f4d302111f23517a30a63d5d29b7660f4b3", + "state": { + "depositToken": 0, + "blockNumber": 261274411, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275036", + "currentPrice": "1137458", + "twapSlow": "1137458", + "twapFast": "1137458", + "depositTokenBalance": "2271801646", + "pairedTokenBalance": "8258", + "usedToken0": "1024772479904167159801", + "usedToken1": "12509058810", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6f9b8031316f9bc8863ef1e7496a50ace0cf685778072b06895946aeabd3472b", + "state": { + "depositToken": 0, + "blockNumber": 261289951, + "lastRebalancePrice": "1137458", + "state": "1", + "currentTick": "-275060", + "currentPrice": "1134731", + "twapSlow": "1135072", + "twapFast": "1134731", + "depositTokenBalance": "2271801645", + "pairedTokenBalance": "8257", + "usedToken0": "1134221571546193898505", + "usedToken1": "12384708149", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4035658b02cf7e64c5fc85165395fcfdf51757fbb33be6571f67099b8ec4cdac", + "state": { + "depositToken": 0, + "blockNumber": 261305526, + "lastRebalancePrice": "1134731", + "state": "1", + "currentTick": "-275317", + "currentPrice": "1105942", + "twapSlow": "1125690", + "twapFast": "1105942", + "depositTokenBalance": "2263915857", + "pairedTokenBalance": "4338", + "usedToken0": "2269939086666371892353", + "usedToken1": "11113387240", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8ce20102054f4f28ee00af396ef361befaa065b16c23eb42c9163a9259c8ed1a", + "state": { + "depositToken": 0, + "blockNumber": 261321100, + "lastRebalancePrice": "1105942", + "state": "1", + "currentTick": "-275317", + "currentPrice": "1105942", + "twapSlow": "1105942", + "twapFast": "1105942", + "depositTokenBalance": "1332870761", + "pairedTokenBalance": "28918", + "usedToken0": "2279109454973571892352", + "usedToken1": "11113387239", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6918ce2315f44b1c62cabbf2621571f101e2f3aeb156f13b338d1ed5bda7bc0a", + "state": { + "depositToken": 0, + "blockNumber": 261336649, + "lastRebalancePrice": "1105942", + "state": "1", + "currentTick": "-275290", + "currentPrice": "1108932", + "twapSlow": "1108932", + "twapFast": "1108932", + "depositTokenBalance": "1332870760", + "pairedTokenBalance": "28917", + "usedToken0": "2156997848040247492434", + "usedToken1": "11248626444", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xed7e57826ec633b3ec99497565efa7a04f43d9577df0b608422da6fe24b7a71c", + "state": { + "depositToken": 0, + "blockNumber": 261352194, + "lastRebalancePrice": "1108932", + "state": "1", + "currentTick": "-275256", + "currentPrice": "1112708", + "twapSlow": "1110596", + "twapFast": "1112708", + "depositTokenBalance": "1333963601", + "pairedTokenBalance": "28916", + "usedToken0": "2005256545040450454872", + "usedToken1": "11418289939", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd25474baacfc23913a22a266e80eea0ca904cd82c567d5a4a780974b2f383764", + "state": { + "depositToken": 0, + "blockNumber": 261367763, + "lastRebalancePrice": "1112708", + "state": "1", + "currentTick": "-275256", + "currentPrice": "1112708", + "twapSlow": "1112708", + "twapFast": "1112708", + "depositTokenBalance": "1335325790", + "pairedTokenBalance": "7585", + "usedToken0": "2005256545040450454871", + "usedToken1": "11419652128", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x58bd52fe2d04208bc5ebd2cd6e94790023039f96a4a98f1f3cd3095120ad995c", + "state": { + "depositToken": 0, + "blockNumber": 261383296, + "lastRebalancePrice": "1112708", + "state": "1", + "currentTick": "-275256", + "currentPrice": "1112708", + "twapSlow": "1112708", + "twapFast": "1112708", + "depositTokenBalance": "1335325789", + "pairedTokenBalance": "7584", + "usedToken0": "2005256545040450454870", + "usedToken1": "11419652127", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xce2fb9fb45230ffc94d19c5a1e3d6f6adfe85b1168d90198c693e7f82b143a30", + "state": { + "depositToken": 0, + "blockNumber": 261398822, + "lastRebalancePrice": "1112708", + "state": "1", + "currentTick": "-275256", + "currentPrice": "1112708", + "twapSlow": "1112708", + "twapFast": "1112708", + "depositTokenBalance": "1335325788", + "pairedTokenBalance": "7583", + "usedToken0": "2005256545040450454869", + "usedToken1": "11419652126", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7f12e3f8ba6933155cbd211e8abde344cab2847bfac49eca1fc6f520586dffd8", + "state": { + "depositToken": 0, + "blockNumber": 261414374, + "lastRebalancePrice": "1112708", + "state": "1", + "currentTick": "-275262", + "currentPrice": "1112041", + "twapSlow": "1112486", + "twapFast": "1112041", + "depositTokenBalance": "1335325787", + "pairedTokenBalance": "7582", + "usedToken0": "2035465317207556794605", + "usedToken1": "11386047204", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x038980c965426c20470ad5fddd5a583f7acf3e0e0beba489aed2fca710c61933", + "state": { + "depositToken": 0, + "blockNumber": 261429812, + "lastRebalancePrice": "1112041", + "state": "1", + "currentTick": "-275269", + "currentPrice": "1111263", + "twapSlow": "1111374", + "twapFast": "1111263", + "depositTokenBalance": "1334120414", + "pairedTokenBalance": "23466", + "usedToken0": "2063271237612264064411", + "usedToken1": "11355406685", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa4b1668d1e4719fbde51ed0d45d2e25f67528babde0d01e591a0293e9b0a5eb8", + "state": { + "depositToken": 0, + "blockNumber": 261445236, + "lastRebalancePrice": "1111263", + "state": "1", + "currentTick": "-275269", + "currentPrice": "1111263", + "twapSlow": "1111263", + "twapFast": "1111263", + "depositTokenBalance": "1333038656", + "pairedTokenBalance": "16641", + "usedToken0": "2063493959302077947454", + "usedToken1": "11355406684", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8472460ebb2227e41a7c7416d6b5acfe4e9159d1cb277b4b5e45fb5e9a8712e7", + "state": { + "depositToken": 0, + "blockNumber": 261460484, + "lastRebalancePrice": "1111263", + "state": "1", + "currentTick": "-275269", + "currentPrice": "1111263", + "twapSlow": "1111263", + "twapFast": "1111263", + "depositTokenBalance": "1333038655", + "pairedTokenBalance": "16640", + "usedToken0": "2063493959302077947453", + "usedToken1": "11355406683", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x481b470e2eb33316f19ad6699fc6518b6c737964e6005ed6b1a8663ca165a7e9", + "state": { + "depositToken": 0, + "blockNumber": 261475872, + "lastRebalancePrice": "1111263", + "state": "1", + "currentTick": "-275280", + "currentPrice": "1110041", + "twapSlow": "1110596", + "twapFast": "1110041", + "depositTokenBalance": "1333038654", + "pairedTokenBalance": "16639", + "usedToken0": "2115285521949621551508", + "usedToken1": "11297881092", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe28cf414e4546e3d73ae226c6063a617bc886f6aa766c5b48b3dccac9610ffaf", + "state": { + "depositToken": 0, + "blockNumber": 261491406, + "lastRebalancePrice": "1110041", + "state": "1", + "currentTick": "-275280", + "currentPrice": "1110041", + "twapSlow": "1110041", + "twapFast": "1110041", + "depositTokenBalance": "1331067069", + "pairedTokenBalance": "32317", + "usedToken0": "2115704039627581499823", + "usedToken1": "11297881091", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x82b8423eeb8d3b19b6b8efe485a3fffa8a2c8a49e6fe3da6fd4e84f15e772b9b", + "state": { + "depositToken": 0, + "blockNumber": 261506988, + "lastRebalancePrice": "1110041", + "state": "1", + "currentTick": "-275280", + "currentPrice": "1110041", + "twapSlow": "1110041", + "twapFast": "1110041", + "depositTokenBalance": "1331067068", + "pairedTokenBalance": "32316", + "usedToken0": "2115704039627581499822", + "usedToken1": "11297881090", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x115170ce4f0077bcb27b5a3fac67d5e224cc164eb75bf7ed53f50c1fa3b51c3c", + "state": { + "depositToken": 0, + "blockNumber": 261522614, + "lastRebalancePrice": "1110041", + "state": "1", + "currentTick": "-275280", + "currentPrice": "1110041", + "twapSlow": "1110041", + "twapFast": "1110041", + "depositTokenBalance": "1331067067", + "pairedTokenBalance": "32315", + "usedToken0": "2115704039627581499821", + "usedToken1": "11297881089", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2e06927d78e97e525f10342669fee806f63b6903dd94c5a086167f39e98908dc", + "state": { + "depositToken": 0, + "blockNumber": 261538205, + "lastRebalancePrice": "1110041", + "state": "1", + "currentTick": "-275280", + "currentPrice": "1110041", + "twapSlow": "1110041", + "twapFast": "1110041", + "depositTokenBalance": "1331067066", + "pairedTokenBalance": "32314", + "usedToken0": "2115704039627581499820", + "usedToken1": "11297881088", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe0b839eea1020168d760dbd347a83cb6544c858a138594761d45c2a21463636d", + "state": { + "depositToken": 0, + "blockNumber": 261553747, + "lastRebalancePrice": "1110041", + "state": "1", + "currentTick": "-275280", + "currentPrice": "1110041", + "twapSlow": "1110041", + "twapFast": "1110041", + "depositTokenBalance": "1331067065", + "pairedTokenBalance": "32313", + "usedToken0": "2115704039627581499819", + "usedToken1": "11297881087", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6232f13e628e1e3256c03858110799c987377bce4cfedf1e92d5c5c44e9961c8", + "state": { + "depositToken": 0, + "blockNumber": 261569339, + "lastRebalancePrice": "1110041", + "state": "1", + "currentTick": "-275344", + "currentPrice": "1102960", + "twapSlow": "1105057", + "twapFast": "1102960", + "depositTokenBalance": "1331067064", + "pairedTokenBalance": "32312", + "usedToken0": "2401230428330852754578", + "usedToken1": "10981937674", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x37f09937ab9625699fa5dc6abcbdc6e8f8cf0bb37a9c8c0c4649baf771d53dd1", + "state": { + "depositToken": 0, + "blockNumber": 261584922, + "lastRebalancePrice": "1102960", + "state": "1", + "currentTick": "-275346", + "currentPrice": "1102739", + "twapSlow": "1102739", + "twapFast": "1102739", + "depositTokenBalance": "1321793776", + "pairedTokenBalance": "33183", + "usedToken0": "2409877011872561972569", + "usedToken1": "10974945910", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb5bf1e52c448064b3505bdf592299c96703919719d9bbe791251eb93be02e17d", + "state": { + "depositToken": 0, + "blockNumber": 261600490, + "lastRebalancePrice": "1102739", + "state": "1", + "currentTick": "-275346", + "currentPrice": "1102739", + "twapSlow": "1102739", + "twapFast": "1102739", + "depositTokenBalance": "1321588578", + "pairedTokenBalance": "25302", + "usedToken0": "2409928238535936452362", + "usedToken1": "10974945909", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-274800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2c31f4b366b46de62597d34528b2561855239a7beecb4723291b7324fbafd512", + "state": { + "depositToken": 0, + "blockNumber": 261601188, + "lastRebalancePrice": "1102739", + "state": "1", + "currentTick": "-275601", + "currentPrice": "1074976", + "twapSlow": "1102629", + "twapFast": "1102188", + "depositTokenBalance": "1321588577", + "pairedTokenBalance": "25301", + "usedToken0": "3562831058106277669077", + "usedToken1": "9719616409", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x0412bce2a29b98248762044cbd951efd8dcde1a8391108240edf8bcc796106ed", + "state": { + "depositToken": 0, + "blockNumber": 261616792, + "lastRebalancePrice": "1074976", + "state": "3", + "currentTick": "-275601", + "currentPrice": "1074976", + "twapSlow": "1074976", + "twapFast": "1074976", + "depositTokenBalance": "0", + "pairedTokenBalance": "894022", + "usedToken0": "3572150339150757669075", + "usedToken1": "9719619520", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x90ead826b7c2129fe8416e8bf61a6a8e6f5a44139391f2fb362fceb55d6c7958", + "state": { + "depositToken": 0, + "blockNumber": 262120828, + "lastRebalancePrice": "1074976", + "state": "2", + "currentTick": "-275817", + "currentPrice": "1052007", + "twapSlow": "1057280", + "twapFast": "1052007", + "depositTokenBalance": "0", + "pairedTokenBalance": "41253", + "usedToken0": "3670285843819248580710", + "usedToken1": "9615254958", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0x445217e4c8bb434f459e379af3359cd04bb8d913831c7c7173bce75ab58d5f01", + "state": { + "depositToken": 0, + "blockNumber": 262434692, + "lastRebalancePrice": "1052007", + "state": "2", + "currentTick": "-276028", + "currentPrice": "1030043", + "twapSlow": "1032828", + "twapFast": "1030043", + "depositTokenBalance": "0", + "pairedTokenBalance": "26570", + "usedToken0": "3769029528420385396125", + "usedToken1": "9515079087", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276000" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0x4edac2703216ea7add811eef2fec39704f28bd9306d2c9b98fcfc4c30ce5c8f4", + "state": { + "depositToken": 0, + "blockNumber": 263013394, + "lastRebalancePrice": "1030043", + "state": "2", + "currentTick": "-275822", + "currentPrice": "1051481", + "twapSlow": "1049695", + "twapFast": "1051481", + "depositTokenBalance": "0", + "pairedTokenBalance": "45913", + "usedToken0": "2905218442363952085479", + "usedToken1": "10416272750", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xae79dfb8b5d5b4141c2fa52e49dba5e28ceb26b98c9634148dc61676748fcdf6", + "state": { + "depositToken": 0, + "blockNumber": 263744071, + "lastRebalancePrice": "1051481", + "state": "2", + "currentTick": "-275616", + "currentPrice": "1073365", + "twapSlow": "1071221", + "twapFast": "1073365", + "depositTokenBalance": "0", + "pairedTokenBalance": "8942", + "usedToken0": "2216971341721383646225", + "usedToken1": "11155430469", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x666add3744372ce4022bd6e5afc9b69811a03d8e6d093340c715af71d74678e0", + "state": { + "depositToken": 0, + "blockNumber": 263759563, + "lastRebalancePrice": "1073365", + "state": "2", + "currentTick": "-275500", + "currentPrice": "1085888", + "twapSlow": "1080797", + "twapFast": "1085888", + "depositTokenBalance": "0", + "pairedTokenBalance": "31510", + "usedToken0": "1927430614008864977765", + "usedToken1": "11475613553", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x519c92d1ac96824f514626e723bbd625b64ca29016f65750347213086bc024a4", + "state": { + "depositToken": 0, + "blockNumber": 265832123, + "lastRebalancePrice": "1085888", + "state": "1", + "currentTick": "-275254", + "currentPrice": "1112931", + "twapSlow": "1084586", + "twapFast": "1112931", + "depositTokenBalance": "0", + "pairedTokenBalance": "904304", + "usedToken0": "632435564223803041747", + "usedToken1": "12901809920", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0x0ced07bdc3c33110f1d70299ed51f097d7cd49e144c5447099803c95bb4619d0", + "state": { + "depositToken": 0, + "blockNumber": 265956993, + "lastRebalancePrice": "1112931", + "state": "0", + "currentTick": "-275024", + "currentPrice": "1138823", + "twapSlow": "1127493", + "twapFast": "1138823", + "depositTokenBalance": "0", + "pairedTokenBalance": "728302", + "usedToken0": "640423551706607562052", + "usedToken1": "12938449854", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277400", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0x6a01713f0b405191922469468f12cca846d7f80b1d8bf9459e892546ae8c1049", + "state": { + "depositToken": 0, + "blockNumber": 266110618, + "lastRebalancePrice": "1138823", + "state": "0", + "currentTick": "-275363", + "currentPrice": "1100866", + "twapSlow": "1116498", + "twapFast": "1100866", + "depositTokenBalance": "0", + "pairedTokenBalance": "728301", + "usedToken0": "1549511734784182120044", + "usedToken1": "11929394277", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5837f99c8e4d2851e6533290a964673c933ce7df2ca73d6090a79332c1ad6670", + "state": { + "depositToken": 0, + "blockNumber": 266126238, + "lastRebalancePrice": "1100866", + "state": "1", + "currentTick": "-275363", + "currentPrice": "1100866", + "twapSlow": "1100866", + "twapFast": "1100866", + "depositTokenBalance": "2677328062", + "pairedTokenBalance": "7012", + "usedToken0": "1556857901920162520513", + "usedToken1": "11929394276", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdad9e208671b9fd9fc77b84b2cb8321a710c98b01244f3c3c0fc0c8b1e307239", + "state": { + "depositToken": 0, + "blockNumber": 266141825, + "lastRebalancePrice": "1100866", + "state": "1", + "currentTick": "-275366", + "currentPrice": "1100536", + "twapSlow": "1100756", + "twapFast": "1100756", + "depositTokenBalance": "2677328061", + "pairedTokenBalance": "7011", + "usedToken0": "1571730952575164819960", + "usedToken1": "11913022505", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x32d0a22a86515b45ef632cfa9774718e1652fd151e62142fab653a4bfc6b95b3", + "state": { + "depositToken": 0, + "blockNumber": 266157389, + "lastRebalancePrice": "1100536", + "state": "1", + "currentTick": "-275369", + "currentPrice": "1100206", + "twapSlow": "1100316", + "twapFast": "1100206", + "depositTokenBalance": "2676621830", + "pairedTokenBalance": "13511", + "usedToken0": "1582215617647798562754", + "usedToken1": "11901616942", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd4b0bf95a48c10f3e8fcd9c64e51776b8120b3cf4adb8da4a601ced6078abcde", + "state": { + "depositToken": 0, + "blockNumber": 266172952, + "lastRebalancePrice": "1100206", + "state": "1", + "currentTick": "-275370", + "currentPrice": "1100096", + "twapSlow": "1100096", + "twapFast": "1100096", + "depositTokenBalance": "1817754060", + "pairedTokenBalance": "6737", + "usedToken0": "1588989077063089587569", + "usedToken1": "11894256719", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb094c045f2282c66233285915221b80f33ec59b4847d3133376bdecb827402de", + "state": { + "depositToken": 0, + "blockNumber": 266188537, + "lastRebalancePrice": "1100096", + "state": "1", + "currentTick": "-275370", + "currentPrice": "1100096", + "twapSlow": "1100096", + "twapFast": "1100096", + "depositTokenBalance": "1817411251", + "pairedTokenBalance": "23840", + "usedToken0": "1589043135293806456445", + "usedToken1": "11894256718", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd3cd897a0912ecb8e67ce9d7927a6d8806d1b9174d1f125b319005329474ca1e", + "state": { + "depositToken": 0, + "blockNumber": 266204103, + "lastRebalancePrice": "1100096", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1817411250", + "pairedTokenBalance": "23839", + "usedToken0": "1611160184235025717165", + "usedToken1": "11869930926", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa687a55969f0c27caf993c257b35536aa5490a9756a5c969762053eac76ddbd8", + "state": { + "depositToken": 0, + "blockNumber": 266219712, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1816296138", + "pairedTokenBalance": "17932", + "usedToken0": "1611338907862833549574", + "usedToken1": "11869930925", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x620da3b7a523dd9a9cdfb57de72ec5c0d13f4e1d9a6e1bb724e2111eb7f7b748", + "state": { + "depositToken": 0, + "blockNumber": 266235286, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1816296137", + "pairedTokenBalance": "17931", + "usedToken0": "1611338907862833549573", + "usedToken1": "11869930924", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x120fab60f8f56f7f49a2cfe077a0f8e072810cb96e1b651f395c72b8ed012700", + "state": { + "depositToken": 0, + "blockNumber": 266250843, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1816296136", + "pairedTokenBalance": "17930", + "usedToken0": "1611338907862833549572", + "usedToken1": "11869930923", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1aa784415d94d765fda6d0d2e11a386f72dfe77fef290bfaedb5d2fef03e2e53", + "state": { + "depositToken": 0, + "blockNumber": 266266325, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1816296135", + "pairedTokenBalance": "17929", + "usedToken0": "1611338907862833549571", + "usedToken1": "11869930922", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa72514449dcd6f162aa688b238809b79f0c613331733624114ff65c54fbf6eda", + "state": { + "depositToken": 0, + "blockNumber": 266281872, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1816296134", + "pairedTokenBalance": "17928", + "usedToken0": "1611338907862833549570", + "usedToken1": "11869930921", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5cfe80e7841ec12c764a554f8287682f55e7c341c4717ac7ccb7af5824d13a70", + "state": { + "depositToken": 0, + "blockNumber": 266297375, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275375", + "currentPrice": "1099546", + "twapSlow": "1099546", + "twapFast": "1099546", + "depositTokenBalance": "1816296133", + "pairedTokenBalance": "17927", + "usedToken0": "1611338907862833549569", + "usedToken1": "11869930920", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8d27a86250bd2b18458becf273c55a157c7ffe6912f3fb42cabef72d7e69a668", + "state": { + "depositToken": 0, + "blockNumber": 266312964, + "lastRebalancePrice": "1099546", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1097130", + "twapFast": "1096362", + "depositTokenBalance": "1816296132", + "pairedTokenBalance": "17926", + "usedToken0": "1735156360618609333006", + "usedToken1": "11733976861", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7b599f61012741971b9a121b415f8c01fed0ac907af8e1094ed6f638c30593d6", + "state": { + "depositToken": 0, + "blockNumber": 266328543, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577288", + "pairedTokenBalance": "4144", + "usedToken0": "1736156905691383278730", + "usedToken1": "11733976860", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7801ef2861329b824ac5474a66d5c55868d3ace05b985345772781883e3943f8", + "state": { + "depositToken": 0, + "blockNumber": 266344166, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577287", + "pairedTokenBalance": "4143", + "usedToken0": "1736156905691383278729", + "usedToken1": "11733976859", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1e10ec1b8ae58f9aef86eda91437bae1c6c13a32ce84d286cd278c7b69f829bb", + "state": { + "depositToken": 0, + "blockNumber": 266359772, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577286", + "pairedTokenBalance": "4142", + "usedToken0": "1736156905691383278728", + "usedToken1": "11733976858", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x35e6241891a74428e4c2add5201040aca375a63b0ae97dfa07afc5a7ddb4e35f", + "state": { + "depositToken": 0, + "blockNumber": 266375383, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577285", + "pairedTokenBalance": "4141", + "usedToken0": "1736156905691383278727", + "usedToken1": "11733976857", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaeafcf9cf354511d952be07b61afb3366417821c20fa43a8b395207d527bc29f", + "state": { + "depositToken": 0, + "blockNumber": 266390964, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577284", + "pairedTokenBalance": "4140", + "usedToken0": "1736156905691383278726", + "usedToken1": "11733976856", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x02bacbef2e1516b30eaeebf7a7a1f966a006cbb297063b23460f44681c59ab28", + "state": { + "depositToken": 0, + "blockNumber": 266406542, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577283", + "pairedTokenBalance": "4139", + "usedToken0": "1736156905691383278725", + "usedToken1": "11733976855", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x377c3027827d4a6eec98e9c1b64de43c8ba550239e294a157912ee309625cf5b", + "state": { + "depositToken": 0, + "blockNumber": 266422140, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275404", + "currentPrice": "1096362", + "twapSlow": "1096362", + "twapFast": "1096362", + "depositTokenBalance": "1810577282", + "pairedTokenBalance": "4138", + "usedToken0": "1736156905691383278724", + "usedToken1": "11733976854", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x815325e338e21b297e1728fc55875aba201e3dbaacdbdee9b8ac67caa6d203c6", + "state": { + "depositToken": 0, + "blockNumber": 266437752, + "lastRebalancePrice": "1096362", + "state": "1", + "currentTick": "-275410", + "currentPrice": "1095705", + "twapSlow": "1096143", + "twapFast": "1095705", + "depositTokenBalance": "1810577281", + "pairedTokenBalance": "4137", + "usedToken0": "1764962317462688621454", + "usedToken1": "11702403420", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xfc18839fb058b43842405538e24c42f6e089ecacc4593808a736de8d1fd0b200", + "state": { + "depositToken": 0, + "blockNumber": 266846861, + "lastRebalancePrice": "1095705", + "state": "1", + "currentTick": "-275585", + "currentPrice": "1076697", + "twapSlow": "1082094", + "twapFast": "1076697", + "depositTokenBalance": "0", + "pairedTokenBalance": "639396", + "usedToken0": "2669778292465007237397", + "usedToken1": "10719855481", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xdd77c10dff3ef8792ef02394da665128cfaadd5701bf0b6819ad1d89dd40d339", + "state": { + "depositToken": 0, + "blockNumber": 266898915, + "lastRebalancePrice": "1076697", + "state": "2", + "currentTick": "-275865", + "currentPrice": "1046970", + "twapSlow": "1057068", + "twapFast": "1046970", + "depositTokenBalance": "0", + "pairedTokenBalance": "46011", + "usedToken0": "2817209148217297163495", + "usedToken1": "10571076932", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0x5289fd2cf91163d7e32d9adf2a99ad7046b094e1319a8ed318fc64b5d4d67f14", + "state": { + "depositToken": 0, + "blockNumber": 267426410, + "lastRebalancePrice": "1046970", + "state": "2", + "currentTick": "-275859", + "currentPrice": "1047598", + "twapSlow": "1047598", + "twapFast": "1047598", + "depositTokenBalance": "1000000000", + "pairedTokenBalance": "20879", + "usedToken0": "2815679743420290020102", + "usedToken1": "11574812840", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xa1a8a0e78cba71ec7dfe69143379fdaefd2119a4cd7b67f22a137d4b6eea6657", + "state": { + "depositToken": 0, + "blockNumber": 267663228, + "lastRebalancePrice": "1047598", + "state": "2", + "currentTick": "-276117", + "currentPrice": "1020917", + "twapSlow": "1029425", + "twapFast": "1020917", + "depositTokenBalance": "0", + "pairedTokenBalance": "12751", + "usedToken0": "2959403221124480327836", + "usedToken1": "11425981317", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276000" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0x73020cb728bd6a61b06f1c78e3a4cd4c010de80b9e7e4ea02450bf6bc7b95e47", + "state": { + "depositToken": 0, + "blockNumber": 268417022, + "lastRebalancePrice": "1020917", + "state": "2", + "currentTick": "-276372", + "currentPrice": "995214", + "twapSlow": "1011366", + "twapFast": "995214", + "depositTokenBalance": "0", + "pairedTokenBalance": "27153", + "usedToken0": "3104072715552278374766", + "usedToken1": "11281731926", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276200" + }, + "limitPosition": { + "bottomTick": "-276200", + "topTick": "-275600" + } + } + }, + { + "transactionHash": "0x59e17d36337c4db54be1bfaf780aae06876d41d7f45afaccc7decf863a5c43d7", + "state": { + "depositToken": 0, + "blockNumber": 268674407, + "lastRebalancePrice": "995214", + "state": "2", + "currentTick": "-276133", + "currentPrice": "1019285", + "twapSlow": "1009143", + "twapFast": "1018062", + "depositTokenBalance": "10000", + "pairedTokenBalance": "31420", + "usedToken0": "2664824992030531434618", + "usedToken1": "11728753183", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276000" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0xc784665bea29619cd3332bd8b3976a2491644510da93b224cdd323113887918b", + "state": { + "depositToken": 0, + "blockNumber": 268738591, + "lastRebalancePrice": "1019285", + "state": "2", + "currentTick": "-275934", + "currentPrice": "1039771", + "twapSlow": "1036242", + "twapFast": "1039771", + "depositTokenBalance": "0", + "pairedTokenBalance": "57835", + "usedToken0": "2370226964163920736323", + "usedToken1": "12037124226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278000", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x34ad25ef4d1078746178f03ad9bc92461360e91f21c9f95126ad6f2e47564404", + "state": { + "depositToken": 0, + "blockNumber": 269611497, + "lastRebalancePrice": "1039771", + "state": "1", + "currentTick": "-276065", + "currentPrice": "1026239", + "twapSlow": "1027163", + "twapFast": "1026239", + "depositTokenBalance": "0", + "pairedTokenBalance": "934892", + "usedToken0": "3145604181095332353738", + "usedToken1": "11238600707", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276000" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0xe1c5ac41eddc5ade8321d426f2a8f79fe69fd89bc2d91457e5c02e7ff5f61654", + "state": { + "depositToken": 0, + "blockNumber": 269695556, + "lastRebalancePrice": "1026239", + "state": "2", + "currentTick": "-276556", + "currentPrice": "977070", + "twapSlow": "1009446", + "twapFast": "977070", + "depositTokenBalance": "0", + "pairedTokenBalance": "64207", + "usedToken0": "3428569046198983665087", + "usedToken1": "10970534226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276400" + }, + "limitPosition": { + "bottomTick": "-276400", + "topTick": "-275800" + } + } + }, + { + "transactionHash": "0x1548f3bff073e4ee196206dd14e2f4a14f00d7f8d3bcf596c1c77063bb840321", + "state": { + "depositToken": 0, + "blockNumber": 269766877, + "lastRebalancePrice": "977070", + "state": "2", + "currentTick": "-276859", + "currentPrice": "947910", + "twapSlow": "969479", + "twapFast": "947910", + "depositTokenBalance": "0", + "pairedTokenBalance": "14496", + "usedToken0": "3601986346755930603979", + "usedToken1": "10805750619", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276800" + }, + "limitPosition": { + "bottomTick": "-276800", + "topTick": "-276000" + } + } + }, + { + "transactionHash": "0xa5d897dc88ca5fffaf652b96c53221afd6617fc2c2333dde36afc50292c799d1", + "state": { + "depositToken": 0, + "blockNumber": 270241236, + "lastRebalancePrice": "947910", + "state": "2", + "currentTick": "-277065", + "currentPrice": "928584", + "twapSlow": "929978", + "twapFast": "928584", + "depositTokenBalance": "0", + "pairedTokenBalance": "19514", + "usedToken0": "3722535819750520563348", + "usedToken1": "10696084325", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277000" + }, + "limitPosition": { + "bottomTick": "-277000", + "topTick": "-276200" + } + } + }, + { + "transactionHash": "0xdfd7bc18e3a53877ee2376afa97a8e7a0d79a4c01d2e995f0d870b2fa937ed59", + "state": { + "depositToken": 0, + "blockNumber": 270459672, + "lastRebalancePrice": "928584", + "state": "2", + "currentTick": "-277271", + "currentPrice": "909652", + "twapSlow": "919621", + "twapFast": "909652", + "depositTokenBalance": "0", + "pairedTokenBalance": "48486", + "usedToken0": "3843515228419194998166", + "usedToken1": "10586974263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277200" + }, + "limitPosition": { + "bottomTick": "-277200", + "topTick": "-276400" + } + } + }, + { + "transactionHash": "0x81b16871e7294fa42139b72b1da636b04deffb744db35ce8c01e419e568026d4", + "state": { + "depositToken": 0, + "blockNumber": 270619496, + "lastRebalancePrice": "909652", + "state": "2", + "currentTick": "-277475", + "currentPrice": "891284", + "twapSlow": "895304", + "twapFast": "891284", + "depositTokenBalance": "0", + "pairedTokenBalance": "58646", + "usedToken0": "3963823979683899976724", + "usedToken1": "10479510674", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277400" + }, + "limitPosition": { + "bottomTick": "-277400", + "topTick": "-276600" + } + } + }, + { + "transactionHash": "0x465ba7b2153be3d68caa54b316d76563eb87a3d62ff08f00a3dd80855e2488a6", + "state": { + "depositToken": 0, + "blockNumber": 271387455, + "lastRebalancePrice": "891284", + "state": "2", + "currentTick": "-277718", + "currentPrice": "869888", + "twapSlow": "884536", + "twapFast": "869888", + "depositTokenBalance": "0", + "pairedTokenBalance": "36669", + "usedToken0": "4108658900535353695245", + "usedToken1": "10352827376", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277600" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-276800" + } + } + }, + { + "transactionHash": "0x9732ca00db3440c7cc1ce8e0bb5c612ec157811f53674a293dac51c232b864d6", + "state": { + "depositToken": 0, + "blockNumber": 271464637, + "lastRebalancePrice": "869888", + "state": "2", + "currentTick": "-277456", + "currentPrice": "892979", + "twapSlow": "882681", + "twapFast": "889859", + "depositTokenBalance": "0", + "pairedTokenBalance": "65352", + "usedToken0": "3301132501037640112769", + "usedToken1": "11074029071", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277400" + }, + "limitPosition": { + "bottomTick": "-277400", + "topTick": "-276600" + } + } + }, + { + "transactionHash": "0xfd81dc0e2e7ccd492687c36ceec0a2315600a27a7594ff42932746bd9f09805b", + "state": { + "depositToken": 0, + "blockNumber": 271489850, + "lastRebalancePrice": "892979", + "state": "2", + "currentTick": "-277238", + "currentPrice": "912659", + "twapSlow": "903578", + "twapFast": "911747", + "depositTokenBalance": "0", + "pairedTokenBalance": "19258", + "usedToken0": "2590656330606679083684", + "usedToken1": "11722719786", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279400", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7722776e6f11786a21077d97f43928edea7fb220c7cf07a53229558e5296a520", + "state": { + "depositToken": 0, + "blockNumber": 271505428, + "lastRebalancePrice": "912659", + "state": "1", + "currentTick": "-277202", + "currentPrice": "915950", + "twapSlow": "914852", + "twapFast": "915950", + "depositTokenBalance": "514486175", + "pairedTokenBalance": "43261", + "usedToken0": "2375970063563063457542", + "usedToken1": "11924220397", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279400", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf8bd199c71271b6a6170b18fa30e8fed253123a4e36dd2a681def257479b7441", + "state": { + "depositToken": 0, + "blockNumber": 271520980, + "lastRebalancePrice": "915950", + "state": "1", + "currentTick": "-277196", + "currentPrice": "916500", + "twapSlow": "916133", + "twapFast": "916500", + "depositTokenBalance": "516072483", + "pairedTokenBalance": "43260", + "usedToken0": "2340316332683818957956", + "usedToken1": "11958476125", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279400", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9b4be90dbaad2ee9d67bd8660609e3d3c4ac22a06a38f0fca431dbdca2ffcfa8", + "state": { + "depositToken": 0, + "blockNumber": 271536516, + "lastRebalancePrice": "916500", + "state": "1", + "currentTick": "-277196", + "currentPrice": "916500", + "twapSlow": "916500", + "twapFast": "916500", + "depositTokenBalance": "516336478", + "pairedTokenBalance": "22821", + "usedToken0": "2340316332683818957955", + "usedToken1": "11958740120", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279400", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa7f4577e48589db311f229249844f4fecf533b1c7e30094d8f7679b03f49e607", + "state": { + "depositToken": 0, + "blockNumber": 271552041, + "lastRebalancePrice": "916500", + "state": "1", + "currentTick": "-277175", + "currentPrice": "918426", + "twapSlow": "917692", + "twapFast": "918426", + "depositTokenBalance": "516336477", + "pairedTokenBalance": "22820", + "usedToken0": "2218315346042841398545", + "usedToken1": "12070676803", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279400", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x36535ff148f115fb64532b9b2310597c88eb498ea2be7b2ad703e4fc677b8887", + "state": { + "depositToken": 0, + "blockNumber": 271567597, + "lastRebalancePrice": "918426", + "state": "1", + "currentTick": "-277144", + "currentPrice": "921278", + "twapSlow": "919897", + "twapFast": "921278", + "depositTokenBalance": "517241015", + "pairedTokenBalance": "42192", + "usedToken0": "2034227779483946463871", + "usedToken1": "12240916206", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8e2be6cc506716b1104d65e046d57760314d35de93c1e16c2b55e812f7e67c10", + "state": { + "depositToken": 0, + "blockNumber": 271583033, + "lastRebalancePrice": "921278", + "state": "1", + "currentTick": "-277144", + "currentPrice": "921278", + "twapSlow": "921278", + "twapFast": "921278", + "depositTokenBalance": "1505345584", + "pairedTokenBalance": "24426", + "usedToken0": "2034227779483946463870", + "usedToken1": "12242284569", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5e97a43692cfa64cd2e8f2c62444df12a33a1e843958b0fe5121aeca29d6b433", + "state": { + "depositToken": 0, + "blockNumber": 271598545, + "lastRebalancePrice": "921278", + "state": "1", + "currentTick": "-277144", + "currentPrice": "921278", + "twapSlow": "921278", + "twapFast": "921278", + "depositTokenBalance": "1505345583", + "pairedTokenBalance": "24425", + "usedToken0": "2034227779483946463869", + "usedToken1": "12242284568", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x010358c53cc6e0e0398357eb4b14caee47f2a0a87a2d25ee2d66ac9ae5fd78ad", + "state": { + "depositToken": 0, + "blockNumber": 271614077, + "lastRebalancePrice": "921278", + "state": "1", + "currentTick": "-277144", + "currentPrice": "921278", + "twapSlow": "921278", + "twapFast": "921278", + "depositTokenBalance": "1505345582", + "pairedTokenBalance": "24424", + "usedToken0": "2034227779483946463868", + "usedToken1": "12242284567", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x108405c9ff2cd48b08b1bd825dadc2e003362417634be41837f9aa4ee153066d", + "state": { + "depositToken": 0, + "blockNumber": 271629576, + "lastRebalancePrice": "921278", + "state": "1", + "currentTick": "-277131", + "currentPrice": "922476", + "twapSlow": "921646", + "twapFast": "922384", + "depositTokenBalance": "1505345581", + "pairedTokenBalance": "24423", + "usedToken0": "1954525177378477010461", + "usedToken1": "12315762052", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4c35e712c80bee7009424fedb06080d5d95b35bb57d0c0a4b96887d303a907d0", + "state": { + "depositToken": 0, + "blockNumber": 271645144, + "lastRebalancePrice": "922476", + "state": "1", + "currentTick": "-277130", + "currentPrice": "922568", + "twapSlow": "922476", + "twapFast": "922568", + "depositTokenBalance": "1505939339", + "pairedTokenBalance": "24422", + "usedToken0": "1950441913499934272095", + "usedToken1": "12320122799", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc05bbddf5cecd7fbea47c5f9cba5f33bf154efacfc5585fd71a679a76f6db939", + "state": { + "depositToken": 0, + "blockNumber": 271660736, + "lastRebalancePrice": "922568", + "state": "1", + "currentTick": "-277130", + "currentPrice": "922568", + "twapSlow": "922568", + "twapFast": "922568", + "depositTokenBalance": "1505969778", + "pairedTokenBalance": "24421", + "usedToken0": "1950441913499934272094", + "usedToken1": "12320153238", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x33e2ae868fc7759c79133023f3430d124924a922eacc052a6e303f9d772d4eac", + "state": { + "depositToken": 0, + "blockNumber": 271676286, + "lastRebalancePrice": "922568", + "state": "1", + "currentTick": "-277127", + "currentPrice": "922845", + "twapSlow": "922568", + "twapFast": "922845", + "depositTokenBalance": "1505969777", + "pairedTokenBalance": "24420", + "usedToken0": "1931877465491840011427", + "usedToken1": "12337283004", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x93f1dd3d160ed3fcd4a483c5f6dde1b70108ad7d4844855df776d8c0bdeb1e0e", + "state": { + "depositToken": 0, + "blockNumber": 271691824, + "lastRebalancePrice": "922845", + "state": "1", + "currentTick": "-277127", + "currentPrice": "922845", + "twapSlow": "922845", + "twapFast": "922845", + "depositTokenBalance": "1506108199", + "pairedTokenBalance": "7548", + "usedToken0": "1931877465491840011426", + "usedToken1": "12337421426", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa1ffe9e51752256912711cd90c843f9fd0d49e15e0e859528d93ff9a7b9638e7", + "state": { + "depositToken": 0, + "blockNumber": 271707369, + "lastRebalancePrice": "922845", + "state": "1", + "currentTick": "-277127", + "currentPrice": "922845", + "twapSlow": "922845", + "twapFast": "922845", + "depositTokenBalance": "1506108198", + "pairedTokenBalance": "7547", + "usedToken0": "1931877465491840011425", + "usedToken1": "12337421425", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1d168b00b352e11b554d949def8a9af891003fad69a2ebe332cd574fa6d2066a", + "state": { + "depositToken": 0, + "blockNumber": 271722873, + "lastRebalancePrice": "922845", + "state": "1", + "currentTick": "-277109", + "currentPrice": "924508", + "twapSlow": "924046", + "twapFast": "924508", + "depositTokenBalance": "1506108197", + "pairedTokenBalance": "7546", + "usedToken0": "1824515315615121103497", + "usedToken1": "12436591259", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8edf83e0e632e0fe19986a584e7db81d1097fc3993e188abce02c175486f77c9", + "state": { + "depositToken": 0, + "blockNumber": 271738436, + "lastRebalancePrice": "924508", + "state": "1", + "currentTick": "-277094", + "currentPrice": "925895", + "twapSlow": "924970", + "twapFast": "925895", + "depositTokenBalance": "1506909569", + "pairedTokenBalance": "23479", + "usedToken0": "1734568403606777195954", + "usedToken1": "12520613861", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfe7ce22a59afc2f0a9f965542af708286ee1e5f9ddaf67870d5217b4f09004df", + "state": { + "depositToken": 0, + "blockNumber": 271753953, + "lastRebalancePrice": "925895", + "state": "1", + "currentTick": "-277094", + "currentPrice": "925895", + "twapSlow": "925895", + "twapFast": "925895", + "depositTokenBalance": "1507582063", + "pairedTokenBalance": "23478", + "usedToken0": "1734568403606777195953", + "usedToken1": "12521286355", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb6dfedf595ebbad0c1f0fcc569943db624e8bd372d3d1814d0f015bd0f359365", + "state": { + "depositToken": 0, + "blockNumber": 271769494, + "lastRebalancePrice": "925895", + "state": "1", + "currentTick": "-277094", + "currentPrice": "925895", + "twapSlow": "925895", + "twapFast": "925895", + "depositTokenBalance": "1507582062", + "pairedTokenBalance": "23477", + "usedToken0": "1734568403606777195952", + "usedToken1": "12521286354", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x302f48965ce5e7a5d07898d4889a48b902baca3e330faf616072518096274a27", + "state": { + "depositToken": 0, + "blockNumber": 271785064, + "lastRebalancePrice": "925895", + "state": "1", + "currentTick": "-277060", + "currentPrice": "929049", + "twapSlow": "927192", + "twapFast": "929049", + "depositTokenBalance": "1507582061", + "pairedTokenBalance": "23476", + "usedToken0": "1531609168213993922515", + "usedToken1": "12709532526", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2bf99aa94137955a1044c96f4b04de47d59ebc109212cb495258aad58f33a69b", + "state": { + "depositToken": 0, + "blockNumber": 271800584, + "lastRebalancePrice": "929049", + "state": "1", + "currentTick": "-277024", + "currentPrice": "932399", + "twapSlow": "932399", + "twapFast": "932399", + "depositTokenBalance": "1509103244", + "pairedTokenBalance": "23475", + "usedToken0": "1318879460505010898680", + "usedToken1": "12909053709", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-279200", + "topTick": "-276800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x398fb6a1c8463d9ce73300038fe522e399d1a28bca2c51d078ab0e4c7f0c3b99", + "state": { + "depositToken": 0, + "blockNumber": 271816207, + "lastRebalancePrice": "932399", + "state": "1", + "currentTick": "-276924", + "currentPrice": "941769", + "twapSlow": "935200", + "twapFast": "941769", + "depositTokenBalance": "1510703243", + "pairedTokenBalance": "11956", + "usedToken0": "724649410943532890984", + "usedToken1": "13467521044", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-279200", + "topTick": "-277000" + } + } + }, + { + "transactionHash": "0x005cbae07328abb45d784660e212036db8035e1cdb5f9163366bc9ad600b8b3a", + "state": { + "depositToken": 0, + "blockNumber": 271831751, + "lastRebalancePrice": "941769", + "state": "0", + "currentTick": "-276620", + "currentPrice": "970837", + "twapSlow": "951805", + "twapFast": "970837", + "depositTokenBalance": "0", + "pairedTokenBalance": "168757", + "usedToken0": "713715980401972990049", + "usedToken1": "13482476316", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-279000", + "topTick": "-276800" + } + } + }, + { + "transactionHash": "0xb721b7ccffdc48af40c040b2ba437cd1251519833d6226aef31271e55fa2ce7f", + "state": { + "depositToken": 0, + "blockNumber": 272087916, + "lastRebalancePrice": "970837", + "state": "0", + "currentTick": "-276375", + "currentPrice": "994915", + "twapSlow": "986988", + "twapFast": "994915", + "depositTokenBalance": "0", + "pairedTokenBalance": "168756", + "usedToken0": "705046579107252315498", + "usedToken1": "13491081607", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278800", + "topTick": "-276400" + } + } + }, + { + "transactionHash": "0x650434208e41659ca1b582ff244ddcfab3d57b7154162425270aa2fbed6547b6", + "state": { + "depositToken": 0, + "blockNumber": 272507724, + "lastRebalancePrice": "994915", + "state": "0", + "currentTick": "-276545", + "currentPrice": "978146", + "twapSlow": "986495", + "twapFast": "977168", + "depositTokenBalance": "0", + "pairedTokenBalance": "144180", + "usedToken0": "1574645749710593999211", + "usedToken1": "12634366759", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276400" + }, + "limitPosition": { + "bottomTick": "-276400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xdb1b58c3b605c2541767f40955b4e59c54c5bed732a158813913e464430c1847", + "state": { + "depositToken": 0, + "blockNumber": 272566267, + "lastRebalancePrice": "978146", + "state": "1", + "currentTick": "-276454", + "currentPrice": "987087", + "twapSlow": "979614", + "twapFast": "987087", + "depositTokenBalance": "0", + "pairedTokenBalance": "225240", + "usedToken0": "986788073232493139348", + "usedToken1": "13220627553", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278800", + "topTick": "-276600" + } + } + }, + { + "transactionHash": "0x2e96a18b4b2419b4649286c44d6fbb2880749a9a3c17615cd723e1868a06af02", + "state": { + "depositToken": 0, + "blockNumber": 272626368, + "lastRebalancePrice": "987087", + "state": "0", + "currentTick": "-276050", + "currentPrice": "1027780", + "twapSlow": "1000802", + "twapFast": "1027780", + "depositTokenBalance": "0", + "pairedTokenBalance": "165801", + "usedToken0": "967023103813097349332", + "usedToken1": "13245267352", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278400", + "topTick": "-276200" + } + } + }, + { + "transactionHash": "0xa8a95ee463f57e3ad4d75ab308e0f4ae4dcfb8059b25e3649ef7d2871c78efa4", + "state": { + "depositToken": 0, + "blockNumber": 272822208, + "lastRebalancePrice": "1027780", + "state": "0", + "currentTick": "-275845", + "currentPrice": "1049066", + "twapSlow": "1042061", + "twapFast": "1049066", + "depositTokenBalance": "0", + "pairedTokenBalance": "133091", + "usedToken0": "957300093816845215188", + "usedToken1": "13255743314", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278200", + "topTick": "-276000" + } + } + }, + { + "transactionHash": "0x3faac723ac1151578ecb8207d9758bd10423a8d149d180d315a3ffabd0d0007a", + "state": { + "depositToken": 0, + "blockNumber": 273016430, + "lastRebalancePrice": "1049066", + "state": "0", + "currentTick": "-275611", + "currentPrice": "1073902", + "twapSlow": "1064919", + "twapFast": "1073902", + "depositTokenBalance": "0", + "pairedTokenBalance": "331523", + "usedToken0": "946269165430356856607", + "usedToken1": "13267811406", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278000", + "topTick": "-275800" + } + } + }, + { + "transactionHash": "0x96431a8398653bb16b6d02c4d64cd110c8bca00e41ef2206867fc4c7b133e5c0", + "state": { + "depositToken": 0, + "blockNumber": 273069984, + "lastRebalancePrice": "1073902", + "state": "0", + "currentTick": "-275351", + "currentPrice": "1102188", + "twapSlow": "1086105", + "twapFast": "1102188", + "depositTokenBalance": "0", + "pairedTokenBalance": "331522", + "usedToken0": "934073946947887447414", + "usedToken1": "13281175710", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0x5c4a48c78a756d0e4047283b29d5de32f3207b5cbe1d3ae2d49e62da9f1955ce", + "state": { + "depositToken": 0, + "blockNumber": 273123918, + "lastRebalancePrice": "1102188", + "state": "0", + "currentTick": "-275486", + "currentPrice": "1087409", + "twapSlow": "1095376", + "twapFast": "1089150", + "depositTokenBalance": "0", + "pairedTokenBalance": "331521", + "usedToken0": "1434381697281697757973", + "usedToken1": "12734868814", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x129ec3a7041efa05cb795b0abbebeb417339d39a17287f3402592e3a2f4bcb9c", + "state": { + "depositToken": 0, + "blockNumber": 273139451, + "lastRebalancePrice": "1087409", + "state": "1", + "currentTick": "-275741", + "currentPrice": "1060032", + "twapSlow": "1064387", + "twapFast": "1059396", + "depositTokenBalance": "1662958281", + "pairedTokenBalance": "17930", + "usedToken0": "2738954411112451020722", + "usedToken1": "11338485505", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xeff9810c4e6a37b820d3353bf8f6da44df660fc5f88d0bdaaf14b46779bcf055", + "state": { + "depositToken": 0, + "blockNumber": 273179315, + "lastRebalancePrice": "1060032", + "state": "2", + "currentTick": "-275533", + "currentPrice": "1082311", + "twapSlow": "1076267", + "twapFast": "1082311", + "depositTokenBalance": "0", + "pairedTokenBalance": "59522", + "usedToken0": "2446731428431750888143", + "usedToken1": "11666086991", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0xb3896463dbaf59e0a713c2ae7ddaa0cc542935273b9279f65e033a81f3a64bd1", + "state": { + "depositToken": 0, + "blockNumber": 273226159, + "lastRebalancePrice": "1082311", + "state": "2", + "currentTick": "-275339", + "currentPrice": "1103511", + "twapSlow": "1097569", + "twapFast": "1103511", + "depositTokenBalance": "0", + "pairedTokenBalance": "29495", + "usedToken0": "2190286595697240895601", + "usedToken1": "11950100140", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xcdd0ce890562c5249cf881602db47509d1cb54d0bc6f5ccfbd3ebcf9aa2068f4", + "state": { + "depositToken": 0, + "blockNumber": 273443547, + "lastRebalancePrice": "1103511", + "state": "1", + "currentTick": "-275066", + "currentPrice": "1134051", + "twapSlow": "1120860", + "twapFast": "1134051", + "depositTokenBalance": "0", + "pairedTokenBalance": "208940", + "usedToken0": "691446665628751399298", + "usedToken1": "13629116511", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277400", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0xb24361aa2ea2b3edb499e3d5ab6a8190001695da2699fdb69b4b2945f213c361", + "state": { + "depositToken": 0, + "blockNumber": 273669387, + "lastRebalancePrice": "1134051", + "state": "0", + "currentTick": "-275274", + "currentPrice": "1110707", + "twapSlow": "1131332", + "twapFast": "1110707", + "depositTokenBalance": "0", + "pairedTokenBalance": "426244", + "usedToken0": "1135048929009276287008", + "usedToken1": "13166202887", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0x9ed5938419a952626923401cc8d55e11d1c0487baee272014dfd1569a37e5f7d", + "state": { + "depositToken": 0, + "blockNumber": 273698562, + "lastRebalancePrice": "1110707", + "state": "0", + "currentTick": "-275431", + "currentPrice": "1093406", + "twapSlow": "1109153", + "twapFast": "1093406", + "depositTokenBalance": "0", + "pairedTokenBalance": "17866", + "usedToken0": "1319930386184825623380", + "usedToken1": "12967521838", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x841abe887379ea3e017a3c8e82feb6511ac72f1d4795fff67dad43cad22323e8", + "state": { + "depositToken": 0, + "blockNumber": 273923834, + "lastRebalancePrice": "1093406", + "state": "1", + "currentTick": "-275667", + "currentPrice": "1067905", + "twapSlow": "1074331", + "twapFast": "1067905", + "depositTokenBalance": "5055690", + "pairedTokenBalance": "816433", + "usedToken0": "2697137099593641816609", + "usedToken1": "11492888908", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xb712c3c2c21e39e8d94ad03efe87a0609d1c210877d59b4da6067bdfaedb9abb", + "state": { + "depositToken": 0, + "blockNumber": 273941035, + "lastRebalancePrice": "1067905", + "state": "2", + "currentTick": "-275896", + "currentPrice": "1043729", + "twapSlow": "1049800", + "twapFast": "1043729", + "depositTokenBalance": "0", + "pairedTokenBalance": "40896", + "usedToken0": "2829156475464916979777", + "usedToken1": "11361887457", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0x7c926de3e9ab0a214b274be9dd52f964e234a15fbf0d9d4d47bb489793cd5bf8", + "state": { + "depositToken": 0, + "blockNumber": 274090070, + "lastRebalancePrice": "1043729", + "state": "2", + "currentTick": "-275679", + "currentPrice": "1066624", + "twapSlow": "1064068", + "twapFast": "1066624", + "depositTokenBalance": "0", + "pairedTokenBalance": "16685", + "usedToken0": "2348099768919803805588", + "usedToken1": "11867592893", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xeea497be34d4b47b564027bffee7da1eca680b6eb36600e9a99f80d8d5158920", + "state": { + "depositToken": 0, + "blockNumber": 274396246, + "lastRebalancePrice": "1066624", + "state": "2", + "currentTick": "-275895", + "currentPrice": "1043834", + "twapSlow": "1046551", + "twapFast": "1043834", + "depositTokenBalance": "450020", + "pairedTokenBalance": "51267", + "usedToken0": "2470281090066845924410", + "usedToken1": "11744680845", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xcf44d60c0cb5a19b9d02f80606bbe0a124480c3f8f93fadc8d24318c32635224", + "state": { + "depositToken": 0, + "blockNumber": 274416540, + "lastRebalancePrice": "1043834", + "state": "2", + "currentTick": "-276118", + "currentPrice": "1020815", + "twapSlow": "1039979", + "twapFast": "1020815", + "depositTokenBalance": "0", + "pairedTokenBalance": "32863", + "usedToken0": "2596190038866448614485", + "usedToken1": "11614596843", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276000" + }, + "limitPosition": { + "bottomTick": "-276000", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0xc4101c7635338d7386465423d7a1a23a775b637fcfc00e84489127470da0fdb3", + "state": { + "depositToken": 0, + "blockNumber": 274567185, + "lastRebalancePrice": "1020815", + "state": "2", + "currentTick": "-276684", + "currentPrice": "964644", + "twapSlow": "1002405", + "twapFast": "964451", + "depositTokenBalance": "0", + "pairedTokenBalance": "46859", + "usedToken0": "2923915074772136135912", + "usedToken1": "11290382146", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276600" + }, + "limitPosition": { + "bottomTick": "-276600", + "topTick": "-275800" + } + } + }, + { + "transactionHash": "0x5b4b344e349da057bb7f980c55c75484aaf563525d93e5c399f67f8792fdd8da", + "state": { + "depositToken": 0, + "blockNumber": 274938465, + "lastRebalancePrice": "964644", + "state": "2", + "currentTick": "-276481", + "currentPrice": "984425", + "twapSlow": "982557", + "twapFast": "984425", + "depositTokenBalance": "0", + "pairedTokenBalance": "32451", + "usedToken0": "2444659024072391588664", + "usedToken1": "11774102425", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xabedbc37b6d6dd9b7a68d970df6d49b59cce3b1c8de50077401f7ba999c0ae7c", + "state": { + "depositToken": 0, + "blockNumber": 274953994, + "lastRebalancePrice": "984425", + "state": "1", + "currentTick": "-276442", + "currentPrice": "988272", + "twapSlow": "987581", + "twapFast": "988272", + "depositTokenBalance": "1561691531", + "pairedTokenBalance": "13620", + "usedToken0": "2248864966954015492926", + "usedToken1": "11978095136", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcecb6db04b3be8d4bb193110e433c62061a3d6600cfd655e28657836a3250af6", + "state": { + "depositToken": 0, + "blockNumber": 274969532, + "lastRebalancePrice": "988272", + "state": "1", + "currentTick": "-276442", + "currentPrice": "988272", + "twapSlow": "988272", + "twapFast": "988272", + "depositTokenBalance": "1563280670", + "pairedTokenBalance": "13619", + "usedToken0": "2248864966954015492925", + "usedToken1": "11979684275", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe1db35ce1f0bcbd3193c6ea3bc7045733a8161e170cb749bf8959db4d7a725e6", + "state": { + "depositToken": 0, + "blockNumber": 274985108, + "lastRebalancePrice": "988272", + "state": "1", + "currentTick": "-276442", + "currentPrice": "988272", + "twapSlow": "988272", + "twapFast": "988272", + "depositTokenBalance": "1563280669", + "pairedTokenBalance": "13618", + "usedToken0": "2248864966954015492924", + "usedToken1": "11979684274", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4387170584cdcd971577277a3c5b08b78e4187b11ae78aecb0f8961b44e0e751", + "state": { + "depositToken": 0, + "blockNumber": 275000680, + "lastRebalancePrice": "988272", + "state": "1", + "currentTick": "-276442", + "currentPrice": "988272", + "twapSlow": "988272", + "twapFast": "988272", + "depositTokenBalance": "1563280668", + "pairedTokenBalance": "13617", + "usedToken0": "2248864966954015492923", + "usedToken1": "11979684273", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfabe03fd2ce0874a493ce7805d45908f8837150a546883a97fe6f1aa9411b0e2", + "state": { + "depositToken": 0, + "blockNumber": 275016229, + "lastRebalancePrice": "988272", + "state": "1", + "currentTick": "-276398", + "currentPrice": "992630", + "twapSlow": "991737", + "twapFast": "992630", + "depositTokenBalance": "1563280667", + "pairedTokenBalance": "13616", + "usedToken0": "2024853492014503595640", + "usedToken1": "12201563543", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278600", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0818ba005c1d9ab9a86368ff870014c4cadf1cf0198f9daf0f43523fb413a462", + "state": { + "depositToken": 0, + "blockNumber": 275031822, + "lastRebalancePrice": "992630", + "state": "1", + "currentTick": "-276347", + "currentPrice": "997705", + "twapSlow": "995313", + "twapFast": "997705", + "depositTokenBalance": "1565073631", + "pairedTokenBalance": "13615", + "usedToken0": "1762859143404429772435", + "usedToken1": "12464087120", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x93d4278f4f91fd97a2797f1064d74471c24d86d2d78a59d9ce362ff8af3951ce", + "state": { + "depositToken": 0, + "blockNumber": 275047385, + "lastRebalancePrice": "997705", + "state": "1", + "currentTick": "-276347", + "currentPrice": "997705", + "twapSlow": "997705", + "twapFast": "997705", + "depositTokenBalance": "2485747348", + "pairedTokenBalance": "13614", + "usedToken0": "1762859143404429772434", + "usedToken1": "12466194034", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4f945e7dfff525beaa28d9fe737e8f55178aeac2ff32e2db13d40083d3e323fc", + "state": { + "depositToken": 0, + "blockNumber": 275062947, + "lastRebalancePrice": "997705", + "state": "1", + "currentTick": "-276213", + "currentPrice": "1011163", + "twapSlow": "1003809", + "twapFast": "1011163", + "depositTokenBalance": "2485747347", + "pairedTokenBalance": "13613", + "usedToken0": "1075914233612301753072", + "usedToken1": "13156194944", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x986242da22c9aa4a170f8b74e6a6c9d699da2ed301138709b975e65912d3f8df", + "state": { + "depositToken": 0, + "blockNumber": 275078506, + "lastRebalancePrice": "1011163", + "state": "1", + "currentTick": "-276213", + "currentPrice": "1011163", + "twapSlow": "1011163", + "twapFast": "1011163", + "depositTokenBalance": "2491323119", + "pairedTokenBalance": "13612", + "usedToken0": "1075914233612301753071", + "usedToken1": "13161770716", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xed5620ff0222c1b577c24a70cd3e08b1567b808f3ca3ac655133f157f296cd34", + "state": { + "depositToken": 0, + "blockNumber": 275094143, + "lastRebalancePrice": "1011163", + "state": "1", + "currentTick": "-276213", + "currentPrice": "1011163", + "twapSlow": "1011163", + "twapFast": "1011163", + "depositTokenBalance": "2491323118", + "pairedTokenBalance": "13611", + "usedToken0": "1075914233612301753070", + "usedToken1": "13161770715", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x529d585beb7cde51b932148e7e9d6a12530faabe05339c7e62b89f80df7d6112", + "state": { + "depositToken": 0, + "blockNumber": 275109724, + "lastRebalancePrice": "1011163", + "state": "1", + "currentTick": "-276213", + "currentPrice": "1011163", + "twapSlow": "1011163", + "twapFast": "1011163", + "depositTokenBalance": "2491323117", + "pairedTokenBalance": "13610", + "usedToken0": "1075914233612301753069", + "usedToken1": "13161770714", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-276000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x302d2e9ff61ab20bef27b60b3ced6f327d2896645deebe4da16734a04979dd1d", + "state": { + "depositToken": 0, + "blockNumber": 275125270, + "lastRebalancePrice": "1011163", + "state": "1", + "currentTick": "-276183", + "currentPrice": "1014201", + "twapSlow": "1012884", + "twapFast": "1014201", + "depositTokenBalance": "2491323116", + "pairedTokenBalance": "13609", + "usedToken0": "922429589763531629562", + "usedToken1": "13317212232", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278600", + "topTick": "-276200" + } + } + }, + { + "transactionHash": "0x93a311bbe6324e63fb46632cbc49a2669d4d7f1665cfafa91bf277af56e41bdc", + "state": { + "depositToken": 0, + "blockNumber": 275812791, + "lastRebalancePrice": "1014201", + "state": "0", + "currentTick": "-275961", + "currentPrice": "1036967", + "twapSlow": "1025829", + "twapFast": "1036967", + "depositTokenBalance": "100000000", + "pairedTokenBalance": "333866", + "usedToken0": "912645088849340517675", + "usedToken1": "13429372959", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278200", + "topTick": "-276000" + } + } + }, + { + "transactionHash": "0x5e5110361fa20bd1e7f81d039836d68daa5b32cb9b5d21a9d259c1e278566455", + "state": { + "depositToken": 0, + "blockNumber": 276246543, + "lastRebalancePrice": "1036967", + "state": "0", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1028294", + "twapFast": "1014303", + "depositTokenBalance": "0", + "pairedTokenBalance": "684379", + "usedToken0": "2055044544549886142769", + "usedToken1": "12260028128", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x887e7b42fc85d03c6fae4b560c940be56c06a8540b9af1c0a283107c47e6f340", + "state": { + "depositToken": 0, + "blockNumber": 276262062, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843747", + "pairedTokenBalance": "23861", + "usedToken0": "2064341027406285933716", + "usedToken1": "12260095999", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x07214c1d2ac16f5846e4faa7e98202b00cc01a3509481aae9bad8b7df4c24f98", + "state": { + "depositToken": 0, + "blockNumber": 276277568, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843746", + "pairedTokenBalance": "23860", + "usedToken0": "2064341027406285933715", + "usedToken1": "12260095998", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x827bb8e2588426df3445fbd596b479c56e76e15d12aeaf515e585a25028113b7", + "state": { + "depositToken": 0, + "blockNumber": 276293128, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843745", + "pairedTokenBalance": "23859", + "usedToken0": "2064341027406285933714", + "usedToken1": "12260095997", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfa0e2790a9af49e08e4c6ba47b7daf97e26c12be64b66f55b96ad9b52afaa1ec", + "state": { + "depositToken": 0, + "blockNumber": 276308740, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843744", + "pairedTokenBalance": "23858", + "usedToken0": "2064341027406285933713", + "usedToken1": "12260095996", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbac4dc872fd726006356d13d26a376c8d23ea7f811a2e9c68a87c58bea3f2ff6", + "state": { + "depositToken": 0, + "blockNumber": 276324288, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843743", + "pairedTokenBalance": "23857", + "usedToken0": "2064341027406285933712", + "usedToken1": "12260095995", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8bb37a21fc0a931c4fb19c9ca266b8e8ffa21dc64420ae882f08fb8ecb55b935", + "state": { + "depositToken": 0, + "blockNumber": 276339914, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843742", + "pairedTokenBalance": "23856", + "usedToken0": "2064341027406285933711", + "usedToken1": "12260095994", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc74e9e997096144fc049fe7ca78c1253fcbcd52e8697039fa314444971ebede5", + "state": { + "depositToken": 0, + "blockNumber": 276355531, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843741", + "pairedTokenBalance": "23855", + "usedToken0": "2064341027406285933710", + "usedToken1": "12260095993", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9ed26f015d225656b2ee7556e6176ccd4ef51781b02c93465cc1ac70de0e8ccf", + "state": { + "depositToken": 0, + "blockNumber": 276371089, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843740", + "pairedTokenBalance": "23854", + "usedToken0": "2064341027406285933709", + "usedToken1": "12260095992", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x601abf241123d147531a5129b409f42aff1d2b73c76ff7bd9409fd0ca1b71c05", + "state": { + "depositToken": 0, + "blockNumber": 276386661, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276182", + "currentPrice": "1014303", + "twapSlow": "1014303", + "twapFast": "1014303", + "depositTokenBalance": "640843739", + "pairedTokenBalance": "23853", + "usedToken0": "2064341027406285933708", + "usedToken1": "12260095991", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x398bb21104e6c6c7f2b2f5ee3191587c91acd292584d2d4c53b7480a130cb575", + "state": { + "depositToken": 0, + "blockNumber": 276402203, + "lastRebalancePrice": "1014303", + "state": "1", + "currentTick": "-276174", + "currentPrice": "1015114", + "twapSlow": "1014506", + "twapFast": "1015114", + "depositTokenBalance": "640843738", + "pairedTokenBalance": "23852", + "usedToken0": "2018143799478973605855", + "usedToken1": "12306973999", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3b3accd4dd1d26a59c57026d76706c1898b91417b9c38dc37751d6096a14911f", + "state": { + "depositToken": 0, + "blockNumber": 276417797, + "lastRebalancePrice": "1015114", + "state": "1", + "currentTick": "-276173", + "currentPrice": "1015216", + "twapSlow": "1015114", + "twapFast": "1015216", + "depositTokenBalance": "641222549", + "pairedTokenBalance": "23851", + "usedToken0": "2010655236009709135231", + "usedToken1": "12314955468", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe405395cc666f1a9561dbc41b06e00abf03583382f5cf49ec217b0bd6216c650", + "state": { + "depositToken": 0, + "blockNumber": 276433353, + "lastRebalancePrice": "1015216", + "state": "1", + "currentTick": "-276173", + "currentPrice": "1015216", + "twapSlow": "1015216", + "twapFast": "1015216", + "depositTokenBalance": "641283984", + "pairedTokenBalance": "23850", + "usedToken0": "2010655236009709135230", + "usedToken1": "12315016903", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9c3eab4605eb724f8cb5d44062b279ab61038baefece8f41838868d85b078341", + "state": { + "depositToken": 0, + "blockNumber": 276448964, + "lastRebalancePrice": "1015216", + "state": "1", + "currentTick": "-276173", + "currentPrice": "1015216", + "twapSlow": "1015216", + "twapFast": "1015216", + "depositTokenBalance": "641283983", + "pairedTokenBalance": "23849", + "usedToken0": "2010655236009709135229", + "usedToken1": "12315016902", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf0d8718987cbae63d6bcdba1c5e62f9f5dac5db446a4a2a0981201f3cfc65106", + "state": { + "depositToken": 0, + "blockNumber": 276464385, + "lastRebalancePrice": "1015216", + "state": "1", + "currentTick": "-276129", + "currentPrice": "1019693", + "twapSlow": "1015318", + "twapFast": "1016943", + "depositTokenBalance": "641283982", + "pairedTokenBalance": "23848", + "usedToken0": "1770294372407516036538", + "usedToken1": "12559595563", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xee2b964cc3ea3b65e9c30e1633d4196dc2eb3fdcdae0995a09664384692e50dd", + "state": { + "depositToken": 0, + "blockNumber": 276479974, + "lastRebalancePrice": "1019693", + "state": "1", + "currentTick": "-276071", + "currentPrice": "1025624", + "twapSlow": "1025521", + "twapFast": "1025624", + "depositTokenBalance": "1638916917", + "pairedTokenBalance": "23847", + "usedToken0": "1459202991799882614094", + "usedToken1": "12879730777", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x777b78d959ddb11d29741d55547a3df4e121e2333e715f45505e564c125eed19", + "state": { + "depositToken": 0, + "blockNumber": 276495533, + "lastRebalancePrice": "1025624", + "state": "1", + "currentTick": "-276071", + "currentPrice": "1025624", + "twapSlow": "1025624", + "twapFast": "1025624", + "depositTokenBalance": "1641487899", + "pairedTokenBalance": "23846", + "usedToken0": "1459202991799882614093", + "usedToken1": "12882301759", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf5fea2edac3e62992092353054510b7918a64bdaf0dfd4d7691d6a1a2d7c63af", + "state": { + "depositToken": 0, + "blockNumber": 276511050, + "lastRebalancePrice": "1025624", + "state": "1", + "currentTick": "-276093", + "currentPrice": "1023370", + "twapSlow": "1025419", + "twapFast": "1023575", + "depositTokenBalance": "1641487898", + "pairedTokenBalance": "23845", + "usedToken0": "1576524308843572917735", + "usedToken1": "12762101110", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1b5dd1f396872aa7127300bc7aaafe72278bc0ab89a8be63168d6f5f277fca77", + "state": { + "depositToken": 0, + "blockNumber": 276526613, + "lastRebalancePrice": "1023370", + "state": "1", + "currentTick": "-276150", + "currentPrice": "1017554", + "twapSlow": "1020917", + "twapFast": "1018062", + "depositTokenBalance": "1634800459", + "pairedTokenBalance": "7941", + "usedToken0": "1889558617829278476909", + "usedToken1": "12443615153", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xefb338b3721cbbd81cdfd70db53d09f2a9664a8aca5e1207cec96a2f0152fa25", + "state": { + "depositToken": 0, + "blockNumber": 276542168, + "lastRebalancePrice": "1017554", + "state": "1", + "currentTick": "-276187", + "currentPrice": "1013796", + "twapSlow": "1015114", + "twapFast": "1013796", + "depositTokenBalance": "1620374418", + "pairedTokenBalance": "13013", + "usedToken0": "2093092557066696295441", + "usedToken1": "12239444299", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4864e09134cf694d9ae934929748a518fd2ac0a30156e1e664f645bb790fcce5", + "state": { + "depositToken": 0, + "blockNumber": 276557707, + "lastRebalancePrice": "1013796", + "state": "1", + "currentTick": "-276189", + "currentPrice": "1013593", + "twapSlow": "1013593", + "twapFast": "1013593", + "depositTokenBalance": "613774396", + "pairedTokenBalance": "24323", + "usedToken0": "2106454205411041261059", + "usedToken1": "12227545730", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8ce03feb4d5d640ccf6209cb933a8192c0135de3657f888bcbe4ef44cfb76082", + "state": { + "depositToken": 0, + "blockNumber": 276573227, + "lastRebalancePrice": "1013593", + "state": "1", + "currentTick": "-276189", + "currentPrice": "1013593", + "twapSlow": "1013593", + "twapFast": "1013593", + "depositTokenBalance": "613251464", + "pairedTokenBalance": "17886", + "usedToken0": "2106549052350090277829", + "usedToken1": "12227545729", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7428a2bc4c0f02cd5c99bfd46f93ef618d5497a6aee80dd448632baba8be9806", + "state": { + "depositToken": 0, + "blockNumber": 276588756, + "lastRebalancePrice": "1013593", + "state": "1", + "currentTick": "-276189", + "currentPrice": "1013593", + "twapSlow": "1013593", + "twapFast": "1013593", + "depositTokenBalance": "613251463", + "pairedTokenBalance": "17885", + "usedToken0": "2106549052350090277828", + "usedToken1": "12227545728", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x41a355e54502ec12d67e9f080b7422d504b006cc4de6956321783f50a4409b35", + "state": { + "depositToken": 0, + "blockNumber": 276604203, + "lastRebalancePrice": "1013593", + "state": "1", + "currentTick": "-276189", + "currentPrice": "1013593", + "twapSlow": "1013593", + "twapFast": "1013593", + "depositTokenBalance": "613251462", + "pairedTokenBalance": "17884", + "usedToken0": "2106549052350090277827", + "usedToken1": "12227545727", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb4c9621c8ea45633c2baddae292ff4414abbce48c3ec1aefd2fc37607c27027b", + "state": { + "depositToken": 0, + "blockNumber": 276619754, + "lastRebalancePrice": "1013593", + "state": "1", + "currentTick": "-276189", + "currentPrice": "1013593", + "twapSlow": "1013593", + "twapFast": "1013593", + "depositTokenBalance": "613251461", + "pairedTokenBalance": "17883", + "usedToken0": "2106549052350090277826", + "usedToken1": "12227545726", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x75746309200f73cbc0d5575e585ded9637d4aab8dfb2405cfe30be53a15e27f2", + "state": { + "depositToken": 0, + "blockNumber": 276635333, + "lastRebalancePrice": "1013593", + "state": "1", + "currentTick": "-276189", + "currentPrice": "1013593", + "twapSlow": "1013593", + "twapFast": "1013593", + "depositTokenBalance": "613251460", + "pairedTokenBalance": "17882", + "usedToken0": "2106549052350090277825", + "usedToken1": "12227545725", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2ae35321b21d6fa2700d9c8cfe996619ebbd26ccae4c80aac6219bee6db4f369", + "state": { + "depositToken": 0, + "blockNumber": 276650859, + "lastRebalancePrice": "1013593", + "state": "1", + "currentTick": "-276299", + "currentPrice": "1002505", + "twapSlow": "1011265", + "twapFast": "1002706", + "depositTokenBalance": "613251459", + "pairedTokenBalance": "17881", + "usedToken0": "2712257465737904692520", + "usedToken1": "11616959746", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4530a511c6888f9f35cac80f33f35b818412ed937d5235f3f14104fc2f181705", + "state": { + "depositToken": 0, + "blockNumber": 276666432, + "lastRebalancePrice": "1002505", + "state": "1", + "currentTick": "-276272", + "currentPrice": "1005215", + "twapSlow": "1004412", + "twapFast": "1005215", + "depositTokenBalance": "593393867", + "pairedTokenBalance": "53423", + "usedToken0": "2563283910861721159029", + "usedToken1": "11771428990", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8a27705446e2299950ecdd809352384b1a0f1808aa15fed80114190b7673304e", + "state": { + "depositToken": 0, + "blockNumber": 276681904, + "lastRebalancePrice": "1005215", + "state": "1", + "currentTick": "-276217", + "currentPrice": "1010759", + "twapSlow": "1009345", + "twapFast": "1010759", + "depositTokenBalance": "594642103", + "pairedTokenBalance": "30207", + "usedToken0": "2264391574668458357862", + "usedToken1": "12073974230", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x02aaff0795dce7b5ada7835bc25149d49638917480307b18f38f74f1733d669c", + "state": { + "depositToken": 0, + "blockNumber": 276697493, + "lastRebalancePrice": "1010759", + "state": "1", + "currentTick": "-276217", + "currentPrice": "1010759", + "twapSlow": "1010759", + "twapFast": "1010759", + "depositTokenBalance": "597076828", + "pairedTokenBalance": "9697", + "usedToken0": "2264391574668458357861", + "usedToken1": "12076408955", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x59a655b7975628da0f640afe63535732b565e5122c02e27648e330750aa5a85b", + "state": { + "depositToken": 0, + "blockNumber": 276713029, + "lastRebalancePrice": "1010759", + "state": "1", + "currentTick": "-276170", + "currentPrice": "1015521", + "twapSlow": "1012580", + "twapFast": "1015521", + "depositTokenBalance": "597076827", + "pairedTokenBalance": "9696", + "usedToken0": "2005645098585946537410", + "usedToken1": "12338564653", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xac329abfd45c8341e1bedec82fff4435966015f4b010ee918f6427c03a605eb2", + "state": { + "depositToken": 0, + "blockNumber": 276728550, + "lastRebalancePrice": "1015521", + "state": "1", + "currentTick": "-276121", + "currentPrice": "1020509", + "twapSlow": "1020509", + "twapFast": "1020509", + "depositTokenBalance": "599195257", + "pairedTokenBalance": "27860", + "usedToken0": "1737757870879339200450", + "usedToken1": "12613407793", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x70de9110fe03e2245813540fa7053ad1785ac52b74615f6898a41381c2853887", + "state": { + "depositToken": 0, + "blockNumber": 276744100, + "lastRebalancePrice": "1020509", + "state": "1", + "currentTick": "-276117", + "currentPrice": "1020917", + "twapSlow": "1020509", + "twapFast": "1020917", + "depositTokenBalance": "1601604908", + "pairedTokenBalance": "12120", + "usedToken0": "1713005525873621198336", + "usedToken1": "12640878436", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb172b0ebf6f0c51f003afe5af5b57361f5cee5ae616d3a1aba93b6a13b44ae64", + "state": { + "depositToken": 0, + "blockNumber": 276759559, + "lastRebalancePrice": "1020917", + "state": "1", + "currentTick": "-276221", + "currentPrice": "1010355", + "twapSlow": "1016943", + "twapFast": "1010355", + "depositTokenBalance": "1601809083", + "pairedTokenBalance": "27634", + "usedToken0": "2285679786658611954335", + "usedToken1": "12059421678", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x975f75eb1739844a487e77ae53eedf3734b18cc36b8acd4782cff30d9e0e638e", + "state": { + "depositToken": 0, + "blockNumber": 276775155, + "lastRebalancePrice": "1010355", + "state": "1", + "currentTick": "-276221", + "currentPrice": "1010355", + "twapSlow": "1010355", + "twapFast": "1010355", + "depositTokenBalance": "578405348", + "pairedTokenBalance": "38685", + "usedToken0": "2290307457452834101858", + "usedToken1": "12059421677", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278400", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xae3df7039e32d61f49f203cb5034de9fc504d5c56e9445bb5050fd18fa363118", + "state": { + "depositToken": 0, + "blockNumber": 276790702, + "lastRebalancePrice": "1010355", + "state": "1", + "currentTick": "-276044", + "currentPrice": "1028396", + "twapSlow": "1017655", + "twapFast": "1027574", + "depositTokenBalance": "578405347", + "pairedTokenBalance": "38684", + "usedToken0": "1318962582890153699616", + "usedToken1": "13049604254", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6579fecddda5dfe198f6577f73ab95c682c7bc447d5c57a39d580006070f20ca", + "state": { + "depositToken": 0, + "blockNumber": 276806229, + "lastRebalancePrice": "1028396", + "state": "1", + "currentTick": "-275989", + "currentPrice": "1034068", + "twapSlow": "1032105", + "twapFast": "1034068", + "depositTokenBalance": "1588637695", + "pairedTokenBalance": "2918", + "usedToken0": "1022030361034193997182", + "usedToken1": "13363825064", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x23de1dcdfaf24b867a9ae66713d4e3ddd7ee32c032a1f6fa040b131a39cd060b", + "state": { + "depositToken": 0, + "blockNumber": 276821844, + "lastRebalancePrice": "1034068", + "state": "1", + "currentTick": "-275957", + "currentPrice": "1037382", + "twapSlow": "1036760", + "twapFast": "1037382", + "depositTokenBalance": "1482331596", + "pairedTokenBalance": "11324", + "usedToken0": "788854618120614401048", + "usedToken1": "12623452615", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278200", + "topTick": "-276000" + } + } + }, + { + "transactionHash": "0xac186abc0d6e787e48de52c3e58be3ae2bd1803e9c1405138eea3579216b8f0d", + "state": { + "depositToken": 0, + "blockNumber": 277144253, + "lastRebalancePrice": "1037382", + "state": "0", + "currentTick": "-276110", + "currentPrice": "1021632", + "twapSlow": "1030971", + "twapFast": "1021632", + "depositTokenBalance": "0", + "pairedTokenBalance": "889172", + "usedToken0": "1434262066657184545528", + "usedToken1": "11960048654", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7f8776c45f955cf9822cda4007ac32168e77558cb558e405a7103f1ce592bc45", + "state": { + "depositToken": 0, + "blockNumber": 277159815, + "lastRebalancePrice": "1021632", + "state": "1", + "currentTick": "-276110", + "currentPrice": "1021632", + "twapSlow": "1021632", + "twapFast": "1021632", + "depositTokenBalance": "2434439254", + "pairedTokenBalance": "16058", + "usedToken0": "1442785928095980515850", + "usedToken1": "11963456098", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1f79a8f129bc838ca565b7ded60c537127a29b39995b39cfc39589e5ff87336c", + "state": { + "depositToken": 0, + "blockNumber": 277175356, + "lastRebalancePrice": "1021632", + "state": "1", + "currentTick": "-276110", + "currentPrice": "1021632", + "twapSlow": "1021632", + "twapFast": "1021632", + "depositTokenBalance": "2434439253", + "pairedTokenBalance": "16057", + "usedToken0": "1442785928095980515849", + "usedToken1": "11963456097", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa76697087993d5ad0cab27d4c720da5b131fcef23e3ea2d322f405e2ecf20863", + "state": { + "depositToken": 0, + "blockNumber": 277190928, + "lastRebalancePrice": "1021632", + "state": "1", + "currentTick": "-276110", + "currentPrice": "1021632", + "twapSlow": "1021632", + "twapFast": "1021632", + "depositTokenBalance": "2434439252", + "pairedTokenBalance": "16056", + "usedToken0": "1442785928095980515848", + "usedToken1": "11963456096", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x704196267a1716c3742dd33968a905fa11a48e1307057a4e618cc56b7c9dd24e", + "state": { + "depositToken": 0, + "blockNumber": 277206479, + "lastRebalancePrice": "1021632", + "state": "1", + "currentTick": "-276110", + "currentPrice": "1021632", + "twapSlow": "1021632", + "twapFast": "1021632", + "depositTokenBalance": "2434439251", + "pairedTokenBalance": "16055", + "usedToken0": "1442785928095980515847", + "usedToken1": "11963456095", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5d74d41fcf529aef15a61d64c792b58fd11b18274287948d24e7d2fdc7f42d8d", + "state": { + "depositToken": 0, + "blockNumber": 277222032, + "lastRebalancePrice": "1021632", + "state": "1", + "currentTick": "-276110", + "currentPrice": "1021632", + "twapSlow": "1021632", + "twapFast": "1021632", + "depositTokenBalance": "2434439250", + "pairedTokenBalance": "16054", + "usedToken0": "1442785928095980515846", + "usedToken1": "11963456094", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x218020a793288414c80571f619aa4a22895a5780ebe5928949cb1c8cf28649e7", + "state": { + "depositToken": 0, + "blockNumber": 277237607, + "lastRebalancePrice": "1021632", + "state": "1", + "currentTick": "-276112", + "currentPrice": "1021427", + "twapSlow": "1021427", + "twapFast": "1021427", + "depositTokenBalance": "2434439249", + "pairedTokenBalance": "16053", + "usedToken0": "1452894467131029646312", + "usedToken1": "11953129426", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x01c727ff82fd82945699729bdf0a3a8724a6758ccd8018725d4bf77baddebee9", + "state": { + "depositToken": 0, + "blockNumber": 277253209, + "lastRebalancePrice": "1021427", + "state": "1", + "currentTick": "-276112", + "currentPrice": "1021427", + "twapSlow": "1021427", + "twapFast": "1021427", + "depositTokenBalance": "2433904085", + "pairedTokenBalance": "12649", + "usedToken0": "1452976152294949235245", + "usedToken1": "11953129425", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1201ccfa2dbab02ec2eb0c5da45e00e31e7651509ad64e67f830a89fdbc6802a", + "state": { + "depositToken": 0, + "blockNumber": 277268785, + "lastRebalancePrice": "1021427", + "state": "1", + "currentTick": "-276071", + "currentPrice": "1025624", + "twapSlow": "1021632", + "twapFast": "1023165", + "depositTokenBalance": "2433904084", + "pairedTokenBalance": "12648", + "usedToken0": "1260969742922608965600", + "usedToken1": "12149659441", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278200", + "topTick": "-275800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x727b27e523084b285c43cacedb549bd633b74b8da3fa34a22c4430b843a48050", + "state": { + "depositToken": 0, + "blockNumber": 277284356, + "lastRebalancePrice": "1025624", + "state": "1", + "currentTick": "-275928", + "currentPrice": "1040395", + "twapSlow": "1029734", + "twapFast": "1040395", + "depositTokenBalance": "2435492205", + "pairedTokenBalance": "12647", + "usedToken0": "589857845620757319151", + "usedToken1": "12844537038", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278200", + "topTick": "-276000" + } + } + }, + { + "transactionHash": "0x9dccda477caef7d91549b1d18204543464f36a5ebe0b68ecadf4acd58bca3297", + "state": { + "depositToken": 0, + "blockNumber": 277299897, + "lastRebalancePrice": "1040395", + "state": "0", + "currentTick": "-275529", + "currentPrice": "1082744", + "twapSlow": "1067798", + "twapFast": "1082744", + "depositTokenBalance": "0", + "pairedTokenBalance": "392930", + "usedToken0": "578232856331867312753", + "usedToken1": "12862478243", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277800", + "topTick": "-275600" + } + } + }, + { + "transactionHash": "0x89b15e0c4bcb27144137895324d0f75beb9a29f3fd6b2466593a6b6087ad0967", + "state": { + "depositToken": 0, + "blockNumber": 277410214, + "lastRebalancePrice": "1082744", + "state": "0", + "currentTick": "-275689", + "currentPrice": "1065558", + "twapSlow": "1065558", + "twapFast": "1065558", + "depositTokenBalance": "1500000000", + "pairedTokenBalance": "392929", + "usedToken0": "1093997231333634097527", + "usedToken1": "13819953256", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278000", + "topTick": "-275800" + } + } + }, + { + "transactionHash": "0xa74bda9a6145539a0a84695f813d7cafa06e6e4acc3d7e6ee83ed167feffc782", + "state": { + "depositToken": 0, + "blockNumber": 277485631, + "lastRebalancePrice": "1065558", + "state": "0", + "currentTick": "-275249", + "currentPrice": "1113487", + "twapSlow": "1077667", + "twapFast": "1113487", + "depositTokenBalance": "29017238", + "pairedTokenBalance": "521560", + "usedToken0": "1068863088742641281472", + "usedToken1": "13874433862", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0xe3bb172f67e79822a4e28f95d8b7eff487324800c16eec9866aa34a11aaaa9bd", + "state": { + "depositToken": 0, + "blockNumber": 277501151, + "lastRebalancePrice": "1113487", + "state": "0", + "currentTick": "-275464", + "currentPrice": "1089804", + "twapSlow": "1099766", + "twapFast": "1089804", + "depositTokenBalance": "0", + "pairedTokenBalance": "521559", + "usedToken0": "1460976709470656762528", + "usedToken1": "13445832852", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x37fd9d8370d9f0b73e6de02dda3b865ff240f7236140c794e734d1abe3d19353", + "state": { + "depositToken": 0, + "blockNumber": 277516723, + "lastRebalancePrice": "1089804", + "state": "1", + "currentTick": "-275298", + "currentPrice": "1108045", + "twapSlow": "1108045", + "twapFast": "1108045", + "depositTokenBalance": "1076591332", + "pairedTokenBalance": "9757", + "usedToken0": "538020436720121167224", + "usedToken1": "14463626344", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0x77c7595db2bd38dbf962a5d4de8ff459e3dca53f1a373be0b773aa12aa8f730b", + "state": { + "depositToken": 0, + "blockNumber": 277588613, + "lastRebalancePrice": "1108045", + "state": "0", + "currentTick": "-275543", + "currentPrice": "1081229", + "twapSlow": "1086648", + "twapFast": "1081770", + "depositTokenBalance": "0", + "pairedTokenBalance": "97969", + "usedToken0": "1445035964022774004231", + "usedToken1": "13484050278", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xba07f583fe44602f4ad05736789e7f56c9e4dc6dbce826d2f3f478f49ea52148", + "state": { + "depositToken": 0, + "blockNumber": 277671300, + "lastRebalancePrice": "1081229", + "state": "1", + "currentTick": "-275452", + "currentPrice": "1091113", + "twapSlow": "1080472", + "twapFast": "1091113", + "depositTokenBalance": "0", + "pairedTokenBalance": "148005", + "usedToken0": "871814046021859607170", + "usedToken1": "14114673955", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277800", + "topTick": "-275600" + } + } + }, + { + "transactionHash": "0x48254f065ee5c176d4b9be1ed2d6270ef5233e0ea955872607c38236aad9ba30", + "state": { + "depositToken": 0, + "blockNumber": 277819670, + "lastRebalancePrice": "1091113", + "state": "0", + "currentTick": "-275658", + "currentPrice": "1068867", + "twapSlow": "1088279", + "twapFast": "1068867", + "depositTokenBalance": "0", + "pairedTokenBalance": "707816", + "usedToken0": "1243976335469076682531", + "usedToken1": "13723236017", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278000", + "topTick": "-275800" + } + } + }, + { + "transactionHash": "0x6686e7056d35885765c75221d8071026b39d52e5326443376b801a06d6553e30", + "state": { + "depositToken": 0, + "blockNumber": 277862543, + "lastRebalancePrice": "1068867", + "state": "0", + "currentTick": "-275829", + "currentPrice": "1050745", + "twapSlow": "1067265", + "twapFast": "1050745", + "depositTokenBalance": "0", + "pairedTokenBalance": "443981", + "usedToken0": "1435198138407807632625", + "usedToken1": "13525209267", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-278000", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x54e8a7140ee8a02f584fe21c167901a841386e77bf5e8d0f6bb7de180c124572", + "state": { + "depositToken": 0, + "blockNumber": 277985157, + "lastRebalancePrice": "1050745", + "state": "1", + "currentTick": "-275746", + "currentPrice": "1059502", + "twapSlow": "1055273", + "twapFast": "1059502", + "depositTokenBalance": "0", + "pairedTokenBalance": "615785", + "usedToken0": "918057822779855075069", + "usedToken1": "14072476162", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-278000", + "topTick": "-275800" + } + } + }, + { + "transactionHash": "0x120876e767e07b69cca77e46550f9ed73c8d284fc07bdbdc7143e6942905c26c", + "state": { + "depositToken": 0, + "blockNumber": 278118562, + "lastRebalancePrice": "1059502", + "state": "0", + "currentTick": "-275503", + "currentPrice": "1085562", + "twapSlow": "1068973", + "twapFast": "1085562", + "depositTokenBalance": "0", + "pairedTokenBalance": "638428", + "usedToken0": "909972945655312679819", + "usedToken1": "14092050637", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277800", + "topTick": "-275600" + } + } + }, + { + "transactionHash": "0xc7d4ff0da41fd819add1f84ed079f820ebc1ea67a47fc6178ae76759024b97a6", + "state": { + "depositToken": 0, + "blockNumber": 278467188, + "lastRebalancePrice": "1085562", + "state": "0", + "currentTick": "-275689", + "currentPrice": "1065558", + "twapSlow": "1069936", + "twapFast": "1065558", + "depositTokenBalance": "0", + "pairedTokenBalance": "573413", + "usedToken0": "1323813038433602120754", + "usedToken1": "12115054824", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277800", + "topTick": "-275400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xde76957f555c535338c2e41c44a56f3e739d9484f78b15b8c010c9ccfc882723", + "state": { + "depositToken": 0, + "blockNumber": 278482721, + "lastRebalancePrice": "1065558", + "state": "1", + "currentTick": "-275763", + "currentPrice": "1057703", + "twapSlow": "1063217", + "twapFast": "1062260", + "depositTokenBalance": "2225166954", + "pairedTokenBalance": "16081", + "usedToken0": "1670993690210531414994", + "usedToken1": "11750760943", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277800", + "topTick": "-275400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x48a6f78aed02fcb98b88e302861de3c3a55e2aa1bbb8a0bb5580ca02e7ba05b0", + "state": { + "depositToken": 0, + "blockNumber": 278498230, + "lastRebalancePrice": "1057703", + "state": "1", + "currentTick": "-275995", + "currentPrice": "1033448", + "twapSlow": "1038835", + "twapFast": "1033448", + "depositTokenBalance": "2209360783", + "pairedTokenBalance": "21197", + "usedToken0": "2757931987467800048619", + "usedToken1": "10617192804", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0x3e142f1e33bd7821cb80d56d752819dbd7b453ed7b59c1f08e570ba08534cfc4", + "state": { + "depositToken": 0, + "blockNumber": 278729767, + "lastRebalancePrice": "1033448", + "state": "2", + "currentTick": "-275764", + "currentPrice": "1057597", + "twapSlow": "1050745", + "twapFast": "1055273", + "depositTokenBalance": "39000000", + "pairedTokenBalance": "9750", + "usedToken0": "2502787353314190659590", + "usedToken1": "10933808149", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xfc505a66a6f492b6b5eedaa431c874f82d8bfdbc546548c0b7138cb92d91d048", + "state": { + "depositToken": 0, + "blockNumber": 278856301, + "lastRebalancePrice": "1057597", + "state": "2", + "currentTick": "-275553", + "currentPrice": "1080148", + "twapSlow": "1078637", + "twapFast": "1080148", + "depositTokenBalance": "0", + "pairedTokenBalance": "24910", + "usedToken0": "2224230509530001114169", + "usedToken1": "11235077693", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x627a93df523db5a0331f7a40810e72b020d09bebdc6d464cb06e1eae33236b3b", + "state": { + "depositToken": 0, + "blockNumber": 278903079, + "lastRebalancePrice": "1080148", + "state": "2", + "currentTick": "-275337", + "currentPrice": "1103732", + "twapSlow": "1093515", + "twapFast": "1103732", + "depositTokenBalance": "0", + "pairedTokenBalance": "23502", + "usedToken0": "1916029657415827094926", + "usedToken1": "11575669467", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xb933b4d36ec645babd4319c4d35eb7468c158f1811303ea7afa86fef2edb6ad9", + "state": { + "depositToken": 0, + "blockNumber": 279112994, + "lastRebalancePrice": "1103732", + "state": "1", + "currentTick": "-275292", + "currentPrice": "1108710", + "twapSlow": "1108821", + "twapFast": "1108710", + "depositTokenBalance": "170801142", + "pairedTokenBalance": "420745", + "usedToken0": "1674083644946384591877", + "usedToken1": "12023934063", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277400", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xad8f70c4c783c67c22804233e76ef3a4ee9955c6dfadcc3c7da252a1799d496d", + "state": { + "depositToken": 0, + "blockNumber": 280011626, + "lastRebalancePrice": "1108710", + "state": "1", + "currentTick": "-275074", + "currentPrice": "1133144", + "twapSlow": "1120748", + "twapFast": "1132917", + "depositTokenBalance": "0", + "pairedTokenBalance": "145844", + "usedToken0": "499436976013169963257", + "usedToken1": "13339242821", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277400", + "topTick": "-275200" + } + } + }, + { + "transactionHash": "0xb33e413c7d4792c54b6ce76587cffaf27ef1f0f22536259832fbbc0cd4fbe18f", + "state": { + "depositToken": 0, + "blockNumber": 280695084, + "lastRebalancePrice": "1133144", + "state": "0", + "currentTick": "-274850", + "currentPrice": "1158811", + "twapSlow": "1135867", + "twapFast": "1158811", + "depositTokenBalance": "0", + "pairedTokenBalance": "777315", + "usedToken0": "505013572006863303069", + "usedToken1": "13275593860", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277200", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0x1768c559cd9ec933c627c2232195bcfe20cecdd006e3dabb3f4a5fbfa7c039c5", + "state": { + "depositToken": 0, + "blockNumber": 280852077, + "lastRebalancePrice": "1158811", + "state": "0", + "currentTick": "-274636", + "currentPrice": "1183876", + "twapSlow": "1173269", + "twapFast": "1183876", + "depositTokenBalance": "0", + "pairedTokenBalance": "630959", + "usedToken0": "498789065826582173205", + "usedToken1": "13280936865", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274800", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277000", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x1e84a8d61bed6c6f254c352eedcd2d9b869d7267043d9971f0fa635414046a45", + "state": { + "depositToken": 0, + "blockNumber": 280937938, + "lastRebalancePrice": "1183876", + "state": "0", + "currentTick": "-275015", + "currentPrice": "1139849", + "twapSlow": "1191477", + "twapFast": "1144303", + "depositTokenBalance": "0", + "pairedTokenBalance": "630958", + "usedToken0": "1682986882746139978861", + "usedToken1": "11916468772", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x9cbfdfab3867b2b45653d62302c4806be8f414feb4efff9a5fee09cf0d58094a", + "state": { + "depositToken": 0, + "blockNumber": 280953326, + "lastRebalancePrice": "1139849", + "state": "1", + "currentTick": "-274830", + "currentPrice": "1161131", + "twapSlow": "1150153", + "twapFast": "1161131", + "depositTokenBalance": "0", + "pairedTokenBalance": "769338", + "usedToken0": "761823498126137078828", + "usedToken1": "12990691004", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-275000", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-277200", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0xe04f9aa2247a1e95f88ec908aa15e4a2fc7d33a1fe7edc65aceeec86b86d6f3e", + "state": { + "depositToken": 0, + "blockNumber": 281178888, + "lastRebalancePrice": "1161131", + "state": "0", + "currentTick": "-274565", + "currentPrice": "1192311", + "twapSlow": "1171980", + "twapFast": "1192311", + "depositTokenBalance": "0", + "pairedTokenBalance": "865751", + "usedToken0": "740319202036472765504", + "usedToken1": "12812612504", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274600", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276800", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0xde9cd4403079e76bdb7587bd38678a5791394a685ef9d5d6eddffb3c82bfbcfa", + "state": { + "depositToken": 0, + "blockNumber": 281215902, + "lastRebalancePrice": "1192311", + "state": "0", + "currentTick": "-274208", + "currentPrice": "1235643", + "twapSlow": "1216639", + "twapFast": "1235643", + "depositTokenBalance": "0", + "pairedTokenBalance": "865750", + "usedToken0": "727248206618103279288", + "usedToken1": "12828516604", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276600", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x45a3d34d1d67d635f2b5e0dc4f6223b737835bb92aff451164c474acd0a7dae8", + "state": { + "depositToken": 0, + "blockNumber": 281229921, + "lastRebalancePrice": "1235643", + "state": "0", + "currentTick": "-273498", + "currentPrice": "1326559", + "twapSlow": "1235890", + "twapFast": "1239851", + "depositTokenBalance": "0", + "pairedTokenBalance": "865749", + "usedToken0": "701860118543407173181", + "usedToken1": "12861151083", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273400" + }, + "limitPosition": { + "bottomTick": "-273400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x8c35a94c539fa088ac728efdebb5c6def1f745f6613cb10b93eea6a45d22f8b8", + "state": { + "depositToken": 0, + "blockNumber": 281245517, + "lastRebalancePrice": "1326559", + "state": "3", + "currentTick": "-273874", + "currentPrice": "1277609", + "twapSlow": "1282472", + "twapFast": "1277609", + "depositTokenBalance": "0", + "pairedTokenBalance": "30705", + "usedToken0": "886289018931079873513", + "usedToken1": "12621431681", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "-273800" + }, + "limitPosition": { + "bottomTick": "-273800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x471e4481156fcb4125541c92474c2c20ba2ce24bde8f8a40ada5e63556fedae8", + "state": { + "depositToken": 0, + "blockNumber": 281247177, + "lastRebalancePrice": "1277609", + "state": "1", + "currentTick": "-274216", + "currentPrice": "1234655", + "twapSlow": "1284783", + "twapFast": "1281575", + "depositTokenBalance": "0", + "pairedTokenBalance": "541647", + "usedToken0": "2581281471198838246892", + "usedToken1": "10506731153", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x90dfc080a3fb446e5afba65ba100d65b9feaf651f0e9423af612fbb43376b755", + "state": { + "depositToken": 0, + "blockNumber": 281262779, + "lastRebalancePrice": "1234655", + "state": "3", + "currentTick": "-274003", + "currentPrice": "1261234", + "twapSlow": "1243203", + "twapFast": "1261234", + "depositTokenBalance": "0", + "pairedTokenBalance": "119701", + "usedToken0": "2564437358145620490749", + "usedToken1": "10548550745", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274000" + }, + "limitPosition": { + "bottomTick": "-274000", + "topTick": "-273200" + } + } + }, + { + "transactionHash": "0x53106c59aafb2952104a2eadfd472c88aff3ceaef3ef8ef472e55c3f71be2d21", + "state": { + "depositToken": 0, + "blockNumber": 281278356, + "lastRebalancePrice": "1261234", + "state": "2", + "currentTick": "-274236", + "currentPrice": "1232188", + "twapSlow": "1242955", + "twapFast": "1222860", + "depositTokenBalance": "0", + "pairedTokenBalance": "47192", + "usedToken0": "2663285112631411739511", + "usedToken1": "10428394812", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0xd478ab0a85e86577ed6b1350b0c936ce58f1541cd6f3a92f944385e5a0b79d4f", + "state": { + "depositToken": 0, + "blockNumber": 281293982, + "lastRebalancePrice": "1232188", + "state": "2", + "currentTick": "-273868", + "currentPrice": "1278375", + "twapSlow": "1268570", + "twapFast": "1290577", + "depositTokenBalance": "0", + "pairedTokenBalance": "30877", + "usedToken0": "1534233424856960984298", + "usedToken1": "11849423635", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276000", + "topTick": "-273600" + }, + "limitPosition": { + "bottomTick": "-273600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x05f8668b8ab6a2d7d36083b3f988f05f3fcc70a3e85cdd02ec02328dcb962c8f", + "state": { + "depositToken": 0, + "blockNumber": 281305591, + "lastRebalancePrice": "1278375", + "state": "1", + "currentTick": "-274313", + "currentPrice": "1222737", + "twapSlow": "1331609", + "twapFast": "1348897", + "depositTokenBalance": "0", + "pairedTokenBalance": "271835", + "usedToken0": "3622229354441109501860", + "usedToken1": "9298792041", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x3559e8aab8e30be03711ccb783cffe0e543b589015baeabf20416148a858d78f", + "state": { + "depositToken": 0, + "blockNumber": 281321215, + "lastRebalancePrice": "1222737", + "state": "3", + "currentTick": "-274546", + "currentPrice": "1194578", + "twapSlow": "1236014", + "twapFast": "1194578", + "depositTokenBalance": "0", + "pairedTokenBalance": "562870", + "usedToken0": "3738108837711207286531", + "usedToken1": "9203725751", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274400" + }, + "limitPosition": { + "bottomTick": "-274400", + "topTick": "-273600" + } + } + }, + { + "transactionHash": "0x6478ce243eaa01cd83238cea494738c90525cc10f9646cf650f04a46681a446c", + "state": { + "depositToken": 0, + "blockNumber": 281336857, + "lastRebalancePrice": "1194578", + "state": "2", + "currentTick": "-274338", + "currentPrice": "1219685", + "twapSlow": "1212146", + "twapFast": "1219685", + "depositTokenBalance": "0", + "pairedTokenBalance": "14534", + "usedToken0": "3390389415857003366292", + "usedToken1": "9627647463", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274200" + }, + "limitPosition": { + "bottomTick": "-274200", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0xe4f83f3710f27ee4bd4625e21a6c698a624265ba444a12203dc369c30a3dcad3", + "state": { + "depositToken": 0, + "blockNumber": 281352475, + "lastRebalancePrice": "1219685", + "state": "2", + "currentTick": "-273905", + "currentPrice": "1273654", + "twapSlow": "1240347", + "twapFast": "1266415", + "depositTokenBalance": "0", + "pairedTokenBalance": "6082", + "usedToken0": "2088228505125320858008", + "usedToken1": "11263879844", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-273800" + }, + "limitPosition": { + "bottomTick": "-273800", + "topTick": "-273000" + } + } + }, + { + "transactionHash": "0x181122731bef829ab84c37bd5f72a4622481381db6b2534721101e4c7e3a5bc7", + "state": { + "depositToken": 0, + "blockNumber": 281368123, + "lastRebalancePrice": "1273654", + "state": "2", + "currentTick": "-274186", + "currentPrice": "1238364", + "twapSlow": "1257330", + "twapFast": "1238364", + "depositTokenBalance": "0", + "pairedTokenBalance": "21571", + "usedToken0": "2226198935876903582893", + "usedToken1": "11134909308", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274000" + }, + "limitPosition": { + "bottomTick": "-274000", + "topTick": "-273400" + } + } + }, + { + "transactionHash": "0x9fae48b6a6e69baf5d1d5c71d6d356a9bd093eba46f4706facc79b7af9835215", + "state": { + "depositToken": 0, + "blockNumber": 281411003, + "lastRebalancePrice": "1238364", + "state": "2", + "currentTick": "-274405", + "currentPrice": "1211540", + "twapSlow": "1221638", + "twapFast": "1211540", + "depositTokenBalance": "0", + "pairedTokenBalance": "15874", + "usedToken0": "2327283171150331308068", + "usedToken1": "11015884352", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274400" + }, + "limitPosition": { + "bottomTick": "-274400", + "topTick": "-273600" + } + } + }, + { + "transactionHash": "0xc4274e1f03eed3012e0de5a780673eabbda2dac1ceeaeb14db98b892add16e3d", + "state": { + "depositToken": 0, + "blockNumber": 281426652, + "lastRebalancePrice": "1211540", + "state": "2", + "currentTick": "-275158", + "currentPrice": "1123666", + "twapSlow": "1154070", + "twapFast": "1123666", + "depositTokenBalance": "0", + "pairedTokenBalance": "30445", + "usedToken0": "2677496116941688381781", + "usedToken1": "10608622583", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x0573271285022f783c8f48ae55f06bcd97be567c0b718ed2bc931af8e1e4eacf", + "state": { + "depositToken": 0, + "blockNumber": 281446578, + "lastRebalancePrice": "1123666", + "state": "2", + "currentTick": "-275429", + "currentPrice": "1093625", + "twapSlow": "1104615", + "twapFast": "1093625", + "depositTokenBalance": "0", + "pairedTokenBalance": "24049", + "usedToken0": "2811472756430237909647", + "usedToken1": "10468863840", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274600" + } + } + }, + { + "transactionHash": "0x7655eae90e7fde46f0e462cfa9aa030928335b62b67988de4cb26dd96ce5cbef", + "state": { + "depositToken": 0, + "blockNumber": 281462222, + "lastRebalancePrice": "1093625", + "state": "2", + "currentTick": "-275025", + "currentPrice": "1138710", + "twapSlow": "1132351", + "twapFast": "1138710", + "depositTokenBalance": "0", + "pairedTokenBalance": "28947", + "usedToken0": "1472219873883882610721", + "usedToken1": "11969002491", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277200", + "topTick": "-274800" + }, + "limitPosition": { + "bottomTick": "-274800", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x3444e11638d99d9f2644a9af1eadc3999a4ccaef2cddce1010e9b710d397c5cf", + "state": { + "depositToken": 0, + "blockNumber": 282051847, + "lastRebalancePrice": "1138710", + "state": "1", + "currentTick": "-274105", + "currentPrice": "1248435", + "twapSlow": "1144875", + "twapFast": "1146823", + "depositTokenBalance": "0", + "pairedTokenBalance": "89262", + "usedToken0": "320757835890218111835", + "usedToken1": "13307769426", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274000" + }, + "limitPosition": { + "bottomTick": "-274000", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x75caeb998f1d72289b06cffaceb723a881d5cf469bf5852cd8c151db7af9d7b9", + "state": { + "depositToken": 0, + "blockNumber": 282067463, + "lastRebalancePrice": "1248435", + "state": "3", + "currentTick": "-274381", + "currentPrice": "1214451", + "twapSlow": "1214451", + "twapFast": "1214451", + "depositTokenBalance": "0", + "pairedTokenBalance": "293689", + "usedToken0": "475399418079502030323", + "usedToken1": "13143717016", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-274400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-276800", + "topTick": "-274400" + } + } + }, + { + "transactionHash": "0x4367d76d9ed3832330e7588ddc6b08c6aab2e3e9c10d5df190342060bcdeb2ce", + "state": { + "depositToken": 0, + "blockNumber": 282114380, + "lastRebalancePrice": "1214451", + "state": "0", + "currentTick": "-274746", + "currentPrice": "1170925", + "twapSlow": "1206825", + "twapFast": "1170925", + "depositTokenBalance": "0", + "pairedTokenBalance": "420698", + "usedToken0": "2146112441346126716623", + "usedToken1": "11154628178", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-276800", + "topTick": "-274400" + }, + "limitPosition": { + "bottomTick": "-274400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x57caa810bdfee117922dda4f71cf67f5102cea1b5ad5e90e11e460f968e5105d", + "state": { + "depositToken": 0, + "blockNumber": 282900214, + "lastRebalancePrice": "1170925", + "state": "1", + "currentTick": "-274791", + "currentPrice": "1165668", + "twapSlow": "1167301", + "twapFast": "1165668", + "depositTokenBalance": "90682775", + "pairedTokenBalance": "369862", + "usedToken0": "2380587538719265706984", + "usedToken1": "10987654263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-274600" + }, + "limitPosition": { + "bottomTick": "-274600", + "topTick": "-274000" + } + } + }, + { + "transactionHash": "0xa585c630fcd6d963417700eaedd6b2960c0ad666871d7ff21513a432e80177a9", + "state": { + "depositToken": 0, + "blockNumber": 282915902, + "lastRebalancePrice": "1165668", + "state": "2", + "currentTick": "-275069", + "currentPrice": "1133711", + "twapSlow": "1155918", + "twapFast": "1133711", + "depositTokenBalance": "0", + "pairedTokenBalance": "22243", + "usedToken0": "2513956645335077230309", + "usedToken1": "10835846399", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275000" + }, + "limitPosition": { + "bottomTick": "-275000", + "topTick": "-274200" + } + } + }, + { + "transactionHash": "0x6282a6f381407d53dc3fadb426fa02522523bf453beca06d4f922fcc0286ad2f", + "state": { + "depositToken": 0, + "blockNumber": 283104537, + "lastRebalancePrice": "1133711", + "state": "2", + "currentTick": "-275577", + "currentPrice": "1077559", + "twapSlow": "1095595", + "twapFast": "1077559", + "depositTokenBalance": "0", + "pairedTokenBalance": "17735", + "usedToken0": "2760993339375869337437", + "usedToken1": "10564798467", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275400" + }, + "limitPosition": { + "bottomTick": "-275400", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x7e318207142b4a8286a4711076f9ecf9bb6f418e97fe8b4bc317bcc2953d3bd4", + "state": { + "depositToken": 0, + "blockNumber": 283363947, + "lastRebalancePrice": "1077559", + "state": "2", + "currentTick": "-275832", + "currentPrice": "1050430", + "twapSlow": "1059290", + "twapFast": "1050430", + "depositTokenBalance": "0", + "pairedTokenBalance": "41212", + "usedToken0": "2889876463402931835834", + "usedToken1": "10431867265", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275800" + }, + "limitPosition": { + "bottomTick": "-275800", + "topTick": "-275000" + } + } + }, + { + "transactionHash": "0x1a972af7d0d3a50d9deb8944655e4cf37751e58b697066730ea6e6ad0f0abf83", + "state": { + "depositToken": 0, + "blockNumber": 283859691, + "lastRebalancePrice": "1050430", + "state": "2", + "currentTick": "-275627", + "currentPrice": "1072185", + "twapSlow": "1069294", + "twapFast": "1072185", + "depositTokenBalance": "0", + "pairedTokenBalance": "9122", + "usedToken0": "2242857821496283531736", + "usedToken1": "11127298956", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0xc02f947239102a9294f213a957b56ccc46d9b1088c58d5fba359ee287980d1d5", + "state": { + "depositToken": 0, + "blockNumber": 283874824, + "lastRebalancePrice": "1072185", + "state": "2", + "currentTick": "-275535", + "currentPrice": "1082094", + "twapSlow": "1080580", + "twapFast": "1082094", + "depositTokenBalance": "0", + "pairedTokenBalance": "37342", + "usedToken0": "2043959641195214695060", + "usedToken1": "11348292529", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-277600", + "topTick": "-275200" + }, + "limitPosition": { + "bottomTick": "-275200", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x99059f665194005e484c04ddf9f55f3ae1d966cd17cc624b21aaeb84bc509e75", + "state": { + "depositToken": 0, + "blockNumber": 284245918, + "lastRebalancePrice": "1082094", + "state": "1", + "currentTick": "-275632", + "currentPrice": "1071649", + "twapSlow": "1073043", + "twapFast": "1071649", + "depositTokenBalance": "0", + "pairedTokenBalance": "917561", + "usedToken0": "2562131010337937534398", + "usedToken1": "10791998157", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-275600" + }, + "limitPosition": { + "bottomTick": "-275600", + "topTick": "-274800" + } + } + }, + { + "transactionHash": "0x10485ff434c24a224e39d3caec2f3dc5c43a324afef8b6e41912a38629b515c6", + "state": { + "depositToken": 0, + "blockNumber": 284952044, + "lastRebalancePrice": "1071649", + "state": "2", + "currentTick": "-276226", + "currentPrice": "1009850", + "twapSlow": "1050955", + "twapFast": "1009850", + "depositTokenBalance": "0", + "pairedTokenBalance": "32470", + "usedToken0": "2871993927328824123954", + "usedToken1": "10477611529", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276200" + }, + "limitPosition": { + "bottomTick": "-276200", + "topTick": "-275400" + } + } + }, + { + "transactionHash": "0x07a3a1e2820f37442eac1e0e8399feba00b4468b6e1165f7ab18a48c17be8b7e", + "state": { + "depositToken": 0, + "blockNumber": 285853007, + "lastRebalancePrice": "1009850", + "state": "2", + "currentTick": "-276454", + "currentPrice": "987087", + "twapSlow": "997306", + "twapFast": "987087", + "depositTokenBalance": "0", + "pairedTokenBalance": "19901", + "usedToken0": "2995306296660794239848", + "usedToken1": "10361378855", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276400" + }, + "limitPosition": { + "bottomTick": "-276400", + "topTick": "-275600" + } + } + }, + { + "transactionHash": "0x0be80d2e6b173166aba70618430b6b3965dcb42685f95f59b8317c65afb9e663", + "state": { + "depositToken": 0, + "blockNumber": 286163695, + "lastRebalancePrice": "987087", + "state": "2", + "currentTick": "-276799", + "currentPrice": "953615", + "twapSlow": "966962", + "twapFast": "953615", + "depositTokenBalance": "0", + "pairedTokenBalance": "56124", + "usedToken0": "3186361274796252568518", + "usedToken1": "10191296853", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-276600" + }, + "limitPosition": { + "bottomTick": "-276600", + "topTick": "-276000" + } + } + }, + { + "transactionHash": "0xeb377ddc6328d088516e6e9c185f780f7d4340e79002ff29abbe5f4b223bf14c", + "state": { + "depositToken": 0, + "blockNumber": 286201398, + "lastRebalancePrice": "953615", + "state": "2", + "currentTick": "-277022", + "currentPrice": "932586", + "twapSlow": "936698", + "twapFast": "932586", + "depositTokenBalance": "0", + "pairedTokenBalance": "43239", + "usedToken0": "3307772004308362157841", + "usedToken1": "10078802039", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277000" + }, + "limitPosition": { + "bottomTick": "-277000", + "topTick": "-276200" + } + } + }, + { + "transactionHash": "0x889237a91667eb6d84b4d78c2293f65cef313e6159f3873b7c91176bc53707bb", + "state": { + "depositToken": 0, + "blockNumber": 286229235, + "lastRebalancePrice": "932586", + "state": "2", + "currentTick": "-277226", + "currentPrice": "913754", + "twapSlow": "928306", + "twapFast": "913754", + "depositTokenBalance": "0", + "pairedTokenBalance": "51470", + "usedToken0": "3419713604095339561838", + "usedToken1": "9976352459", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277200" + }, + "limitPosition": { + "bottomTick": "-277200", + "topTick": "-276400" + } + } + }, + { + "transactionHash": "0x13800c940efb2b8a235905c86a374f1fe050bb0bb4f32070f542026892d07bf5", + "state": { + "depositToken": 0, + "blockNumber": 286430946, + "lastRebalancePrice": "913754", + "state": "2", + "currentTick": "-277489", + "currentPrice": "890037", + "twapSlow": "895035", + "twapFast": "890037", + "depositTokenBalance": "0", + "pairedTokenBalance": "65808", + "usedToken0": "3564865943274032894860", + "usedToken1": "9846251785", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277400" + }, + "limitPosition": { + "bottomTick": "-277400", + "topTick": "-276600" + } + } + }, + { + "transactionHash": "0xee21d8b7550ea072b9e0befd63c1b9eeae455e60efbee3bc0373738a1fba99d6", + "state": { + "depositToken": 0, + "blockNumber": 286466478, + "lastRebalancePrice": "890037", + "state": "2", + "currentTick": "-277769", + "currentPrice": "865463", + "twapSlow": "880213", + "twapFast": "865463", + "depositTokenBalance": "0", + "pairedTokenBalance": "22574", + "usedToken0": "3722060006706954486008", + "usedToken1": "9709300330", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-277600" + }, + "limitPosition": { + "bottomTick": "-277600", + "topTick": "-277000" + } + } + }, + { + "transactionHash": "0x55a99a6db38d9ab487ece04de8d3b123f595ade26e5ec9d30fcd7a2ac9f3eec7", + "state": { + "depositToken": 0, + "blockNumber": 286500952, + "lastRebalancePrice": "865463", + "state": "2", + "currentTick": "-278023", + "currentPrice": "843758", + "twapSlow": "855054", + "twapFast": "843758", + "depositTokenBalance": "0", + "pairedTokenBalance": "33107", + "usedToken0": "3866794474541251025115", + "usedToken1": "9586688360", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-278000" + }, + "limitPosition": { + "bottomTick": "-278000", + "topTick": "-277200" + } + } + }, + { + "transactionHash": "0xac48db6c14ca7e91fbfd66f819b2e764ce391cfc60822c4de608f9884a71fb7c", + "state": { + "depositToken": 0, + "blockNumber": 286542978, + "lastRebalancePrice": "843758", + "state": "2", + "currentTick": "-278366", + "currentPrice": "815309", + "twapSlow": "834612", + "twapFast": "815309", + "depositTokenBalance": "0", + "pairedTokenBalance": "27505", + "usedToken0": "4064663820191035790421", + "usedToken1": "9423528714", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-278200" + }, + "limitPosition": { + "bottomTick": "-278200", + "topTick": "-277600" + } + } + }, + { + "transactionHash": "0x251825e4117403ea6ab6ac2770b50ad4d642d952ff167081a018b9808621ed25", + "state": { + "depositToken": 0, + "blockNumber": 286691722, + "lastRebalancePrice": "815309", + "state": "2", + "currentTick": "-278575", + "currentPrice": "798447", + "twapSlow": "805343", + "twapFast": "798447", + "depositTokenBalance": "0", + "pairedTokenBalance": "58796", + "usedToken0": "4187917366821628369954", + "usedToken1": "9325811161", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-278400" + }, + "limitPosition": { + "bottomTick": "-278400", + "topTick": "-277800" + } + } + }, + { + "transactionHash": "0xc85d7a47f26972becc5c12dcf46731a4a2087196375e2e78884df7136388edd5", + "state": { + "depositToken": 0, + "blockNumber": 286731350, + "lastRebalancePrice": "798447", + "state": "2", + "currentTick": "-279286", + "currentPrice": "743651", + "twapSlow": "760648", + "twapFast": "743651", + "depositTokenBalance": "0", + "pairedTokenBalance": "13849", + "usedToken0": "4611651739478639441808", + "usedToken1": "9000312299", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279200" + }, + "limitPosition": { + "bottomTick": "-279200", + "topTick": "-278400" + } + } + }, + { + "transactionHash": "0x641f1d9ef551f4278172b5b5fbb4e6e6804235bbfc0a1d027b2cf26d7a962e12", + "state": { + "depositToken": 0, + "blockNumber": 286775765, + "lastRebalancePrice": "743651", + "state": "2", + "currentTick": "-279079", + "currentPrice": "759204", + "twapSlow": "757309", + "twapFast": "759204", + "depositTokenBalance": "0", + "pairedTokenBalance": "79282", + "usedToken0": "3858427275694170244874", + "usedToken1": "9570904400", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279000" + }, + "limitPosition": { + "bottomTick": "-279000", + "topTick": "-278200" + } + } + }, + { + "transactionHash": "0x46ce20ab918a59af61500fbcb274381dad9b669bf2e83653ce72aaa163108117", + "state": { + "depositToken": 0, + "blockNumber": 286985458, + "lastRebalancePrice": "759204", + "state": "2", + "currentTick": "-278872", + "currentPrice": "775083", + "twapSlow": "772916", + "twapFast": "774928", + "depositTokenBalance": "0", + "pairedTokenBalance": "35232", + "usedToken0": "3185924929966620909670", + "usedToken1": "10093061594", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-278800" + }, + "limitPosition": { + "bottomTick": "-278800", + "topTick": "-278000" + } + } + }, + { + "transactionHash": "0xc6f80756624038bc59cfb37347a66cd6459447410d66a18bef0e29fc66b35842", + "state": { + "depositToken": 0, + "blockNumber": 287075359, + "lastRebalancePrice": "775083", + "state": "2", + "currentTick": "-279098", + "currentPrice": "757763", + "twapSlow": "763849", + "twapFast": "757763", + "depositTokenBalance": "0", + "pairedTokenBalance": "26630", + "usedToken0": "3334113763684246088597", + "usedToken1": "9983868263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279000" + }, + "limitPosition": { + "bottomTick": "-279000", + "topTick": "-278200" + } + } + }, + { + "transactionHash": "0xa5be0a5655cf91ca0e7eeaa5aa5ef2bda6e64e62737cc788e09901e756f22ca1", + "state": { + "depositToken": 0, + "blockNumber": 287175380, + "lastRebalancePrice": "757763", + "state": "2", + "currentTick": "-279314", + "currentPrice": "741572", + "twapSlow": "744321", + "twapFast": "741572", + "depositTokenBalance": "0", + "pairedTokenBalance": "60201", + "usedToken0": "3478991946239032485163", + "usedToken1": "9876702971", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279200" + }, + "limitPosition": { + "bottomTick": "-279200", + "topTick": "-278400" + } + } + }, + { + "transactionHash": "0x5cb7623da72eb9d2aec5c7833ccf125d173b8dd74422cf3500faa34b645573b4", + "state": { + "depositToken": 0, + "blockNumber": 287531684, + "lastRebalancePrice": "741572", + "state": "2", + "currentTick": "-279555", + "currentPrice": "723915", + "twapSlow": "731190", + "twapFast": "723915", + "depositTokenBalance": "0", + "pairedTokenBalance": "66288", + "usedToken0": "3641454636901862970088", + "usedToken1": "9758512508", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279400" + }, + "limitPosition": { + "bottomTick": "-279400", + "topTick": "-278800" + } + } + }, + { + "transactionHash": "0xadc7fab146184b10544f9934ee2c35491be30fed9a82a9491e9a03964acd925c", + "state": { + "depositToken": 0, + "blockNumber": 288159003, + "lastRebalancePrice": "723915", + "state": "2", + "currentTick": "-279345", + "currentPrice": "739277", + "twapSlow": "738021", + "twapFast": "739129", + "depositTokenBalance": "0", + "pairedTokenBalance": "65777", + "usedToken0": "3205885168650714026534", + "usedToken1": "10079941887", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279200" + }, + "limitPosition": { + "bottomTick": "-279200", + "topTick": "-278400" + } + } + }, + { + "transactionHash": "0xd3a560f6ff81d9980f64b8d67688d25e6b4a3682ab33086bdcac8e97071b15b3", + "state": { + "depositToken": 0, + "blockNumber": 288895292, + "lastRebalancePrice": "739277", + "state": "2", + "currentTick": "-279614", + "currentPrice": "719656", + "twapSlow": "724929", + "twapFast": "719656", + "depositTokenBalance": "0", + "pairedTokenBalance": "85985", + "usedToken0": "3391836882139772485159", + "usedToken1": "9948630914", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279600" + }, + "limitPosition": { + "bottomTick": "-279600", + "topTick": "-278800" + } + } + }, + { + "transactionHash": "0xbc54c714c39f8c314501ee70ed913c3dc83e1463c5132da83addbbb57a08223d", + "state": { + "depositToken": 0, + "blockNumber": 289108324, + "lastRebalancePrice": "719656", + "state": "2", + "currentTick": "-280051", + "currentPrice": "688886", + "twapSlow": "719297", + "twapFast": "688886", + "depositTokenBalance": "0", + "pairedTokenBalance": "65637", + "usedToken0": "3700275039335048519575", + "usedToken1": "9734792212", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280000" + }, + "limitPosition": { + "bottomTick": "-280000", + "topTick": "-279200" + } + } + }, + { + "transactionHash": "0x38fafb595a673c7c5e9ea20675adb481402aa438a1f734c0152990f9ec581c1d", + "state": { + "depositToken": 0, + "blockNumber": 290655857, + "lastRebalancePrice": "685382", + "state": "2", + "currentTick": "-280334", + "currentPrice": "669665", + "twapSlow": "675043", + "twapFast": "669665", + "depositTokenBalance": "0", + "pairedTokenBalance": "73299", + "usedToken0": "3908373395867636010351", + "usedToken1": "9600528359", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280200" + }, + "limitPosition": { + "bottomTick": "-280200", + "topTick": "-279400" + } + } + }, + { + "transactionHash": "0x91ab0c82980ae374e5470a55410a115820756359e9382d008082bd3a13871a18", + "state": { + "depositToken": 0, + "blockNumber": 291604226, + "lastRebalancePrice": "669665", + "state": "2", + "currentTick": "-280130", + "currentPrice": "683466", + "twapSlow": "681827", + "twapFast": "683466", + "depositTokenBalance": "0", + "pairedTokenBalance": "62703", + "usedToken0": "3474516921498647449482", + "usedToken1": "9901667243", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280000" + }, + "limitPosition": { + "bottomTick": "-280000", + "topTick": "-279200" + } + } + }, + { + "transactionHash": "0x12a71a792a05eeabdc636636ffd42bbf80f1752c89efec9f17881f84c95c38e9", + "state": { + "depositToken": 0, + "blockNumber": 292180087, + "lastRebalancePrice": "683466", + "state": "2", + "currentTick": "-279826", + "currentPrice": "704561", + "twapSlow": "696714", + "twapFast": "704279", + "depositTokenBalance": "0", + "pairedTokenBalance": "54337", + "usedToken0": "2631955462433353487851", + "usedToken1": "10492548685", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa7c90cb0635f26ee6fa5615464e44e0608b197c4709c4f685cd480f07e6742c5", + "state": { + "depositToken": 0, + "blockNumber": 292195698, + "lastRebalancePrice": "704561", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704702", + "twapFast": "704772", + "depositTokenBalance": "1417392374", + "pairedTokenBalance": "25877", + "usedToken0": "2615838042711222201413", + "usedToken1": "10508658190", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd1d87ad955f12806f01daf08195b14e76ede2725c6ace669db4493175d2ac6d7", + "state": { + "depositToken": 0, + "blockNumber": 292211322, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484154", + "pairedTokenBalance": "25876", + "usedToken0": "2615838042711222201412", + "usedToken1": "10508749970", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9ba1f98969d73a1ccfc0524823b938dc5bb1fe23a1c28d97e7b792157ac44cbe", + "state": { + "depositToken": 0, + "blockNumber": 292226939, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484153", + "pairedTokenBalance": "25875", + "usedToken0": "2615838042711222201411", + "usedToken1": "10508749969", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x27f7ada5ec1bd02ec6a999358368006a45fe1eee134d7fd195de6d6ad5a721e5", + "state": { + "depositToken": 0, + "blockNumber": 292242533, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484152", + "pairedTokenBalance": "25874", + "usedToken0": "2615838042711222201410", + "usedToken1": "10508749968", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb9c7aebf89a97b113df9bef81d99f6bff4a3bbf1fbc1d39b1a1de4ea86375e42", + "state": { + "depositToken": 0, + "blockNumber": 292258134, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484151", + "pairedTokenBalance": "25873", + "usedToken0": "2615838042711222201409", + "usedToken1": "10508749967", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x080fe0648d26dc4a7a6bc2ef5f70a5d69466038c88b02a2dd48d940f97b875de", + "state": { + "depositToken": 0, + "blockNumber": 292273722, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484150", + "pairedTokenBalance": "25872", + "usedToken0": "2615838042711222201408", + "usedToken1": "10508749966", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb95163288600c28cfbef4fce9244e1f67147256e71ffe227e07cdccc89fe0241", + "state": { + "depositToken": 0, + "blockNumber": 292289290, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484149", + "pairedTokenBalance": "25871", + "usedToken0": "2615838042711222201407", + "usedToken1": "10508749965", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6b5693792b7d8119750a445516b8263bfb3dc73c0c6123c2b3588dc50fe4fe55", + "state": { + "depositToken": 0, + "blockNumber": 292304894, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279823", + "currentPrice": "704772", + "twapSlow": "704772", + "twapFast": "704772", + "depositTokenBalance": "1417484148", + "pairedTokenBalance": "25870", + "usedToken0": "2615838042711222201406", + "usedToken1": "10508749964", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb4cd8d163f41dceee20a98a0c1c7c69df225770689abe2fefe806fc41ec33ec6", + "state": { + "depositToken": 0, + "blockNumber": 292320476, + "lastRebalancePrice": "704772", + "state": "1", + "currentTick": "-279809", + "currentPrice": "705760", + "twapSlow": "705266", + "twapFast": "705760", + "depositTokenBalance": "1417484147", + "pairedTokenBalance": "25869", + "usedToken0": "2524164534484664865389", + "usedToken1": "10573407813", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x252d6551c4dbdf3c4bdf2dad44e77d34e584a41908b8fe5680f9e9d426921ee0", + "state": { + "depositToken": 0, + "blockNumber": 292335998, + "lastRebalancePrice": "705760", + "state": "1", + "currentTick": "-279804", + "currentPrice": "706113", + "twapSlow": "705901", + "twapFast": "706113", + "depositTokenBalance": "1418006634", + "pairedTokenBalance": "25868", + "usedToken0": "2497803312117814633405", + "usedToken1": "10592540585", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4f6b52e8e353e51a080f41b3ca23be99330afece2169fd7298778000fd9c6de6", + "state": { + "depositToken": 0, + "blockNumber": 292351471, + "lastRebalancePrice": "706113", + "state": "1", + "currentTick": "-279804", + "currentPrice": "706113", + "twapSlow": "706113", + "twapFast": "706113", + "depositTokenBalance": "1418157019", + "pairedTokenBalance": "25867", + "usedToken0": "2497803312117814633404", + "usedToken1": "10592690970", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x29491493f6eaa5054cc8aef5d9e8bba937b1ffc6e6ca09609bca941eca816e00", + "state": { + "depositToken": 0, + "blockNumber": 292366937, + "lastRebalancePrice": "706113", + "state": "1", + "currentTick": "-279789", + "currentPrice": "707172", + "twapSlow": "706960", + "twapFast": "707172", + "depositTokenBalance": "1418157018", + "pairedTokenBalance": "25866", + "usedToken0": "2401416035175988015245", + "usedToken1": "10660804589", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb45009a58d59aaf0ee2aaa48a9ee5c5cb28be6f6950de94563240a9ad416397e", + "state": { + "depositToken": 0, + "blockNumber": 292382441, + "lastRebalancePrice": "707172", + "state": "1", + "currentTick": "-279786", + "currentPrice": "707385", + "twapSlow": "707243", + "twapFast": "707385", + "depositTokenBalance": "1418707431", + "pairedTokenBalance": "25865", + "usedToken0": "2385210719162798736225", + "usedToken1": "10672817078", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2865c5c4bb58927085f2c5b437515c2e8830ede94637abc8d96ea8af6f41e468", + "state": { + "depositToken": 0, + "blockNumber": 292397983, + "lastRebalancePrice": "707385", + "state": "1", + "currentTick": "-279780", + "currentPrice": "707809", + "twapSlow": "707668", + "twapFast": "707809", + "depositTokenBalance": "1418800053", + "pairedTokenBalance": "25864", + "usedToken0": "2348362722449438773189", + "usedToken1": "10698983495", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa46a466d0a45cb84dbdba483f4f267703e5066e2ff92635774a473b5e78e8cb9", + "state": { + "depositToken": 0, + "blockNumber": 292413498, + "lastRebalancePrice": "707809", + "state": "1", + "currentTick": "-279780", + "currentPrice": "707809", + "twapSlow": "707809", + "twapFast": "707809", + "depositTokenBalance": "1419010750", + "pairedTokenBalance": "48230", + "usedToken0": "2348362722449438773188", + "usedToken1": "10699194192", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5e7df24ec5f2bcbc6d6cd59eb8d67941363e5767f698de26625e7343604b1831", + "state": { + "depositToken": 0, + "blockNumber": 292429045, + "lastRebalancePrice": "707809", + "state": "1", + "currentTick": "-279780", + "currentPrice": "707809", + "twapSlow": "707809", + "twapFast": "707809", + "depositTokenBalance": "1419010749", + "pairedTokenBalance": "48229", + "usedToken0": "2348362722449438773187", + "usedToken1": "10699194191", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x36556c84ce419f652f6cb12f8120940e99852e27b94330271e26912a658fcdaa", + "state": { + "depositToken": 0, + "blockNumber": 292444643, + "lastRebalancePrice": "707809", + "state": "1", + "currentTick": "-279738", + "currentPrice": "710788", + "twapSlow": "709510", + "twapFast": "710788", + "depositTokenBalance": "1419010748", + "pairedTokenBalance": "48228", + "usedToken0": "2085672551921675905252", + "usedToken1": "10885521932", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x31369294fb224674fa4c2d343ac4502add17ee64f16bbdf21660c9a826cb6623", + "state": { + "depositToken": 0, + "blockNumber": 292460230, + "lastRebalancePrice": "710788", + "state": "1", + "currentTick": "-279738", + "currentPrice": "710788", + "twapSlow": "710788", + "twapFast": "710788", + "depositTokenBalance": "2214975861", + "pairedTokenBalance": "28362", + "usedToken0": "2085672551921675905251", + "usedToken1": "10887027611", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf2d4d7e35ab670cd13ab6c355d4dfcd98bb9f3d76319ef53af8576ac4ec4c78b", + "state": { + "depositToken": 0, + "blockNumber": 292475846, + "lastRebalancePrice": "710788", + "state": "1", + "currentTick": "-279738", + "currentPrice": "710788", + "twapSlow": "710788", + "twapFast": "710788", + "depositTokenBalance": "2214975860", + "pairedTokenBalance": "28361", + "usedToken0": "2085672551921675905250", + "usedToken1": "10887027610", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xec8bc6e1562164886af049b60e5f83bce42af2cd36a8b277908777f2c51dc5d1", + "state": { + "depositToken": 0, + "blockNumber": 292491444, + "lastRebalancePrice": "710788", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "711570", + "twapFast": "712211", + "depositTokenBalance": "2214975859", + "pairedTokenBalance": "28360", + "usedToken0": "1962207681768141263408", + "usedToken1": "10974873813", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5a01931c02ea1243ac5b0393f614a35875dc293025a06205bc996d9d3222c6cf", + "state": { + "depositToken": 0, + "blockNumber": 292507044, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685727", + "pairedTokenBalance": "47048", + "usedToken0": "1962207681768141263407", + "usedToken1": "10975583681", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8bbd93342238ac13a41d77744b09298a56ac3187574e00448c6fe30453b542da", + "state": { + "depositToken": 0, + "blockNumber": 292522665, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685726", + "pairedTokenBalance": "47047", + "usedToken0": "1962207681768141263406", + "usedToken1": "10975583680", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaed4fd11d0f347f9accfcc71b956b0afd64915c17fcbb77f2622a43fc8689569", + "state": { + "depositToken": 0, + "blockNumber": 292538244, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685725", + "pairedTokenBalance": "47046", + "usedToken0": "1962207681768141263405", + "usedToken1": "10975583679", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xde565160b8852a8109afa9b9d75abe2cf3b59699174132e0c92a32dd75670f08", + "state": { + "depositToken": 0, + "blockNumber": 292553852, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685724", + "pairedTokenBalance": "47045", + "usedToken0": "1962207681768141263404", + "usedToken1": "10975583678", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xbcdeac533cb0bb31b96f4e8d5bce3467a4320fc9721282a104e749172c327250", + "state": { + "depositToken": 0, + "blockNumber": 292569473, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685723", + "pairedTokenBalance": "47044", + "usedToken0": "1962207681768141263403", + "usedToken1": "10975583677", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1911e07341587ec1bd7d1d490dfffec35963e0e5ebd8a5feceb549bdb8b5b3a4", + "state": { + "depositToken": 0, + "blockNumber": 292585116, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685722", + "pairedTokenBalance": "47043", + "usedToken0": "1962207681768141263402", + "usedToken1": "10975583676", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7c455a6e93abc23c77d6a04909388a05a7ea00e2547fb6a6553ba963f6129d21", + "state": { + "depositToken": 0, + "blockNumber": 292600757, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685721", + "pairedTokenBalance": "47042", + "usedToken0": "1962207681768141263401", + "usedToken1": "10975583675", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf4445bffdb5591e026b10e18420b34cd29879a724bccf3314426fbe3bfaa6c79", + "state": { + "depositToken": 0, + "blockNumber": 292616406, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279718", + "currentPrice": "712211", + "twapSlow": "712211", + "twapFast": "712211", + "depositTokenBalance": "2215685720", + "pairedTokenBalance": "47041", + "usedToken0": "1962207681768141263400", + "usedToken1": "10975583674", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x73ad44c18a343468724fd496df03d255e0ceabd61bb354ddecd0f65a71999659", + "state": { + "depositToken": 0, + "blockNumber": 292649541, + "lastRebalancePrice": "712211", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717070", + "twapFast": "717572", + "depositTokenBalance": "2215685719", + "pairedTokenBalance": "47040", + "usedToken0": "1492308312345048809314", + "usedToken1": "11311521304", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9a46689b6fb3c54e57bff6681a0163581b6c36cffb081102b3ff961f8e17306c", + "state": { + "depositToken": 0, + "blockNumber": 292676939, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400369", + "pairedTokenBalance": "32825", + "usedToken0": "1492308312345048809313", + "usedToken1": "11314235954", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc48ee867897d95835847d5ab12158284989a484f82b14f1ba420049ac05521db", + "state": { + "depositToken": 0, + "blockNumber": 292692505, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400368", + "pairedTokenBalance": "32824", + "usedToken0": "1492308312345048809312", + "usedToken1": "11314235953", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfc3b30529db45129f5213d099d940733b5c0ee69884c0d61c1a5f1c8e437ab0b", + "state": { + "depositToken": 0, + "blockNumber": 292708062, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400367", + "pairedTokenBalance": "32823", + "usedToken0": "1492308312345048809311", + "usedToken1": "11314235952", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaaf0752229a408f130dcba40953debca530a851562ed24133733ceabb3ec6e44", + "state": { + "depositToken": 0, + "blockNumber": 292723505, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400366", + "pairedTokenBalance": "32822", + "usedToken0": "1492308312345048809310", + "usedToken1": "11314235951", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf0fccb6590cb703ad7cd65508f9df806822077a9545cde204193cefc0cdc16ab", + "state": { + "depositToken": 0, + "blockNumber": 292738948, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400365", + "pairedTokenBalance": "32821", + "usedToken0": "1492308312345048809309", + "usedToken1": "11314235950", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xde74d704faabea399c820ed8d0282952fe064c1cd13076b3fa42c4ace638c70e", + "state": { + "depositToken": 0, + "blockNumber": 292754419, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400364", + "pairedTokenBalance": "32820", + "usedToken0": "1492308312345048809308", + "usedToken1": "11314235949", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x75da8384a16b14d48205d66bea86b18c432873927840f0088c6f1e1bb3f4fe6b", + "state": { + "depositToken": 0, + "blockNumber": 292769922, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400363", + "pairedTokenBalance": "32819", + "usedToken0": "1492308312345048809307", + "usedToken1": "11314235948", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x546f91c51faae8a6735b70a8f01af3672f781c4dbc474cc269da27d6713a4182", + "state": { + "depositToken": 0, + "blockNumber": 292785483, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400362", + "pairedTokenBalance": "32818", + "usedToken0": "1492308312345048809306", + "usedToken1": "11314235947", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x84c4c8c1cd408e219a480ef32c52b62b8705328cfeac12e713b2d3975014592e", + "state": { + "depositToken": 0, + "blockNumber": 292801031, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400361", + "pairedTokenBalance": "32817", + "usedToken0": "1492308312345048809305", + "usedToken1": "11314235946", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3a42c7038c3e67b6a6ce2797e4713eb703b1ec3ca295d6c19769000783c6a8ae", + "state": { + "depositToken": 0, + "blockNumber": 292816579, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400360", + "pairedTokenBalance": "32816", + "usedToken0": "1492308312345048809304", + "usedToken1": "11314235945", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5ff0bbe67444d7f992f36f54a1a4e3205da136793e6713f30dfcaccae4988ce0", + "state": { + "depositToken": 0, + "blockNumber": 292832163, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279643", + "currentPrice": "717572", + "twapSlow": "717572", + "twapFast": "717572", + "depositTokenBalance": "2218400359", + "pairedTokenBalance": "32815", + "usedToken0": "1492308312345048809303", + "usedToken1": "11314235944", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd1c6c5ee6bcf26c9e4de3eed714d215775b6fc49251d4999768f5af3c5ee6145", + "state": { + "depositToken": 0, + "blockNumber": 292847765, + "lastRebalancePrice": "717572", + "state": "1", + "currentTick": "-279646", + "currentPrice": "717357", + "twapSlow": "717357", + "twapFast": "717357", + "depositTokenBalance": "2218400358", + "pairedTokenBalance": "32814", + "usedToken0": "1510096118580395044840", + "usedToken1": "11301472811", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdc0c7ddfcf761d7037b8408636e41e76c8659f67721d329f801d72d43aa28996", + "state": { + "depositToken": 0, + "blockNumber": 292863379, + "lastRebalancePrice": "717357", + "state": "1", + "currentTick": "-279646", + "currentPrice": "717357", + "twapSlow": "717357", + "twapFast": "717357", + "depositTokenBalance": "2217535777", + "pairedTokenBalance": "24583", + "usedToken0": "1510239858428761479066", + "usedToken1": "11301472810", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe7dcb85eafbf4116051c1f271e3329f0e022204f427e379eae2f65e5c4e0541b", + "state": { + "depositToken": 0, + "blockNumber": 292878985, + "lastRebalancePrice": "717357", + "state": "1", + "currentTick": "-279646", + "currentPrice": "717357", + "twapSlow": "717357", + "twapFast": "717357", + "depositTokenBalance": "2217535776", + "pairedTokenBalance": "24582", + "usedToken0": "1510239858428761479065", + "usedToken1": "11301472809", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x885804539833a07c172c9ef99c133d8efe9a3c3371c0de20c925ac5ab0676708", + "state": { + "depositToken": 0, + "blockNumber": 292894601, + "lastRebalancePrice": "717357", + "state": "1", + "currentTick": "-279646", + "currentPrice": "717357", + "twapSlow": "717357", + "twapFast": "717357", + "depositTokenBalance": "2217535775", + "pairedTokenBalance": "24581", + "usedToken0": "1512845291998835139692", + "usedToken1": "11299603661", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9a8557f95ad3fa44ee71eedbdbbeb74dc27c0b0f12f83322af5d9fa9f39f2a86", + "state": { + "depositToken": 0, + "blockNumber": 292910201, + "lastRebalancePrice": "717357", + "state": "1", + "currentTick": "-279646", + "currentPrice": "717357", + "twapSlow": "717357", + "twapFast": "717357", + "depositTokenBalance": "2217409380", + "pairedTokenBalance": "23928", + "usedToken0": "1512866346007482199575", + "usedToken1": "11299603660", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x07b01a252bc2dd0ffb9953235e3d9cd238ec8b8a33e55e719d1c472c03c5cb35", + "state": { + "depositToken": 0, + "blockNumber": 292925795, + "lastRebalancePrice": "717357", + "state": "1", + "currentTick": "-279665", + "currentPrice": "715996", + "twapSlow": "716425", + "twapFast": "715996", + "depositTokenBalance": "2217409379", + "pairedTokenBalance": "23927", + "usedToken0": "1627764075270134286904", + "usedToken1": "11217253687", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x401eed7a548bbbe6872aa90731bd0b0fba621768d2447a55bc2e3c6b9741e922", + "state": { + "depositToken": 0, + "blockNumber": 292941438, + "lastRebalancePrice": "715996", + "state": "1", + "currentTick": "-279665", + "currentPrice": "715996", + "twapSlow": "715996", + "twapFast": "715996", + "depositTokenBalance": "2212275922", + "pairedTokenBalance": "31886", + "usedToken0": "1628692541769226424983", + "usedToken1": "11217253686", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb05c6cd4c0e380a7963ff21d04e5b5dc4df3c19eed93333b0f227a8583f63724", + "state": { + "depositToken": 0, + "blockNumber": 292957024, + "lastRebalancePrice": "715996", + "state": "1", + "currentTick": "-279670", + "currentPrice": "715638", + "twapSlow": "715709", + "twapFast": "715638", + "depositTokenBalance": "2212275921", + "pairedTokenBalance": "31885", + "usedToken0": "1659728720927363238073", + "usedToken1": "11195035457", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-281800", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0580a686b08a8e98cb04823d30a3d390ac30ab6a7221ff500b6743e936835ce5", + "state": { + "depositToken": 0, + "blockNumber": 292972579, + "lastRebalancePrice": "715638", + "state": "1", + "currentTick": "-279813", + "currentPrice": "705477", + "twapSlow": "710646", + "twapFast": "705477", + "depositTokenBalance": "2210918557", + "pairedTokenBalance": "14086", + "usedToken0": "2554032131046984603629", + "usedToken1": "10559732468", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd0d9c6dfc75811b2ccb9c90a654364f1238fc576b63080e00077fa78d07974bd", + "state": { + "depositToken": 0, + "blockNumber": 292993589, + "lastRebalancePrice": "705477", + "state": "1", + "currentTick": "-279873", + "currentPrice": "701257", + "twapSlow": "701257", + "twapFast": "701257", + "depositTokenBalance": "1389933390", + "pairedTokenBalance": "49857", + "usedToken0": "2937844233220631231337", + "usedToken1": "10294841469", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279400" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe41a2cd09f7c0e507a054e4faf543031493c6a5cfc791d6a6c81e41382ed5b64", + "state": { + "depositToken": 0, + "blockNumber": 293016133, + "lastRebalancePrice": "701257", + "state": "1", + "currentTick": "-279929", + "currentPrice": "697341", + "twapSlow": "699437", + "twapFast": "698318", + "depositTokenBalance": "1380709346", + "pairedTokenBalance": "35424", + "usedToken0": "3294653165902082175976", + "usedToken1": "10047442666", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282000", + "topTick": "-279600" + }, + "limitPosition": { + "bottomTick": "-279600", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x30ee4d762d1ea530ee81a07849ac0f63235f913d836cb5d1850194682d85250b", + "state": { + "depositToken": 0, + "blockNumber": 293032219, + "lastRebalancePrice": "697341", + "state": "1", + "currentTick": "-279975", + "currentPrice": "694141", + "twapSlow": "696993", + "twapFast": "694141", + "depositTokenBalance": "0", + "pairedTokenBalance": "112326", + "usedToken0": "3633574638753171678501", + "usedToken1": "9813618887", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-279800" + }, + "limitPosition": { + "bottomTick": "-279800", + "topTick": "-279200" + } + } + }, + { + "transactionHash": "0xfe28c1b1a573e7b6774fa0b6d2da7e828f532f034bc0cea4c1c965dc0ca0ee55", + "state": { + "depositToken": 0, + "blockNumber": 293338593, + "lastRebalancePrice": "694141", + "state": "2", + "currentTick": "-280290", + "currentPrice": "672618", + "twapSlow": "680805", + "twapFast": "672618", + "depositTokenBalance": "0", + "pairedTokenBalance": "35975", + "usedToken0": "3860549433087141180312", + "usedToken1": "9660373408", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280200" + }, + "limitPosition": { + "bottomTick": "-280200", + "topTick": "-279400" + } + } + }, + { + "transactionHash": "0xdfddd8debda76ff5a928c3a414d048c4455a8308a9f4491acdfc67bc948ac66d", + "state": { + "depositToken": 0, + "blockNumber": 294942471, + "lastRebalancePrice": "672618", + "state": "2", + "currentTick": "-280529", + "currentPrice": "656733", + "twapSlow": "659893", + "twapFast": "658575", + "depositTokenBalance": "0", + "pairedTokenBalance": "50935", + "usedToken0": "4034839442376597352775", + "usedToken1": "9545729573", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280400" + }, + "limitPosition": { + "bottomTick": "-280400", + "topTick": "-279600" + } + } + }, + { + "transactionHash": "0xfd038e8e409f996057e9221bc2d855068e5c75739fbcee33fad2680bd07e0854", + "state": { + "depositToken": 0, + "blockNumber": 294978026, + "lastRebalancePrice": "656733", + "state": "2", + "currentTick": "-280754", + "currentPrice": "642123", + "twapSlow": "646892", + "twapFast": "642123", + "depositTokenBalance": "0", + "pairedTokenBalance": "50021", + "usedToken0": "4205092591289950426625", + "usedToken1": "9441773931", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280600" + }, + "limitPosition": { + "bottomTick": "-280600", + "topTick": "-280000" + } + } + }, + { + "transactionHash": "0x70f0fbe6d6469d97447645c5334ee1f37b854bce99757ebd4d7f5c3a0ec1ad84", + "state": { + "depositToken": 0, + "blockNumber": 295022898, + "lastRebalancePrice": "642123", + "state": "2", + "currentTick": "-281103", + "currentPrice": "620100", + "twapSlow": "632753", + "twapFast": "620100", + "depositTokenBalance": "0", + "pairedTokenBalance": "46242", + "usedToken0": "4465215360415469497262", + "usedToken1": "9278456687", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281000" + }, + "limitPosition": { + "bottomTick": "-281000", + "topTick": "-280200" + } + } + }, + { + "transactionHash": "0xbb57a7a17b05b4b7b5457707a718ce58128ddd233cf6fd31796d688df35a2c5d", + "state": { + "depositToken": 0, + "blockNumber": 295131010, + "lastRebalancePrice": "620100", + "state": "2", + "currentTick": "-280872", + "currentPrice": "634590", + "twapSlow": "631615", + "twapFast": "634590", + "depositTokenBalance": "0", + "pairedTokenBalance": "82842", + "usedToken0": "3675346681023619659827", + "usedToken1": "9777277341", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280800" + }, + "limitPosition": { + "bottomTick": "-280800", + "topTick": "-280000" + } + } + }, + { + "transactionHash": "0xc74e64025589b98aa7da66cb974b7a8d1cb55f4ede536fd858e75af8de20ec72", + "state": { + "depositToken": 0, + "blockNumber": 295291738, + "lastRebalancePrice": "634590", + "state": "2", + "currentTick": "-280707", + "currentPrice": "645148", + "twapSlow": "640455", + "twapFast": "645148", + "depositTokenBalance": "0", + "pairedTokenBalance": "86758", + "usedToken0": "3190903876327654356317", + "usedToken1": "10093576525", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282800", + "topTick": "-280400" + }, + "limitPosition": { + "bottomTick": "-280400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0x4e74273fa250d74437372ef19a447c5104c9273011cbb1b131ac8155e0af5f3d", + "state": { + "depositToken": 0, + "blockNumber": 297007815, + "lastRebalancePrice": "645148", + "state": "1", + "currentTick": "-280797", + "currentPrice": "639368", + "twapSlow": "642315", + "twapFast": "639368", + "depositTokenBalance": "0", + "pairedTokenBalance": "682036", + "usedToken0": "3875268959640385877347", + "usedToken1": "9577769321", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280600" + }, + "limitPosition": { + "bottomTick": "-280600", + "topTick": "-280000" + } + } + }, + { + "transactionHash": "0x7f1d936b4cd673757266dab8e436fe46abab249e827960ebdb4dddad439503e7", + "state": { + "depositToken": 0, + "blockNumber": 297081112, + "lastRebalancePrice": "639368", + "state": "2", + "currentTick": "-280575", + "currentPrice": "653720", + "twapSlow": "636497", + "twapFast": "653458", + "depositTokenBalance": "0", + "pairedTokenBalance": "44975", + "usedToken0": "3586339795667712598288", + "usedToken1": "9783639392", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280400" + }, + "limitPosition": { + "bottomTick": "-280400", + "topTick": "-279800" + } + } + }, + { + "transactionHash": "0xca406644e0c9791a565b94de327ecc8a3f6159d5aa43e5ea5a4718126f7c84e3", + "state": { + "depositToken": 0, + "blockNumber": 297195200, + "lastRebalancePrice": "653720", + "state": "2", + "currentTick": "-280792", + "currentPrice": "639687", + "twapSlow": "655290", + "twapFast": "639687", + "depositTokenBalance": "0", + "pairedTokenBalance": "37652", + "usedToken0": "3752339182290777102244", + "usedToken1": "9681167933", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280600" + }, + "limitPosition": { + "bottomTick": "-280600", + "topTick": "-280000" + } + } + }, + { + "transactionHash": "0xb56679c541b47b1cb28f7309e8543a83a3f6c61bf9b7d9121d2b087836b43e23", + "state": { + "depositToken": 0, + "blockNumber": 297318244, + "lastRebalancePrice": "639687", + "state": "2", + "currentTick": "-280578", + "currentPrice": "653523", + "twapSlow": "644438", + "twapFast": "653523", + "depositTokenBalance": "0", + "pairedTokenBalance": "40816", + "usedToken0": "3473739364633271170197", + "usedToken1": "9865660839", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280400" + }, + "limitPosition": { + "bottomTick": "-280400", + "topTick": "-279800" + } + } + }, + { + "transactionHash": "0x4efa7f2920864a718e52626ba4268704454bb125db0dc696de20aa97554a547c", + "state": { + "depositToken": 0, + "blockNumber": 298272629, + "lastRebalancePrice": "653523", + "state": "2", + "currentTick": "-280790", + "currentPrice": "639815", + "twapSlow": "640455", + "twapFast": "639815", + "depositTokenBalance": "0", + "pairedTokenBalance": "29779", + "usedToken0": "3635544734351114057771", + "usedToken1": "9763392813", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280600" + }, + "limitPosition": { + "bottomTick": "-280600", + "topTick": "-280000" + } + } + }, + { + "transactionHash": "0xf0a61519e6d17f196a1e7b18d4a659eca5ba343bf301103e82ae7c2b767a0679", + "state": { + "depositToken": 0, + "blockNumber": 299664997, + "lastRebalancePrice": "639815", + "state": "2", + "currentTick": "-281003", + "currentPrice": "626332", + "twapSlow": "630353", + "twapFast": "626332", + "depositTokenBalance": "0", + "pairedTokenBalance": "11762", + "usedToken0": "3801749953708427423631", + "usedToken1": "9661548230", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281000" + }, + "limitPosition": { + "bottomTick": "-281000", + "topTick": "-280200" + } + } + }, + { + "transactionHash": "0x5ef8ac629fa764af236cb4aba47ef7fcb65e04831fa2bb51d81596fbff22ff70", + "state": { + "depositToken": 0, + "blockNumber": 299733893, + "lastRebalancePrice": "626332", + "state": "2", + "currentTick": "-281233", + "currentPrice": "612091", + "twapSlow": "616329", + "twapFast": "612091", + "depositTokenBalance": "0", + "pairedTokenBalance": "48639", + "usedToken0": "3983873479590784230368", + "usedToken1": "9552621938", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281200" + }, + "limitPosition": { + "bottomTick": "-281200", + "topTick": "-280400" + } + } + }, + { + "transactionHash": "0xa466cbf7f66e35c0485c1cabfcca112b32b6a0b03882405c4f19e561ff0422cc", + "state": { + "depositToken": 0, + "blockNumber": 300169496, + "lastRebalancePrice": "612091", + "state": "2", + "currentTick": "-281061", + "currentPrice": "622710", + "twapSlow": "621590", + "twapFast": "622710", + "depositTokenBalance": "0", + "pairedTokenBalance": "59225", + "usedToken0": "3258095431194937633400", + "usedToken1": "10002212443", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-283200", + "topTick": "-280600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x08da6fbfaf5ca686106eac0335fa44f3475e5a82227e94b4bf52bf1ce044ab00", + "state": { + "depositToken": 0, + "blockNumber": 300191848, + "lastRebalancePrice": "622710", + "state": "1", + "currentTick": "-281061", + "currentPrice": "622710", + "twapSlow": "622710", + "twapFast": "622710", + "depositTokenBalance": "960094641", + "pairedTokenBalance": "34299", + "usedToken0": "3258942622665558809601", + "usedToken1": "10006361399", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-283200", + "topTick": "-280600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9f08bb26dd14e12592ad51938b5ca4473bdb87e79ec95d4a9cef7a2dfd4c5276", + "state": { + "depositToken": 0, + "blockNumber": 300213281, + "lastRebalancePrice": "622710", + "state": "1", + "currentTick": "-281061", + "currentPrice": "622710", + "twapSlow": "622710", + "twapFast": "622710", + "depositTokenBalance": "960094640", + "pairedTokenBalance": "34298", + "usedToken0": "3258942622665558809600", + "usedToken1": "10006361398", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-283200", + "topTick": "-280600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xccb2eb18f81b4b3006aeaa0026d5dab6bc06aaebcac8aa60dab8ebc8684db1ae", + "state": { + "depositToken": 0, + "blockNumber": 300228809, + "lastRebalancePrice": "622710", + "state": "1", + "currentTick": "-281077", + "currentPrice": "621714", + "twapSlow": "621901", + "twapFast": "621714", + "depositTokenBalance": "960094639", + "pairedTokenBalance": "34297", + "usedToken0": "3375739492569939609094", + "usedToken1": "9933686203", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-283200", + "topTick": "-280600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe974be16f0b1bdd3820a43d8bb7088e93b11d2ea96e818914db3670b9dd843f7", + "state": { + "depositToken": 0, + "blockNumber": 300244213, + "lastRebalancePrice": "621714", + "state": "1", + "currentTick": "-281077", + "currentPrice": "621714", + "twapSlow": "621714", + "twapFast": "621714", + "depositTokenBalance": "957585738", + "pairedTokenBalance": "39001", + "usedToken0": "3376683305660076019597", + "usedToken1": "9933686202", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-283200", + "topTick": "-280600" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb32e5206d6b137c29744910d1fd98e3436211271ebd2cc6888d558c0ded98393", + "state": { + "depositToken": 0, + "blockNumber": 300259642, + "lastRebalancePrice": "621714", + "state": "1", + "currentTick": "-281159", + "currentPrice": "616637", + "twapSlow": "618490", + "twapFast": "616637", + "depositTokenBalance": "957585737", + "pairedTokenBalance": "39000", + "usedToken0": "3961160254013366923073", + "usedToken1": "9571775756", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281000" + }, + "limitPosition": { + "bottomTick": "-281000", + "topTick": "-280400" + } + } + }, + { + "transactionHash": "0xd1c65f94e4099e054a586150a7747b3e2a50ca5fdc279e9a3db196220325f595", + "state": { + "depositToken": 0, + "blockNumber": 300853998, + "lastRebalancePrice": "616637", + "state": "2", + "currentTick": "-280955", + "currentPrice": "629345", + "twapSlow": "626645", + "twapFast": "629345", + "depositTokenBalance": "0", + "pairedTokenBalance": "37564", + "usedToken0": "3545108639399718759787", + "usedToken1": "9835226612", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-280800" + }, + "limitPosition": { + "bottomTick": "-280800", + "topTick": "-280200" + } + } + }, + { + "transactionHash": "0x17d36106ed8781e1c79a78a9b0b180927bd268c6b03c888db5c195a68a6bafa7", + "state": { + "depositToken": 0, + "blockNumber": 301726995, + "lastRebalancePrice": "629345", + "state": "2", + "currentTick": "-281166", + "currentPrice": "616206", + "twapSlow": "619047", + "twapFast": "616206", + "depositTokenBalance": "0", + "pairedTokenBalance": "10053", + "usedToken0": "3712174134668466043503", + "usedToken1": "9734866891", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281000" + }, + "limitPosition": { + "bottomTick": "-281000", + "topTick": "-280400" + } + } + }, + { + "transactionHash": "0xb37ffecaaac97232113914263e32de8a0055b71bc37ae7fc2efe02ef86d616ae", + "state": { + "depositToken": 0, + "blockNumber": 301847109, + "lastRebalancePrice": "616206", + "state": "2", + "currentTick": "-281378", + "currentPrice": "603281", + "twapSlow": "605759", + "twapFast": "603281", + "depositTokenBalance": "0", + "pairedTokenBalance": "40809", + "usedToken0": "3884045701629089467776", + "usedToken1": "9633615226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281200" + }, + "limitPosition": { + "bottomTick": "-281200", + "topTick": "-280600" + } + } + }, + { + "transactionHash": "0xb8249ec64a670c4db18efa2f5fa7e56ec22b7b0d097d746e2fca2027477f12c3", + "state": { + "depositToken": 0, + "blockNumber": 301947604, + "lastRebalancePrice": "603281", + "state": "2", + "currentTick": "-281655", + "currentPrice": "586800", + "twapSlow": "593765", + "twapFast": "586800", + "depositTokenBalance": "0", + "pairedTokenBalance": "31362", + "usedToken0": "4108364041537210482110", + "usedToken1": "9500948846", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281600" + }, + "limitPosition": { + "bottomTick": "-281600", + "topTick": "-280800" + } + } + }, + { + "transactionHash": "0xb195746334a415bd18c3bf7605755fb92b23551e6f083a69852f8b6abe9ce4d2", + "state": { + "depositToken": 0, + "blockNumber": 302002808, + "lastRebalancePrice": "586800", + "state": "2", + "currentTick": "-281876", + "currentPrice": "573974", + "twapSlow": "580497", + "twapFast": "573974", + "depositTokenBalance": "0", + "pairedTokenBalance": "53386", + "usedToken0": "4290017067990018762088", + "usedToken1": "9396565470", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-281800" + }, + "limitPosition": { + "bottomTick": "-281800", + "topTick": "-281000" + } + } + }, + { + "transactionHash": "0xd31569f2f661c13443e1094046a851f8a1f633a728cd1ab487e7e86d8253c191", + "state": { + "depositToken": 0, + "blockNumber": 302044238, + "lastRebalancePrice": "573974", + "state": "2", + "currentTick": "-282093", + "currentPrice": "561654", + "twapSlow": "566391", + "twapFast": "561654", + "depositTokenBalance": "0", + "pairedTokenBalance": "49999", + "usedToken0": "4470501142612751235685", + "usedToken1": "9294911693", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-282000" + }, + "limitPosition": { + "bottomTick": "-282000", + "topTick": "-281200" + } + } + }, + { + "transactionHash": "0x4bc624ab203ab3841fa82854e2536e8900891c7c5c37ac2fb72b3a96313a41ab", + "state": { + "depositToken": 0, + "blockNumber": 302105476, + "lastRebalancePrice": "561654", + "state": "2", + "currentTick": "-283129", + "currentPrice": "506382", + "twapSlow": "506432", + "twapFast": "506382", + "depositTokenBalance": "0", + "pairedTokenBalance": "95726", + "usedToken0": "5351581637004288651888", + "usedToken1": "8825793321", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-283000" + }, + "limitPosition": { + "bottomTick": "-283000", + "topTick": "-282200" + } + } + }, + { + "transactionHash": "0x29681f1d77e804b95e3fd26d2534d23b68f128df4b0a2eda7158c794726cab3b", + "state": { + "depositToken": 0, + "blockNumber": 302138889, + "lastRebalancePrice": "506382", + "state": "2", + "currentTick": "-282897", + "currentPrice": "518267", + "twapSlow": "513675", + "twapFast": "518267", + "depositTokenBalance": "0", + "pairedTokenBalance": "92801", + "usedToken0": "4565614871703934377665", + "usedToken1": "9243619438", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-282800" + }, + "limitPosition": { + "bottomTick": "-282800", + "topTick": "-282000" + } + } + }, + { + "transactionHash": "0x9cc147a814de79a287be68434a95d51ac65515901bb237f50a9b7d949d41d96b", + "state": { + "depositToken": 0, + "blockNumber": 302266415, + "lastRebalancePrice": "518267", + "state": "2", + "currentTick": "-282656", + "currentPrice": "530908", + "twapSlow": "529688", + "twapFast": "530908", + "depositTokenBalance": "0", + "pairedTokenBalance": "121760", + "usedToken0": "3656453576683577408089", + "usedToken1": "9725648479", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6f4cc5dd8776f2bb3d3f41827cc26dfaa3cab26f1086ba5e897c215e6de84f72", + "state": { + "depositToken": 0, + "blockNumber": 302286657, + "lastRebalancePrice": "530908", + "state": "1", + "currentTick": "-282656", + "currentPrice": "530908", + "twapSlow": "530908", + "twapFast": "530908", + "depositTokenBalance": "958659422", + "pairedTokenBalance": "44009", + "usedToken0": "3657497093641034907796", + "usedToken1": "9730056127", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc51d3d3ee9fb4e22b2976ee8408bc568674a2aee3ad283045f22f9d03d840b2c", + "state": { + "depositToken": 0, + "blockNumber": 302302280, + "lastRebalancePrice": "530908", + "state": "1", + "currentTick": "-282608", + "currentPrice": "533462", + "twapSlow": "531705", + "twapFast": "533462", + "depositTokenBalance": "958659421", + "pairedTokenBalance": "44008", + "usedToken0": "3265767949720794219884", + "usedToken1": "9938544034", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe283c265cac39cc06f49b3df351696f5d5e203a3b960ee6494217ec7a970a924", + "state": { + "depositToken": 0, + "blockNumber": 302317901, + "lastRebalancePrice": "533462", + "state": "1", + "currentTick": "-282569", + "currentPrice": "535547", + "twapSlow": "534798", + "twapFast": "535547", + "depositTokenBalance": "960344174", + "pairedTokenBalance": "44007", + "usedToken0": "2955800120832722304513", + "usedToken1": "10105916861", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7d6b62d2f703021af2bfe319c8878331f51ae7ccce53c25e23d4ed06ce7bb667", + "state": { + "depositToken": 0, + "blockNumber": 302333495, + "lastRebalancePrice": "535547", + "state": "1", + "currentTick": "-282569", + "currentPrice": "535547", + "twapSlow": "535547", + "twapFast": "535547", + "depositTokenBalance": "961683069", + "pairedTokenBalance": "68972", + "usedToken0": "2955800120832722304512", + "usedToken1": "10107255756", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x95673837312a11ab345bd56869ec79804a2c110552243bad2a8c4bc8a27823ed", + "state": { + "depositToken": 0, + "blockNumber": 302355339, + "lastRebalancePrice": "535547", + "state": "1", + "currentTick": "-282531", + "currentPrice": "537586", + "twapSlow": "537209", + "twapFast": "537586", + "depositTokenBalance": "961683068", + "pairedTokenBalance": "68971", + "usedToken0": "2643922239410896144031", + "usedToken1": "10274606853", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcc78c203c73be9c6388511da8052e2a7f487f7f47a84042034e34e4493bc1e08", + "state": { + "depositToken": 0, + "blockNumber": 302370831, + "lastRebalancePrice": "537586", + "state": "1", + "currentTick": "-282529", + "currentPrice": "537693", + "twapSlow": "537639", + "twapFast": "537693", + "depositTokenBalance": "1741841341", + "pairedTokenBalance": "1975", + "usedToken0": "2626887975296615234270", + "usedToken1": "10285118252", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7eb8af47f634df9bb8ddb66e9003850eebab7e1dc7a6382b57c69c8acc5de4e6", + "state": { + "depositToken": 0, + "blockNumber": 302386368, + "lastRebalancePrice": "537693", + "state": "1", + "currentTick": "-282529", + "currentPrice": "537693", + "twapSlow": "537693", + "twapFast": "537693", + "depositTokenBalance": "1741915352", + "pairedTokenBalance": "46350", + "usedToken0": "2626887975296615234269", + "usedToken1": "10285192263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa67474c0d14d6a8c40396476071e81e39702b7a87fc9e9cd0756d2c3d118c722", + "state": { + "depositToken": 0, + "blockNumber": 302401910, + "lastRebalancePrice": "537693", + "state": "1", + "currentTick": "-282529", + "currentPrice": "537693", + "twapSlow": "537693", + "twapFast": "537693", + "depositTokenBalance": "1741915351", + "pairedTokenBalance": "46349", + "usedToken0": "2626887975296615234268", + "usedToken1": "10285192262", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaf0213c321499c66b6e5475538a037b094c1b1928ac7e10512176b011865f626", + "state": { + "depositToken": 0, + "blockNumber": 302417390, + "lastRebalancePrice": "537693", + "state": "1", + "currentTick": "-282533", + "currentPrice": "537478", + "twapSlow": "537532", + "twapFast": "537478", + "depositTokenBalance": "1741915350", + "pairedTokenBalance": "46348", + "usedToken0": "2660672845536571404473", + "usedToken1": "10267028530", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0667da810ca419f654314e52da709150bce422f0c0b82ff5d3a720ee3f207bcb", + "state": { + "depositToken": 0, + "blockNumber": 302432939, + "lastRebalancePrice": "537478", + "state": "1", + "currentTick": "-282535", + "currentPrice": "537371", + "twapSlow": "537371", + "twapFast": "537371", + "depositTokenBalance": "1741040596", + "pairedTokenBalance": "72418", + "usedToken0": "2682795559163990663183", + "usedToken1": "10255285538", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8770dc6ff282855576cae09a0bce031d2076d79a95d3ce97495ce37331a8bef6", + "state": { + "depositToken": 0, + "blockNumber": 302474483, + "lastRebalancePrice": "537371", + "state": "1", + "currentTick": "-282599", + "currentPrice": "533943", + "twapSlow": "533943", + "twapFast": "533943", + "depositTokenBalance": "1740480246", + "pairedTokenBalance": "10095", + "usedToken0": "3197812014369639024441", + "usedToken1": "9979504358", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdf06bb29119c7c250c2ba5bd37641ca0409149a4ba315206ab356249de82c7bf", + "state": { + "depositToken": 0, + "blockNumber": 302490088, + "lastRebalancePrice": "533943", + "state": "1", + "currentTick": "-282600", + "currentPrice": "533889", + "twapSlow": "533889", + "twapFast": "533889", + "depositTokenBalance": "949810849", + "pairedTokenBalance": "89078", + "usedToken0": "3205535474386529742994", + "usedToken1": "9977601818", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xff193f79c7e565bd4ebe6ce007eef4e0c683c299b8a6593b1f3c36a3046cf216", + "state": { + "depositToken": 0, + "blockNumber": 302505695, + "lastRebalancePrice": "533889", + "state": "1", + "currentTick": "-282600", + "currentPrice": "533889", + "twapSlow": "533889", + "twapFast": "533889", + "depositTokenBalance": "949729758", + "pairedTokenBalance": "4363", + "usedToken0": "3210448236248043765386", + "usedToken1": "9974994156", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf8190bb9156527e2c98486e37158687ac6c6f3aed2d0637dc3824834ded39b0d", + "state": { + "depositToken": 0, + "blockNumber": 302521269, + "lastRebalancePrice": "533889", + "state": "1", + "currentTick": "-282600", + "currentPrice": "533889", + "twapSlow": "533889", + "twapFast": "533889", + "depositTokenBalance": "949618808", + "pairedTokenBalance": "62333", + "usedToken0": "3210487702662831125121", + "usedToken1": "9974994155", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x21f9fe3cf5884a86923cc133e8997911b00f8edd9b13bd063982c9cc3120c2cc", + "state": { + "depositToken": 0, + "blockNumber": 302536862, + "lastRebalancePrice": "533889", + "state": "1", + "currentTick": "-282595", + "currentPrice": "534156", + "twapSlow": "534049", + "twapFast": "534156", + "depositTokenBalance": "949618807", + "pairedTokenBalance": "62332", + "usedToken0": "3170124925884628398097", + "usedToken1": "9996549465", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf68fb663e61fcd72b1ef8a0153d1f3f16e176eddc96443f4483a113f0bded0fc", + "state": { + "depositToken": 0, + "blockNumber": 302552929, + "lastRebalancePrice": "534156", + "state": "1", + "currentTick": "-282587", + "currentPrice": "534584", + "twapSlow": "534316", + "twapFast": "534584", + "depositTokenBalance": "949792990", + "pairedTokenBalance": "8858", + "usedToken0": "3101780765852535394521", + "usedToken1": "10033246586", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x90ca3d3b4e77f1a29e4cdec2ac5d18cb6d6ddecc75b6652cc178928d7823d852", + "state": { + "depositToken": 0, + "blockNumber": 302569462, + "lastRebalancePrice": "534584", + "state": "1", + "currentTick": "-282583", + "currentPrice": "534798", + "twapSlow": "534744", + "twapFast": "534798", + "depositTokenBalance": "950088125", + "pairedTokenBalance": "61177", + "usedToken0": "3072160655055670667478", + "usedToken1": "10049380194", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x11ee30ff223e57cdc7272d7dc38b9a97ebef9580cda9198739b0b7b43f4775f5", + "state": { + "depositToken": 0, + "blockNumber": 302613951, + "lastRebalancePrice": "534798", + "state": "1", + "currentTick": "-282583", + "currentPrice": "534798", + "twapSlow": "534798", + "twapFast": "534798", + "depositTokenBalance": "950216112", + "pairedTokenBalance": "87087", + "usedToken0": "3072160655055670667477", + "usedToken1": "10049508181", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf80074149093716c627de8bdd9f31f9c376c3cde45a59cdbd6e02f1011dd302c", + "state": { + "depositToken": 0, + "blockNumber": 302629537, + "lastRebalancePrice": "534798", + "state": "1", + "currentTick": "-282583", + "currentPrice": "534798", + "twapSlow": "534798", + "twapFast": "534798", + "depositTokenBalance": "950216111", + "pairedTokenBalance": "87086", + "usedToken0": "3072160655055670667476", + "usedToken1": "10049508180", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe5c3e7af7786926370312cf99f80439066b4ca3d47e62f4a68cba9cbc73f0718", + "state": { + "depositToken": 0, + "blockNumber": 302645064, + "lastRebalancePrice": "534798", + "state": "1", + "currentTick": "-282575", + "currentPrice": "535226", + "twapSlow": "534798", + "twapFast": "535172", + "depositTokenBalance": "950216110", + "pairedTokenBalance": "87085", + "usedToken0": "3006567515878880213331", + "usedToken1": "10084602764", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcd3219227f402e5ea4a203bb05de78eddda1098173aa4702d8f582aa9e956551", + "state": { + "depositToken": 0, + "blockNumber": 302670532, + "lastRebalancePrice": "535226", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534798", + "twapFast": "534103", + "depositTokenBalance": "950499703", + "pairedTokenBalance": "36370", + "usedToken0": "3179195179922144765229", + "usedToken1": "9992585554", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xae936b2541ba86ae6f61248f14f990a00fb03b14dad37d5ece1208d6344ccd1f", + "state": { + "depositToken": 0, + "blockNumber": 302701343, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282607", + "currentPrice": "533516", + "twapSlow": "533516", + "twapFast": "533516", + "depositTokenBalance": "945902400", + "pairedTokenBalance": "45908", + "usedToken0": "3268782938095070044090", + "usedToken1": "9945797844", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc9d87cd92cb3d54ade82105aed5ed82db9ac3fbc060d5de3441f563918dc0de1", + "state": { + "depositToken": 0, + "blockNumber": 302725180, + "lastRebalancePrice": "533516", + "state": "1", + "currentTick": "-282604", + "currentPrice": "533676", + "twapSlow": "533676", + "twapFast": "533676", + "depositTokenBalance": "943946286", + "pairedTokenBalance": "68782", + "usedToken0": "3245920401071953853181", + "usedToken1": "9958376675", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8c888dc816a5a2b8c227e99a6f7be04ed3b33d628b12f40b05fcbc4018e09d8a", + "state": { + "depositToken": 0, + "blockNumber": 302770608, + "lastRebalancePrice": "533676", + "state": "1", + "currentTick": "-282602", + "currentPrice": "533782", + "twapSlow": "533782", + "twapFast": "533782", + "depositTokenBalance": "944047933", + "pairedTokenBalance": "41425", + "usedToken0": "3224503958191245903839", + "usedToken1": "9969909554", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8a42a0f58922ac4183bad293073eb13f2c2d4e0d03b92bacc7b71674a444f98a", + "state": { + "depositToken": 0, + "blockNumber": 302785905, + "lastRebalancePrice": "533782", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534049", + "twapFast": "534103", + "depositTokenBalance": "944140305", + "pairedTokenBalance": "41424", + "usedToken0": "3176083951533012959428", + "usedToken1": "9995857688", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfe1fe0098d8d64f42bf0838215dda9f4db128aea95f567d45989e6f38290b924", + "state": { + "depositToken": 0, + "blockNumber": 302801380, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "942663707", + "pairedTokenBalance": "61423", + "usedToken0": "3176811880817824688099", + "usedToken1": "9996455661", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6a751ad4957c814062a4d174253b40e80fe8cd161a8bcf37a238b2c7a6ef58de", + "state": { + "depositToken": 0, + "blockNumber": 302840738, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "942663706", + "pairedTokenBalance": "61422", + "usedToken0": "3176811880817824688098", + "usedToken1": "9996455660", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8c4414b637d049e88abb556d6abdb83abd35cb3c9f9c1ac7d61864f528e5ee4c", + "state": { + "depositToken": 0, + "blockNumber": 302874028, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282590", + "currentPrice": "534423", + "twapSlow": "534156", + "twapFast": "534423", + "depositTokenBalance": "942663705", + "pairedTokenBalance": "61421", + "usedToken0": "3130412790980459689895", + "usedToken1": "10021246746", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3a8e98105b490c48ca1bd4631b985db8b57217b30434307a57d8061bf6a18d8a", + "state": { + "depositToken": 0, + "blockNumber": 304654110, + "lastRebalancePrice": "534423", + "state": "1", + "currentTick": "-282645", + "currentPrice": "531492", + "twapSlow": "531492", + "twapFast": "531492", + "depositTokenBalance": "942864037", + "pairedTokenBalance": "61420", + "usedToken0": "3574463076412869740910", + "usedToken1": "9784770061", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2d79904641fb3e7543b7be6ded5a3e06dc015e97f92d96c4ba7bba42d949a4ca", + "state": { + "depositToken": 0, + "blockNumber": 304669601, + "lastRebalancePrice": "531492", + "state": "1", + "currentTick": "-282642", + "currentPrice": "531652", + "twapSlow": "531599", + "twapFast": "531652", + "depositTokenBalance": "894787378", + "pairedTokenBalance": "47312", + "usedToken0": "3573776011266487573783", + "usedToken1": "9808455431", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x01d65a6ecc90f9c807e78a9358ddba0e7ae755d036ba0037d63be0cbe6b0a96b", + "state": { + "depositToken": 0, + "blockNumber": 304685100, + "lastRebalancePrice": "531652", + "state": "1", + "currentTick": "-282628", + "currentPrice": "532396", + "twapSlow": "532077", + "twapFast": "532396", + "depositTokenBalance": "894892389", + "pairedTokenBalance": "17398", + "usedToken0": "3464435002517986107499", + "usedToken1": "9866735956", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x84d00bf24eb634c74f3d9a9da044161a496483bee4a03e35ed4f2dc71a44f7b7", + "state": { + "depositToken": 0, + "blockNumber": 304700558, + "lastRebalancePrice": "532396", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "532609", + "twapFast": "532823", + "depositTokenBalance": "895362493", + "pairedTokenBalance": "75392", + "usedToken0": "3356594919323844167800", + "usedToken1": "9924659153", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xad6e2063b60af6d7942f0be78073cb821dfef7f03849109d2468c48a53fcb22e", + "state": { + "depositToken": 0, + "blockNumber": 304715996, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "895826760", + "pairedTokenBalance": "19200", + "usedToken0": "3356594919323844167799", + "usedToken1": "9925123420", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x014dc048b313892bce395f112d4b5ca71f1da68be6cfaa7024e96f64a6eae641", + "state": { + "depositToken": 0, + "blockNumber": 304731474, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "895826759", + "pairedTokenBalance": "19199", + "usedToken0": "3356594919323844167798", + "usedToken1": "9925123419", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x25087c8089326cc8f68cf9c66e07810ffddda1214e2f7728eaeeae4c28db1e1c", + "state": { + "depositToken": 0, + "blockNumber": 304746791, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "895826758", + "pairedTokenBalance": "19198", + "usedToken0": "3356594919323844167797", + "usedToken1": "9925123418", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x794c4218f15d4414195ee7eaf779cf721ec435ebab26d8819c8da4cc4aff1b63", + "state": { + "depositToken": 0, + "blockNumber": 304762057, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "895826757", + "pairedTokenBalance": "19197", + "usedToken0": "3356594919323844167796", + "usedToken1": "9925123417", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcca70136482151badc41df3d888be4f54d56d9f6b7fad9315b4bd0fc0b1db8f5", + "state": { + "depositToken": 0, + "blockNumber": 304777331, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282585", + "currentPrice": "534691", + "twapSlow": "533089", + "twapFast": "533462", + "depositTokenBalance": "895826756", + "pairedTokenBalance": "19196", + "usedToken0": "3114706857387789616154", + "usedToken1": "10054268015", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0b6462f295c7c9862f9f8ecb99169f0cfbdb74258ea1eff754addae5ffc2760e", + "state": { + "depositToken": 0, + "blockNumber": 304792817, + "lastRebalancePrice": "534691", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "896870349", + "pairedTokenBalance": "71336", + "usedToken0": "3018105533287366564053", + "usedToken1": "10106994193", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6a4c1dc1a2c3bdd5115cebbf4c8281a33d8b16ccb6be7a941b60c9dc73763347", + "state": { + "depositToken": 0, + "blockNumber": 304808319, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287985", + "pairedTokenBalance": "46073", + "usedToken0": "3018105533287366564052", + "usedToken1": "10107411829", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0b3bb55f2bac4388d8f4d3012bbd75764c1d327cd64b5aeb1e536969c5e32f8f", + "state": { + "depositToken": 0, + "blockNumber": 304823799, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287984", + "pairedTokenBalance": "46072", + "usedToken0": "3018105533287366564051", + "usedToken1": "10107411828", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x854375518bafbf9c3bcc42fda14d30e78b717d838cb9b6d833eca77cef0f6408", + "state": { + "depositToken": 0, + "blockNumber": 304839271, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287983", + "pairedTokenBalance": "46071", + "usedToken0": "3018105533287366564050", + "usedToken1": "10107411827", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5440df63fca0c2245a6312d33d6aa0d1af94b348e54f6f27c58661b29ae0dee7", + "state": { + "depositToken": 0, + "blockNumber": 304854786, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287982", + "pairedTokenBalance": "46070", + "usedToken0": "3018105533287366564049", + "usedToken1": "10107411826", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x19e9e832c4ae3786f720db25575f60537b1659978b050906bbe37615befbac82", + "state": { + "depositToken": 0, + "blockNumber": 304870330, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287981", + "pairedTokenBalance": "46069", + "usedToken0": "3018105533287366564048", + "usedToken1": "10107411825", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4b2196c52c7dc35b036d5c0636d098827f4407bb4df5c0bc0da31de2f26d60e8", + "state": { + "depositToken": 0, + "blockNumber": 304885874, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287980", + "pairedTokenBalance": "46068", + "usedToken0": "3018105533287366564047", + "usedToken1": "10107411824", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2d3dc5cf9fa2bfcb94c29435c946119e003be5428d1acfa88774ce844b782a4b", + "state": { + "depositToken": 0, + "blockNumber": 304901428, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287979", + "pairedTokenBalance": "46067", + "usedToken0": "3018105533287366564046", + "usedToken1": "10107411823", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfb2dd6b9eeaf6dc6ee650fcd2f278bc9b93dcfe405c4f27d1d67fd2e04dbbc27", + "state": { + "depositToken": 0, + "blockNumber": 304916974, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287978", + "pairedTokenBalance": "46066", + "usedToken0": "3018105533287366564045", + "usedToken1": "10107411822", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x418eea5d70ea6baa735acbb3525a185e3dcbacd5117f1ef56d83479d68fe2a8b", + "state": { + "depositToken": 0, + "blockNumber": 304932496, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287977", + "pairedTokenBalance": "46065", + "usedToken0": "3018105533287366564044", + "usedToken1": "10107411821", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x105a16189522dc7f24b4c81cf98ba4975c497961c201d414100503c9290aad0b", + "state": { + "depositToken": 0, + "blockNumber": 304948071, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287976", + "pairedTokenBalance": "46064", + "usedToken0": "3018105533287366564043", + "usedToken1": "10107411820", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2015e8d54b7b697ed0fcc3840fc30d360cbe72b9f8fe7dc6e5eda5a46e9308b0", + "state": { + "depositToken": 0, + "blockNumber": 304963627, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282574", + "currentPrice": "535279", + "twapSlow": "535279", + "twapFast": "535279", + "depositTokenBalance": "897287975", + "pairedTokenBalance": "46063", + "usedToken0": "3018105533287366564042", + "usedToken1": "10107411819", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd1e71dc3b467a6b800f4b9c5129a857f7b70534d30e8c023a6aa93c8d14669b5", + "state": { + "depositToken": 0, + "blockNumber": 304979334, + "lastRebalancePrice": "535279", + "state": "1", + "currentTick": "-282581", + "currentPrice": "534905", + "twapSlow": "534958", + "twapFast": "534905", + "depositTokenBalance": "897287974", + "pairedTokenBalance": "46062", + "usedToken0": "3078645399631904548968", + "usedToken1": "10075015290", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x755c0237eaa984b741143ff73929b8aa01e9d733fc6b790ad4c525bb696ef441", + "state": { + "depositToken": 0, + "blockNumber": 304994920, + "lastRebalancePrice": "534905", + "state": "1", + "currentTick": "-282581", + "currentPrice": "534905", + "twapSlow": "534905", + "twapFast": "534905", + "depositTokenBalance": "895829590", + "pairedTokenBalance": "44036", + "usedToken0": "3079134610673072532687", + "usedToken1": "10075015289", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x83b690bc9caf1440a11baf2f0df16034e842e6d58543cd8f2150437820138971", + "state": { + "depositToken": 0, + "blockNumber": 305010547, + "lastRebalancePrice": "534905", + "state": "1", + "currentTick": "-282581", + "currentPrice": "534905", + "twapSlow": "534905", + "twapFast": "534905", + "depositTokenBalance": "895829589", + "pairedTokenBalance": "44035", + "usedToken0": "3079134610673072532686", + "usedToken1": "10075015288", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x72c2964e353efe47bea3ac6f0131f4030913a6ee9d2bb5792b724eed5e6b4b37", + "state": { + "depositToken": 0, + "blockNumber": 305026071, + "lastRebalancePrice": "534905", + "state": "1", + "currentTick": "-282581", + "currentPrice": "534905", + "twapSlow": "534905", + "twapFast": "534905", + "depositTokenBalance": "895829588", + "pairedTokenBalance": "44034", + "usedToken0": "3079134610673072532685", + "usedToken1": "10075015287", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9ffeb9b4aa5e939c0af6287e2e80e7eeffc66ca9b0b3660a6771faec2141817d", + "state": { + "depositToken": 0, + "blockNumber": 305041629, + "lastRebalancePrice": "534905", + "state": "1", + "currentTick": "-282584", + "currentPrice": "534744", + "twapSlow": "534798", + "twapFast": "534744", + "depositTokenBalance": "895829587", + "pairedTokenBalance": "44033", + "usedToken0": "3102066821848589659078", + "usedToken1": "10062749906", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdc7ad05cdfaeb667a985d4d6d80cd2aea8184dc25335bd79c2a49cf8efd0f5a6", + "state": { + "depositToken": 0, + "blockNumber": 305057174, + "lastRebalancePrice": "534744", + "state": "1", + "currentTick": "-282588", + "currentPrice": "534530", + "twapSlow": "534530", + "twapFast": "534530", + "depositTokenBalance": "895281974", + "pairedTokenBalance": "16899", + "usedToken0": "3136539999276483429920", + "usedToken1": "10044417331", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x39608ae0f22ab762795e1203d72bc06869c2ead0672ddfbb778d9167c23f3bec", + "state": { + "depositToken": 0, + "blockNumber": 305072651, + "lastRebalancePrice": "534530", + "state": "1", + "currentTick": "-282588", + "currentPrice": "534530", + "twapSlow": "534530", + "twapFast": "534530", + "depositTokenBalance": "894473763", + "pairedTokenBalance": "59285", + "usedToken0": "3136817072946224972181", + "usedToken1": "10044417330", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc3b4a2f1b910b4d01c38db2592d7d6ee91c7879c8ef681a4c8cfd5844037921b", + "state": { + "depositToken": 0, + "blockNumber": 305088047, + "lastRebalancePrice": "534530", + "state": "1", + "currentTick": "-282588", + "currentPrice": "534530", + "twapSlow": "534530", + "twapFast": "534530", + "depositTokenBalance": "894473762", + "pairedTokenBalance": "59284", + "usedToken0": "3136817072946224972180", + "usedToken1": "10044417329", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xea90b34c6645511749ceea80cf48626ecb593cc75972d51d3cb6a69a85c502b8", + "state": { + "depositToken": 0, + "blockNumber": 305103318, + "lastRebalancePrice": "534530", + "state": "1", + "currentTick": "-282588", + "currentPrice": "534530", + "twapSlow": "534530", + "twapFast": "534530", + "depositTokenBalance": "894473761", + "pairedTokenBalance": "59283", + "usedToken0": "3136817072946224972179", + "usedToken1": "10044417328", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8c0b98cef8977456c4927b2b4d8dbb2602911934637bf7f8a868338392c24820", + "state": { + "depositToken": 0, + "blockNumber": 305118389, + "lastRebalancePrice": "534530", + "state": "1", + "currentTick": "-282588", + "currentPrice": "534530", + "twapSlow": "534530", + "twapFast": "534530", + "depositTokenBalance": "894473760", + "pairedTokenBalance": "59282", + "usedToken0": "3136817072946224972178", + "usedToken1": "10044417327", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe8d422293937714bff00448341629865d29649d22c2a0e732b30f623944e30ff", + "state": { + "depositToken": 0, + "blockNumber": 305133725, + "lastRebalancePrice": "534530", + "state": "1", + "currentTick": "-282590", + "currentPrice": "534423", + "twapSlow": "534423", + "twapFast": "534423", + "depositTokenBalance": "894473759", + "pairedTokenBalance": "59281", + "usedToken0": "3150410279935714961487", + "usedToken1": "10037151622", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8674174db44fb20ae56b8cc6bd2b0cc49b52259375ca8998e52d7ef551add6f5", + "state": { + "depositToken": 0, + "blockNumber": 305149046, + "lastRebalancePrice": "534423", + "state": "1", + "currentTick": "-282590", + "currentPrice": "534423", + "twapSlow": "534423", + "twapFast": "534423", + "depositTokenBalance": "894154984", + "pairedTokenBalance": "55746", + "usedToken0": "3150520124032599729076", + "usedToken1": "10037151621", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1ce9c72055336c30c7a405d3a316db441fd5d932f5f15e00626b0979dcfd1c36", + "state": { + "depositToken": 0, + "blockNumber": 305164477, + "lastRebalancePrice": "534423", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "894154983", + "pairedTokenBalance": "55745", + "usedToken0": "3176481750810804346021", + "usedToken1": "10023278231", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe71d997a351fe67af52396a9eff7d9ab8d27e1f9d6e45363846ae6ccc0481e34", + "state": { + "depositToken": 0, + "blockNumber": 305179811, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552049", + "pairedTokenBalance": "29810", + "usedToken0": "3176691541734264585350", + "usedToken1": "10023278230", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xeb89bbb19c5de54718281459ab20f76c8aef5bb9b0ec00427d76a9dc8c4e5500", + "state": { + "depositToken": 0, + "blockNumber": 305195189, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552048", + "pairedTokenBalance": "29809", + "usedToken0": "3176691541734264585349", + "usedToken1": "10023278229", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x14c9ed5c16fe6ff45a3aa0e689746e073bdb3b6dd11b6fa228621d5284d53d19", + "state": { + "depositToken": 0, + "blockNumber": 305210706, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552047", + "pairedTokenBalance": "29808", + "usedToken0": "3176691541734264585348", + "usedToken1": "10023278228", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe336429c68c608e9f321112c2f4ba18c97524ab842f3872220d877ab4821672f", + "state": { + "depositToken": 0, + "blockNumber": 305226202, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552046", + "pairedTokenBalance": "29807", + "usedToken0": "3176691541734264585347", + "usedToken1": "10023278227", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x25b1aa20bdccbde9afefb51669fc0f11bb44f4d9b6ca92899473bbf5542e83d6", + "state": { + "depositToken": 0, + "blockNumber": 305241679, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552045", + "pairedTokenBalance": "29806", + "usedToken0": "3176691541734264585346", + "usedToken1": "10023278226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7007fb50460fbbe8a296a113e8ea629b42f80dfe882b6f73e99d046b03cbf28a", + "state": { + "depositToken": 0, + "blockNumber": 305257141, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552044", + "pairedTokenBalance": "29805", + "usedToken0": "3176691541734264585345", + "usedToken1": "10023278225", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa3855f74b89e337c77b455919903650563d2277dfde49f599226e1ee7a1add2c", + "state": { + "depositToken": 0, + "blockNumber": 305272605, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552043", + "pairedTokenBalance": "29804", + "usedToken0": "3176691541734264585344", + "usedToken1": "10023278224", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x917ab7562bad387ee399c664dc1c086ba0e98df2c044a1292c78d23868b7bc7d", + "state": { + "depositToken": 0, + "blockNumber": 305288218, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552042", + "pairedTokenBalance": "29803", + "usedToken0": "3176691541734264585343", + "usedToken1": "10023278223", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x49ebf69291b7001e6e8bb09c59e1065731f31b2be6014c389e72aaf3a1f3d995", + "state": { + "depositToken": 0, + "blockNumber": 305303830, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282593", + "currentPrice": "534263", + "twapSlow": "534263", + "twapFast": "534263", + "depositTokenBalance": "893552041", + "pairedTokenBalance": "29802", + "usedToken0": "3176691541734264585342", + "usedToken1": "10023278222", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcac587d816adc96375c101471d96286a46f5222a26ae8c7c363953876e59cc20", + "state": { + "depositToken": 0, + "blockNumber": 305319509, + "lastRebalancePrice": "534263", + "state": "1", + "currentTick": "-282599", + "currentPrice": "533943", + "twapSlow": "534210", + "twapFast": "533943", + "depositTokenBalance": "893552040", + "pairedTokenBalance": "29801", + "usedToken0": "3226843244033556968630", + "usedToken1": "9996490596", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3529aac8ced89c83d622988bcc6be4c2dd1ad3bc74c214a1469a9cee930fa42c", + "state": { + "depositToken": 0, + "blockNumber": 305335146, + "lastRebalancePrice": "533943", + "state": "1", + "currentTick": "-282599", + "currentPrice": "533943", + "twapSlow": "533943", + "twapFast": "533943", + "depositTokenBalance": "892408781", + "pairedTokenBalance": "89550", + "usedToken0": "3227248510314763371729", + "usedToken1": "9996490595", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0a2b743b9e63e3006665374933ac1c67774110614865f9b4d5532d7e48a1c5ea", + "state": { + "depositToken": 0, + "blockNumber": 305350658, + "lastRebalancePrice": "533943", + "state": "1", + "currentTick": "-282599", + "currentPrice": "533943", + "twapSlow": "533943", + "twapFast": "533943", + "depositTokenBalance": "892408780", + "pairedTokenBalance": "89549", + "usedToken0": "3227248510314763371728", + "usedToken1": "9996490594", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x606af58d9e2ccc1f797e6abc50c0d72b7b932fbc77f7205d7ffc0afc2aa1c230", + "state": { + "depositToken": 0, + "blockNumber": 305366217, + "lastRebalancePrice": "533943", + "state": "1", + "currentTick": "-282592", + "currentPrice": "534316", + "twapSlow": "534210", + "twapFast": "534316", + "depositTokenBalance": "892408779", + "pairedTokenBalance": "89548", + "usedToken0": "3169595374431649779623", + "usedToken1": "10027286385", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x93ce624c79b7637120084aedf720fb07201484006d03453c4904905d070c96b6", + "state": { + "depositToken": 0, + "blockNumber": 305381631, + "lastRebalancePrice": "534316", + "state": "1", + "currentTick": "-282592", + "currentPrice": "534316", + "twapSlow": "534316", + "twapFast": "534316", + "depositTokenBalance": "892657634", + "pairedTokenBalance": "10000", + "usedToken0": "3169595374431649779622", + "usedToken1": "10027535240", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x40101e181f24bb8e702b3d82745a1d55528f6bfbb9e3d15610c390e3140fc6a0", + "state": { + "depositToken": 0, + "blockNumber": 305397092, + "lastRebalancePrice": "534316", + "state": "1", + "currentTick": "-282591", + "currentPrice": "534370", + "twapSlow": "534316", + "twapFast": "534370", + "depositTokenBalance": "892657633", + "pairedTokenBalance": "9999", + "usedToken0": "3163039609313299238528", + "usedToken1": "10031038418", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x47940d5250c1aedb054e8643cc0a8c6db551d314e3f89dd792902299002e8082", + "state": { + "depositToken": 0, + "blockNumber": 305412604, + "lastRebalancePrice": "534370", + "state": "1", + "currentTick": "-282590", + "currentPrice": "534423", + "twapSlow": "534370", + "twapFast": "534423", + "depositTokenBalance": "892685940", + "pairedTokenBalance": "9998", + "usedToken0": "3154406217393297561418", + "usedToken1": "10035680546", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x897733a5d401c1d938424c2b280b7877ec69c5d25a40d8ac6abaf7efebaf9ad3", + "state": { + "depositToken": 0, + "blockNumber": 305428003, + "lastRebalancePrice": "534423", + "state": "1", + "currentTick": "-282590", + "currentPrice": "534423", + "twapSlow": "534423", + "twapFast": "534423", + "depositTokenBalance": "892723223", + "pairedTokenBalance": "9997", + "usedToken0": "3154406217393297561417", + "usedToken1": "10035717829", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x402d98ebf3eddc50668dc58a0d62c81a1a52197d9d4cb525b0f9bff8142fa042", + "state": { + "depositToken": 0, + "blockNumber": 305443540, + "lastRebalancePrice": "534423", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535493", + "twapFast": "535654", + "depositTokenBalance": "892723222", + "pairedTokenBalance": "9996", + "usedToken0": "2961935356573967018428", + "usedToken1": "10138703952", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2be7d5b07f6a742df0072801901aac4c05aab3b093143f737957a0bf2b808374", + "state": { + "depositToken": 0, + "blockNumber": 305458952, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535654", + "twapFast": "535654", + "depositTokenBalance": "1679888570", + "pairedTokenBalance": "34774", + "usedToken0": "2961935356573967018427", + "usedToken1": "10139536163", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7d4397ab4b6a95633fb04e1f3d2b0b5d7ef4400e862452794b61be84b44b5011", + "state": { + "depositToken": 0, + "blockNumber": 305474268, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535654", + "twapFast": "535654", + "depositTokenBalance": "1679888569", + "pairedTokenBalance": "34773", + "usedToken0": "2961935356573967018426", + "usedToken1": "10139536162", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4f5e80b970ca577084522490d91b0182ccc4cac2d41ba85f4d3b7f85cd2c228d", + "state": { + "depositToken": 0, + "blockNumber": 305489603, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535654", + "twapFast": "535654", + "depositTokenBalance": "1679888568", + "pairedTokenBalance": "34772", + "usedToken0": "2961935356573967018425", + "usedToken1": "10139536161", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x07ec270903547882b6c83dbd5a9b83c922baddba466d492085f57c64cc4fb943", + "state": { + "depositToken": 0, + "blockNumber": 305505017, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535654", + "twapFast": "535654", + "depositTokenBalance": "1679888567", + "pairedTokenBalance": "34771", + "usedToken0": "2961935356573967018424", + "usedToken1": "10139536160", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9cfae79f9deaf50eb6cbd16a592c00c5e794d88c5008ba21949322c4ef077141", + "state": { + "depositToken": 0, + "blockNumber": 305520399, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535654", + "twapFast": "535654", + "depositTokenBalance": "1679888566", + "pairedTokenBalance": "34770", + "usedToken0": "2961935356573967018423", + "usedToken1": "10139536159", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x80d311536fcf14070853257f525a68af7d19ea3b9797ba2e01061bc68eeeb7d5", + "state": { + "depositToken": 0, + "blockNumber": 305535847, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282567", + "currentPrice": "535654", + "twapSlow": "535654", + "twapFast": "535654", + "depositTokenBalance": "1679888565", + "pairedTokenBalance": "34769", + "usedToken0": "2961935356573967018422", + "usedToken1": "10139536158", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe1b891f09081997350575859123ac1be7ab2648e8db79e2f11f7edd13870383d", + "state": { + "depositToken": 0, + "blockNumber": 305551374, + "lastRebalancePrice": "535654", + "state": "1", + "currentTick": "-282582", + "currentPrice": "534851", + "twapSlow": "535440", + "twapFast": "534851", + "depositTokenBalance": "1679888564", + "pairedTokenBalance": "34768", + "usedToken0": "3091552675225376663081", + "usedToken1": "10070154648", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x64ade3e41c021599e441d5aca40644f59b5cd0e538cc4a92528d6f8278914606", + "state": { + "depositToken": 0, + "blockNumber": 305566916, + "lastRebalancePrice": "534851", + "state": "1", + "currentTick": "-282588", + "currentPrice": "534530", + "twapSlow": "534530", + "twapFast": "534530", + "depositTokenBalance": "890446409", + "pairedTokenBalance": "56803", + "usedToken0": "3140476715628902868692", + "usedToken1": "10044555083", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5498c791ff62ebcec72b5b06b8862049fe44cedca4a379582517285cbeba89fc", + "state": { + "depositToken": 0, + "blockNumber": 305582490, + "lastRebalancePrice": "534530", + "state": "1", + "currentTick": "-282607", + "currentPrice": "533516", + "twapSlow": "533622", + "twapFast": "533516", + "depositTokenBalance": "889318694", + "pairedTokenBalance": "26392", + "usedToken0": "3290568593446963123382", + "usedToken1": "9964604641", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5b5e9f61994999cd05b408a511d2438674474e91f32a1b3d810b513f07168060", + "state": { + "depositToken": 0, + "blockNumber": 305598104, + "lastRebalancePrice": "533516", + "state": "1", + "currentTick": "-282607", + "currentPrice": "533516", + "twapSlow": "533516", + "twapFast": "533516", + "depositTokenBalance": "885982275", + "pairedTokenBalance": "59249", + "usedToken0": "3291778330788198174588", + "usedToken1": "9964604640", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5beb240505c5bae81c4a478177350941c9dc150f85b738c1e530375330e45bdb", + "state": { + "depositToken": 0, + "blockNumber": 305613677, + "lastRebalancePrice": "533516", + "state": "1", + "currentTick": "-282607", + "currentPrice": "533516", + "twapSlow": "533516", + "twapFast": "533516", + "depositTokenBalance": "885982274", + "pairedTokenBalance": "59248", + "usedToken0": "3291778330788198174587", + "usedToken1": "9964604639", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x47031f4aaca621c0aa36ad47d621088dd093eae8bb07979c4afe9b0352c4a555", + "state": { + "depositToken": 0, + "blockNumber": 305629271, + "lastRebalancePrice": "533516", + "state": "1", + "currentTick": "-282617", + "currentPrice": "532982", + "twapSlow": "533142", + "twapFast": "532982", + "depositTokenBalance": "885982273", + "pairedTokenBalance": "59247", + "usedToken0": "3379291190285008218145", + "usedToken1": "9917935782", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6ed5e88d6b3dac2f46a065f1dadd1881b2761e74d2324a0db573e866e193daea", + "state": { + "depositToken": 0, + "blockNumber": 305644876, + "lastRebalancePrice": "532982", + "state": "1", + "currentTick": "-282617", + "currentPrice": "532982", + "twapSlow": "532982", + "twapFast": "532982", + "depositTokenBalance": "884092181", + "pairedTokenBalance": "63370", + "usedToken0": "3379998364907204662944", + "usedToken1": "9917935781", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3e028959383f9381211087dba40ff48e108caea72d0c1b670e28ca14d2a24f68", + "state": { + "depositToken": 0, + "blockNumber": 305660493, + "lastRebalancePrice": "532982", + "state": "1", + "currentTick": "-282633", + "currentPrice": "532130", + "twapSlow": "532609", + "twapFast": "532130", + "depositTokenBalance": "884092180", + "pairedTokenBalance": "63369", + "usedToken0": "3507072994414211469832", + "usedToken1": "9850258085", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x70257cdbe462b20308f9dde09c88493a611f1c5710d7ce299ae2efb3ab03d061", + "state": { + "depositToken": 0, + "blockNumber": 305676113, + "lastRebalancePrice": "532130", + "state": "1", + "currentTick": "-282646", + "currentPrice": "531439", + "twapSlow": "531439", + "twapFast": "531439", + "depositTokenBalance": "881466899", + "pairedTokenBalance": "54350", + "usedToken0": "3618316028676307947543", + "usedToken1": "9791643753", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9dc676b2ac2fdfe80eb7df0fa9f03dda7a31b8b3ff6f981e1cbd4b39ae2f7d95", + "state": { + "depositToken": 0, + "blockNumber": 305691792, + "lastRebalancePrice": "531439", + "state": "1", + "currentTick": "-282646", + "currentPrice": "531439", + "twapSlow": "531439", + "twapFast": "531439", + "depositTokenBalance": "879273690", + "pairedTokenBalance": "60522", + "usedToken0": "3619206664381916921800", + "usedToken1": "9791643752", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x79e02544a9afe09d5e4afb303391ad754d0592af4fe2e228a6422348700bb2f4", + "state": { + "depositToken": 0, + "blockNumber": 305707404, + "lastRebalancePrice": "531439", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879273689", + "pairedTokenBalance": "60521", + "usedToken0": "3627780118464185850422", + "usedToken1": "9787087580", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x111653dead394e45c77be5138170fdb94db49ab5fb5b23ba72bb2745ee0b282e", + "state": { + "depositToken": 0, + "blockNumber": 305723021, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103574", + "pairedTokenBalance": "65422", + "usedToken0": "3627849398901214286209", + "usedToken1": "9787087579", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x47757b231ee70c9fe46ded592aac85df193a0f0d823fdf41d335f56c9e9166df", + "state": { + "depositToken": 0, + "blockNumber": 305738554, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103573", + "pairedTokenBalance": "65421", + "usedToken0": "3627849398901214286208", + "usedToken1": "9787087578", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x44d5acc2a87c945259fd1b0899f8da0c97f46519f3ff89679ae2b4b4ea6c2820", + "state": { + "depositToken": 0, + "blockNumber": 305754131, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103572", + "pairedTokenBalance": "65420", + "usedToken0": "3627849398901214286207", + "usedToken1": "9787087577", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x944a4cde8784b3db0ae8c52f3e8d6a81ec3cd7ed0d97e8812815e21d5907c5f0", + "state": { + "depositToken": 0, + "blockNumber": 305769586, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103571", + "pairedTokenBalance": "65419", + "usedToken0": "3627849398901214286206", + "usedToken1": "9787087576", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1ed895620fa53b440448ff389aabdbdeba5ab87d073ea1e87a885d3290872b78", + "state": { + "depositToken": 0, + "blockNumber": 305785011, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103570", + "pairedTokenBalance": "65418", + "usedToken0": "3627849398901214286205", + "usedToken1": "9787087575", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc7aab4c7bef623cf7f9c4705c3800a63b224783dbae77441c72b1438ee318cdd", + "state": { + "depositToken": 0, + "blockNumber": 305800330, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103569", + "pairedTokenBalance": "65417", + "usedToken0": "3627849398901214286204", + "usedToken1": "9787087574", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb23b894e34ccde6f9fcaa6379b651b77776dc970f2fbe0c70e331774db9294d1", + "state": { + "depositToken": 0, + "blockNumber": 305815687, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282647", + "currentPrice": "531386", + "twapSlow": "531386", + "twapFast": "531386", + "depositTokenBalance": "879103568", + "pairedTokenBalance": "65416", + "usedToken0": "3627849398901214286203", + "usedToken1": "9787087573", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xed449840e20fe355eff2c9e54679eb2fe6a8ce760876426165860e8f918e8325", + "state": { + "depositToken": 0, + "blockNumber": 305831096, + "lastRebalancePrice": "531386", + "state": "1", + "currentTick": "-282631", + "currentPrice": "532237", + "twapSlow": "531705", + "twapFast": "532237", + "depositTokenBalance": "879103567", + "pairedTokenBalance": "65415", + "usedToken0": "3496870741157816179191", + "usedToken1": "9856745178", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x0d5f65dd11f4bf90c629ec6c7a33df593294087ccb5d9529fd3887ab8a5f3974", + "state": { + "depositToken": 0, + "blockNumber": 305846543, + "lastRebalancePrice": "532237", + "state": "1", + "currentTick": "-282631", + "currentPrice": "532237", + "twapSlow": "532237", + "twapFast": "532237", + "depositTokenBalance": "879666456", + "pairedTokenBalance": "65414", + "usedToken0": "3496870741157816179190", + "usedToken1": "9857308067", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x823c710b48cd7382aebdc16694d46b65f05b1f2ebc75cf930932883829913dd7", + "state": { + "depositToken": 0, + "blockNumber": 305862008, + "lastRebalancePrice": "532237", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "532929", + "twapFast": "533089", + "depositTokenBalance": "879666455", + "pairedTokenBalance": "65413", + "usedToken0": "3364914948791023270408", + "usedToken1": "9927597863", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x255451f1a869694b503cba062149d0917d262d5f6546461fdd381d89881c48e4", + "state": { + "depositToken": 0, + "blockNumber": 305877424, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "880234453", + "pairedTokenBalance": "93516", + "usedToken0": "3364914948791023270407", + "usedToken1": "9928165861", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x28db952d2d8e2e06a7b9fba3589c114a238a66c61a6845426bb60d4839152aa9", + "state": { + "depositToken": 0, + "blockNumber": 305892943, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "880234452", + "pairedTokenBalance": "93515", + "usedToken0": "3364914948791023270406", + "usedToken1": "9928165860", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x639990adb0ffdee7748146a3e1afcb0c698de4a2a2d488b71fb67a58d2b6b491", + "state": { + "depositToken": 0, + "blockNumber": 305908443, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "880234451", + "pairedTokenBalance": "93514", + "usedToken0": "3364914948791023270405", + "usedToken1": "9928165859", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x27eb73c91bad7c4f08062a2aba210e558940f04aecb96817dcc98ea437d43bd7", + "state": { + "depositToken": 0, + "blockNumber": 305924123, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282615", + "currentPrice": "533089", + "twapSlow": "533089", + "twapFast": "533089", + "depositTokenBalance": "880234450", + "pairedTokenBalance": "93513", + "usedToken0": "3364914948791023270404", + "usedToken1": "9928165858", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4040ffacc73eb8f7d417f4711e9f85d18d180e67dbaa2cd313e6c7f23d1072cf", + "state": { + "depositToken": 0, + "blockNumber": 305939830, + "lastRebalancePrice": "533089", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "880234449", + "pairedTokenBalance": "93512", + "usedToken0": "3211591108228103465612", + "usedToken1": "10009980140", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xea9fe9d2b3617d00fef8041577eb55429c038831d7907d26b184246f68ae0a0c", + "state": { + "depositToken": 0, + "blockNumber": 305955418, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "880895573", + "pairedTokenBalance": "39863", + "usedToken0": "3211591108228103465611", + "usedToken1": "10010641264", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd9e8458490acedc99fe1dbe73f7894c7d05eef3a1b9622b3665f8ca77d6a2687", + "state": { + "depositToken": 0, + "blockNumber": 305971008, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "880895572", + "pairedTokenBalance": "39862", + "usedToken0": "3211591108228103465610", + "usedToken1": "10010641263", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x25c3e2504aa8423e8f20e805c4f35393578426140fce88f5754f50dbedcd328f", + "state": { + "depositToken": 0, + "blockNumber": 305986800, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "880895571", + "pairedTokenBalance": "39861", + "usedToken0": "3211591108228103465609", + "usedToken1": "10010641262", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe88eb1e4a3f525aa9c1b5087f0722fd5d6a365e43106a3998de76c63621282a9", + "state": { + "depositToken": 0, + "blockNumber": 306002401, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282596", + "currentPrice": "534103", + "twapSlow": "534103", + "twapFast": "534103", + "depositTokenBalance": "880895570", + "pairedTokenBalance": "39860", + "usedToken0": "3211591108228103465608", + "usedToken1": "10010641261", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa3a83ae5640a172196e592836e27b86c5a77c7beb11cbb19b95f70edad4b6039", + "state": { + "depositToken": 0, + "blockNumber": 306018085, + "lastRebalancePrice": "534103", + "state": "1", + "currentTick": "-282590", + "currentPrice": "534423", + "twapSlow": "534316", + "twapFast": "534423", + "depositTokenBalance": "880895569", + "pairedTokenBalance": "39859", + "usedToken0": "3158058121956750540456", + "usedToken1": "10039242780", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x626c9283d41e3caa5c545a7fafb8d03904af482c99c0b34ec99cbb86b9fb617a", + "state": { + "depositToken": 0, + "blockNumber": 306033810, + "lastRebalancePrice": "534423", + "state": "1", + "currentTick": "-282576", + "currentPrice": "535172", + "twapSlow": "534958", + "twapFast": "535172", + "depositTokenBalance": "881126692", + "pairedTokenBalance": "39858", + "usedToken0": "3041164268770774173030", + "usedToken1": "10101992806", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2a9537ecd5b93ef875856152ab86688533bfcf07cf765999ef94b6ea6e43ae44", + "state": { + "depositToken": 0, + "blockNumber": 306049485, + "lastRebalancePrice": "535172", + "state": "1", + "currentTick": "-282562", + "currentPrice": "535922", + "twapSlow": "535172", + "twapFast": "535547", + "depositTokenBalance": "881631895", + "pairedTokenBalance": "39857", + "usedToken0": "2933309630491093636906", + "usedToken1": "10160261696", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcb2964d1090ca0e1e069db83b13bf93a7d61d294b4e3ce3c18a25f47267ddfc6", + "state": { + "depositToken": 0, + "blockNumber": 306065188, + "lastRebalancePrice": "535922", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537048", + "twapFast": "537102", + "depositTokenBalance": "1669688358", + "pairedTokenBalance": "64355", + "usedToken0": "2753615808003123049746", + "usedToken1": "10257136450", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5286a775def4bc0f6646755554a72f401e5b14d069f7038f95e3d1405a49c8de", + "state": { + "depositToken": 0, + "blockNumber": 306080935, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467413", + "pairedTokenBalance": "41355", + "usedToken0": "2753615808003123049745", + "usedToken1": "10257915505", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xeb5ba1552f22d9c2d5271c98725c14cd80750834cd0bddfbc3bd91f24eef4d09", + "state": { + "depositToken": 0, + "blockNumber": 306096687, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467412", + "pairedTokenBalance": "41354", + "usedToken0": "2753615808003123049744", + "usedToken1": "10257915504", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x995e2a61024cfb1577c6fa96c579d4191f1905412c5ed220426af51353a13f55", + "state": { + "depositToken": 0, + "blockNumber": 306112382, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467411", + "pairedTokenBalance": "41353", + "usedToken0": "2753615808003123049743", + "usedToken1": "10257915503", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8477872c3e336a48e73687ad4dbbb71c08562c2bbf9f051cb48abaaf2b2b0f10", + "state": { + "depositToken": 0, + "blockNumber": 306128017, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467410", + "pairedTokenBalance": "41352", + "usedToken0": "2753615808003123049742", + "usedToken1": "10257915502", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x583ecabc95b5c038f3bec3e62031d8478bfd29e1ae3ad6a2ee5d923c14502b78", + "state": { + "depositToken": 0, + "blockNumber": 306143637, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467409", + "pairedTokenBalance": "41351", + "usedToken0": "2753615808003123049741", + "usedToken1": "10257915501", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa58bd7893a3b7c3b3bdd1e1ac0233bb239bb8a83269c385c6ae676f7e2148d65", + "state": { + "depositToken": 0, + "blockNumber": 306159270, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467408", + "pairedTokenBalance": "41350", + "usedToken0": "2753615808003123049740", + "usedToken1": "10257915500", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xec14045bc7263355f86e30b957bb92bf5866d747f6337b31e58a22b908b65404", + "state": { + "depositToken": 0, + "blockNumber": 306174918, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467407", + "pairedTokenBalance": "41349", + "usedToken0": "2753615808003123049739", + "usedToken1": "10257915499", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3a1ce14da5e01c8167fc0e485db5ba2f9bfbec070469db55ccbf5ace02b19efb", + "state": { + "depositToken": 0, + "blockNumber": 306190478, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467406", + "pairedTokenBalance": "41348", + "usedToken0": "2753615808003123049738", + "usedToken1": "10257915498", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x308eea85d23545baac4870b06bb7d631f9a72feec78fe961b6b46252fb254801", + "state": { + "depositToken": 0, + "blockNumber": 306205998, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467405", + "pairedTokenBalance": "41347", + "usedToken0": "2753615808003123049737", + "usedToken1": "10257915497", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdf2716c01c84ceb9d3cbdaca1de7124efa7fb9b4dcb0bff88d876f164782eca4", + "state": { + "depositToken": 0, + "blockNumber": 306221499, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467404", + "pairedTokenBalance": "41346", + "usedToken0": "2753615808003123049736", + "usedToken1": "10257915496", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf9ab4891255a5ecb083e262b800275a9a524eec276cf5d2058b17b062a05ffc2", + "state": { + "depositToken": 0, + "blockNumber": 306236985, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282540", + "currentPrice": "537102", + "twapSlow": "537102", + "twapFast": "537102", + "depositTokenBalance": "1670467403", + "pairedTokenBalance": "41345", + "usedToken0": "2753615808003123049735", + "usedToken1": "10257915495", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf46bcc3b6effbebfd9c3c0bc8093039a3955ba242d88aac13f5def080a1376a7", + "state": { + "depositToken": 0, + "blockNumber": 306252543, + "lastRebalancePrice": "537102", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536565", + "twapFast": "536351", + "depositTokenBalance": "1670467402", + "pairedTokenBalance": "41344", + "usedToken0": "2862042520188025774120", + "usedToken1": "10199717850", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5b46ed9ae4b31f82665c2d4c1e7132c5a59af4229f78daea13fe13666381e4af", + "state": { + "depositToken": 0, + "blockNumber": 306268101, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856286", + "pairedTokenBalance": "6605", + "usedToken0": "2862918695640024988055", + "usedToken1": "10199717849", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd2cf3fa6b6e9d2c546155f64b23905eb6d87813a3f68d96ea2ed25db5a56408b", + "state": { + "depositToken": 0, + "blockNumber": 306283646, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856285", + "pairedTokenBalance": "6604", + "usedToken0": "2862918695640024988054", + "usedToken1": "10199717848", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2634d216ba681c753b1d924c62c2ed76d9f35c6711e61702427ecabc56e04ad8", + "state": { + "depositToken": 0, + "blockNumber": 306299278, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856284", + "pairedTokenBalance": "6603", + "usedToken0": "2862918695640024988053", + "usedToken1": "10199717847", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xebdcc67989df75acdfb4d3b952e623bb5561df5299c7308e59de4c843b89bef1", + "state": { + "depositToken": 0, + "blockNumber": 306314951, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856283", + "pairedTokenBalance": "6602", + "usedToken0": "2862918695640024988052", + "usedToken1": "10199717846", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x734cf281772e47b3db1765310c428da209421ba7f39ede4ce0a783a2b1ca3d81", + "state": { + "depositToken": 0, + "blockNumber": 306330506, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856282", + "pairedTokenBalance": "6601", + "usedToken0": "2862918695640024988051", + "usedToken1": "10199717845", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7628cb0b85f2b376224bd06a16fa2f7c05a9a6ef0621de644f068503a8226262", + "state": { + "depositToken": 0, + "blockNumber": 306346190, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856281", + "pairedTokenBalance": "6600", + "usedToken0": "2862918695640024988050", + "usedToken1": "10199717844", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x352dbbc8da9d17e2f9a93e00e942feb7b8cc1fd680775aac6ef46322f886043b", + "state": { + "depositToken": 0, + "blockNumber": 306361871, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856280", + "pairedTokenBalance": "6599", + "usedToken0": "2862918695640024988049", + "usedToken1": "10199717843", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x05d87ff30474273bf2f4a22bc1b9d706e956f8bde456e097dc8b7edda15aeb71", + "state": { + "depositToken": 0, + "blockNumber": 306377478, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856279", + "pairedTokenBalance": "6598", + "usedToken0": "2862918695640024988048", + "usedToken1": "10199717842", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb8fc82367096416733e2b06e240842deab50f9888bc2c7e0cf986cc665d5fdb0", + "state": { + "depositToken": 0, + "blockNumber": 306393005, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856278", + "pairedTokenBalance": "6597", + "usedToken0": "2862918695640024988047", + "usedToken1": "10199717841", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd01cf436f4788d321052bd1e697828620e5291406adef7693ec57e85f7a7d076", + "state": { + "depositToken": 0, + "blockNumber": 306408550, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856277", + "pairedTokenBalance": "6596", + "usedToken0": "2862918695640024988046", + "usedToken1": "10199717840", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4bc6b8ec50c92fffa52eb9ba16fa12901eddb0cf565677ebe680219ac1fe264e", + "state": { + "depositToken": 0, + "blockNumber": 306424035, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856276", + "pairedTokenBalance": "6595", + "usedToken0": "2862918695640024988045", + "usedToken1": "10199717839", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe3624b7e63cb6f18f3c2ef237236311062f6792d5c48b370a9defc687766ed1f", + "state": { + "depositToken": 0, + "blockNumber": 306439533, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856275", + "pairedTokenBalance": "6594", + "usedToken0": "2862918695640024988044", + "usedToken1": "10199717838", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9332ab2db453ee109d13e588ceb8476abd531666c026381a9e02ab525801a27e", + "state": { + "depositToken": 0, + "blockNumber": 306454957, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856274", + "pairedTokenBalance": "6593", + "usedToken0": "2862918695640024988043", + "usedToken1": "10199717837", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7581f74b200a01c64a4ce0cc901821b552518e6480eedc1a034aca196e355d8b", + "state": { + "depositToken": 0, + "blockNumber": 306470308, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856273", + "pairedTokenBalance": "6592", + "usedToken0": "2862918695640024988042", + "usedToken1": "10199717836", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfcab60240e80323add5377f9bfb54bbfbf0c75c3c1c295390c1ca1d3f1150c0c", + "state": { + "depositToken": 0, + "blockNumber": 306485423, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856272", + "pairedTokenBalance": "6591", + "usedToken0": "2862918695640024988041", + "usedToken1": "10199717835", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xed264ee4bed0ba3ab693de4e8e44a60227c7ad0872b2d8616fb497c68058fba5", + "state": { + "depositToken": 0, + "blockNumber": 306500775, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856271", + "pairedTokenBalance": "6590", + "usedToken0": "2862918695640024988040", + "usedToken1": "10199717834", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb5f04183b284d8d210fdac146b26f33e8cfe19b78c34642b7f67fd4e01520fee", + "state": { + "depositToken": 0, + "blockNumber": 306516140, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856270", + "pairedTokenBalance": "6589", + "usedToken0": "2862918695640024988039", + "usedToken1": "10199717833", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2a35a52b09c49ef955b47d4633439ef886c2235607de83e237474233841f46ab", + "state": { + "depositToken": 0, + "blockNumber": 306531569, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856269", + "pairedTokenBalance": "6588", + "usedToken0": "2862918695640024988038", + "usedToken1": "10199717832", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x91a831aaa9fa4b135445fa19a7cca1e8423c53af926040bb4fd37dd53bf7c604", + "state": { + "depositToken": 0, + "blockNumber": 306546945, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856268", + "pairedTokenBalance": "6587", + "usedToken0": "2862918695640024988037", + "usedToken1": "10199717831", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x54330ace0615cde4113a1fa4d2800b73d56cd683505d815370f96a68e280964d", + "state": { + "depositToken": 0, + "blockNumber": 306562398, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856267", + "pairedTokenBalance": "6586", + "usedToken0": "2862918695640024988036", + "usedToken1": "10199717830", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3bd9f8493723f4d1ecbc64745def75357764dbba54d73e91e8fa56927eb8d733", + "state": { + "depositToken": 0, + "blockNumber": 306577904, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856266", + "pairedTokenBalance": "6585", + "usedToken0": "2862918695640024988035", + "usedToken1": "10199717829", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe93a3ad004c6460042e402c376ad201118c25b53ba5ff840ac473fc02c01303b", + "state": { + "depositToken": 0, + "blockNumber": 306593428, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856265", + "pairedTokenBalance": "6584", + "usedToken0": "2862918695640024988034", + "usedToken1": "10199717828", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4afaec21ea0e1d205bdec17e97e0eefb8bbb04f03b4927c10f8a368de1a0bf9d", + "state": { + "depositToken": 0, + "blockNumber": 306609041, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856264", + "pairedTokenBalance": "6583", + "usedToken0": "2862918695640024988033", + "usedToken1": "10199717827", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb91fa45a2fe4727f4ec50540dab354c2af8f267a89c5cc28704d7fcebb9b59cf", + "state": { + "depositToken": 0, + "blockNumber": 306624741, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856263", + "pairedTokenBalance": "6582", + "usedToken0": "2862918695640024988032", + "usedToken1": "10199717826", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x87fa1b590b7083b2c87a4613b4027aae111ffd7a36539990169f9c9ccc773964", + "state": { + "depositToken": 0, + "blockNumber": 306640429, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856262", + "pairedTokenBalance": "6581", + "usedToken0": "2862918695640024988031", + "usedToken1": "10199717825", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xace180e2090a4fcf28a0d202fcc33c02c9a111ca00ad7bc6807eaec4399212a8", + "state": { + "depositToken": 0, + "blockNumber": 306656154, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856261", + "pairedTokenBalance": "6580", + "usedToken0": "2862918695640024988030", + "usedToken1": "10199717824", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd9eb607f257fe37ff2fa1076a13ddd7d78e4d98f8aed1341dafaacd92aa57ab9", + "state": { + "depositToken": 0, + "blockNumber": 306671901, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282554", + "currentPrice": "536351", + "twapSlow": "536351", + "twapFast": "536351", + "depositTokenBalance": "1667856260", + "pairedTokenBalance": "6579", + "usedToken0": "2862918695640024988029", + "usedToken1": "10199717823", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6046028ef75a1ab32188049c0d33a9b000184c35acd8ac9faf22cbf235ecc450", + "state": { + "depositToken": 0, + "blockNumber": 306687579, + "lastRebalancePrice": "536351", + "state": "1", + "currentTick": "-282558", + "currentPrice": "536136", + "twapSlow": "536297", + "twapFast": "536136", + "depositTokenBalance": "1667856259", + "pairedTokenBalance": "6578", + "usedToken0": "2898608306675614194480", + "usedToken1": "10180578435", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x36ba0a1755abbce4673c40e1d799a597f951c1b97f43ef99004c84a6fdd29eba", + "state": { + "depositToken": 0, + "blockNumber": 306703216, + "lastRebalancePrice": "536136", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "541795", + "twapFast": "543858", + "depositTokenBalance": "1667009273", + "pairedTokenBalance": "27729", + "usedToken0": "1729163314891653732619", + "usedToken1": "10812255461", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x27c6e6a22ad2ded8db5f70bba92bb5e0b13427aa1a54cfae23a0aeb034922335", + "state": { + "depositToken": 0, + "blockNumber": 306718845, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "543858", + "twapFast": "543858", + "depositTokenBalance": "1672113733", + "pairedTokenBalance": "27728", + "usedToken0": "1729163314891653732618", + "usedToken1": "10817359921", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x552f0ce9b9154f37bc6e73409f8a8615b0abd656598b267d8fc9c240db79ca66", + "state": { + "depositToken": 0, + "blockNumber": 306734405, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "543858", + "twapFast": "543858", + "depositTokenBalance": "1672113732", + "pairedTokenBalance": "27727", + "usedToken0": "1729163314891653732617", + "usedToken1": "10817359920", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd79b8e31f9a7052c0373b7c27f371dd6f9d16bcc68fe31dc82beb872edfa439c", + "state": { + "depositToken": 0, + "blockNumber": 306749962, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "543858", + "twapFast": "543858", + "depositTokenBalance": "1672113731", + "pairedTokenBalance": "27726", + "usedToken0": "1729163314891653732616", + "usedToken1": "10817359919", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x15d79a777563398291ae01c1db2f9e30d128de7e4854b08fca8521939ed70963", + "state": { + "depositToken": 0, + "blockNumber": 306765490, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "543858", + "twapFast": "543858", + "depositTokenBalance": "1672113730", + "pairedTokenBalance": "27725", + "usedToken0": "1729163314891653732615", + "usedToken1": "10817359918", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc34e18689414cdd23be2ea7173d6a7a6e815eb9a51d9ea58806ded77754f804b", + "state": { + "depositToken": 0, + "blockNumber": 306780983, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "543858", + "twapFast": "543858", + "depositTokenBalance": "1672113729", + "pairedTokenBalance": "27724", + "usedToken0": "1730926840854620111447", + "usedToken1": "10816400732", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x301ab3ccb2689053c4dde272e3d8b6a37e21ecdae643812295bbeefc385d22f1", + "state": { + "depositToken": 0, + "blockNumber": 306796429, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282415", + "currentPrice": "543858", + "twapSlow": "543858", + "twapFast": "543858", + "depositTokenBalance": "1672038443", + "pairedTokenBalance": "8014", + "usedToken0": "1730941091569472365012", + "usedToken1": "10816400731", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc1dc460e4b2f5f52e7e724cc23c08c7661f64289c99993116ef3b48479e39c6c", + "state": { + "depositToken": 0, + "blockNumber": 306811847, + "lastRebalancePrice": "543858", + "state": "1", + "currentTick": "-282426", + "currentPrice": "543260", + "twapSlow": "543694", + "twapFast": "543260", + "depositTokenBalance": "1672038442", + "pairedTokenBalance": "8013", + "usedToken0": "1819349118599537487198", + "usedToken1": "10768342155", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd594f5de58e3654fcadfcf654c95afd0f641584f9a42dbd5fd2639f79eda0d9f", + "state": { + "depositToken": 0, + "blockNumber": 306827261, + "lastRebalancePrice": "543260", + "state": "1", + "currentTick": "-282427", + "currentPrice": "543205", + "twapSlow": "543205", + "twapFast": "543205", + "depositTokenBalance": "1668466573", + "pairedTokenBalance": "34174", + "usedToken0": "1833766221691309549216", + "usedToken1": "10760898053", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd8041f9017e3dd7689c9bcef180858064c7d3e336adbbac9d700a3b4a94a6ec4", + "state": { + "depositToken": 0, + "blockNumber": 306842676, + "lastRebalancePrice": "543205", + "state": "1", + "currentTick": "-282427", + "currentPrice": "543205", + "twapSlow": "543205", + "twapFast": "543205", + "depositTokenBalance": "1667917541", + "pairedTokenBalance": "32509", + "usedToken0": "1833876950538117946894", + "usedToken1": "10760898052", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x185d76b4545cdfdc38db0cb9bde5720f9442c9b8a2e53926fbe2182405793e5f", + "state": { + "depositToken": 0, + "blockNumber": 306858132, + "lastRebalancePrice": "543205", + "state": "1", + "currentTick": "-282427", + "currentPrice": "543205", + "twapSlow": "543205", + "twapFast": "543205", + "depositTokenBalance": "1667917540", + "pairedTokenBalance": "32508", + "usedToken0": "1833876950538117946893", + "usedToken1": "10760898051", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe1342f902520d2dccaa5c2b96d04b6781a93ac08e6404dba756d257afd866849", + "state": { + "depositToken": 0, + "blockNumber": 306873587, + "lastRebalancePrice": "543205", + "state": "1", + "currentTick": "-282427", + "currentPrice": "543205", + "twapSlow": "543205", + "twapFast": "543205", + "depositTokenBalance": "1667917539", + "pairedTokenBalance": "32507", + "usedToken0": "1833876950538117946892", + "usedToken1": "10760898050", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x460ea6e34c2304168001c6c3401f9e6135d3d5eff5969c5ef5857e86034c9200", + "state": { + "depositToken": 0, + "blockNumber": 306889092, + "lastRebalancePrice": "543205", + "state": "1", + "currentTick": "-282427", + "currentPrice": "543205", + "twapSlow": "543205", + "twapFast": "543205", + "depositTokenBalance": "1667917538", + "pairedTokenBalance": "32506", + "usedToken0": "1833876950538117946891", + "usedToken1": "10760898049", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe5e83d62e6b65ea9125c65833f17bb9cea367c0674f586b938af95d6308b0310", + "state": { + "depositToken": 0, + "blockNumber": 306904660, + "lastRebalancePrice": "543205", + "state": "1", + "currentTick": "-282443", + "currentPrice": "542337", + "twapSlow": "542554", + "twapFast": "542337", + "depositTokenBalance": "1667917537", + "pairedTokenBalance": "32505", + "usedToken0": "1959406331710041169436", + "usedToken1": "10692761544", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3d88747fc90fdaf7ddee5d3aaae6d7cd4cb392a32bb672a9aed602c4b3243303", + "state": { + "depositToken": 0, + "blockNumber": 306920214, + "lastRebalancePrice": "542337", + "state": "1", + "currentTick": "-282443", + "currentPrice": "542337", + "twapSlow": "542337", + "twapFast": "542337", + "depositTokenBalance": "1663245401", + "pairedTokenBalance": "30254", + "usedToken0": "1960420710547794084366", + "usedToken1": "10692761543", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x23532d347de1d461abc0531468e3b9757b1c397553151559e2d4c2000e6d8c7a", + "state": { + "depositToken": 0, + "blockNumber": 306935804, + "lastRebalancePrice": "542337", + "state": "1", + "currentTick": "-282443", + "currentPrice": "542337", + "twapSlow": "542337", + "twapFast": "542337", + "depositTokenBalance": "1663245400", + "pairedTokenBalance": "30253", + "usedToken0": "1960420710547794084365", + "usedToken1": "10692761542", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcb678d685e95b28272b1e088f964197beb45818d56cb84d55e1c524d7ced132c", + "state": { + "depositToken": 0, + "blockNumber": 306951409, + "lastRebalancePrice": "542337", + "state": "1", + "currentTick": "-282443", + "currentPrice": "542337", + "twapSlow": "542337", + "twapFast": "542337", + "depositTokenBalance": "1663245399", + "pairedTokenBalance": "30252", + "usedToken0": "1960420710547794084364", + "usedToken1": "10692761541", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8434fb65067987c13f2690e067cfcc886aa759e4b4a4f2989170829d3dacb80e", + "state": { + "depositToken": 0, + "blockNumber": 306967032, + "lastRebalancePrice": "542337", + "state": "1", + "currentTick": "-282399", + "currentPrice": "544728", + "twapSlow": "543205", + "twapFast": "544293", + "depositTokenBalance": "1663245398", + "pairedTokenBalance": "30251", + "usedToken0": "1606319723952477343832", + "usedToken1": "10885235547", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x96f1180304a6b5c9fe58fdd6f35eb8a023d2f7012f5af4c16df62ddf066ae5df", + "state": { + "depositToken": 0, + "blockNumber": 306982646, + "lastRebalancePrice": "544728", + "state": "1", + "currentTick": "-282363", + "currentPrice": "546693", + "twapSlow": "546474", + "twapFast": "546693", + "depositTokenBalance": "1664800744", + "pairedTokenBalance": "30250", + "usedToken0": "1311107279894283286410", + "usedToken1": "11047898208", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-284600", + "topTick": "-282400" + } + } + }, + { + "transactionHash": "0xa334ba447b7b17316030371919e8926bb4e88845cc2709f1096d03de3753a17d", + "state": { + "depositToken": 0, + "blockNumber": 307038623, + "lastRebalancePrice": "546693", + "state": "0", + "currentTick": "-282025", + "currentPrice": "565486", + "twapSlow": "557235", + "twapFast": "565486", + "depositTokenBalance": "0", + "pairedTokenBalance": "65187", + "usedToken0": "1289139279034406719744", + "usedToken1": "11061415255", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-284400", + "topTick": "-282200" + } + } + }, + { + "transactionHash": "0x493e4cedb1e2744556c1920ce6b2973f4fd23d51fe5e37bb13f5737dcc8127f4", + "state": { + "depositToken": 0, + "blockNumber": 307082188, + "lastRebalancePrice": "565486", + "state": "0", + "currentTick": "-282233", + "currentPrice": "553846", + "twapSlow": "555121", + "twapFast": "553846", + "depositTokenBalance": "0", + "pairedTokenBalance": "65186", + "usedToken0": "1615324776994903666935", + "usedToken1": "10880492342", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-284600", + "topTick": "-282400" + } + } + }, + { + "transactionHash": "0xc4b7cd2de2a55b44796f1011fe6a2a234821a6a2d3d4603dec40a9bb95e95f53", + "state": { + "depositToken": 0, + "blockNumber": 307404942, + "lastRebalancePrice": "553846", + "state": "0", + "currentTick": "-282446", + "currentPrice": "542174", + "twapSlow": "543586", + "twapFast": "542283", + "depositTokenBalance": "0", + "pairedTokenBalance": "193867", + "usedToken0": "2067394183117468465290", + "usedToken1": "10636174051", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xab95b73f8f817e84f55ca49f5780960211e5fa3a2c1aa8840713d01a74642364", + "state": { + "depositToken": 0, + "blockNumber": 307420568, + "lastRebalancePrice": "542174", + "state": "1", + "currentTick": "-282487", + "currentPrice": "539956", + "twapSlow": "541416", + "twapFast": "539956", + "depositTokenBalance": "1233509871", + "pairedTokenBalance": "38452", + "usedToken0": "2422808821366448708932", + "usedToken1": "10445829804", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa50f7e96e6bc60afb120db6f7000c47bcf074fee486825282c8c22456da5f42d", + "state": { + "depositToken": 0, + "blockNumber": 307436199, + "lastRebalancePrice": "539956", + "state": "1", + "currentTick": "-282496", + "currentPrice": "539470", + "twapSlow": "539470", + "twapFast": "539470", + "depositTokenBalance": "1222701024", + "pairedTokenBalance": "24810", + "usedToken0": "2499689129442052882247", + "usedToken1": "10405869381", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1f2fc09e336276092a891e81d29e7ea1a42d1d9734c2f8d617cb2caab2649719", + "state": { + "depositToken": 0, + "blockNumber": 307451843, + "lastRebalancePrice": "539470", + "state": "1", + "currentTick": "-282496", + "currentPrice": "539470", + "twapSlow": "539470", + "twapFast": "539470", + "depositTokenBalance": "1220503093", + "pairedTokenBalance": "6108", + "usedToken0": "2500287413226808265682", + "usedToken1": "10405869380", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xae09019ec3e9a798978cb7e061702b1a40b936725a4fbddc6753fd6b63148cbd", + "state": { + "depositToken": 0, + "blockNumber": 307467461, + "lastRebalancePrice": "539470", + "state": "1", + "currentTick": "-282496", + "currentPrice": "539470", + "twapSlow": "539470", + "twapFast": "539470", + "depositTokenBalance": "1220503092", + "pairedTokenBalance": "6107", + "usedToken0": "2500287413226808265681", + "usedToken1": "10405869379", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1683d16047f1fba291d48599a6cd913dd194d14659b8c8e75cae9e9199c0cecc", + "state": { + "depositToken": 0, + "blockNumber": 307483054, + "lastRebalancePrice": "539470", + "state": "1", + "currentTick": "-282496", + "currentPrice": "539470", + "twapSlow": "539470", + "twapFast": "539470", + "depositTokenBalance": "1220503091", + "pairedTokenBalance": "6106", + "usedToken0": "2500287413226808265680", + "usedToken1": "10405869378", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x39991f20660b96c4ec1b7135b70731e84db1b17dfdceadeb87940d84af810a12", + "state": { + "depositToken": 0, + "blockNumber": 307498656, + "lastRebalancePrice": "539470", + "state": "1", + "currentTick": "-282496", + "currentPrice": "539470", + "twapSlow": "539470", + "twapFast": "539470", + "depositTokenBalance": "1220503090", + "pairedTokenBalance": "6105", + "usedToken0": "2500287413226808265679", + "usedToken1": "10405869377", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x36f004605ce969304f2c52c3aa29ab26aa8f442db3672097bbe72d77eb425028", + "state": { + "depositToken": 0, + "blockNumber": 307514177, + "lastRebalancePrice": "539470", + "state": "1", + "currentTick": "-282492", + "currentPrice": "539686", + "twapSlow": "539470", + "twapFast": "539686", + "depositTokenBalance": "1220503089", + "pairedTokenBalance": "6104", + "usedToken0": "2462825486228149322086", + "usedToken1": "10426084410", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1a92bc30a99a4a8adbea619adda5bd0577765f060863170f0190898f8673a81c", + "state": { + "depositToken": 0, + "blockNumber": 307529706, + "lastRebalancePrice": "539686", + "state": "1", + "currentTick": "-282492", + "currentPrice": "539686", + "twapSlow": "539686", + "twapFast": "539686", + "depositTokenBalance": "1220666442", + "pairedTokenBalance": "25772", + "usedToken0": "2462825486228149322085", + "usedToken1": "10426247763", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x69ab6902147c77ee820f3a7001a2dd6bb0c56038142028fa84a2214e45cb71df", + "state": { + "depositToken": 0, + "blockNumber": 307545182, + "lastRebalancePrice": "539686", + "state": "1", + "currentTick": "-282475", + "currentPrice": "540604", + "twapSlow": "539956", + "twapFast": "540604", + "depositTokenBalance": "1220666441", + "pairedTokenBalance": "25771", + "usedToken0": "2318397629828040770558", + "usedToken1": "10504266505", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xcaa2284ee929b72bf52e0fd45e1ec8384c4339ea2110cc4dd5a2fd22dbec9744", + "state": { + "depositToken": 0, + "blockNumber": 307560679, + "lastRebalancePrice": "540604", + "state": "1", + "currentTick": "-282461", + "currentPrice": "541362", + "twapSlow": "541145", + "twapFast": "541362", + "depositTokenBalance": "1221296895", + "pairedTokenBalance": "25770", + "usedToken0": "2199196030179160774359", + "usedToken1": "10569388439", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xdc088cab46b35410ebbc5c5956d2e80f7ae462a1af21632cfc4e2eedb98c2a34", + "state": { + "depositToken": 0, + "blockNumber": 307576283, + "lastRebalancePrice": "541362", + "state": "1", + "currentTick": "-282461", + "currentPrice": "541362", + "twapSlow": "541362", + "twapFast": "541362", + "depositTokenBalance": "1221818038", + "pairedTokenBalance": "8205", + "usedToken0": "2199196030179160774358", + "usedToken1": "10569909582", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe0a367fc2c720d7893b25599fcac636c9192834c639cf151d2ad085e04129c3f", + "state": { + "depositToken": 0, + "blockNumber": 307591970, + "lastRebalancePrice": "541362", + "state": "1", + "currentTick": "-282461", + "currentPrice": "541362", + "twapSlow": "541362", + "twapFast": "541362", + "depositTokenBalance": "1221818037", + "pairedTokenBalance": "8204", + "usedToken0": "2199196030179160774357", + "usedToken1": "10569909581", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3fcdfb869359d0e848fecb96c026945b1a288f594b8aa15b21d55b1212900231", + "state": { + "depositToken": 0, + "blockNumber": 307607644, + "lastRebalancePrice": "541362", + "state": "1", + "currentTick": "-282461", + "currentPrice": "541362", + "twapSlow": "541362", + "twapFast": "541362", + "depositTokenBalance": "1221818036", + "pairedTokenBalance": "8203", + "usedToken0": "2199196030179160774356", + "usedToken1": "10569909580", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2b1c54c97e5bf26275841426d1c2a6274bd091bab078c13ac8423ef33f265436", + "state": { + "depositToken": 0, + "blockNumber": 307623319, + "lastRebalancePrice": "541362", + "state": "1", + "currentTick": "-282435", + "currentPrice": "542771", + "twapSlow": "542337", + "twapFast": "542717", + "depositTokenBalance": "1221818035", + "pairedTokenBalance": "8202", + "usedToken0": "1983988992500655526839", + "usedToken1": "10686571843", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x43f58b31ea57e656473524d529cac45a994d1f16f075400f2daa60ba58abff22", + "state": { + "depositToken": 0, + "blockNumber": 307639074, + "lastRebalancePrice": "542771", + "state": "1", + "currentTick": "-282423", + "currentPrice": "543423", + "twapSlow": "543097", + "twapFast": "543423", + "depositTokenBalance": "1222760761", + "pairedTokenBalance": "8201", + "usedToken0": "1874858161470026893387", + "usedToken1": "10746786614", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x99ebfd5d5e906e2a4bb54b6c282137f7cc904961d5bde1624a4433a1fc4e3fce", + "state": { + "depositToken": 0, + "blockNumber": 307654753, + "lastRebalancePrice": "543423", + "state": "1", + "currentTick": "-282408", + "currentPrice": "544238", + "twapSlow": "543858", + "twapFast": "544238", + "depositTokenBalance": "1223239726", + "pairedTokenBalance": "38147", + "usedToken0": "1750574266902899169915", + "usedToken1": "10814860514", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x33ab4901a474f4ad927c95aa6a20aa45e85a4dc0ad8b22fdefb380ffd834b528", + "state": { + "depositToken": 0, + "blockNumber": 307670505, + "lastRebalancePrice": "544238", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544511", + "twapFast": "544565", + "depositTokenBalance": "1223785948", + "pairedTokenBalance": "10185", + "usedToken0": "1700133762405589347998", + "usedToken1": "10842868328", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6db15b1fc131cebb674121742229218f2466a3a1f3cc90344229f53cbfad0ffe", + "state": { + "depositToken": 0, + "blockNumber": 307686202, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007859", + "pairedTokenBalance": "10184", + "usedToken0": "1700133762405589347997", + "usedToken1": "10843090239", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x53f7fd1cb22de31e63058a7397e818719e001ed096a2d58e8e66ce34236333e6", + "state": { + "depositToken": 0, + "blockNumber": 307701871, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007858", + "pairedTokenBalance": "10183", + "usedToken0": "1700133762405589347996", + "usedToken1": "10843090238", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfdadcbd70f998633398436f97db52bb91b4a901aa7b6d8c54f96c5cab15592ce", + "state": { + "depositToken": 0, + "blockNumber": 307717525, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007857", + "pairedTokenBalance": "10182", + "usedToken0": "1700133762405589347995", + "usedToken1": "10843090237", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x376fd0fdde2ecd8d40555f29561b85466548a827ab0f43c6e58cc6cb4e437c50", + "state": { + "depositToken": 0, + "blockNumber": 307733289, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007856", + "pairedTokenBalance": "10181", + "usedToken0": "1700133762405589347994", + "usedToken1": "10843090236", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6746c22ac8d826a0f53bcdcc2f5e3b67f3799f2503671cfd9548c7a3c6cb6e77", + "state": { + "depositToken": 0, + "blockNumber": 307748941, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007855", + "pairedTokenBalance": "10180", + "usedToken0": "1700133762405589347993", + "usedToken1": "10843090235", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb0af27a94a86e883cdb9d98ba5989b14b3e06298f1683d501f1a78e3c9331e45", + "state": { + "depositToken": 0, + "blockNumber": 307764621, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007854", + "pairedTokenBalance": "10179", + "usedToken0": "1700133762405589347992", + "usedToken1": "10843090234", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4f3cb99885ad3137bc742c6a77feadcdd01d250285179c7e0a93b396b3c7588d", + "state": { + "depositToken": 0, + "blockNumber": 307780228, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007853", + "pairedTokenBalance": "10178", + "usedToken0": "1700133762405589347991", + "usedToken1": "10843090233", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x871cd250d7418e7cfdad607e29f76f9a6b930e18a10afe362b2177bc90bddac0", + "state": { + "depositToken": 0, + "blockNumber": 307795891, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007852", + "pairedTokenBalance": "10177", + "usedToken0": "1700133762405589347990", + "usedToken1": "10843090232", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1717de8d3c0a09bbfe8db50676f9603298813a42f304dc482b7a8c84ae126466", + "state": { + "depositToken": 0, + "blockNumber": 307811536, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007851", + "pairedTokenBalance": "10176", + "usedToken0": "1700133762405589347989", + "usedToken1": "10843090231", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x757aa42e93e656d214630972d3bf299a247fabc79c54af494e521e93c827ff4f", + "state": { + "depositToken": 0, + "blockNumber": 307827231, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007850", + "pairedTokenBalance": "10175", + "usedToken0": "1700133762405589347988", + "usedToken1": "10843090230", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa4ac70102a369e05da11b646f794490d1c65d6255ea62c5cef9cb50e771e742b", + "state": { + "depositToken": 0, + "blockNumber": 307842792, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007849", + "pairedTokenBalance": "10174", + "usedToken0": "1700133762405589347987", + "usedToken1": "10843090229", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x03e287b89b17aa7f44dbb5500a45e7b13ef277f0a7266b6c1410818903bb5462", + "state": { + "depositToken": 0, + "blockNumber": 307858304, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007848", + "pairedTokenBalance": "10173", + "usedToken0": "1700133762405589347986", + "usedToken1": "10843090228", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xed5b8f7566857accd51937e2a88278036e4ebe6c2dbe06a6a95975e55181ab00", + "state": { + "depositToken": 0, + "blockNumber": 307873859, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007847", + "pairedTokenBalance": "10172", + "usedToken0": "1700133762405589347985", + "usedToken1": "10843090227", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4a3431e4c8e764b717b774c1d444e91854379ac9939f9a62458a81fbfec6313b", + "state": { + "depositToken": 0, + "blockNumber": 307889361, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282402", + "currentPrice": "544565", + "twapSlow": "544565", + "twapFast": "544565", + "depositTokenBalance": "1224007846", + "pairedTokenBalance": "10171", + "usedToken0": "1700133762405589347984", + "usedToken1": "10843090226", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xd73456594f8c0ba2c49fac486c59f01140211b14e95c667788296b07b73f378d", + "state": { + "depositToken": 0, + "blockNumber": 307904985, + "lastRebalancePrice": "544565", + "state": "1", + "currentTick": "-282372", + "currentPrice": "546201", + "twapSlow": "545655", + "twapFast": "546201", + "depositTokenBalance": "1224007845", + "pairedTokenBalance": "10170", + "usedToken0": "1445600249176936531979", + "usedToken1": "10981916711", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-282400", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-284800", + "topTick": "-282400" + } + } + }, + { + "transactionHash": "0x9c0458cd5751dc292acf87ec1e227d8286b621d13f8fd3072d2117c2a3a04039", + "state": { + "depositToken": 0, + "blockNumber": 309375623, + "lastRebalancePrice": "546201", + "state": "0", + "currentTick": "-282458", + "currentPrice": "541524", + "twapSlow": "541632", + "twapFast": "541524", + "depositTokenBalance": "0", + "pairedTokenBalance": "337646", + "usedToken0": "1956710441660059352014", + "usedToken1": "10705437533", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x87ef0f3f55068493ed22d3e9aa6e180cab7ec22d01d4e161727b43c9afe45ef7", + "state": { + "depositToken": 0, + "blockNumber": 309391238, + "lastRebalancePrice": "541524", + "state": "1", + "currentTick": "-282468", + "currentPrice": "540983", + "twapSlow": "540983", + "twapFast": "540983", + "depositTokenBalance": "2240264422", + "pairedTokenBalance": "40437", + "usedToken0": "2046685186851487071484", + "usedToken1": "10663164396", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfa389f4f255bc4a4b05d55704f817ca5806e84cd2fa73cd4a9f0f8f19724e1fd", + "state": { + "depositToken": 0, + "blockNumber": 309406827, + "lastRebalancePrice": "540983", + "state": "1", + "currentTick": "-282468", + "currentPrice": "540983", + "twapSlow": "540983", + "twapFast": "540983", + "depositTokenBalance": "2237538164", + "pairedTokenBalance": "25969", + "usedToken0": "2047347641720956094539", + "usedToken1": "10663164395", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1fa41de4e259bb194fd31004873b48861243d427fe103c61e01fefa830422cb4", + "state": { + "depositToken": 0, + "blockNumber": 309422438, + "lastRebalancePrice": "540983", + "state": "1", + "currentTick": "-282468", + "currentPrice": "540983", + "twapSlow": "540983", + "twapFast": "540983", + "depositTokenBalance": "2237538163", + "pairedTokenBalance": "25968", + "usedToken0": "2047347641720956094538", + "usedToken1": "10663164394", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9bb1f43bdcf0e7ff969653429edc3cecca931b696e5c79df64f1f24307db0747", + "state": { + "depositToken": 0, + "blockNumber": 309438023, + "lastRebalancePrice": "540983", + "state": "1", + "currentTick": "-282468", + "currentPrice": "540983", + "twapSlow": "540983", + "twapFast": "540983", + "depositTokenBalance": "2237538162", + "pairedTokenBalance": "25967", + "usedToken0": "2047347641720956094537", + "usedToken1": "10663164393", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xca2db969b8d3c1941d4d98082b700aedbbcf1fdcba507cb54ce5f8c240773818", + "state": { + "depositToken": 0, + "blockNumber": 309453687, + "lastRebalancePrice": "540983", + "state": "1", + "currentTick": "-282498", + "currentPrice": "539362", + "twapSlow": "540226", + "twapFast": "539362", + "depositTokenBalance": "2237538161", + "pairedTokenBalance": "25966", + "usedToken0": "2280746604078027022158", + "usedToken1": "10537086329", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x47086b3aed81145fde95755f597f3478cc292b38a84be060d790d168cde23061", + "state": { + "depositToken": 0, + "blockNumber": 309469306, + "lastRebalancePrice": "539362", + "state": "1", + "currentTick": "-282498", + "currentPrice": "539362", + "twapSlow": "539362", + "twapFast": "539362", + "depositTokenBalance": "2230674889", + "pairedTokenBalance": "20294", + "usedToken0": "2282632656299094261981", + "usedToken1": "10537086328", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1fdd766eb6990a804a908d7c8b19a4696ae3f51d35c60a726bb12088e205a639", + "state": { + "depositToken": 0, + "blockNumber": 309484944, + "lastRebalancePrice": "539362", + "state": "1", + "currentTick": "-282498", + "currentPrice": "539362", + "twapSlow": "539362", + "twapFast": "539362", + "depositTokenBalance": "2230674888", + "pairedTokenBalance": "20293", + "usedToken0": "2282632656299094261980", + "usedToken1": "10537086327", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xaa1c573aebc6549817ce2ee814ca5c2b97e5f57314bb08eedf7b4124b969f76c", + "state": { + "depositToken": 0, + "blockNumber": 309500499, + "lastRebalancePrice": "539362", + "state": "1", + "currentTick": "-282498", + "currentPrice": "539362", + "twapSlow": "539362", + "twapFast": "539362", + "depositTokenBalance": "2230674887", + "pairedTokenBalance": "20292", + "usedToken0": "2282632656299094261979", + "usedToken1": "10537086326", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x266afda6a6a0a27e473aaea36b8cde97ed8604463cd415b218e28358b83551f7", + "state": { + "depositToken": 0, + "blockNumber": 309516105, + "lastRebalancePrice": "539362", + "state": "1", + "currentTick": "-282509", + "currentPrice": "538770", + "twapSlow": "539039", + "twapFast": "538770", + "depositTokenBalance": "2230674886", + "pairedTokenBalance": "20291", + "usedToken0": "2365323372195529207728", + "usedToken1": "10492509707", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xfdf3a74653bf2d75d2280eac2639ef6eea661ec0e027bd1f97a310dd782229ac", + "state": { + "depositToken": 0, + "blockNumber": 309531697, + "lastRebalancePrice": "538770", + "state": "1", + "currentTick": "-282509", + "currentPrice": "538770", + "twapSlow": "538770", + "twapFast": "538770", + "depositTokenBalance": "2228340903", + "pairedTokenBalance": "55566", + "usedToken0": "2365991580000752924461", + "usedToken1": "10492509706", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284600", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x35d2d7e6dde315ee2c3cce58ebf9330a3e76486f314afc18ddbc380f7db0aa39", + "state": { + "depositToken": 0, + "blockNumber": 309547173, + "lastRebalancePrice": "538770", + "state": "1", + "currentTick": "-282586", + "currentPrice": "534637", + "twapSlow": "537532", + "twapFast": "534637", + "depositTokenBalance": "2228340902", + "pairedTokenBalance": "55565", + "usedToken0": "2964070741153045452242", + "usedToken1": "10171514548", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x9fe2bebc8981f8fac896fd9767ca992626486a25ada7ce522f41995ee049b31e", + "state": { + "depositToken": 0, + "blockNumber": 309562760, + "lastRebalancePrice": "534637", + "state": "1", + "currentTick": "-282634", + "currentPrice": "532077", + "twapSlow": "533196", + "twapFast": "532077", + "depositTokenBalance": "1468181440", + "pairedTokenBalance": "63615", + "usedToken0": "3337881384150950808996", + "usedToken1": "9974711588", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282200" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa99ec7f6a2a61ceed7a03b88cc2c19cb4f01bedcb58825ca9370221bc69b4b0c", + "state": { + "depositToken": 0, + "blockNumber": 309578391, + "lastRebalancePrice": "532077", + "state": "1", + "currentTick": "-282658", + "currentPrice": "530802", + "twapSlow": "531333", + "twapFast": "530802", + "depositTokenBalance": "1460582789", + "pairedTokenBalance": "59642", + "usedToken0": "3529261839883788978919", + "usedToken1": "9874583772", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-284800", + "topTick": "-282400" + }, + "limitPosition": { + "bottomTick": "-282400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xf400ca5a6a1ed3f37e941a14e64ff01473cf55fc32360fc98169586f59c2bd17", + "state": { + "depositToken": 0, + "blockNumber": 309681534, + "lastRebalancePrice": "530802", + "state": "1", + "currentTick": "-282785", + "currentPrice": "524104", + "twapSlow": "527152", + "twapFast": "524104", + "depositTokenBalance": "0", + "pairedTokenBalance": "1146160", + "usedToken0": "4695683807748299672306", + "usedToken1": "9260133730", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-282600" + }, + "limitPosition": { + "bottomTick": "-282600", + "topTick": "-282000" + } + } + }, + { + "transactionHash": "0x8be3e3ffe8e6bb926f72ca3519f7deaae65c92760ba30b5688de258b504ae262", + "state": { + "depositToken": 0, + "blockNumber": 310179059, + "lastRebalancePrice": "524104", + "state": "2", + "currentTick": "-282999", + "currentPrice": "513007", + "twapSlow": "516095", + "twapFast": "513007", + "depositTokenBalance": "0", + "pairedTokenBalance": "81090", + "usedToken0": "4894822647029449094568", + "usedToken1": "9161748225", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-282800" + }, + "limitPosition": { + "bottomTick": "-282800", + "topTick": "-282200" + } + } + }, + { + "transactionHash": "0x2cf63410a9d93a85058e9ccc2d2ba087b168d6ed873b42277f5ffb1b4364b905", + "state": { + "depositToken": 0, + "blockNumber": 310194862, + "lastRebalancePrice": "513007", + "state": "2", + "currentTick": "-283243", + "currentPrice": "500642", + "twapSlow": "503604", + "twapFast": "500642", + "depositTokenBalance": "0", + "pairedTokenBalance": "150810", + "usedToken0": "5118027056151725430151", + "usedToken1": "9051551863", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-283200" + }, + "limitPosition": { + "bottomTick": "-283200", + "topTick": "-282400" + } + } + }, + { + "transactionHash": "0xf11eaa728f1518b5afd8ade6e5035dc4417ad9ecb602a20e3df89e6e1d91226d", + "state": { + "depositToken": 0, + "blockNumber": 310626448, + "lastRebalancePrice": "500642", + "state": "2", + "currentTick": "-283477", + "currentPrice": "489064", + "twapSlow": "493041", + "twapFast": "489064", + "depositTokenBalance": "0", + "pairedTokenBalance": "137719", + "usedToken0": "5332702058825251253503", + "usedToken1": "8946199514", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-283400" + }, + "limitPosition": { + "bottomTick": "-283400", + "topTick": "-282600" + } + } + }, + { + "transactionHash": "0x09339fc92ec7ce060c3e4f3e0353d3cddd7981167247d2bc5cf80c59f12f11e1", + "state": { + "depositToken": 0, + "blockNumber": 310641924, + "lastRebalancePrice": "489064", + "state": "2", + "currentTick": "-283712", + "currentPrice": "477705", + "twapSlow": "483956", + "twapFast": "477705", + "depositTokenBalance": "0", + "pairedTokenBalance": "61023", + "usedToken0": "5554141595016876802943", + "usedToken1": "8843584261", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-283600" + }, + "limitPosition": { + "bottomTick": "-283600", + "topTick": "-282800" + } + } + }, + { + "transactionHash": "0x5a1654695139161dd7ae15b96e9d4a7cc663da350a59ff0663559ec9a6211a43", + "state": { + "depositToken": 0, + "blockNumber": 310669960, + "lastRebalancePrice": "477705", + "state": "2", + "currentTick": "-283968", + "currentPrice": "465632", + "twapSlow": "470264", + "twapFast": "465632", + "depositTokenBalance": "0", + "pairedTokenBalance": "119432", + "usedToken0": "5794184227176562379782", + "usedToken1": "8731189124", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-283800" + }, + "limitPosition": { + "bottomTick": "-283800", + "topTick": "-283200" + } + } + }, + { + "transactionHash": "0xafd2a1b3483aa1b208b7c02c5c17b34b83977aeca75d247e23ae7073e07d20c9", + "state": { + "depositToken": 0, + "blockNumber": 310826919, + "lastRebalancePrice": "465632", + "state": "2", + "currentTick": "-283756", + "currentPrice": "475608", + "twapSlow": "471819", + "twapFast": "475513", + "depositTokenBalance": "0", + "pairedTokenBalance": "62258", + "usedToken0": "5216827962532255674069", + "usedToken1": "9005320438", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-283600" + }, + "limitPosition": { + "bottomTick": "-283600", + "topTick": "-283000" + } + } + }, + { + "transactionHash": "0x500fc38a04e27a1c58bbe44bedf9b5dbcc03ccd2e2b12f93470416a2c4f52cc0", + "state": { + "depositToken": 0, + "blockNumber": 311526783, + "lastRebalancePrice": "475608", + "state": "2", + "currentTick": "-283445", + "currentPrice": "490631", + "twapSlow": "483665", + "twapFast": "487355", + "depositTokenBalance": "0", + "pairedTokenBalance": "149514", + "usedToken0": "3739193996215887242238", + "usedToken1": "9726190199", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285600", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x17a83730cfda71490d12f0581ab55de0c5c52ea2800ea6aac78a18423e06b675", + "state": { + "depositToken": 0, + "blockNumber": 311551510, + "lastRebalancePrice": "490631", + "state": "1", + "currentTick": "-283234", + "currentPrice": "501093", + "twapSlow": "500943", + "twapFast": "501093", + "depositTokenBalance": "1189534922", + "pairedTokenBalance": "89806", + "usedToken0": "1957078348038333055014", + "usedToken1": "10619646838", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb278ce31435ecc3e9a02936b6bb1bb0e56c50078f5f1d441ec7e875c010716fc", + "state": { + "depositToken": 0, + "blockNumber": 311574201, + "lastRebalancePrice": "501093", + "state": "1", + "currentTick": "-283234", + "currentPrice": "501093", + "twapSlow": "501093", + "twapFast": "501093", + "depositTokenBalance": "1951197487", + "pairedTokenBalance": "40623", + "usedToken0": "1957078348038333055013", + "usedToken1": "10626804046", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xa1dc33a2f4e4c365f2fcc8e11ba1198be1630863a198838e2c41564b447fd014", + "state": { + "depositToken": 0, + "blockNumber": 311589787, + "lastRebalancePrice": "501093", + "state": "1", + "currentTick": "-283229", + "currentPrice": "501343", + "twapSlow": "501243", + "twapFast": "501343", + "depositTokenBalance": "1951197486", + "pairedTokenBalance": "40622", + "usedToken0": "1915641339557011550563", + "usedToken1": "10647574053", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x3b6bbec5a8ffb2a891426f00e365e20b7f9acbfc3dfe861b5e43783e351f1300", + "state": { + "depositToken": 0, + "blockNumber": 311605374, + "lastRebalancePrice": "501343", + "state": "1", + "currentTick": "-283215", + "currentPrice": "502046", + "twapSlow": "501644", + "twapFast": "502046", + "depositTokenBalance": "1951365324", + "pairedTokenBalance": "40621", + "usedToken0": "1796966990735508511758", + "usedToken1": "10707283101", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe060e93add732c6284013f72ff92cc3ed9b1106e9eef5ebb0ef6bdd96fb85b99", + "state": { + "depositToken": 0, + "blockNumber": 311620830, + "lastRebalancePrice": "502046", + "state": "1", + "currentTick": "-283211", + "currentPrice": "502247", + "twapSlow": "502096", + "twapFast": "502247", + "depositTokenBalance": "1951846466", + "pairedTokenBalance": "25567", + "usedToken0": "1761696897153702977799", + "usedToken1": "10725476102", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xda43136c982a01edafa399d9229cbd9d5c8caf8e4debaf031a4ee67b8a179b6e", + "state": { + "depositToken": 0, + "blockNumber": 311636356, + "lastRebalancePrice": "502247", + "state": "1", + "currentTick": "-283211", + "currentPrice": "502247", + "twapSlow": "502247", + "twapFast": "502247", + "depositTokenBalance": "1951989592", + "pairedTokenBalance": "25566", + "usedToken0": "1761696897153702977798", + "usedToken1": "10725619228", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x6f5efbc8d43c728a8637384eb1d3e51e6e70c207e2644bda60d0426405943573", + "state": { + "depositToken": 0, + "blockNumber": 311651896, + "lastRebalancePrice": "502247", + "state": "1", + "currentTick": "-283216", + "currentPrice": "501996", + "twapSlow": "502196", + "twapFast": "501996", + "depositTokenBalance": "1951989591", + "pairedTokenBalance": "25565", + "usedToken0": "1802547570550186736004", + "usedToken1": "10705105604", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2e840acd0e3e76c7763f6a0b891bbcfebaf509a465a4e76d2f155b4b71928944", + "state": { + "depositToken": 0, + "blockNumber": 311667388, + "lastRebalancePrice": "501996", + "state": "1", + "currentTick": "-283219", + "currentPrice": "501845", + "twapSlow": "501945", + "twapFast": "501845", + "depositTokenBalance": "1950386603", + "pairedTokenBalance": "29351", + "usedToken0": "1829057873969938234035", + "usedToken1": "10691964154", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x11d8c1587814ed65f97d770aaca931cbba8a72f6518b1763f354f14b36a4194f", + "state": { + "depositToken": 0, + "blockNumber": 311682946, + "lastRebalancePrice": "501845", + "state": "1", + "currentTick": "-283221", + "currentPrice": "501745", + "twapSlow": "501745", + "twapFast": "501745", + "depositTokenBalance": "1949375512", + "pairedTokenBalance": "39104", + "usedToken0": "1844862683133758950933", + "usedToken1": "10684138881", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x49b353f3fa84060ce8aa43b8013b4c806b3b5833f3b0146351d7aa2b6662d2a4", + "state": { + "depositToken": 0, + "blockNumber": 311698437, + "lastRebalancePrice": "501745", + "state": "1", + "currentTick": "-283221", + "currentPrice": "501745", + "twapSlow": "501745", + "twapFast": "501745", + "depositTokenBalance": "1948778917", + "pairedTokenBalance": "46222", + "usedToken0": "1844988689210660801829", + "usedToken1": "10684138880", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf4228632763709f7e373dfa583de92dea13a2c8a6f34f41b41ad6680854ad979", + "state": { + "depositToken": 0, + "blockNumber": 311713928, + "lastRebalancePrice": "501745", + "state": "1", + "currentTick": "-283221", + "currentPrice": "501745", + "twapSlow": "501745", + "twapFast": "501745", + "depositTokenBalance": "1948778916", + "pairedTokenBalance": "46221", + "usedToken0": "1844988689210660801828", + "usedToken1": "10684138879", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xccd47323909709632c2b6e5028d8d7a787b3252fe739b8722c83bb880608d784", + "state": { + "depositToken": 0, + "blockNumber": 311752864, + "lastRebalancePrice": "501745", + "state": "1", + "currentTick": "-283235", + "currentPrice": "501043", + "twapSlow": "501043", + "twapFast": "501043", + "depositTokenBalance": "1948778915", + "pairedTokenBalance": "46220", + "usedToken0": "1962563807300619854103", + "usedToken1": "10625181902", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x2615b3804675ee035cc532cb80f65b17d6de4e0e4cbc600b120a4bc9ea7f784e", + "state": { + "depositToken": 0, + "blockNumber": 311794257, + "lastRebalancePrice": "501043", + "state": "1", + "currentTick": "-283236", + "currentPrice": "500993", + "twapSlow": "500993", + "twapFast": "500993", + "depositTokenBalance": "1944578558", + "pairedTokenBalance": "45895", + "usedToken0": "1974428633986395848731", + "usedToken1": "10619712979", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xb22fd1683e3402c3dd7148968ea676c291da7fd5001649fbad274080dafbc895", + "state": { + "depositToken": 0, + "blockNumber": 311872530, + "lastRebalancePrice": "500993", + "state": "1", + "currentTick": "-283184", + "currentPrice": "503604", + "twapSlow": "503655", + "twapFast": "503604", + "depositTokenBalance": "1944191029", + "pairedTokenBalance": "17123", + "usedToken0": "1538968925679006334592", + "usedToken1": "10838498599", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-283200", + "topTick": "887200" + }, + "limitPosition": { + "bottomTick": "-285600", + "topTick": "-283200" + } + } + }, + { + "transactionHash": "0xfbf1b0bccc82e865dba0b92b034d966a4d19a3b90dabafc4f63adf5a7f87f1d5", + "state": { + "depositToken": 0, + "blockNumber": 311918796, + "lastRebalancePrice": "503604", + "state": "0", + "currentTick": "-283311", + "currentPrice": "497249", + "twapSlow": "497797", + "twapFast": "497249", + "depositTokenBalance": "0", + "pairedTokenBalance": "441996", + "usedToken0": "2596136778875164003647", + "usedToken1": "10312567284", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-285400", + "topTick": "-283000" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x8de20233331f6e4edc98782fecaeb61f39f7668068e300aaab0d697ad8d5dc2e", + "state": { + "depositToken": 0, + "blockNumber": 314569721, + "lastRebalancePrice": "497249", + "state": "1", + "currentTick": "-284534", + "currentPrice": "440010", + "twapSlow": "440010", + "twapFast": "440010", + "depositTokenBalance": "1967478431", + "pairedTokenBalance": "29290", + "usedToken0": "13269205955323086864406", + "usedToken1": "5323801953", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-284400" + }, + "limitPosition": { + "bottomTick": "-284400", + "topTick": "887200" + } + } + }, + { + "transactionHash": "0xb8d797f6bc988e0e5bc94ac3a6a036dd955b5e8effbef8d95688e35e795acf7d", + "state": { + "depositToken": 0, + "blockNumber": 314585370, + "lastRebalancePrice": "440010", + "state": "3", + "currentTick": "-284534", + "currentPrice": "440010", + "twapSlow": "440010", + "twapFast": "440010", + "depositTokenBalance": "0", + "pairedTokenBalance": "1019393", + "usedToken0": "13405441961895252145995", + "usedToken1": "5346864764", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-284400" + }, + "limitPosition": { + "bottomTick": "-284400", + "topTick": "-283600" + } + } + }, + { + "transactionHash": "0x24e2765939e1058e4ab641e8145de6a84597c616a348426b3847157ec0287b91", + "state": { + "depositToken": 0, + "blockNumber": 315083148, + "lastRebalancePrice": "440010", + "state": "2", + "currentTick": "-284579", + "currentPrice": "438035", + "twapSlow": "438035", + "twapFast": "438035", + "depositTokenBalance": "999926944", + "pairedTokenBalance": "265539", + "usedToken0": "13437723413468956103742", + "usedToken1": "6336763528", + "priceChangeTrigger": "200", + "simulateTrigger": "9300", + "normalTrigger": "8300", + "underTrigger": "8000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887200", + "topTick": "-284400" + }, + "limitPosition": { + "bottomTick": "-284400", + "topTick": "-283800" + } + } + } +] +} From 1ca0116f7b9cc7b3330585d494505bc016196f51 Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 26 Mar 2025 15:52:47 +0300 Subject: [PATCH 09/42] bug fix --- .../contracts/base/BaseRebalanceManager.sol | 5 +++++ src/plugin/contracts/test/AlmPluginTest.sol | 6 +++++- .../test/MockNonFungiblePositionManager.sol | 6 ++++++ src/plugin/package-lock.json | 14 +++++++++++--- src/plugin/package.json | 2 +- src/plugin/test/AlmPlugin.spec.ts | 16 ++++++++++------ 6 files changed, 38 insertions(+), 11 deletions(-) create mode 100644 src/plugin/contracts/test/MockNonFungiblePositionManager.sol diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 776f3f2f4..6bc2a1ed5 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -300,6 +300,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.currentTick = currentTick; twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; bool _allowToken1 = allowToken1; + // console.log("allowToken1: ", allowToken1); if (_allowToken1) { // почему они эту строку наверх не вынесли? (uint256 amount0, uint256 amount1) = IAlgebraVault(vault).getTotalAmounts(); @@ -337,6 +338,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); // console.log('2.5'); + // console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); + // console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); + // console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); @@ -944,6 +948,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); + // console.log("_tokenDecimals: ", _tokenDecimals); return TickMath.getTickAtSqrtRatio(sqrtPriceX96); } diff --git a/src/plugin/contracts/test/AlmPluginTest.sol b/src/plugin/contracts/test/AlmPluginTest.sol index fa9855d16..389e49cfd 100644 --- a/src/plugin/contracts/test/AlmPluginTest.sol +++ b/src/plugin/contracts/test/AlmPluginTest.sol @@ -112,7 +112,11 @@ contract AlmPluginTest is BaseRebalanceManager { } function setDecimals(uint8 _depositDecimals, uint8 _pairedDecimals) public { - (depositDecimals, pairedDecimals) = (_depositDecimals, _pairedDecimals); + (depositTokenDecimals, pairedTokenDecimals) = (_depositDecimals, _pairedDecimals); + + decimalsSum = _depositDecimals + _pairedDecimals; + // console.log('decimals sum: ', decimalsSum); + tokenDecimals = allowToken1 ? _pairedDecimals : _depositDecimals; } function _getDepositTokenVaultBalance() internal view override returns (uint256) { diff --git a/src/plugin/contracts/test/MockNonFungiblePositionManager.sol b/src/plugin/contracts/test/MockNonFungiblePositionManager.sol new file mode 100644 index 000000000..4d1374a23 --- /dev/null +++ b/src/plugin/contracts/test/MockNonFungiblePositionManager.sol @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: UNLICENSED +pragma solidity =0.8.20; + +contract MockNonFungiblePositionManager { + address public pencil; +} diff --git a/src/plugin/package-lock.json b/src/plugin/package-lock.json index 1aef42550..c25f66ed9 100644 --- a/src/plugin/package-lock.json +++ b/src/plugin/package-lock.json @@ -10,7 +10,7 @@ "license": "GPL-2.0-or-later", "dependencies": { "@cryptoalgebra/alm-vault": "^1.2.1", - "@cryptoalgebra/integral-core": "1.2.1", + "@cryptoalgebra/integral-core": "^1.2.1", "@cryptoalgebra/integral-periphery": "1.2.1" }, "engines": { @@ -138,8 +138,16 @@ } }, "node_modules/@cryptoalgebra/integral-core": { - "resolved": "../core", - "link": true + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@cryptoalgebra/integral-core/-/integral-core-1.2.1.tgz", + "integrity": "sha512-+Lj7y2ZqpJ58fNtqTRvrMv/HPcyqNkMpINu9LQK6/iMDePmzNoywogLLiGU34MlxAaGEwO6XNWM7ENq/YzzZzA==", + "dependencies": { + "@openzeppelin/contracts": "4.9.3" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=8.0.0" + } }, "node_modules/@cryptoalgebra/integral-periphery": { "resolved": "../periphery", diff --git a/src/plugin/package.json b/src/plugin/package.json index d57b00cb7..1e7158663 100644 --- a/src/plugin/package.json +++ b/src/plugin/package.json @@ -28,7 +28,7 @@ }, "dependencies": { "@cryptoalgebra/alm-vault": "^1.2.1", - "@cryptoalgebra/integral-core": "1.2.1", + "@cryptoalgebra/integral-core": "^1.2.1", "@cryptoalgebra/integral-periphery": "1.2.1" }, "scripts": { diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts index 36a37aa44..b43c9ecaa 100644 --- a/src/plugin/test/AlmPlugin.spec.ts +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -25,11 +25,15 @@ describe('#AlmPlugin', () => { baseHighPct: string | number, limitReservePct: string | number, }, - tickSpacing: number + tickSpacing: number, + allowToken0: boolean, + allowToken1: boolean ) { const mockVaultFactory = await ethers.getContractFactory('MockVault'); const mockVault = await mockVaultFactory.deploy(ZERO_ADDRESS, true, false) as any as MockVault; + await mockVault.setAllowTokens(allowToken0, allowToken1); + const almPluginFactory = await ethers.getContractFactory('AlmPluginTest'); const almPlugin = (await almPluginFactory.deploy( await mockVault.getAddress(), @@ -58,11 +62,11 @@ describe('#AlmPlugin', () => { baseLowPct: 3000, // было 2000 baseHighPct: 1500, // было 3000 limitReservePct: 500, - }, 228); + }, 228, true, false); }); }); - describe('#rebalance', () => { + describe('#rebalance1', () => { for (const rebalance of rebalances) { it(`rebalance for tx ${rebalance.transactionHash}`, async () => { const { almPlugin, mockVault } = await almPluginFixture({ @@ -79,7 +83,7 @@ describe('#AlmPlugin', () => { baseLowPct: rebalance.state.baseLowPct, baseHighPct: rebalance.state.baseHighPct, limitReservePct: rebalance.state.limitReservePct, - }, 60); + }, 60, true, false); const state = rebalance.state; const currentTick = BigInt(state.currentTick); @@ -128,7 +132,7 @@ describe('#AlmPlugin', () => { baseLowPct: rebalance.state.baseLowPct, baseHighPct: rebalance.state.baseHighPct, limitReservePct: rebalance.state.limitReservePct, - }, 60); + }, 60, true, false); const state = rebalance.state; const currentTick = BigInt(state.currentTick); @@ -177,7 +181,7 @@ describe('#AlmPlugin', () => { baseLowPct: rebalance.state.baseLowPct, baseHighPct: rebalance.state.baseHighPct, limitReservePct: rebalance.state.limitReservePct, - }, 200); + }, 200, false, true); const state = rebalance.state; const currentTick = BigInt(state.currentTick); From 360959f53a0d5502d806c2248f7c6c11fa80ea7d Mon Sep 17 00:00:00 2001 From: IliaAzhel Date: Wed, 26 Mar 2025 16:32:40 +0300 Subject: [PATCH 10/42] fix alm plugin factory --- src/plugin/contracts/AlgebraBasePluginALMFactory.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALMFactory.sol b/src/plugin/contracts/AlgebraBasePluginALMFactory.sol index e63dcdd75..f36fced88 100644 --- a/src/plugin/contracts/AlgebraBasePluginALMFactory.sol +++ b/src/plugin/contracts/AlgebraBasePluginALMFactory.sol @@ -3,7 +3,7 @@ pragma solidity =0.8.20; import './interfaces/IBasePluginV1Factory.sol'; import './libraries/AdaptiveFee.sol'; -import './AlgebraBasePluginV1.sol'; +import './AlgebraBasePluginALM.sol'; /// @title Algebra Integral 1.2.1 default plugin factory /// @notice This contract creates Algebra adaptive fee plugins for Algebra liquidity pools @@ -59,7 +59,7 @@ contract AlgebraBasePluginALMFactory is IBasePluginV1Factory { function _createPlugin(address pool) internal returns (address) { require(pluginByPool[pool] == address(0), 'Already created'); - IDynamicFeeManager volatilityOracle = new AlgebraBasePluginV1(pool, algebraFactory, address(this), defaultFeeConfiguration); + IDynamicFeeManager volatilityOracle = new AlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration); pluginByPool[pool] = address(volatilityOracle); return address(volatilityOracle); } From 30ca550471ee6c72c7abf7da03e73795064201e6 Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 26 Mar 2025 17:28:10 +0300 Subject: [PATCH 11/42] +fixtures --- .../test/MockAlgebraBasePluginALM.sol | 26 +- .../contracts/test/MockRebalanceManager.sol | 15 + src/plugin/contracts/test/MockVault.sol | 2 +- src/plugin/test/AlgebraBasePluginALM.spec.ts | 444 +++++++++--------- .../AlgebraBasePluginALM.spec.ts.snap | 3 + src/plugin/test/shared/externalFixtures.ts | 222 ++++----- src/plugin/test/shared/fixtures.ts | 65 ++- 7 files changed, 435 insertions(+), 342 deletions(-) create mode 100644 src/plugin/contracts/test/MockRebalanceManager.sol create mode 100644 src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol index ae5ce4d4c..002c93639 100644 --- a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol @@ -3,11 +3,21 @@ pragma solidity =0.8.20; import '../AlgebraBasePluginALM.sol'; -// contract MockAlgebraBasePluginALM is AlgebraBasePluginALM { -// constructor( -// address _pool, -// address _factory, -// address _pluginFactory, -// AlgebraFeeConfiguration memory _config -// ) AlgebraBasePluginALM(_pool, _factory, _pluginFactory, _config) {} -// } +contract MockAlgebraBasePluginALM is AlgebraBasePluginALM { + + // Monday, October 5, 2020 9:00:00 AM GMT-05:00 + uint256 public time = 1601906400; + + constructor( + address _pool, + address _factory, + address _pluginFactory, + AlgebraFeeConfiguration memory _config + ) AlgebraBasePluginALM(_pool, _factory, _pluginFactory, _config) {} + + function advanceTime(uint256 by) external { + unchecked { + time += by; + } + } +} diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol new file mode 100644 index 000000000..2a2b5756d --- /dev/null +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -0,0 +1,15 @@ +// SPDX-License-Identifier: UNLICENSED +pragma solidity =0.8.20; + +import '../RebalanceManager.sol'; + +contract MockRebalanceManager is RebalanceManager { + constructor(address _vault, Thresholds memory _thresholds) RebalanceManager(_vault, _thresholds) {} + function _getDepositTokenDecimals() internal view override returns (uint8) { + return 18; + } + + function _getPairedTokenDecimals() internal view override returns (uint8) { + return 18; + } +} diff --git a/src/plugin/contracts/test/MockVault.sol b/src/plugin/contracts/test/MockVault.sol index 52b8c1558..f173f0ca3 100644 --- a/src/plugin/contracts/test/MockVault.sol +++ b/src/plugin/contracts/test/MockVault.sol @@ -66,7 +66,7 @@ contract MockVault is IAlgebraVault, ERC20 { // pool = _pool; // token0 = IAlgebraPool(_pool).token0(); // token1 = IAlgebraPool(_pool).token1(); - pool = address(0); + pool = _pool; token0 = address(0); token1 = address(0); allowToken0 = _allowToken0; diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 32545f5d8..6e5d30085 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -3,19 +3,21 @@ import { ethers } from 'hardhat'; import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'; import checkTimepointEquals from './shared/checkTimepointEquals'; import { expect } from './shared/expect'; -import { TEST_POOL_START_TIME, pluginFixture } from './shared/fixtures'; +import { TEST_POOL_START_TIME, pluginFixtureALM } from './shared/fixtures'; import { PLUGIN_FLAGS, encodePriceSqrt, expandTo18Decimals, getMaxTick, getMinTick } from './shared/utilities'; -import { MockPool, MockTimeAlgebraBasePluginV1, MockTimeDSFactory, MockTimeVirtualPool } from '../typechain'; +import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, MockTimeVirtualPool, MockVault, RebalanceManager } from '../typechain'; import snapshotGasCost from './shared/snapshotGasCost'; -describe('AlgebraBasePluginV1', () => { +describe('AlgebraBasePluginALM', () => { let wallet: Wallet, other: Wallet; - let plugin: MockTimeAlgebraBasePluginV1; // modified plugin + let mockVault: MockVault; + let rebalanceManager: RebalanceManager; + let plugin: MockAlgebraBasePluginALM; // modified plugin + let mockPluginFactory: MockAlgebraBasePluginALMFactory; // modified plugin factory let mockPool: MockPool; // mock of AlgebraPool - let mockPluginFactory: MockTimeDSFactory; // modified plugin factory let minTick = getMinTick(60); let maxTick = getMaxTick(60); @@ -29,7 +31,7 @@ describe('AlgebraBasePluginV1', () => { }); beforeEach('deploy test AlgebraBasePluginV1', async () => { - ({ plugin, mockPool, mockPluginFactory } = await loadFixture(pluginFixture)); + ({ mockVault, rebalanceManager, plugin, mockPluginFactory, mockPool } = await loadFixture(pluginFixtureALM)); }); describe('#Initialize', async () => { @@ -498,225 +500,225 @@ describe('AlgebraBasePluginV1', () => { }); }); - describe('#FarmingPlugin', () => { - describe('virtual pool tests', () => { - let virtualPoolMock: MockTimeVirtualPool; - - beforeEach('deploy virtualPoolMock', async () => { - await mockPluginFactory.setFarmingAddress(wallet); - const virtualPoolMockFactory = await ethers.getContractFactory('MockTimeVirtualPool'); - virtualPoolMock = (await virtualPoolMockFactory.deploy()) as any as MockTimeVirtualPool; - }); - - it('set incentive works', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); - }); - - it('can detach incentive', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await plugin.setIncentive(ZeroAddress); - expect(await plugin.incentive()).to.be.eq(ZeroAddress); - }); - - it('can detach incentive even if no more has rights to connect plugins', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await mockPluginFactory.setFarmingAddress(other); - await plugin.setIncentive(ZeroAddress); - expect(await plugin.incentive()).to.be.eq(ZeroAddress); - }); - - it('cannot attach incentive even if no more has rights to connect plugins', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await mockPluginFactory.setFarmingAddress(other); - await expect(plugin.setIncentive(other)).to.be.revertedWith('Not allowed to set incentive'); - }); - - it('new farming can detach old incentive', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await mockPluginFactory.setFarmingAddress(other); - await plugin.connect(other).setIncentive(ZeroAddress); - expect(await plugin.incentive()).to.be.eq(ZeroAddress); - }); - - it('cannot detach incentive if nothing connected', async () => { - await mockPool.setPlugin(plugin); - await expect(plugin.setIncentive(ZeroAddress)).to.be.revertedWith('Already active'); - expect(await plugin.incentive()).to.be.eq(ZeroAddress); - }); - - it('cannot set same incentive twice', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Already active'); - }); - - it('cannot set incentive if has active', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await expect(plugin.setIncentive(wallet.address)).to.be.revertedWith('Has active incentive'); - }); - - it('can detach incentive if not connected to pool', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - await plugin.setIncentive(virtualPoolMock); - expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); - await mockPool.setPlugin(ZeroAddress); - await plugin.setIncentive(ZeroAddress); - expect(await plugin.incentive()).to.be.eq(ZeroAddress); - }); - - it('can set incentive if afterSwap hook is active', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - await plugin.setIncentive(virtualPoolMock); - expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); - expect((await mockPool.globalState()).pluginConfig).to.be.eq(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - }); - - it('set incentive works only for PluginFactory.farmingAddress', async () => { - await mockPluginFactory.setFarmingAddress(ZeroAddress); - await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Not allowed to set incentive'); - }); - - it('incentive can not be attached if plugin is not attached', async () => { - await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Plugin not attached'); - }); - - it('incentive attached before initialization', async () => { - await mockPool.setPlugin(plugin); - - await plugin.setIncentive(virtualPoolMock); - await mockPool.initialize(encodePriceSqrt(1, 1)); - await mockPool.mint(wallet.address, wallet.address, -120, 120, 1, '0x'); - await mockPool.mint(wallet.address, wallet.address, minTick, maxTick, 1, '0x'); - - await mockPool.swapToTick(-130); - - expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); - expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; - - const tick = (await mockPool.globalState()).tick; - expect(await virtualPoolMock.currentTick()).to.be.eq(tick); - expect(await virtualPoolMock.timestamp()).to.be.gt(0); - }); - - it('incentive attached after initialization', async () => { - await mockPool.setPlugin(plugin); - await mockPool.initialize(encodePriceSqrt(1, 1)); - await plugin.setIncentive(virtualPoolMock); - - await mockPool.mint(wallet.address, wallet.address, -120, 120, 1, '0x'); - await mockPool.mint(wallet.address, wallet.address, minTick, maxTick, 1, '0x'); - - await mockPool.swapToTick(-130); - - expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); - expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; - - const tick = (await mockPool.globalState()).tick; - expect(await virtualPoolMock.currentTick()).to.be.eq(tick); - expect(await virtualPoolMock.timestamp()).to.be.gt(0); - }); - - it.skip('swap with finished incentive', async () => { - /*await virtualPoolMock.setIsExist(false); - await mockPool.setIncentive(virtualPoolMock.address); - await mockPool.initialize(encodePriceSqrt(1, 1)); - await mint(wallet.address, -120, 120, 1); - await mint(wallet.address, minTick, maxTick, 1); - expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); + // describe('#FarmingPlugin', () => { + // describe('virtual pool tests', () => { + // let virtualPoolMock: MockTimeVirtualPool; + + // beforeEach('deploy virtualPoolMock', async () => { + // await mockPluginFactory.setFarmingAddress(wallet); + // const virtualPoolMockFactory = await ethers.getContractFactory('MockTimeVirtualPool'); + // virtualPoolMock = (await virtualPoolMockFactory.deploy()) as any as MockTimeVirtualPool; + // }); + + // it('set incentive works', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + // }); + + // it('can detach incentive', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await plugin.setIncentive(ZeroAddress); + // expect(await plugin.incentive()).to.be.eq(ZeroAddress); + // }); + + // it('can detach incentive even if no more has rights to connect plugins', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await mockPluginFactory.setFarmingAddress(other); + // await plugin.setIncentive(ZeroAddress); + // expect(await plugin.incentive()).to.be.eq(ZeroAddress); + // }); + + // it('cannot attach incentive even if no more has rights to connect plugins', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await mockPluginFactory.setFarmingAddress(other); + // await expect(plugin.setIncentive(other)).to.be.revertedWith('Not allowed to set incentive'); + // }); + + // it('new farming can detach old incentive', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await mockPluginFactory.setFarmingAddress(other); + // await plugin.connect(other).setIncentive(ZeroAddress); + // expect(await plugin.incentive()).to.be.eq(ZeroAddress); + // }); + + // it('cannot detach incentive if nothing connected', async () => { + // await mockPool.setPlugin(plugin); + // await expect(plugin.setIncentive(ZeroAddress)).to.be.revertedWith('Already active'); + // expect(await plugin.incentive()).to.be.eq(ZeroAddress); + // }); + + // it('cannot set same incentive twice', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Already active'); + // }); + + // it('cannot set incentive if has active', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await expect(plugin.setIncentive(wallet.address)).to.be.revertedWith('Has active incentive'); + // }); + + // it('can detach incentive if not connected to pool', async () => { + // const defaultConfig = await plugin.defaultPluginConfig(); + // await mockPool.setPlugin(plugin); + // await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + // await plugin.setIncentive(virtualPoolMock); + // expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + // await mockPool.setPlugin(ZeroAddress); + // await plugin.setIncentive(ZeroAddress); + // expect(await plugin.incentive()).to.be.eq(ZeroAddress); + // }); + + // it('can set incentive if afterSwap hook is active', async () => { + // const defaultConfig = await plugin.defaultPluginConfig(); + // await mockPool.setPlugin(plugin); + // await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + // await plugin.setIncentive(virtualPoolMock); + // expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + // expect((await mockPool.globalState()).pluginConfig).to.be.eq(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + // }); + + // it('set incentive works only for PluginFactory.farmingAddress', async () => { + // await mockPluginFactory.setFarmingAddress(ZeroAddress); + // await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Not allowed to set incentive'); + // }); + + // it('incentive can not be attached if plugin is not attached', async () => { + // await expect(plugin.setIncentive(virtualPoolMock)).to.be.revertedWith('Plugin not attached'); + // }); + + // it('incentive attached before initialization', async () => { + // await mockPool.setPlugin(plugin); + + // await plugin.setIncentive(virtualPoolMock); + // await mockPool.initialize(encodePriceSqrt(1, 1)); + // await mockPool.mint(wallet.address, wallet.address, -120, 120, 1, '0x'); + // await mockPool.mint(wallet.address, wallet.address, minTick, maxTick, 1, '0x'); + + // await mockPool.swapToTick(-130); + + // expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + // expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; + + // const tick = (await mockPool.globalState()).tick; + // expect(await virtualPoolMock.currentTick()).to.be.eq(tick); + // expect(await virtualPoolMock.timestamp()).to.be.gt(0); + // }); + + // it('incentive attached after initialization', async () => { + // await mockPool.setPlugin(plugin); + // await mockPool.initialize(encodePriceSqrt(1, 1)); + // await plugin.setIncentive(virtualPoolMock); + + // await mockPool.mint(wallet.address, wallet.address, -120, 120, 1, '0x'); + // await mockPool.mint(wallet.address, wallet.address, minTick, maxTick, 1, '0x'); + + // await mockPool.swapToTick(-130); + + // expect(await plugin.incentive()).to.be.eq(await virtualPoolMock.getAddress()); + // expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; + + // const tick = (await mockPool.globalState()).tick; + // expect(await virtualPoolMock.currentTick()).to.be.eq(tick); + // expect(await virtualPoolMock.timestamp()).to.be.gt(0); + // }); + + // it.skip('swap with finished incentive', async () => { + // /*await virtualPoolMock.setIsExist(false); + // await mockPool.setIncentive(virtualPoolMock.address); + // await mockPool.initialize(encodePriceSqrt(1, 1)); + // await mint(wallet.address, -120, 120, 1); + // await mint(wallet.address, minTick, maxTick, 1); + // expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); - await swapToLowerPrice(encodePriceSqrt(1, 2), wallet.address); + // await swapToLowerPrice(encodePriceSqrt(1, 2), wallet.address); - expect(await mockPool.activeIncentive()).to.be.eq(ethers.constants.AddressZero); - expect(await virtualPoolMock.currentTick()).to.be.eq(0); - expect(await virtualPoolMock.timestamp()).to.be.eq(0); - */ - }); - - it.skip('swap with not started yet incentive', async () => { - /* - await virtualPoolMock.setIsStarted(false); - await mockPool.setIncentive(virtualPoolMock.address); - await mockPool.initialize(encodePriceSqrt(1, 1)); - await mint(wallet.address, -120, 120, 1); - await mint(wallet.address, minTick, maxTick, 1); - expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); + // expect(await mockPool.activeIncentive()).to.be.eq(ethers.constants.AddressZero); + // expect(await virtualPoolMock.currentTick()).to.be.eq(0); + // expect(await virtualPoolMock.timestamp()).to.be.eq(0); + // */ + // }); + + // it.skip('swap with not started yet incentive', async () => { + // /* + // await virtualPoolMock.setIsStarted(false); + // await mockPool.setIncentive(virtualPoolMock.address); + // await mockPool.initialize(encodePriceSqrt(1, 1)); + // await mint(wallet.address, -120, 120, 1); + // await mint(wallet.address, minTick, maxTick, 1); + // expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); - await swapToLowerPrice(encodePriceSqrt(1, 2), wallet.address); + // await swapToLowerPrice(encodePriceSqrt(1, 2), wallet.address); - const tick = (await mockPool.globalState()).tick; - expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); - expect(await virtualPoolMock.currentTick()).to.be.eq(tick); - expect(await virtualPoolMock.timestamp()).to.be.eq(0); - */ - }); - }); - - describe('#isIncentiveConnected', () => { - let virtualPoolMock: MockTimeVirtualPool; - - beforeEach('deploy virtualPoolMock', async () => { - await mockPluginFactory.setFarmingAddress(wallet); - const virtualPoolMockFactory = await ethers.getContractFactory('MockTimeVirtualPool'); - virtualPoolMock = (await virtualPoolMockFactory.deploy()) as any as MockTimeVirtualPool; - }); - - it('true with active incentive', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; - }); - - it('false with invalid address', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - expect(await plugin.isIncentiveConnected(wallet.address)).to.be.false; - }); - - it('false if plugin detached', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await mockPool.setPlugin(ZeroAddress); - expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.false; - }); - - it('false if hook deactivated', async () => { - await mockPool.setPlugin(plugin); - await plugin.setIncentive(virtualPoolMock); - await mockPool.setPluginConfig(0); - expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.false; - }); - }); - - describe('#Incentive', () => { - it('incentive is not detached after swap', async () => { - await mockPool.setPlugin(plugin); - await initializeAtZeroTick(mockPool); - await mockPluginFactory.setFarmingAddress(wallet.address); - - const vpStubFactory = await ethers.getContractFactory('MockTimeVirtualPool'); - let vpStub = (await vpStubFactory.deploy()) as any as MockTimeVirtualPool; - - await plugin.setIncentive(vpStub); - const initLiquidityAmount = 10000000000n; - await mockPool.mint(wallet.address, wallet.address, -120, 120, initLiquidityAmount, '0x'); - await mockPool.mint(wallet.address, wallet.address, -1200, 1200, initLiquidityAmount, '0x'); - await mockPool.swapToTick(-200); - - expect(await plugin.incentive()).to.be.eq(await vpStub.getAddress()); - }); - }); - }); + // const tick = (await mockPool.globalState()).tick; + // expect(await mockPool.activeIncentive()).to.be.eq(virtualPoolMock.address); + // expect(await virtualPoolMock.currentTick()).to.be.eq(tick); + // expect(await virtualPoolMock.timestamp()).to.be.eq(0); + // */ + // }); + // }); + + // describe('#isIncentiveConnected', () => { + // let virtualPoolMock: MockTimeVirtualPool; + + // beforeEach('deploy virtualPoolMock', async () => { + // await mockPluginFactory.setFarmingAddress(wallet); + // const virtualPoolMockFactory = await ethers.getContractFactory('MockTimeVirtualPool'); + // virtualPoolMock = (await virtualPoolMockFactory.deploy()) as any as MockTimeVirtualPool; + // }); + + // it('true with active incentive', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.true; + // }); + + // it('false with invalid address', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // expect(await plugin.isIncentiveConnected(wallet.address)).to.be.false; + // }); + + // it('false if plugin detached', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await mockPool.setPlugin(ZeroAddress); + // expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.false; + // }); + + // it('false if hook deactivated', async () => { + // await mockPool.setPlugin(plugin); + // await plugin.setIncentive(virtualPoolMock); + // await mockPool.setPluginConfig(0); + // expect(await plugin.isIncentiveConnected(virtualPoolMock)).to.be.false; + // }); + // }); + + // describe('#Incentive', () => { + // it('incentive is not detached after swap', async () => { + // await mockPool.setPlugin(plugin); + // await initializeAtZeroTick(mockPool); + // await mockPluginFactory.setFarmingAddress(wallet.address); + + // const vpStubFactory = await ethers.getContractFactory('MockTimeVirtualPool'); + // let vpStub = (await vpStubFactory.deploy()) as any as MockTimeVirtualPool; + + // await plugin.setIncentive(vpStub); + // const initLiquidityAmount = 10000000000n; + // await mockPool.mint(wallet.address, wallet.address, -120, 120, initLiquidityAmount, '0x'); + // await mockPool.mint(wallet.address, wallet.address, -1200, 1200, initLiquidityAmount, '0x'); + // await mockPool.swapToTick(-200); + + // expect(await plugin.incentive()).to.be.eq(await vpStub.getAddress()); + // }); + // }); + // }); describe('AlgebraBasePluginV1 external methods', () => { describe('#changeFeeConfiguration', () => { diff --git a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap new file mode 100644 index 000000000..125f25465 --- /dev/null +++ b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap @@ -0,0 +1,3 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`AlgebraBasePluginALM AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `21065`; diff --git a/src/plugin/test/shared/externalFixtures.ts b/src/plugin/test/shared/externalFixtures.ts index 742ac919a..ac00b9d73 100644 --- a/src/plugin/test/shared/externalFixtures.ts +++ b/src/plugin/test/shared/externalFixtures.ts @@ -1,111 +1,111 @@ -import { - abi as FACTORY_ABI, - bytecode as FACTORY_BYTECODE, -} from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraFactory.sol/AlgebraFactory.json'; -import { - abi as TEST_CALLEE_ABI, - bytecode as TEST_CALLEE_BYTECODE, -} from '@cryptoalgebra/integral-core/artifacts/contracts/test/TestAlgebraCallee.sol/TestAlgebraCallee.json'; -import { - abi as POOL_DEPLOYER_ABI, - bytecode as POOL_DEPLOYER_BYTECODE, -} from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPoolDeployer.sol/MockTimeAlgebraPoolDeployer.json'; -import { - abi as POOL_ABI, - bytecode as POOL_BYTECODE, -} from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPool.sol/MockTimeAlgebraPool.json'; -import { - abi as COM_VAULT_DEPLOYER_ABI, - bytecode as COM_VAULT_DEPLOYER_BYTECODE, -} from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraCommunityVault.sol/AlgebraCommunityVault.json'; -import { - abi as COM_VAULT_STUB_DEPLOYER_ABI, - bytecode as COM_VAULT_STUB_DEPLOYER_BYTECODE, -} from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraVaultFactoryStub.sol/AlgebraVaultFactoryStub.json'; - -import { ethers } from 'hardhat'; -import { - MockTimeAlgebraPoolDeployer, - AlgebraCommunityVault, - TestAlgebraCallee, - MockTimeAlgebraPool, - AlgebraFactory, - TestERC20, -} from '@cryptoalgebra/integral-core/typechain'; -import { getCreateAddress } from 'ethers'; -import { ZERO_ADDRESS } from './fixtures'; - -interface TokensFixture { - token0: TestERC20; - token1: TestERC20; -} - -export async function tokensFixture(): Promise { - const tokenFactory = await ethers.getContractFactory('TestERC20'); - const tokenA = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; - const tokenB = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; - - tokenA.address = await tokenA.getAddress(); - tokenB.address = await tokenB.getAddress(); - - const [token0, token1] = [tokenA, tokenB].sort((_tokenA, _tokenB) => (_tokenA.address.toLowerCase() < _tokenB.address.toLowerCase() ? -1 : 1)); - - return { token0, token1 }; -} - -interface MockPoolDeployerFixture extends TokensFixture { - poolDeployer: MockTimeAlgebraPoolDeployer; - swapTargetCallee: TestAlgebraCallee; - factory: AlgebraFactory; - createPool(firstToken?: TestERC20, secondToken?: TestERC20): Promise; -} -export const algebraPoolDeployerMockFixture: () => Promise = async () => { - const { token0, token1 } = await tokensFixture(); - - const [deployer] = await ethers.getSigners(); - // precompute - const poolDeployerAddress = getCreateAddress({ - from: deployer.address, - nonce: (await ethers.provider.getTransactionCount(deployer.address)) + 1, - }); - - const factoryFactory = await ethers.getContractFactory(FACTORY_ABI, FACTORY_BYTECODE); - const factory = (await factoryFactory.deploy(poolDeployerAddress)) as any as AlgebraFactory; - - const poolDeployerFactory = await ethers.getContractFactory(POOL_DEPLOYER_ABI, POOL_DEPLOYER_BYTECODE); - const poolDeployer = (await poolDeployerFactory.deploy()) as any as MockTimeAlgebraPoolDeployer; - - const ADMIN_ROLE = await factory.POOLS_ADMINISTRATOR_ROLE(); - await factory.grantRole(ADMIN_ROLE, poolDeployer); - - const vaultFactory = await ethers.getContractFactory(COM_VAULT_DEPLOYER_ABI, COM_VAULT_DEPLOYER_BYTECODE); - const vault = (await vaultFactory.deploy(factory, deployer.address)) as any as AlgebraCommunityVault; - - const vaultFactoryStubFactory = await ethers.getContractFactory(COM_VAULT_STUB_DEPLOYER_ABI, COM_VAULT_STUB_DEPLOYER_BYTECODE); - const vaultFactoryStub = await vaultFactoryStubFactory.deploy(vault); - - await factory.setVaultFactory(vaultFactoryStub); - - const calleeContractFactory = await ethers.getContractFactory(TEST_CALLEE_ABI, TEST_CALLEE_BYTECODE); - const swapTargetCallee = (await calleeContractFactory.deploy()) as any as TestAlgebraCallee; - - const MockTimeAlgebraPoolFactory = await ethers.getContractFactory(POOL_ABI, POOL_BYTECODE); - - return { - poolDeployer, - swapTargetCallee, - token0, - token1, - factory, - createPool: async (firstToken = token0, secondToken = token1) => { - await poolDeployer.deployMock(factory, firstToken, secondToken); - - const sortedTokens = - BigInt(await firstToken.getAddress()) < BigInt(await secondToken.getAddress()) - ? [await firstToken.getAddress(), await secondToken.getAddress()] - : [await secondToken.getAddress(), await firstToken.getAddress()]; - const poolAddress = await poolDeployer.computeAddress(sortedTokens[0], sortedTokens[1]); - return MockTimeAlgebraPoolFactory.attach(poolAddress) as any as MockTimeAlgebraPool; - }, - }; -}; +// import { +// abi as FACTORY_ABI, +// bytecode as FACTORY_BYTECODE, +// } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraFactory.sol/AlgebraFactory.json'; +// import { +// abi as TEST_CALLEE_ABI, +// bytecode as TEST_CALLEE_BYTECODE, +// } from '@cryptoalgebra/integral-core/artifacts/contracts/test/TestAlgebraCallee.sol/TestAlgebraCallee.json'; +// import { +// abi as POOL_DEPLOYER_ABI, +// bytecode as POOL_DEPLOYER_BYTECODE, +// } from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPoolDeployer.sol/MockTimeAlgebraPoolDeployer.json'; +// import { +// abi as POOL_ABI, +// bytecode as POOL_BYTECODE, +// } from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPool.sol/MockTimeAlgebraPool.json'; +// import { +// abi as COM_VAULT_DEPLOYER_ABI, +// bytecode as COM_VAULT_DEPLOYER_BYTECODE, +// } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraCommunityVault.sol/AlgebraCommunityVault.json'; +// import { +// abi as COM_VAULT_STUB_DEPLOYER_ABI, +// bytecode as COM_VAULT_STUB_DEPLOYER_BYTECODE, +// } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraVaultFactoryStub.sol/AlgebraVaultFactoryStub.json'; + +// import { ethers } from 'hardhat'; +// import { +// MockTimeAlgebraPoolDeployer, +// AlgebraCommunityVault, +// TestAlgebraCallee, +// MockTimeAlgebraPool, +// AlgebraFactory, +// TestERC20, +// } from '@cryptoalgebra/integral-core/typechain'; +// import { getCreateAddress } from 'ethers'; +// import { ZERO_ADDRESS } from './fixtures'; + +// interface TokensFixture { +// token0: TestERC20; +// token1: TestERC20; +// } + +// export async function tokensFixture(): Promise { +// const tokenFactory = await ethers.getContractFactory('TestERC20'); +// const tokenA = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; +// const tokenB = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; + +// tokenA.address = await tokenA.getAddress(); +// tokenB.address = await tokenB.getAddress(); + +// const [token0, token1] = [tokenA, tokenB].sort((_tokenA, _tokenB) => (_tokenA.address.toLowerCase() < _tokenB.address.toLowerCase() ? -1 : 1)); + +// return { token0, token1 }; +// } + +// interface MockPoolDeployerFixture extends TokensFixture { +// poolDeployer: MockTimeAlgebraPoolDeployer; +// swapTargetCallee: TestAlgebraCallee; +// factory: AlgebraFactory; +// createPool(firstToken?: TestERC20, secondToken?: TestERC20): Promise; +// } +// export const algebraPoolDeployerMockFixture: () => Promise = async () => { +// const { token0, token1 } = await tokensFixture(); + +// const [deployer] = await ethers.getSigners(); +// // precompute +// const poolDeployerAddress = getCreateAddress({ +// from: deployer.address, +// nonce: (await ethers.provider.getTransactionCount(deployer.address)) + 1, +// }); + +// const factoryFactory = await ethers.getContractFactory(FACTORY_ABI, FACTORY_BYTECODE); +// const factory = (await factoryFactory.deploy(poolDeployerAddress)) as any as AlgebraFactory; + +// const poolDeployerFactory = await ethers.getContractFactory(POOL_DEPLOYER_ABI, POOL_DEPLOYER_BYTECODE); +// const poolDeployer = (await poolDeployerFactory.deploy()) as any as MockTimeAlgebraPoolDeployer; + +// const ADMIN_ROLE = await factory.POOLS_ADMINISTRATOR_ROLE(); +// await factory.grantRole(ADMIN_ROLE, poolDeployer); + +// const vaultFactory = await ethers.getContractFactory(COM_VAULT_DEPLOYER_ABI, COM_VAULT_DEPLOYER_BYTECODE); +// const vault = (await vaultFactory.deploy(factory, deployer.address)) as any as AlgebraCommunityVault; + +// const vaultFactoryStubFactory = await ethers.getContractFactory(COM_VAULT_STUB_DEPLOYER_ABI, COM_VAULT_STUB_DEPLOYER_BYTECODE); +// const vaultFactoryStub = await vaultFactoryStubFactory.deploy(vault); + +// await factory.setVaultFactory(vaultFactoryStub); + +// const calleeContractFactory = await ethers.getContractFactory(TEST_CALLEE_ABI, TEST_CALLEE_BYTECODE); +// const swapTargetCallee = (await calleeContractFactory.deploy()) as any as TestAlgebraCallee; + +// const MockTimeAlgebraPoolFactory = await ethers.getContractFactory(POOL_ABI, POOL_BYTECODE); + +// return { +// poolDeployer, +// swapTargetCallee, +// token0, +// token1, +// factory, +// createPool: async (firstToken = token0, secondToken = token1) => { +// await poolDeployer.deployMock(factory, firstToken, secondToken); + +// const sortedTokens = +// BigInt(await firstToken.getAddress()) < BigInt(await secondToken.getAddress()) +// ? [await firstToken.getAddress(), await secondToken.getAddress()] +// : [await secondToken.getAddress(), await firstToken.getAddress()]; +// const poolAddress = await poolDeployer.computeAddress(sortedTokens[0], sortedTokens[1]); +// return MockTimeAlgebraPoolFactory.attach(poolAddress) as any as MockTimeAlgebraPool; +// }, +// }; +// }; diff --git a/src/plugin/test/shared/fixtures.ts b/src/plugin/test/shared/fixtures.ts index 2e464009b..68ccf0acf 100644 --- a/src/plugin/test/shared/fixtures.ts +++ b/src/plugin/test/shared/fixtures.ts @@ -1,5 +1,5 @@ import { ethers } from 'hardhat'; -import { MockFactory, MockPool, MockTimeAlgebraBasePluginV1, MockTimeAlgebraBasePluginV2, MockTimeDSFactoryV2, MockTimeDSFactory, BasePluginV1Factory, BasePluginV2Factory } from '../../typechain'; +import { MockFactory, MockPool, MockTimeAlgebraBasePluginV1, MockTimeAlgebraBasePluginV2, MockTimeDSFactoryV2, MockTimeDSFactory, BasePluginV1Factory, BasePluginV2Factory, MockAlgebraBasePluginALMFactory, MockVault, RebalanceManager, MockAlgebraBasePluginALM, MockRebalanceManager } from '../../typechain'; type Fixture = () => Promise; interface MockFactoryFixture { @@ -99,4 +99,67 @@ export const pluginFixtureV2: Fixture = async function (): Promis mockPool, mockFactory, }; +}; + +interface ALMPluginFixture extends MockFactoryFixture { + mockVault: MockVault; + rebalanceManager: MockRebalanceManager; + plugin: MockAlgebraBasePluginALM; + mockPluginFactory: MockAlgebraBasePluginALMFactory; + mockPool: MockPool; +} + +export const pluginFixtureALM: Fixture = async function (): Promise { + const { mockFactory } = await mockFactoryFixture(); + //const { token0, token1, token2 } = await tokensFixture() + + const mockPoolFactory = await ethers.getContractFactory('MockPool'); + const mockPool = (await mockPoolFactory.deploy()) as any as MockPool; + + const mockPluginFactoryFactory = await ethers.getContractFactory('MockAlgebraBasePluginALMFactory'); + const mockPluginFactory = (await mockPluginFactoryFactory.deploy(mockFactory)) as any as MockAlgebraBasePluginALMFactory; + + const mockVaultFactory = await ethers.getContractFactory('MockVault'); + const mockVault = await mockVaultFactory.deploy(await mockPool.getAddress(), true, false) as any as MockVault; + + await mockVault.setAllowTokens(true, false); + + const thresholds = { + depositTokenUnusedThreshold: 100, + simulate: 9400, // было 9300 + normalThreshold: 8100, // было 8000 + underInventoryThreshold: 7800, // было 7700 + overInventoryThreshold: 9100, + priceChangeThreshold: 100, + extremeVolatility: 2500, + highVolatility: 900, // было 500 + someVolatility: 200, // было 100 + dtrDelta: 300, + baseLowPct: 3000, // было 2000 + baseHighPct: 1500, // было 3000 + limitReservePct: 500, + } + + const rebalanceManagerFactory = await ethers.getContractFactory('MockRebalanceManager'); + const rebalanceManager = (await rebalanceManagerFactory.deploy( + await mockVault.getAddress(), + thresholds + )) as any as MockRebalanceManager; + + await mockPluginFactory.beforeCreatePoolHook(mockPool, ZERO_ADDRESS, ZERO_ADDRESS, ZERO_ADDRESS, ZERO_ADDRESS, '0x'); + const pluginAddress = await mockPluginFactory.pluginByPool(mockPool); + + const mockAlgebraBasePluginALMFactory = await ethers.getContractFactory('MockAlgebraBasePluginALM'); + const plugin = mockAlgebraBasePluginALMFactory.attach(pluginAddress) as any as MockAlgebraBasePluginALM; + + await plugin.setRebalanceManager(await rebalanceManager.getAddress()); + + return { + mockVault, + rebalanceManager, + plugin, + mockPluginFactory, + mockPool, + mockFactory, + }; }; \ No newline at end of file From 1b56985e83158afccd8fe377531276404dc73cd4 Mon Sep 17 00:00:00 2001 From: IliaAzhel Date: Wed, 26 Mar 2025 19:24:21 +0300 Subject: [PATCH 12/42] add base testnet to hardhat config & deploy script fixes --- deploys.json | 2 +- hardhat.base.config.ts | 14 +++++++++++--- src/periphery/scripts/deploy.js | 2 +- src/plugin/scripts/deploy.js | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/deploys.json b/deploys.json index 9e26dfeeb..edc61a2be 100644 --- a/deploys.json +++ b/deploys.json @@ -1 +1 @@ -{} \ No newline at end of file +{"poolDeployer":"0x32e3F485696b2C6dBBc5C83A5Cb803Af72e1ecF3","factory":"0x5E4F01767A1068C5570c29fDF9bf743b0Aa637d7","vault":"0xCEeAfFE7E3DfEB7656B1E7E9c3516455A7Bb7aF9","vaultFactory":"0xe1909bcA4E528f7361b63F82330269d3001011e1","BasePluginV1Factory":"0x5dee969A86c9F99642Bdc14bdffFB6173228501c","wrapped":"0x4200000000000000000000000000000000000006","entryPoint":"0x8aD26dc9f724c9A7319E0E25b907d15626D9a056","tickLens":"0x3aA96eDb755C44F3E50C5408a36abb52f28326Ba","quoter":"0xc58874216AFe47779ADED27B8AAd77E8Bd6eBEBb","quoterV2":"0x4e73E421480a7E0C24fB3c11019254edE194f736","swapRouter":"0x4b2A38344b9aAc2F4e82130f35F1630C80ED94Bb","proxy":"0x348b694d0b6E43D6C7D9d6E2E1E2e9C739De5a74","nonfungiblePositionManager":"0x9ea4459c8DefBF561495d95414b9CF1E2242a3E2","eternal":"0xf3b57fE4d5D0927C3A5e549CB6aF1866687e2D62","fc":"0x211BD8917d433B7cC1F4497AbA906554Ab6ee479"} \ No newline at end of file diff --git a/hardhat.base.config.ts b/hardhat.base.config.ts index babb1010b..fa3e22ddb 100644 --- a/hardhat.base.config.ts +++ b/hardhat.base.config.ts @@ -87,9 +87,9 @@ export default { chainId: 41, accounts: [`0x${MNEMONIC || '1000000000000000000000000000000000000000000000000000000000000000'}`], }, - beraTestnet: { - url: `https://artio.rpc.berachain.com/`, - chainId: 80085, + baseTestnet: { + url: `https://base-sepolia-rpc.publicnode.com`, + chainId: 84532, accounts: [`0x${MNEMONIC || '1000000000000000000000000000000000000000000000000000000000000000'}`], }, maticMainnet: { @@ -117,6 +117,14 @@ export default { browserURL: 'https://seitrace.com/', }, }, + { + network: 'baseTestnet', + chainId: 84532, + urls: { + apiURL: 'https://api-sepolia.basescan.org/api', + browserURL: 'https://sepolia.basescan.org/', + }, + }, { network: 'mode', chainId: 34443, diff --git a/src/periphery/scripts/deploy.js b/src/periphery/scripts/deploy.js index 02e3041fe..4bf8363f3 100644 --- a/src/periphery/scripts/deploy.js +++ b/src/periphery/scripts/deploy.js @@ -9,7 +9,7 @@ async function main() { let deploysData = JSON.parse(fs.readFileSync(deployDataPath, 'utf8')); // WNativeTokenAddress - const WNativeTokenAddress = '0x94373a4919b3240d86ea41593d5eba789fef3848'; + const WNativeTokenAddress = '0x4200000000000000000000000000000000000006'; const signers = await hre.ethers.getSigners(); const ProxyAdmin = signers[0].address; diff --git a/src/plugin/scripts/deploy.js b/src/plugin/scripts/deploy.js index fa1ac5a91..aabb10dd5 100644 --- a/src/plugin/scripts/deploy.js +++ b/src/plugin/scripts/deploy.js @@ -7,7 +7,7 @@ async function main() { const deployDataPath = path.resolve(__dirname, '../../../deploys.json') const deploysData = JSON.parse(fs.readFileSync(deployDataPath, 'utf8')) - const BasePluginV1Factory = await hre.ethers.getContractFactory("BasePluginV1Factory"); + const BasePluginV1Factory = await hre.ethers.getContractFactory("AlgebraBasePluginALMFactory"); const dsFactory = await BasePluginV1Factory.deploy(deploysData.factory); await dsFactory.waitForDeployment() From 0314abcfdbb68c9282132077db32654808ec0674 Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 27 Mar 2025 14:04:12 +0300 Subject: [PATCH 13/42] first alm test --- src/plugin/contracts/AlgebraBasePluginALM.sol | 3 + .../contracts/base/BaseRebalanceManager.sol | 32 +++++++--- src/plugin/contracts/plugins/AlmPlugin.sol | 3 +- .../plugins/VolatilityOraclePlugin.sol | 4 ++ .../test/MockAlgebraBasePluginALM.sol | 4 ++ .../test/MockAlgebraBasePluginALMFactory.sol | 7 ++- src/plugin/contracts/test/MockPool.sol | 3 + .../contracts/test/MockRebalanceManager.sol | 27 +++++--- src/plugin/test/AlgebraBasePluginALM.spec.ts | 62 +++++++++++++++++-- src/plugin/test/shared/fixtures.ts | 26 -------- 10 files changed, 120 insertions(+), 51 deletions(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index 28b406547..ab7c398bf 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -10,6 +10,8 @@ import './plugins/AlmPlugin.sol'; import './plugins/SlidingFeePlugin.sol'; import './plugins/VolatilityOraclePlugin.sol'; +import 'hardhat/console.sol'; + /// @title Algebra Integral 1.2.1 adaptive fee plugin contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePlugin { using Plugins for uint8; @@ -57,6 +59,7 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl } function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { + console.log('entered after swap'); ( , int24 currentTick, , ) = _getPoolState(); uint32 lastBlockTimestamp = _getLastBlockTimestamp(); diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 6bc2a1ed5..2186386ea 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -14,7 +14,7 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -// import 'hardhat/console.sol'; +import 'hardhat/console.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -191,7 +191,21 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint32 lastBlockTimestamp, bool failedToObtainTWAP ) external { + console.log('entered obtainTWAPAndRebalance'); TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + console.log("TWAP RESULT START"); + console.log(twapResult.currentPriceAccountingDecimals); + console.log(twapResult.slowAvgPriceAccountingDecimals); + console.log(twapResult.fastAvgPriceAccountingDecimals); + console.log(twapResult.totalPairedInDeposit); + console.log(twapResult.totalDepositToken); + console.log(twapResult.totalPairedToken); + console.logInt(twapResult.currentTick); + console.log(twapResult.percentageOfDepositTokenUnused); + console.log(twapResult.percentageOfDepositToken); + console.log(twapResult.failedToObtainTWAP); + console.log(twapResult.sameBlock); + console.log("TWAP RESULT END"); _rebalance(twapResult); } @@ -291,7 +305,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // bool sameBlock; done // } - // console.log('entered obtain twaps'); + console.log('entered obtain twaps'); twapResult.failedToObtainTWAP = failedToObtainTWAP; if (failedToObtainTWAP) { return twapResult; @@ -334,13 +348,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); // twapResult.fastAvgPriceAccountingDecimals = fastPrice; - // console.log('2'); + console.log('2'); // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); - // console.log('2.5'); - // console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); - // console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); - // console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); + console.log('2.5'); + console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); + console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); + console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); @@ -348,6 +362,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('3'); + console.log('totalPairedInDeposit: ', totalPairedInDeposit); if (totalPairedInDeposit == 0) { twapResult.percentageOfDepositToken = 10000; } else { @@ -369,6 +384,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (depositTokenBalance > 0) { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; + console.log('totalTokensAmount: ', totalTokensAmount); // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; // че за v42 и v43, надо чекнуть первоначальный декомпайл // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) @@ -582,6 +598,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('targetPrice: ', targetPrice); // console.log('lowerPriceBound: ', lowerPriceBound); + console.log('tickSpacing'); + console.logInt(_tickSpacing); int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); bool currentTickIsRound = roundedTick == twapResult.currentTick; diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index a1c7ab3bb..b66c86c9c 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -5,7 +5,7 @@ import '../base/AlgebraBasePlugin.sol'; import '../interfaces/plugins/IAlmPlugin.sol'; import '../interfaces/IRebalanceManager.sol'; -// import 'hardhat/console.sol'; +import 'hardhat/console.sol'; abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { address public rebalanceManager; @@ -34,6 +34,7 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { } function setRebalanceManager(address _rebalanceManager) external { + console.log('setRebalanceManager called'); _authorize(); require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); rebalanceManager = _rebalanceManager; diff --git a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol index d401f61ca..caa2d888c 100644 --- a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol +++ b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol @@ -10,6 +10,8 @@ import '../interfaces/plugins/IVolatilityOracle.sol'; import '../libraries/VolatilityOracle.sol'; import '../base/AlgebraBasePlugin.sol'; +import 'hardhat/console.sol'; + /// @title Algebra Integral 1.2.1 VolatilityOraclePlugin plugin /// @notice This contract stores timepoints and calculates adaptive fee and statistical averages abstract contract VolatilityOraclePlugin is AlgebraBasePlugin, IVolatilityOracle { @@ -34,7 +36,9 @@ abstract contract VolatilityOraclePlugin is AlgebraBasePlugin, IVolatilityOracle /// @inheritdoc IVolatilityOracle function initialize() external override { + console.log('initialize called'); require(!isInitialized, 'Already initialized'); + console.log("plugin address in solidity: ", address(this)); require(_getPluginInPool() == address(this), 'Plugin not attached'); (uint160 price, int24 tick, , ) = _getPoolState(); require(price != 0, 'Pool is not initialized'); diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol index 002c93639..4a7d39919 100644 --- a/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALM.sol @@ -20,4 +20,8 @@ contract MockAlgebraBasePluginALM is AlgebraBasePluginALM { time += by; } } + + function _blockTimestamp() internal view override returns (uint32) { + return uint32(time); + } } diff --git a/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol b/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol index d0a42f8cc..98caab95f 100644 --- a/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol +++ b/src/plugin/contracts/test/MockAlgebraBasePluginALMFactory.sol @@ -21,6 +21,7 @@ contract MockAlgebraBasePluginALMFactory is IAlgebraBasePluginALMFactory { constructor(address _algebraFactory) { algebraFactory = _algebraFactory; + defaultFeeConfiguration = AdaptiveFee.initialFeeConfiguration(); } /// @inheritdoc IAlgebraPluginFactory @@ -48,9 +49,9 @@ contract MockAlgebraBasePluginALMFactory is IAlgebraBasePluginALMFactory { } function _createPlugin(address pool) internal returns (address) { - // MockAlgebraBasePluginALM plugin = new MockAlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration); - // pluginByPool[pool] = address(plugin); - // return address(plugin); + MockAlgebraBasePluginALM plugin = new MockAlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration); + pluginByPool[pool] = address(plugin); + return address(plugin); } function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external override { diff --git a/src/plugin/contracts/test/MockPool.sol b/src/plugin/contracts/test/MockPool.sol index 2528518c4..8f8bad16a 100644 --- a/src/plugin/contracts/test/MockPool.sol +++ b/src/plugin/contracts/test/MockPool.sol @@ -13,6 +13,8 @@ import '@cryptoalgebra/integral-core/contracts/interfaces/pool/IAlgebraPoolPermi import '@cryptoalgebra/integral-core/contracts/interfaces/pool/IAlgebraPoolErrors.sol'; import '@cryptoalgebra/integral-core/contracts/interfaces/plugin/IAlgebraPlugin.sol'; +import 'hardhat/console.sol'; + /// @title Mock of Algebra concentrated liquidity pool for plugins testing contract MockPool is IAlgebraPoolActions, IAlgebraPoolPermissionedActions, IAlgebraPoolState { struct GlobalState { @@ -180,6 +182,7 @@ contract MockPool is IAlgebraPoolActions, IAlgebraPoolPermissionedActions, IAlge globalState.price = TickMath.getSqrtRatioAtTick(targetTick); globalState.tick = targetTick; + console.log('pluginConfig: ', globalState.pluginConfig); if (globalState.pluginConfig & Plugins.AFTER_SWAP_FLAG != 0) { _plugin.afterSwap(msg.sender, msg.sender, true, 0, 0, 0, 0, ''); } diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 2a2b5756d..fedac14fa 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -4,12 +4,23 @@ pragma solidity =0.8.20; import '../RebalanceManager.sol'; contract MockRebalanceManager is RebalanceManager { - constructor(address _vault, Thresholds memory _thresholds) RebalanceManager(_vault, _thresholds) {} - function _getDepositTokenDecimals() internal view override returns (uint8) { - return 18; - } - - function _getPairedTokenDecimals() internal view override returns (uint8) { - return 18; - } + uint256 depositTokenVaultBalance; + + constructor(address _vault, Thresholds memory _thresholds) RebalanceManager(_vault, _thresholds) {} + + function setDepositTokenBalance(uint256 _depositTokenVaultBalance) external { + depositTokenVaultBalance = _depositTokenVaultBalance; + } + + function _getDepositTokenDecimals() internal view override returns (uint8) { + return 18; + } + + function _getPairedTokenDecimals() internal view override returns (uint8) { + return 18; + } + + function _getDepositTokenVaultBalance() internal view override returns (uint256) { + return depositTokenVaultBalance; + } } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 6e5d30085..a16b93126 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -6,7 +6,7 @@ import { expect } from './shared/expect'; import { TEST_POOL_START_TIME, pluginFixtureALM } from './shared/fixtures'; import { PLUGIN_FLAGS, encodePriceSqrt, expandTo18Decimals, getMaxTick, getMinTick } from './shared/utilities'; -import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, MockTimeVirtualPool, MockVault, RebalanceManager } from '../typechain'; +import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, MockTimeVirtualPool, MockVault, RebalanceManager, MockRebalanceManager } from '../typechain'; import snapshotGasCost from './shared/snapshotGasCost'; @@ -14,7 +14,7 @@ describe('AlgebraBasePluginALM', () => { let wallet: Wallet, other: Wallet; let mockVault: MockVault; - let rebalanceManager: RebalanceManager; + let rebalanceManager: MockRebalanceManager; let plugin: MockAlgebraBasePluginALM; // modified plugin let mockPluginFactory: MockAlgebraBasePluginALMFactory; // modified plugin factory let mockPool: MockPool; // mock of AlgebraPool @@ -26,17 +26,45 @@ describe('AlgebraBasePluginALM', () => { await pool.initialize(encodePriceSqrt(1, 1)); } + // сделал отдельной фикстурой, потому что сначала пул должен проинициализироваться + // потом уже должен деплоиться rebalanceManager, потому что он в конструкторе достает из пула tickSpacing + async function deployAndSetRebalanceManager() { + const thresholds = { + depositTokenUnusedThreshold: 100, + simulate: 9400, // было 9300 + normalThreshold: 8100, // было 8000 + underInventoryThreshold: 7800, // было 7700 + overInventoryThreshold: 9100, + priceChangeThreshold: 100, + extremeVolatility: 2500, + highVolatility: 900, // было 500 + someVolatility: 200, // было 100 + dtrDelta: 300, + baseLowPct: 3000, // было 2000 + baseHighPct: 1500, // было 3000 + limitReservePct: 500, + } + + const rebalanceManagerFactory = await ethers.getContractFactory('MockRebalanceManager'); + rebalanceManager = (await rebalanceManagerFactory.deploy( + await mockVault.getAddress(), + thresholds + )) as any as MockRebalanceManager; + + await plugin.setRebalanceManager(rebalanceManager); + } + before('prepare signers', async () => { [wallet, other] = await (ethers as any).getSigners(); }); - beforeEach('deploy test AlgebraBasePluginV1', async () => { - ({ mockVault, rebalanceManager, plugin, mockPluginFactory, mockPool } = await loadFixture(pluginFixtureALM)); + beforeEach('deploy test AlgebraBasePlugin', async () => { + ({ mockVault, plugin, mockPluginFactory, mockPool } = await loadFixture(pluginFixtureALM)); }); describe('#Initialize', async () => { it('cannot initialize twice', async () => { - await mockPool.setPlugin(plugin); + await mockPool.setPlugin(await plugin.getAddress()); await initializeAtZeroTick(mockPool); await expect(plugin.initialize()).to.be.revertedWith('Already initialized'); @@ -54,7 +82,7 @@ describe('AlgebraBasePluginALM', () => { it('can initialize for existing pool', async () => { await initializeAtZeroTick(mockPool); - await mockPool.setPlugin(plugin); + await mockPool.setPlugin(await plugin.getAddress()); await plugin.initialize(); const timepoint = await plugin.timepoints(0); @@ -127,6 +155,8 @@ describe('AlgebraBasePluginALM', () => { describe('#VolatilityVolatilityOracle', () => { beforeEach('connect plugin to pool', async () => { await mockPool.setPlugin(plugin); + await deployAndSetRebalanceManager(); + await plugin.initializeALM(rebalanceManager, 3600, 300); }); it('initializes timepoints slot', async () => { @@ -322,6 +352,9 @@ describe('AlgebraBasePluginALM', () => { beforeEach('initialize pool', async () => { await mockPool.setPlugin(plugin); await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await plugin.initializeALM(rebalanceManager, 3600, 300); + mint = async (recipient: string, tickLower: number, tickUpper: number, liquidityDesired: number) => { await mockPool.mint(recipient, recipient, tickLower, tickUpper, liquidityDesired, '0x'); }; @@ -500,6 +533,23 @@ describe('AlgebraBasePluginALM', () => { }); }); + describe('#AlmPlugin', () => { + it('first rebalance', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await mockPool.swapToTick(10); + }); + }); + // describe('#FarmingPlugin', () => { // describe('virtual pool tests', () => { // let virtualPoolMock: MockTimeVirtualPool; diff --git a/src/plugin/test/shared/fixtures.ts b/src/plugin/test/shared/fixtures.ts index 68ccf0acf..11d01a2ec 100644 --- a/src/plugin/test/shared/fixtures.ts +++ b/src/plugin/test/shared/fixtures.ts @@ -103,7 +103,6 @@ export const pluginFixtureV2: Fixture = async function (): Promis interface ALMPluginFixture extends MockFactoryFixture { mockVault: MockVault; - rebalanceManager: MockRebalanceManager; plugin: MockAlgebraBasePluginALM; mockPluginFactory: MockAlgebraBasePluginALMFactory; mockPool: MockPool; @@ -124,39 +123,14 @@ export const pluginFixtureALM: Fixture = async function (): Pr await mockVault.setAllowTokens(true, false); - const thresholds = { - depositTokenUnusedThreshold: 100, - simulate: 9400, // было 9300 - normalThreshold: 8100, // было 8000 - underInventoryThreshold: 7800, // было 7700 - overInventoryThreshold: 9100, - priceChangeThreshold: 100, - extremeVolatility: 2500, - highVolatility: 900, // было 500 - someVolatility: 200, // было 100 - dtrDelta: 300, - baseLowPct: 3000, // было 2000 - baseHighPct: 1500, // было 3000 - limitReservePct: 500, - } - - const rebalanceManagerFactory = await ethers.getContractFactory('MockRebalanceManager'); - const rebalanceManager = (await rebalanceManagerFactory.deploy( - await mockVault.getAddress(), - thresholds - )) as any as MockRebalanceManager; - await mockPluginFactory.beforeCreatePoolHook(mockPool, ZERO_ADDRESS, ZERO_ADDRESS, ZERO_ADDRESS, ZERO_ADDRESS, '0x'); const pluginAddress = await mockPluginFactory.pluginByPool(mockPool); const mockAlgebraBasePluginALMFactory = await ethers.getContractFactory('MockAlgebraBasePluginALM'); const plugin = mockAlgebraBasePluginALMFactory.attach(pluginAddress) as any as MockAlgebraBasePluginALM; - await plugin.setRebalanceManager(await rebalanceManager.getAddress()); - return { mockVault, - rebalanceManager, plugin, mockPluginFactory, mockPool, From b4f2429de7fed8af51ab0fd80b11e7b13eecf297 Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 27 Mar 2025 14:09:22 +0300 Subject: [PATCH 14/42] change comment --- src/plugin/contracts/AlgebraBasePluginALM.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index ab7c398bf..450f76956 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -12,7 +12,7 @@ import './plugins/VolatilityOraclePlugin.sol'; import 'hardhat/console.sol'; -/// @title Algebra Integral 1.2.1 adaptive fee plugin +/// @title Algebra Integral 1.2.1 ALM plugin contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePlugin { using Plugins for uint8; From 8243c09b68012273d6cb8a8746d5eab90268a1cb Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 27 Mar 2025 18:11:40 +0300 Subject: [PATCH 15/42] fix unreachable code --- src/plugin/contracts/AlgebraBasePluginALM.sol | 36 ++++++++++--------- .../contracts/base/BaseRebalanceManager.sol | 13 ++++--- src/plugin/test/AlmPlugin.spec.ts | 4 +-- 3 files changed, 29 insertions(+), 24 deletions(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index 450f76956..f61fcee2e 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -10,7 +10,7 @@ import './plugins/AlmPlugin.sol'; import './plugins/SlidingFeePlugin.sol'; import './plugins/VolatilityOraclePlugin.sol'; -import 'hardhat/console.sol'; +// import 'hardhat/console.sol'; /// @title Algebra Integral 1.2.1 ALM plugin contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePlugin { @@ -59,22 +59,24 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl } function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { - console.log('entered after swap'); - ( , int24 currentTick, , ) = _getPoolState(); - uint32 lastBlockTimestamp = _getLastBlockTimestamp(); - - bool failedToObtainTWAP; - int24 slowTwapTick; - int24 fastTwapTick; - - if (_ableToGetTimepoints(slowTwapPeriod)) { - slowTwapTick = _getTwapTick(slowTwapPeriod); - fastTwapTick = _getTwapTick(fastTwapPeriod); - } else { - failedToObtainTWAP = true; - } - - _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + // console.log('entered after swap'); + if (rebalanceManager != address(0)) { + ( , int24 currentTick, , ) = _getPoolState(); + uint32 lastBlockTimestamp = _getLastBlockTimestamp(); + + bool failedToObtainTWAP; + int24 slowTwapTick; + int24 fastTwapTick; + + if (_ableToGetTimepoints(slowTwapPeriod)) { + slowTwapTick = _getTwapTick(slowTwapPeriod); + fastTwapTick = _getTwapTick(fastTwapPeriod); + } else { + failedToObtainTWAP = true; + } + + _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + } return IAlgebraPlugin.afterSwap.selector; } diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 2186386ea..72203924d 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -498,9 +498,10 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // 80% <= twapResult.percentageOfDepositToken <= 93% // типа из андеринветори или спешл ребалансим в НОРМАЛ return (true, State.Normal); - } else { - return (true, State.UnderInventory); } + // else { + // return (true, State.UnderInventory); + // } } else { // sqrtStatus = 1; // state == UnderInventory || state == Special @@ -518,9 +519,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.Normal); } // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) - else { - return (true, State.OverInventory); - } + // else { + // return (true, State.OverInventory); + // } } else { // state == OverInventory // twapResult.percentageOfDepositToken <= 77% @@ -531,6 +532,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals // console.log('priceChange: ', priceChange); + // console.log('priceChange: ', priceChange); + // console.log('threshold: ', thresholds.priceChangeThreshold); if (priceChange > thresholds.priceChangeThreshold) { // CASES: // 1. we are still under-inventory and price changed by more than (1/0.5)% diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts index b43c9ecaa..4db929c6d 100644 --- a/src/plugin/test/AlmPlugin.spec.ts +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -75,7 +75,7 @@ describe('#AlmPlugin', () => { normalThreshold: rebalance.state.normalTrigger, underInventoryThreshold: rebalance.state.underTrigger, overInventoryThreshold: rebalance.state.overTrigger, - priceChangeThreshold: rebalance.state.priceChangeTrigger, + priceChangeThreshold: (BigInt(rebalance.state.priceChangeTrigger) / 2n).toString(), extremeVolatility: rebalance.state.extremeVolatility, highVolatility: rebalance.state.highVolatility, someVolatility: rebalance.state.someVolatility, @@ -173,7 +173,7 @@ describe('#AlmPlugin', () => { normalThreshold: rebalance.state.normalTrigger, underInventoryThreshold: rebalance.state.underTrigger, overInventoryThreshold: rebalance.state.overTrigger, - priceChangeThreshold: rebalance.state.priceChangeTrigger, + priceChangeThreshold: (BigInt(rebalance.state.priceChangeTrigger) / 2n).toString(), extremeVolatility: rebalance.state.extremeVolatility, highVolatility: rebalance.state.highVolatility, someVolatility: rebalance.state.someVolatility, From 2b6f8f0345dcd39c7a7f92613db10c34c0617ef7 Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 27 Mar 2025 18:19:07 +0300 Subject: [PATCH 16/42] -logs --- .../contracts/base/BaseRebalanceManager.sol | 50 +++++++++---------- src/plugin/contracts/plugins/AlmPlugin.sol | 4 +- .../plugins/VolatilityOraclePlugin.sol | 6 +-- 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 72203924d..4f8882086 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -14,7 +14,7 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -import 'hardhat/console.sol'; +// import 'hardhat/console.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -191,21 +191,21 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint32 lastBlockTimestamp, bool failedToObtainTWAP ) external { - console.log('entered obtainTWAPAndRebalance'); + // console.log('entered obtainTWAPAndRebalance'); TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); - console.log("TWAP RESULT START"); - console.log(twapResult.currentPriceAccountingDecimals); - console.log(twapResult.slowAvgPriceAccountingDecimals); - console.log(twapResult.fastAvgPriceAccountingDecimals); - console.log(twapResult.totalPairedInDeposit); - console.log(twapResult.totalDepositToken); - console.log(twapResult.totalPairedToken); - console.logInt(twapResult.currentTick); - console.log(twapResult.percentageOfDepositTokenUnused); - console.log(twapResult.percentageOfDepositToken); - console.log(twapResult.failedToObtainTWAP); - console.log(twapResult.sameBlock); - console.log("TWAP RESULT END"); + // console.log("TWAP RESULT START"); + // console.log(twapResult.currentPriceAccountingDecimals); + // console.log(twapResult.slowAvgPriceAccountingDecimals); + // console.log(twapResult.fastAvgPriceAccountingDecimals); + // console.log(twapResult.totalPairedInDeposit); + // console.log(twapResult.totalDepositToken); + // console.log(twapResult.totalPairedToken); + // console.logInt(twapResult.currentTick); + // console.log(twapResult.percentageOfDepositTokenUnused); + // console.log(twapResult.percentageOfDepositToken); + // console.log(twapResult.failedToObtainTWAP); + // console.log(twapResult.sameBlock); + // console.log("TWAP RESULT END"); _rebalance(twapResult); } @@ -305,7 +305,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // bool sameBlock; done // } - console.log('entered obtain twaps'); + // console.log('entered obtain twaps'); twapResult.failedToObtainTWAP = failedToObtainTWAP; if (failedToObtainTWAP) { return twapResult; @@ -348,13 +348,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); // twapResult.fastAvgPriceAccountingDecimals = fastPrice; - console.log('2'); + // console.log('2'); // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); - console.log('2.5'); - console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); - console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); - console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); + // console.log('2.5'); + // console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); + // console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); + // console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); @@ -362,7 +362,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('3'); - console.log('totalPairedInDeposit: ', totalPairedInDeposit); + // console.log('totalPairedInDeposit: ', totalPairedInDeposit); if (totalPairedInDeposit == 0) { twapResult.percentageOfDepositToken = 10000; } else { @@ -384,7 +384,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (depositTokenBalance > 0) { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - console.log('totalTokensAmount: ', totalTokensAmount); + // console.log('totalTokensAmount: ', totalTokensAmount); // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; // че за v42 и v43, надо чекнуть первоначальный декомпайл // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) @@ -601,8 +601,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('targetPrice: ', targetPrice); // console.log('lowerPriceBound: ', lowerPriceBound); - console.log('tickSpacing'); - console.logInt(_tickSpacing); + // console.log('tickSpacing'); + // console.logInt(_tickSpacing); int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); bool currentTickIsRound = roundedTick == twapResult.currentTick; diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index b66c86c9c..a5d62dd7c 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -5,7 +5,7 @@ import '../base/AlgebraBasePlugin.sol'; import '../interfaces/plugins/IAlmPlugin.sol'; import '../interfaces/IRebalanceManager.sol'; -import 'hardhat/console.sol'; +// import 'hardhat/console.sol'; abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { address public rebalanceManager; @@ -34,7 +34,7 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { } function setRebalanceManager(address _rebalanceManager) external { - console.log('setRebalanceManager called'); + // console.log('setRebalanceManager called'); _authorize(); require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); rebalanceManager = _rebalanceManager; diff --git a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol index caa2d888c..cb7e605b3 100644 --- a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol +++ b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol @@ -10,7 +10,7 @@ import '../interfaces/plugins/IVolatilityOracle.sol'; import '../libraries/VolatilityOracle.sol'; import '../base/AlgebraBasePlugin.sol'; -import 'hardhat/console.sol'; +// import 'hardhat/console.sol'; /// @title Algebra Integral 1.2.1 VolatilityOraclePlugin plugin /// @notice This contract stores timepoints and calculates adaptive fee and statistical averages @@ -36,9 +36,9 @@ abstract contract VolatilityOraclePlugin is AlgebraBasePlugin, IVolatilityOracle /// @inheritdoc IVolatilityOracle function initialize() external override { - console.log('initialize called'); + // console.log('initialize called'); require(!isInitialized, 'Already initialized'); - console.log("plugin address in solidity: ", address(this)); + // console.log("plugin address in solidity: ", address(this)); require(_getPluginInPool() == address(this), 'Plugin not attached'); (uint160 price, int24 tick, , ) = _getPoolState(); require(price != 0, 'Pool is not initialized'); From c23f14ea7a6758425bbdb029baf9dda12cc82f6f Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 27 Mar 2025 18:59:23 +0300 Subject: [PATCH 17/42] -failed obtain twap --- src/plugin/contracts/AlgebraBasePluginALM.sol | 18 +++++++----------- .../contracts/AlgebraBasePluginALMFactory.sol | 2 +- src/plugin/contracts/RebalanceManager.sol | 3 +-- .../contracts/base/BaseRebalanceManager.sol | 15 +++++---------- .../contracts/interfaces/IRebalanceManager.sol | 3 +-- src/plugin/contracts/plugins/AlmPlugin.sol | 5 ++--- src/plugin/contracts/test/AlmPluginTest.sol | 2 +- 7 files changed, 18 insertions(+), 30 deletions(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index f61fcee2e..0b34cadfc 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -61,21 +61,17 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { // console.log('entered after swap'); if (rebalanceManager != address(0)) { + if (!_ableToGetTimepoints(slowTwapPeriod)) { + return IAlgebraPlugin.afterSwap.selector; + } + ( , int24 currentTick, , ) = _getPoolState(); uint32 lastBlockTimestamp = _getLastBlockTimestamp(); - bool failedToObtainTWAP; - int24 slowTwapTick; - int24 fastTwapTick; - - if (_ableToGetTimepoints(slowTwapPeriod)) { - slowTwapTick = _getTwapTick(slowTwapPeriod); - fastTwapTick = _getTwapTick(fastTwapPeriod); - } else { - failedToObtainTWAP = true; - } + int24 slowTwapTick = _getTwapTick(slowTwapPeriod); + int24 fastTwapTick = _getTwapTick(fastTwapPeriod); - _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); } return IAlgebraPlugin.afterSwap.selector; diff --git a/src/plugin/contracts/AlgebraBasePluginALMFactory.sol b/src/plugin/contracts/AlgebraBasePluginALMFactory.sol index f36fced88..615ef134a 100644 --- a/src/plugin/contracts/AlgebraBasePluginALMFactory.sol +++ b/src/plugin/contracts/AlgebraBasePluginALMFactory.sol @@ -5,7 +5,7 @@ import './interfaces/IBasePluginV1Factory.sol'; import './libraries/AdaptiveFee.sol'; import './AlgebraBasePluginALM.sol'; -/// @title Algebra Integral 1.2.1 default plugin factory +/// @title Algebra Integral 1.2.1 ALM plugin factory /// @notice This contract creates Algebra adaptive fee plugins for Algebra liquidity pools /// @dev This plugin factory can only be used for Algebra base pools contract AlgebraBasePluginALMFactory is IBasePluginV1Factory { diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index 9617abce2..35cacb4ba 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -5,8 +5,7 @@ import './base/BaseRebalanceManager.sol'; contract RebalanceManager is BaseRebalanceManager { constructor(address _vault, Thresholds memory _thresholds) { - require(!isAlmInitialized, 'Already initialized'); - isAlmInitialized = true; + require(vault != address(0), 'Invalid vault address'); paused = false; // TODO: добавить require'ов vault = _vault; diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 4f8882086..af740132b 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -188,11 +188,10 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP + uint32 lastBlockTimestamp ) external { // console.log('entered obtainTWAPAndRebalance'); - TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); // console.log("TWAP RESULT START"); // console.log(twapResult.currentPriceAccountingDecimals); // console.log(twapResult.slowAvgPriceAccountingDecimals); @@ -284,8 +283,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP + uint32 lastBlockTimestamp ) internal view returns (TwapResult memory twapResult) { // достать проценты, хуенты // достать резервы токенычей @@ -306,10 +304,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // } // console.log('entered obtain twaps'); - twapResult.failedToObtainTWAP = failedToObtainTWAP; - if (failedToObtainTWAP) { - return twapResult; - } + twapResult.failedToObtainTWAP = false; twapResult.currentTick = currentTick; twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; @@ -839,7 +834,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // return IERC20Metadata(depositToken).decimals(); // } - function _authorize() internal view virtual { + function _authorize() internal view { require(IAlgebraFactory(factory).hasRoleOrOwner(ALGEBRA_BASE_PLUGIN_MANAGER, msg.sender)); } diff --git a/src/plugin/contracts/interfaces/IRebalanceManager.sol b/src/plugin/contracts/interfaces/IRebalanceManager.sol index 14e6ba12f..e7972850b 100644 --- a/src/plugin/contracts/interfaces/IRebalanceManager.sol +++ b/src/plugin/contracts/interfaces/IRebalanceManager.sol @@ -6,7 +6,6 @@ interface IRebalanceManager { int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP + uint32 lastBlockTimestamp ) external; } diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index a5d62dd7c..e50aa11ae 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -44,9 +44,8 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, - uint32 lastBlockTimestamp, - bool failedToObtainTWAP + uint32 lastBlockTimestamp ) internal { - IRebalanceManager(rebalanceManager).obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, failedToObtainTWAP); + IRebalanceManager(rebalanceManager).obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); } } diff --git a/src/plugin/contracts/test/AlmPluginTest.sol b/src/plugin/contracts/test/AlmPluginTest.sol index 389e49cfd..4e78ed47b 100644 --- a/src/plugin/contracts/test/AlmPluginTest.sol +++ b/src/plugin/contracts/test/AlmPluginTest.sol @@ -52,7 +52,7 @@ contract AlmPluginTest is BaseRebalanceManager { } function rebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) public { - TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp, false); + TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); // struct TwapResult { // uint256 currentPriceAccountingDecimals; From 171ff0b80e52a1edb0acad1cce5b993851cb7be2 Mon Sep 17 00:00:00 2001 From: fourlen Date: Fri, 28 Mar 2025 18:05:10 +0300 Subject: [PATCH 18/42] top fix --- src/plugin/contracts/base/BaseRebalanceManager.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index af740132b..cfedd8929 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -808,7 +808,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // } return token1 < token0 - ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, type(uint192).max + 1) + ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, uint256(type(uint192).max) + 1) : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); } } From db2beacae6b59f2065174812d7c7de8a9464a2ea Mon Sep 17 00:00:00 2001 From: fourlen Date: Fri, 28 Mar 2025 18:12:44 +0300 Subject: [PATCH 19/42] top2 fix --- src/plugin/contracts/RebalanceManager.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index 35cacb4ba..10b351df2 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -5,7 +5,7 @@ import './base/BaseRebalanceManager.sol'; contract RebalanceManager is BaseRebalanceManager { constructor(address _vault, Thresholds memory _thresholds) { - require(vault != address(0), 'Invalid vault address'); + require(_vault != address(0), 'Invalid vault address'); paused = false; // TODO: добавить require'ов vault = _vault; From 17d8de03cb5c95bcf22db9d8846c46652649d944 Mon Sep 17 00:00:00 2001 From: debych Date: Fri, 28 Mar 2025 18:53:25 +0300 Subject: [PATCH 20/42] [Plugin] swapAmount -> 0 --- .../contracts/base/BaseRebalanceManager.sol | 33 ++++++++----------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index cfedd8929..ca44327d3 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -184,27 +184,22 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // TODO: написать obtainTWAPAndRebalance() - function obtainTWAPAndRebalance( - int24 currentTick, - int24 slowTwapTick, - int24 fastTwapTick, - uint32 lastBlockTimestamp - ) external { + function obtainTWAPAndRebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) external { // console.log('entered obtainTWAPAndRebalance'); TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); // console.log("TWAP RESULT START"); - // console.log(twapResult.currentPriceAccountingDecimals); - // console.log(twapResult.slowAvgPriceAccountingDecimals); - // console.log(twapResult.fastAvgPriceAccountingDecimals); - // console.log(twapResult.totalPairedInDeposit); - // console.log(twapResult.totalDepositToken); - // console.log(twapResult.totalPairedToken); - // console.logInt(twapResult.currentTick); - // console.log(twapResult.percentageOfDepositTokenUnused); - // console.log(twapResult.percentageOfDepositToken); - // console.log(twapResult.failedToObtainTWAP); - // console.log(twapResult.sameBlock); - // console.log("TWAP RESULT END"); + // console.log(twapResult.currentPriceAccountingDecimals); + // console.log(twapResult.slowAvgPriceAccountingDecimals); + // console.log(twapResult.fastAvgPriceAccountingDecimals); + // console.log(twapResult.totalPairedInDeposit); + // console.log(twapResult.totalDepositToken); + // console.log(twapResult.totalPairedToken); + // console.logInt(twapResult.currentTick); + // console.log(twapResult.percentageOfDepositTokenUnused); + // console.log(twapResult.percentageOfDepositToken); + // console.log(twapResult.failedToObtainTWAP); + // console.log(twapResult.sameBlock); + // console.log("TWAP RESULT END"); _rebalance(twapResult); } @@ -251,7 +246,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); // TODO: swapquantity ? - try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 1) { + try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; } catch { From 94ac0f3c9c0607fa75527e620edafd75c6d2a350 Mon Sep 17 00:00:00 2001 From: fourlen Date: Mon, 31 Mar 2025 18:14:29 +0300 Subject: [PATCH 21/42] issue fixes --- src/plugin/contracts/AlgebraBasePluginALM.sol | 21 +- src/plugin/contracts/RebalanceManager.sol | 6 +- .../contracts/base/BaseRebalanceManager.sol | 178 +- .../interfaces/IRebalanceManager.sol | 13 + src/plugin/contracts/test/AlmPluginTest.sol | 4 +- .../contracts/test/MockRebalanceManager.sol | 2 +- src/plugin/test/AlmPlugin.spec.ts | 3 +- src/plugin/test/almRebalances.json | 64945 ++++++++++++++++ 8 files changed, 65075 insertions(+), 97 deletions(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index 0b34cadfc..88f5acaf4 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -60,19 +60,20 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { // console.log('entered after swap'); - if (rebalanceManager != address(0)) { - if (!_ableToGetTimepoints(slowTwapPeriod)) { - return IAlgebraPlugin.afterSwap.selector; - } + // to prevent pause rebalanceManager + if (rebalanceManager != address(0) && gasleft() >= 1600000) { + if (!_ableToGetTimepoints(slowTwapPeriod)) { + return IAlgebraPlugin.afterSwap.selector; + } - ( , int24 currentTick, , ) = _getPoolState(); - uint32 lastBlockTimestamp = _getLastBlockTimestamp(); + ( , int24 currentTick, , ) = _getPoolState(); + uint32 lastBlockTimestamp = _getLastBlockTimestamp(); - int24 slowTwapTick = _getTwapTick(slowTwapPeriod); - int24 fastTwapTick = _getTwapTick(fastTwapPeriod); + int24 slowTwapTick = _getTwapTick(slowTwapPeriod); + int24 fastTwapTick = _getTwapTick(fastTwapPeriod); - _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); - } + _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); + } return IAlgebraPlugin.afterSwap.selector; } diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index 10b351df2..389f08999 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -4,7 +4,7 @@ pragma solidity =0.8.20; import './base/BaseRebalanceManager.sol'; contract RebalanceManager is BaseRebalanceManager { - constructor(address _vault, Thresholds memory _thresholds) { + constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) { require(_vault != address(0), 'Invalid vault address'); paused = false; // TODO: добавить require'ов @@ -15,10 +15,14 @@ contract RebalanceManager is BaseRebalanceManager { bool _allowToken1 = IAlgebraVault(vault).allowToken1(); + minTimeBetweenRebalances = _minTimeBetweenRebalances; + allowToken1 = _allowToken1; state = State.OverInventory; // поч overinventory? lastRebalanceTimestamp = 0; lastRebalanceCurrentPrice = 0; + + _validateThresholds(_thresholds); thresholds = _thresholds; address token0 = IAlgebraVault(_vault).token0(); diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index ca44327d3..599cb7dfb 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -50,31 +50,28 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bool failedToObtainTWAP; bool sameBlock; } + struct Ranges { int24 baseLower; int24 baseUpper; int24 limitLower; int24 limitUpper; } + enum State { OverInventory, Normal, UnderInventory, Special } - // этот статус можно офнуть + enum DecideStatus { Normal, Special, - PendingRebalanceNeeded, NoNeed, - ToSoon, + TooSoon, NoNeedWithPending, - FailedToObtainTWAPOrExtremeVolatility - } - enum UpdateStatus { - Status0, - Status1 + ExtremeVolatility } struct Thresholds { @@ -113,12 +110,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 public tickSpacing; address public factory; address public pool; + uint32 public minTimeBetweenRebalances; function setPriceChangeThreshold(uint16 _priceChangeThreshold) external { _authorize(); require(_priceChangeThreshold < 10000, 'Invalid price change threshold'); thresholds.priceChangeThreshold = _priceChangeThreshold; - // нужно эмитить ивент? + emit SetPriceChangeThreshold(_priceChangeThreshold); } function setPercentages(uint16 _baseLowPct, uint16 _baseHighPct, uint16 _limitReservePct) external { @@ -129,6 +127,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { thresholds.baseLowPct = _baseLowPct; thresholds.baseHighPct = _baseHighPct; thresholds.limitReservePct = _limitReservePct; + emit SetPercentages(_baseLowPct, _baseHighPct, _limitReservePct); } function setTriggers(uint16 _simulate, uint16 _normalThreshold, uint16 _underInventoryThreshold, uint16 _overInventoryThreshold) external { @@ -142,30 +141,35 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { thresholds.normalThreshold = _normalThreshold; thresholds.underInventoryThreshold = _underInventoryThreshold; thresholds.overInventoryThreshold = _overInventoryThreshold; + emit SetTriggers(_simulate, _normalThreshold, _underInventoryThreshold, _overInventoryThreshold); } function setDtrDelta(uint16 _dtrDelta) external { _authorize(); require(_dtrDelta <= 10000, '_dtrDelta must be <= 10000'); thresholds.dtrDelta = _dtrDelta; + emit SetDtrDelta(_dtrDelta); } function setHighVolatility(uint16 _highVolatility) external { _authorize(); require(_highVolatility >= thresholds.someVolatility, '_highVolatility must be >= someVolatility'); thresholds.highVolatility = _highVolatility; + emit SetHighVolatility(_highVolatility); } function setSomeVolatility(uint16 _someVolatility) external { _authorize(); require(_someVolatility <= 300, '_someVolatility must be <= 300'); thresholds.someVolatility = _someVolatility; + emit SetSomeVolatility(_someVolatility); } function setExtremeVolatility(uint16 _extremeVolatility) external { _authorize(); require(_extremeVolatility >= thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); thresholds.extremeVolatility = _extremeVolatility; + emit SetExtremeVolatility(_extremeVolatility); } function setDepositTokenUnusedThreshold(uint16 _depositTokenUnusedThreshold) external { @@ -175,11 +179,26 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000' ); thresholds.depositTokenUnusedThreshold = _depositTokenUnusedThreshold; + emit SetDepositTokenUnusedThreshold(_depositTokenUnusedThreshold); + } + + function setMinTimeBetweenRebalances(uint32 _minTimeBetweenRebalances) external { + _authorize(); + minTimeBetweenRebalances = _minTimeBetweenRebalances; + emit SetMinTimeBetweenRebalances(_minTimeBetweenRebalances); } function setVault(address _vault) external { _authorize(); vault = _vault; + emit SetVault(_vault); + } + + function unpause() external { + _authorize(); + require(paused, 'Already unpaused'); + paused = false; + emit Unpaused(); } // TODO: написать obtainTWAPAndRebalance() @@ -215,35 +234,47 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала // require(decideStatus != DecideStatus.NoNeed, "no need"); - // require(decideStatus != DecideStatus.ToSoon, "too soon"); - if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.ToSoon) return; - - if (decideStatus != DecideStatus.PendingRebalanceNeeded) { - if (decideStatus != DecideStatus.NoNeedWithPending) { - if (decideStatus != DecideStatus.FailedToObtainTWAPOrExtremeVolatility) { - Ranges memory ranges = decideStatus == DecideStatus.Normal - ? _getRangesWithState(newState, obtainTWAPsResult) - : _getRangesWithoutState(obtainTWAPsResult); - - // struct Ranges { - // int24 baseLower; - // int24 baseUpper; - // int24 limitLower; - // int24 limitUpper; - // } - // console.log('RANGES START'); - // console.logInt(ranges.baseLower); - // console.logInt(ranges.baseUpper); - // console.logInt(ranges.limitLower); - // console.logInt(ranges.limitUpper); - // console.log('RANGES END'); - - // require(ranges.baseUpper - ranges.baseLower > 300 && - // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); - if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - - // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) - // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); + // require(decideStatus != DecideStatus.TooSoon, "too soon"); + if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; + + if (decideStatus != DecideStatus.NoNeedWithPending) { + if (decideStatus != DecideStatus.ExtremeVolatility) { + Ranges memory ranges; + if (decideStatus == DecideStatus.Normal) { + // require(twapResult.currentPriceAccountingDecimals != 0, 'middlePrice must be > 0'); + // require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); + if ( + obtainTWAPsResult.currentPriceAccountingDecimals == 0 || + obtainTWAPsResult.totalDepositToken == 0 || + (newState == State.Normal && + obtainTWAPsResult.totalPairedInDeposit <= + _calcPart(obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit, thresholds.limitReservePct) + ) + ) return; + ranges = _getRangesWithState(newState, obtainTWAPsResult); + } else { + ranges = _getRangesWithoutState(obtainTWAPsResult); + } + + // struct Ranges { + // int24 baseLower; + // int24 baseUpper; + // int24 limitLower; + // int24 limitUpper; + // } + // console.log('RANGES START'); + // console.logInt(ranges.baseLower); + // console.logInt(ranges.baseUpper); + // console.logInt(ranges.limitLower); + // console.logInt(ranges.limitUpper); + // console.log('RANGES END'); + + // require(ranges.baseUpper - ranges.baseLower > 300 && + // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + + // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) + // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); // TODO: swapquantity ? try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { @@ -263,9 +294,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // pendingRebalanceTimestamp = 0; lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - } - } else { - // pendingRebalanceTimestamp = _blockTimestamp(); } // чекируем decideStatus @@ -391,8 +419,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // куча куча ифов, в итоге в одном из случаев вызываем // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff // UpdateStatus updStatus = _updateStatus(twapResult); - if (twapResult.failedToObtainTWAP) { - return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + + if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { + return (DecideStatus.TooSoon, State.Special); } uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); @@ -419,24 +448,11 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('fastCurrentDiff < thresholds.someVolatility'); return (DecideStatus.Normal, newState); // normal rebalance } else { - return (DecideStatus.ToSoon, newState); // too soon + return (DecideStatus.TooSoon, newState); // too soon } } else { return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) } - } else { - // State == NORMAL || OVER - // И Это не первый ребаланс - // И percentageOfDepositToken меньше чем _underInventoryPct - _dtrDelta (??) - значит очень мало депозит токенов, то: - // ----> переходим дальше в итоге выставляя status = SPECIAL - // тут как будто ничо не происходит - // типа тут сетятся v19, v21, v23, v25 - // но дальше с ними ничо не происходит - // только в гносис записываем v23, который итак равен гносису - // v19 = v20 = 21; - // v21 = v22 = 3; - // v23 = v24 = bytes31(_gnosis); - // v25 = v26 = 1; } } else { // handle high volatility @@ -447,14 +463,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { // Если fastCurrentDiff >= _someVolatility (low? - 1%): // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается - return (DecideStatus.ToSoon, State.Special); - } else { - // Иначе ------> переходим дальше в итоге выставляя status = SPECIAL - // то же самое, как будто нихуя не происходит - // v19 = v30 = 21; - // v21 = v31 = 3; - // v23 = v32 = bytes31(_gnosis); - // v25 = v33 = 1; + return (DecideStatus.TooSoon, State.Special); } } else { // special -> noneed @@ -466,7 +475,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (DecideStatus.Special, State.Special); // выяснить чо он означает } else { // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается - return (DecideStatus.FailedToObtainTWAPOrExtremeVolatility, State.Special); + return (DecideStatus.ExtremeVolatility, State.Special); } } @@ -489,9 +498,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // типа из андеринветори или спешл ребалансим в НОРМАЛ return (true, State.Normal); } - // else { - // return (true, State.UnderInventory); - // } } else { // sqrtStatus = 1; // state == UnderInventory || state == Special @@ -509,9 +515,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.Normal); } // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) - // else { - // return (true, State.OverInventory); - // } } else { // state == OverInventory // twapResult.percentageOfDepositToken <= 77% @@ -880,10 +883,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // upper target lower function _getPriceBounds(State _state, TwapResult memory twapResult, bool _allowToken1) private view returns (uint256, uint256, uint256) { uint256 targetPrice = twapResult.currentPriceAccountingDecimals; - // тут чтобы убрать require нужно тогда прокидывать, видимо - require(targetPrice != 0, 'middlePrice must be > 0'); - require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); - // if (targetPrice == 0 || twapResult.totalDepositToken == 0) return (0, 0, 0); uint256 lowerPriceBound = 0; if (_state != State.UnderInventory) { @@ -910,8 +909,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 // console.log('limitReservePct: ', thresholds.limitReservePct); // console.log('partOfTotalTokens: ', partOfTotalTokens); - // TODO: убрать этот require - require(twapResult.totalPairedInDeposit > partOfTotalTokens, 'not enough quote token'); uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; @@ -951,10 +948,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _pause() private { paused = true; - } - - function unpause() public payable /* onlyowner */ { - paused = false; + emit Paused(); } function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { @@ -981,4 +975,24 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function getSqrtPriceX96FromPriceWithoutDecimals(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { return uint160(Math.sqrt((_price << 192) / 10 ** _tokenDecimals)); } + + function _validateThresholds(Thresholds memory _thresholds) internal pure { + require(_thresholds.priceChangeThreshold < 10000, 'Invalid price change threshold'); + require(_thresholds.underInventoryThreshold > 6000, '_underInventoryThreshold must be > 6000'); + require(_thresholds.normalThreshold > _thresholds.underInventoryThreshold, '_normalThreshold must be > _underInventoryThreshold'); + require(_thresholds.overInventoryThreshold > _thresholds.normalThreshold, '_overInventoryThreshold must be > _normalThreshold'); + require(_thresholds.simulate > _thresholds.overInventoryThreshold, 'Simulate must be > _overInventoryThreshold'); + require(_thresholds.simulate < 9500, 'Simulate must be < 9500'); + require(_thresholds.baseLowPct >= 100 && _thresholds.baseLowPct <= 10000, 'Invalid base low percent'); + require(_thresholds.baseHighPct >= 100 && _thresholds.baseHighPct <= 10000, 'Invalid base high percent'); + require(_thresholds.limitReservePct >= 100 && _thresholds.baseLowPct <= 10000 - _thresholds.simulate, 'Invalid limit reserve percent'); + require(_thresholds.dtrDelta <= 10000, '_dtrDelta must be <= 10000'); + require(_thresholds.highVolatility >= _thresholds.someVolatility, '_highVolatility must be >= someVolatility'); + require(_thresholds.someVolatility <= 300, '_someVolatility must be <= 300'); + require(_thresholds.extremeVolatility >= _thresholds.highVolatility, '_extremeVolatility must be >= highVolatility'); + require( + _thresholds.depositTokenUnusedThreshold >= 100 && _thresholds.depositTokenUnusedThreshold <= 10000, + '_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000' + ); + } } diff --git a/src/plugin/contracts/interfaces/IRebalanceManager.sol b/src/plugin/contracts/interfaces/IRebalanceManager.sol index e7972850b..5b1d1254d 100644 --- a/src/plugin/contracts/interfaces/IRebalanceManager.sol +++ b/src/plugin/contracts/interfaces/IRebalanceManager.sol @@ -2,6 +2,19 @@ pragma solidity >=0.5.0; interface IRebalanceManager { + event SetPriceChangeThreshold(uint16 priceChangeThreshold); + event SetPercentages(uint16 baseLowPct, uint16 baseHighPct, uint16 limitReservePct); + event SetTriggers(uint16 simulate, uint16 normalThreshold, uint16 underInventoryThreshold, uint16 overInventoryThreshold); + event SetDtrDelta(uint16 dtrDelta); + event SetHighVolatility(uint16 highVolatility); + event SetSomeVolatility(uint16 someVolatility); + event SetExtremeVolatility(uint16 extremeVolatility); + event SetDepositTokenUnusedThreshold(uint16 depositTokenUnusedThreshold); + event SetMinTimeBetweenRebalances(uint32 minTimeBetweenRebalances); + event SetVault(address vault); + event Paused(); + event Unpaused(); + function obtainTWAPAndRebalance( int24 currentTick, int24 slowTwapTick, diff --git a/src/plugin/contracts/test/AlmPluginTest.sol b/src/plugin/contracts/test/AlmPluginTest.sol index 4e78ed47b..d96504f9e 100644 --- a/src/plugin/contracts/test/AlmPluginTest.sol +++ b/src/plugin/contracts/test/AlmPluginTest.sol @@ -13,7 +13,7 @@ contract AlmPluginTest is BaseRebalanceManager { uint8 public depositDecimals; uint8 public pairedDecimals; - constructor(address _vault, Thresholds memory _thresholds, int24 _tickSpacing) { + constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds, int24 _tickSpacing) { require(!isAlmInitialized, 'Already initialized'); isAlmInitialized = true; paused = false; @@ -25,6 +25,8 @@ contract AlmPluginTest is BaseRebalanceManager { bool _allowToken1 = IAlgebraVault(vault).allowToken1(); + minTimeBetweenRebalances = _minTimeBetweenRebalances; + allowToken1 = _allowToken1; state = State.OverInventory; // поч overinventory? lastRebalanceTimestamp = 0; diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index fedac14fa..82a89c825 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -6,7 +6,7 @@ import '../RebalanceManager.sol'; contract MockRebalanceManager is RebalanceManager { uint256 depositTokenVaultBalance; - constructor(address _vault, Thresholds memory _thresholds) RebalanceManager(_vault, _thresholds) {} + constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} function setDepositTokenBalance(uint256 _depositTokenVaultBalance) external { depositTokenVaultBalance = _depositTokenVaultBalance; diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts index 4db929c6d..20b5be041 100644 --- a/src/plugin/test/AlmPlugin.spec.ts +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -36,8 +36,7 @@ describe('#AlmPlugin', () => { const almPluginFactory = await ethers.getContractFactory('AlmPluginTest'); const almPlugin = (await almPluginFactory.deploy( - await mockVault.getAddress(), - thresholds, tickSpacing + await mockVault.getAddress(), 7200, thresholds, tickSpacing )) as any as AlmPluginTest; return { diff --git a/src/plugin/test/almRebalances.json b/src/plugin/test/almRebalances.json index 47ae73bae..3a207b6c7 100644 --- a/src/plugin/test/almRebalances.json +++ b/src/plugin/test/almRebalances.json @@ -39,6 +39,64951 @@ "topTick": "24300" } } + }, + { + "transactionHash": "0xffb7df4ab27db7b4dbe848744126618856abc2a3cb6f565edcca69b27915736e", + "state": { + "depositToken": 0, + "blockNumber": 33387157, + "lastRebalancePrice": "126261953780644189", + "state": "0", + "currentTick": "20705", + "currentPrice": "126135761243169520", + "twapSlow": "126312466138378734", + "twapFast": "126160989656775766", + "depositTokenBalance": "3431703498869811944398", + "pairedTokenBalance": "1", + "usedToken0": "28869487559597430714433", + "usedToken1": "2061260614186454059449", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20760" + }, + "limitPosition": { + "bottomTick": "20760", + "topTick": "24300" + } + } + }, + { + "transactionHash": "0x8d45cec24b4251c1b48ffb85ee809b7cbb0afae7703f699c77eca8b77746685b", + "state": { + "depositToken": 0, + "blockNumber": 33388426, + "lastRebalancePrice": "126135761243169520", + "state": "0", + "currentTick": "20705", + "currentPrice": "126135761243169520", + "twapSlow": "126135761243169520", + "twapFast": "126135761243169520", + "depositTokenBalance": "346452555033434343901", + "pairedTokenBalance": "0", + "usedToken0": "28723677691675992783959", + "usedToken1": "2024016753891731019788", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20760" + }, + "limitPosition": { + "bottomTick": "20760", + "topTick": "24300" + } + } + }, + { + "transactionHash": "0x7994ac2212e9c1caf84ee4c0ed3fc37629267bdfdad2b8a7457a12f2ac46e4b3", + "state": { + "depositToken": 0, + "blockNumber": 33392754, + "lastRebalancePrice": "126135761243169520", + "state": "0", + "currentTick": "20740", + "currentPrice": "125695079754969739", + "twapSlow": "125519238552787184", + "twapFast": "125695079754969739", + "depositTokenBalance": "2911561874228095446643", + "pairedTokenBalance": "2", + "usedToken0": "31635942633319024861518", + "usedToken1": "2036799652725584505032", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20760" + }, + "limitPosition": { + "bottomTick": "20760", + "topTick": "24360" + } + } + }, + { + "transactionHash": "0x3056c5b65ecaa06d7f9790d07dd6d60863f129cb93c54a0bde0e92e6081630e9", + "state": { + "depositToken": 0, + "blockNumber": 33394013, + "lastRebalancePrice": "125695079754969739", + "state": "0", + "currentTick": "20637", + "currentPrice": "126996364123969472", + "twapSlow": "126325097384992572", + "twapFast": "126514717729917481", + "depositTokenBalance": "1432743178372099840588", + "pairedTokenBalance": "2", + "usedToken0": "33068854466341179828031", + "usedToken1": "2017205233373474174624", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20640" + }, + "limitPosition": { + "bottomTick": "20640", + "topTick": "24240" + } + } + }, + { + "transactionHash": "0xb5110af86856921f92084eb460421ef43c9ef7d41cbdb7ff2d227ab45631ab01", + "state": { + "depositToken": 0, + "blockNumber": 33397172, + "lastRebalancePrice": "126996364123969472", + "state": "0", + "currentTick": "20526", + "currentPrice": "128413805139695048", + "twapSlow": "127518091942131849", + "twapFast": "128131619395567540", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "33070278678959591946597", + "usedToken1": "2005975921657644695360", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20580" + }, + "limitPosition": { + "bottomTick": "20580", + "topTick": "24120" + } + } + }, + { + "transactionHash": "0x7055d08c29c93e112db40a386706dd1d6e0858f93361fc387833c418276367ee", + "state": { + "depositToken": 0, + "blockNumber": 33398431, + "lastRebalancePrice": "128413805139695048", + "state": "0", + "currentTick": "20409", + "currentPrice": "129924994320347157", + "twapSlow": "128941356104162515", + "twapFast": "129924994320347157", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "33071789457145569167569", + "usedToken1": "1994279054180903307037", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20460" + }, + "limitPosition": { + "bottomTick": "20460", + "topTick": "24000" + } + } + }, + { + "transactionHash": "0x5fd2ef2f9adb9529efb2232086b19be30e0afd0373beaad666e4fdac0e93172c", + "state": { + "depositToken": 0, + "blockNumber": 33399688, + "lastRebalancePrice": "129924994320347157", + "state": "0", + "currentTick": "20314", + "currentPrice": "131165100942392546", + "twapSlow": "130393543755794897", + "twapFast": "131217574853200233", + "depositTokenBalance": "5996573889686786800884", + "pairedTokenBalance": "0", + "usedToken0": "39069612395957981287089", + "usedToken1": "1984833305239271454660", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20340" + }, + "limitPosition": { + "bottomTick": "20340", + "topTick": "23940" + } + } + }, + { + "transactionHash": "0xc266e5d8baf142810658f0b17ecc3a77f560b1625b3f6dad5c18c5cfbbb03015", + "state": { + "depositToken": 0, + "blockNumber": 33400947, + "lastRebalancePrice": "131165100942392546", + "state": "0", + "currentTick": "20211", + "currentPrice": "132523014839637669", + "twapSlow": "131756644294321323", + "twapFast": "132523014839637669", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "39070935265079934783864", + "usedToken1": "1974677232820055426824", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20220" + }, + "limitPosition": { + "bottomTick": "20220", + "topTick": "23820" + } + } + }, + { + "transactionHash": "0xaafa39c680746d6f738e0fbf67d1ba10341c5264b275376bbf6c1597456c5f22", + "state": { + "depositToken": 0, + "blockNumber": 33402211, + "lastRebalancePrice": "132523014839637669", + "state": "0", + "currentTick": "19950", + "currentPrice": "136027221301033800", + "twapSlow": "133894986821991432", + "twapFast": "136122468926422426", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "39074381392492298768350", + "usedToken1": "1949008851567338442587", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19980" + }, + "limitPosition": { + "bottomTick": "19980", + "topTick": "23520" + } + } + }, + { + "transactionHash": "0x4d96615c09e2265e957b044642257ebf5e680e8e8b2a2c541c6c73d9fcc8b2a1", + "state": { + "depositToken": 0, + "blockNumber": 33409102, + "lastRebalancePrice": "136027221301033800", + "state": "0", + "currentTick": "19820", + "currentPrice": "137807029880453894", + "twapSlow": "137407988335433186", + "twapFast": "137669298614132178", + "depositTokenBalance": "244354506122316040384", + "pairedTokenBalance": "1", + "usedToken0": "38294478157100685527312", + "usedToken1": "1885625740448541533892", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19860" + }, + "limitPosition": { + "bottomTick": "19860", + "topTick": "23400" + } + } + }, + { + "transactionHash": "0x37454efc4ad153b913e32ec61381afccd86060012982ecc31183694454567ff0", + "state": { + "depositToken": 0, + "blockNumber": 33410365, + "lastRebalancePrice": "137807029880453894", + "state": "0", + "currentTick": "19621", + "currentPrice": "140576718295842419", + "twapSlow": "137848376123766734", + "twapFast": "138221050990549634", + "depositTokenBalance": "15246595956100051258676", + "pairedTokenBalance": "0", + "usedToken0": "53543649396774237326973", + "usedToken1": "1866910118082425063394", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19680" + }, + "limitPosition": { + "bottomTick": "19680", + "topTick": "23220" + } + } + }, + { + "transactionHash": "0xbfbd54a6626e90d6ed390d7ecf593fd1facc572940240175178f43ad3816a5d2", + "state": { + "depositToken": 0, + "blockNumber": 33413905, + "lastRebalancePrice": "140576718295842419", + "state": "0", + "currentTick": "19729", + "currentPrice": "139066733828622104", + "twapSlow": "139191943964775400", + "twapFast": "139122368866713864", + "depositTokenBalance": "174282499441532966865", + "pairedTokenBalance": "2", + "usedToken0": "52903362212049363284852", + "usedToken1": "7710058765226074598928", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19740" + }, + "limitPosition": { + "bottomTick": "19740", + "topTick": "23340" + } + } + }, + { + "transactionHash": "0x025253340f3dd6e95ce7a4289c25859e87921d03e9a61a12aa28b45502719ae5", + "state": { + "depositToken": 0, + "blockNumber": 33415924, + "lastRebalancePrice": "139066733828622104", + "state": "0", + "currentTick": "19831", + "currentPrice": "137655533060826096", + "twapSlow": "137820810583441940", + "twapFast": "137669298614132178", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "51533804266468416802780", + "usedToken1": "18394543619824902581053", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19860" + }, + "limitPosition": { + "bottomTick": "19860", + "topTick": "23400" + } + } + }, + { + "transactionHash": "0x45ecfb81057da1e08ebcf972e7e47953ec15a2784ea1c74c40319b0656d8df8b", + "state": { + "depositToken": 0, + "blockNumber": 33421380, + "lastRebalancePrice": "137655533060826096", + "state": "0", + "currentTick": "19936", + "currentPrice": "136217783245154159", + "twapSlow": "137325572390416360", + "twapFast": "136654356467873867", + "depositTokenBalance": "253016026016028272027", + "pairedTokenBalance": "0", + "usedToken0": "50246407735858864162374", + "usedToken1": "27092295733128666997347", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19980" + }, + "limitPosition": { + "bottomTick": "19980", + "topTick": "23520" + } + } + }, + { + "transactionHash": "0xb5f001bd3f1b48c86927d4c1a32bc35923aadcf794a0dd4d6b639788df3ca9ec", + "state": { + "depositToken": 0, + "blockNumber": 33425220, + "lastRebalancePrice": "136217783245154159", + "state": "0", + "currentTick": "19966", + "currentPrice": "135809762633027606", + "twapSlow": "135809762633027606", + "twapFast": "135809762633027606", + "depositTokenBalance": "994309123567166748132", + "pairedTokenBalance": "0", + "usedToken0": "46557176152016483747924", + "usedToken1": "24599110041220889351867", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19980" + }, + "limitPosition": { + "bottomTick": "19980", + "topTick": "23580" + } + } + }, + { + "transactionHash": "0x277f09e469de064c5d1796bf66dd080b2f890d0de152ecb6cce2c9f6a8cefb95", + "state": { + "depositToken": 0, + "blockNumber": 33426480, + "lastRebalancePrice": "135809762633027606", + "state": "0", + "currentTick": "20004", + "currentPrice": "135294690544936948", + "twapSlow": "135402964187463700", + "twapFast": "135294690544936948", + "depositTokenBalance": "1513120392018456705971", + "pairedTokenBalance": "0", + "usedToken0": "47725360147723684785280", + "usedToken1": "27160199385194801297431", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20040" + }, + "limitPosition": { + "bottomTick": "20040", + "topTick": "23580" + } + } + }, + { + "transactionHash": "0xcf43564a7546b81a9ccee713e93077c4dc7ddc9a05eeea4fe02e56815eb8dc23", + "state": { + "depositToken": 0, + "blockNumber": 33428609, + "lastRebalancePrice": "135294690544936948", + "state": "0", + "currentTick": "20106", + "currentPrice": "133921767158305699", + "twapSlow": "134512291609198902", + "twapFast": "134109379549896372", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "41296795136558943750994", + "usedToken1": "30477263358343788195245", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19920", + "topTick": "23640" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19920" + } + } + }, + { + "transactionHash": "0x7268ebab6bba86541721330579f8dd1167f7e3296366c84d63833441e0f89473", + "state": { + "depositToken": 0, + "blockNumber": 33433862, + "lastRebalancePrice": "133921767158305699", + "state": "1", + "currentTick": "20680", + "currentPrice": "126451479343833052", + "twapSlow": "131112648015902840", + "twapFast": "127428864972129258", + "depositTokenBalance": "14966789729340780696", + "pairedTokenBalance": "2", + "usedToken0": "34026620657450265358023", + "usedToken1": "85779101780525761323696", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "20640" + } + } + }, + { + "transactionHash": "0x9cda9ef39b43e02cd9f99dc4a72ea16b32c8d3d0751a97031fa12ae44cafe58f", + "state": { + "depositToken": 0, + "blockNumber": 33437657, + "lastRebalancePrice": "126451479343833052", + "state": "2", + "currentTick": "20524", + "currentPrice": "128439489184861038", + "twapSlow": "126653953523394246", + "twapFast": "127594621927561473", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "35030880198103159002732", + "usedToken1": "77804038988179598659880", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19080", + "topTick": "20520" + } + } + }, + { + "transactionHash": "0xbe309a288f119f89bf2639d950ce98df741f9d73d86029b917d29eff55b6de91", + "state": { + "depositToken": 0, + "blockNumber": 33440651, + "lastRebalancePrice": "128439489184861038", + "state": "2", + "currentTick": "20413", + "currentPrice": "129873037312520405", + "twapSlow": "128323951421178637", + "twapFast": "129289950727183543", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "35803973211879366471679", + "usedToken1": "71818777511241202297510", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18960", + "topTick": "20400" + } + } + }, + { + "transactionHash": "0x0238134d741efedfcef949523bf3bd6903a4270c24c5ebe058ccf8c92d95b0d1", + "state": { + "depositToken": 0, + "blockNumber": 33441913, + "lastRebalancePrice": "129873037312520405", + "state": "2", + "currentTick": "20468", + "currentPrice": "129160731857494711", + "twapSlow": "129328741591229509", + "twapFast": "129160731857494711", + "depositTokenBalance": "4153831728836647396702", + "pairedTokenBalance": "0", + "usedToken0": "39859377339974020584024", + "usedToken1": "72582282061810942402178", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19020", + "topTick": "20460" + } + } + }, + { + "transactionHash": "0x4b9c2398fdf41585205bed337b0b9f2e6b43b625c58d8cd3e94820332d5e9449", + "state": { + "depositToken": 0, + "blockNumber": 33444220, + "lastRebalancePrice": "129160731857494711", + "state": "2", + "currentTick": "20438", + "currentPrice": "129548776426997496", + "twapSlow": "129044545299847173", + "twapFast": "129393418896192635", + "depositTokenBalance": "2663005255981433060488", + "pairedTokenBalance": "0", + "usedToken0": "42688567147868292384055", + "usedToken1": "71302029924481431514256", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19980", + "topTick": "24000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19980" + } + } + }, + { + "transactionHash": "0x6929bd22f1edef559881da2bb0ab9e72e0e9fce5f79390cd6b26c417a3caad57", + "state": { + "depositToken": 0, + "blockNumber": 33446762, + "lastRebalancePrice": "129548776426997496", + "state": "1", + "currentTick": "20424", + "currentPrice": "129730262650550566", + "twapSlow": "129847066600729593", + "twapFast": "129756210000383303", + "depositTokenBalance": "1500000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "43713584622536064666167", + "usedToken1": "68808490701776189551761", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19980", + "topTick": "23940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19980" + } + } + }, + { + "transactionHash": "0xf2402b59fd1ed40aff4c2b6fc3f6d5dc1d2cd397dd203471a0ac3cb9eb6d05d6", + "state": { + "depositToken": 0, + "blockNumber": 33455974, + "lastRebalancePrice": "129730262650550566", + "state": "1", + "currentTick": "20668", + "currentPrice": "126603304604847605", + "twapSlow": "127276049682310663", + "twapFast": "126844067497975378", + "depositTokenBalance": "29980237427793874865", + "pairedTokenBalance": "0", + "usedToken0": "35048768751738981626427", + "usedToken1": "82021268027637805266368", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "20640" + } + } + }, + { + "transactionHash": "0xd1667586a24f0012a98d2708f527ed7673adbd2c1ae28a65197f50bdb1b26f47", + "state": { + "depositToken": 0, + "blockNumber": 33458305, + "lastRebalancePrice": "126603304604847605", + "state": "2", + "currentTick": "20692", + "currentPrice": "126299836154763258", + "twapSlow": "126375635003957725", + "twapFast": "126299836154763258", + "depositTokenBalance": "1686907409271540108322", + "pairedTokenBalance": "0", + "usedToken0": "36691934076309267538106", + "usedToken1": "82231668404102759505419", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "20640" + } + } + }, + { + "transactionHash": "0x19bc90f27e683dc7764647e9a924606101657bdbf524a503449bd61ea39f696f", + "state": { + "depositToken": 0, + "blockNumber": 33462502, + "lastRebalancePrice": "126299836154763258", + "state": "2", + "currentTick": "20654", + "currentPrice": "126780664486397860", + "twapSlow": "127199710773345854", + "twapFast": "126831384359539424", + "depositTokenBalance": "2649811896799822083243", + "pairedTokenBalance": "0", + "usedToken0": "35410674888432805406539", + "usedToken1": "72797947925406460190930", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19200", + "topTick": "20640" + } + } + }, + { + "transactionHash": "0xa7f938d74f31da5e58f5d457228610a0ae945f9facbbaa956783393782e987d8", + "state": { + "depositToken": 0, + "blockNumber": 33467331, + "lastRebalancePrice": "126780664486397860", + "state": "2", + "currentTick": "20565", + "currentPrice": "127913991559875264", + "twapSlow": "127671197842463383", + "twapFast": "127965164831850377", + "depositTokenBalance": "462000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "36393208121600247424676", + "usedToken1": "68721097845258159125508", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19140", + "topTick": "20520" + } + } + }, + { + "transactionHash": "0x0531a9cba6c04b91a6b9f7e501306db461cc4fe8fb99d8d17bcebd646c303bd5", + "state": { + "depositToken": 0, + "blockNumber": 33468593, + "lastRebalancePrice": "127913991559875264", + "state": "2", + "currentTick": "20690", + "currentPrice": "126325097384992572", + "twapSlow": "126920192967621359", + "twapFast": "126325097384992572", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "36160592415468264867209", + "usedToken1": "70487970549553666347985", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "20640" + } + } + }, + { + "transactionHash": "0xbc2cdb4e7e259e881589ff45e3bb2aed536b17dfe0c5b793e1bdf67548a1af84", + "state": { + "depositToken": 0, + "blockNumber": 33471623, + "lastRebalancePrice": "126325097384992572", + "state": "2", + "currentTick": "20806", + "currentPrice": "124868265058316861", + "twapSlow": "125619689096046164", + "twapFast": "125068204194277198", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "35951981949190821874820", + "usedToken1": "72149068220775439270590", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "20760" + } + } + }, + { + "transactionHash": "0x7c1f51035c56d944a9022d9d6aa4af4e4edf7ce0fd3ebb9e9c7122793e82f526", + "state": { + "depositToken": 0, + "blockNumber": 33481067, + "lastRebalancePrice": "124868265058316861", + "state": "2", + "currentTick": "20632", + "currentPrice": "127059875006937896", + "twapSlow": "125607128383207844", + "twapFast": "126527369201690473", + "depositTokenBalance": "3003808651257560408500", + "pairedTokenBalance": "0", + "usedToken0": "39906306288448811605608", + "usedToken1": "64669501423556119000815", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20160", + "topTick": "24180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "20160" + } + } + }, + { + "transactionHash": "0xb47dba966c6554c7cb014c3cdb1f21df95d9c181e279f113db398673869a5fe9", + "state": { + "depositToken": 0, + "blockNumber": 33492661, + "lastRebalancePrice": "127059875006937896", + "state": "1", + "currentTick": "20498", + "currentPrice": "128773849619216301", + "twapSlow": "129225325140788316", + "twapFast": "128773849619216301", + "depositTokenBalance": "5006502356097451818200", + "pairedTokenBalance": "1", + "usedToken0": "43504281077397387885157", + "usedToken1": "48055641571454357523379", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20220", + "topTick": "24060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "20220" + } + } + }, + { + "transactionHash": "0x9bc7ae71b09552957af7ff65f03cd8622edf45b616a80b7126424ffca63ec26c", + "state": { + "depositToken": 0, + "blockNumber": 33497082, + "lastRebalancePrice": "128773849619216301", + "state": "1", + "currentTick": "20403", + "currentPrice": "130002968808287208", + "twapSlow": "128503721774686846", + "twapFast": "130002968808287208", + "depositTokenBalance": "3538335843802677342685", + "pairedTokenBalance": "0", + "usedToken0": "48081572497324361577541", + "usedToken1": "38082745251390589469549", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20220", + "topTick": "23940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "20220" + } + } + }, + { + "transactionHash": "0x098619cf74eaa91323b8abbd6d4e7ffd4b3e235459777a7441b9ea103c76f06d", + "state": { + "depositToken": 0, + "blockNumber": 33514624, + "lastRebalancePrice": "130002968808287208", + "state": "1", + "currentTick": "20177", + "currentPrice": "132974337337838366", + "twapSlow": "130837614093225112", + "twapFast": "132165703152690600", + "depositTokenBalance": "225029980481005871757", + "pairedTokenBalance": "1", + "usedToken0": "51029709541473330062203", + "usedToken1": "17133631922092980407275", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20220" + }, + "limitPosition": { + "bottomTick": "20220", + "topTick": "23760" + } + } + }, + { + "transactionHash": "0x57d4656f7a2e070ea3f0a36b6a5c7f7d8e3d32f4f5974d33901c4cc5354f2490", + "state": { + "depositToken": 0, + "blockNumber": 33516469, + "lastRebalancePrice": "132974337337838366", + "state": "0", + "currentTick": "19981", + "currentPrice": "135606210868484128", + "twapSlow": "132708667704608312", + "twapFast": "135064896440852056", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "51041490841856145313647", + "usedToken1": "16893812729114821850642", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "20040" + }, + "limitPosition": { + "bottomTick": "20040", + "topTick": "23580" + } + } + }, + { + "transactionHash": "0x0cdba4b4004f45623591a3eeb0d875e9c6f5fa68c29afabaa58709cc1e009e82", + "state": { + "depositToken": 0, + "blockNumber": 33525154, + "lastRebalancePrice": "135606210868484128", + "state": "0", + "currentTick": "19898", + "currentPrice": "136736369582641353", + "twapSlow": "136068033548376776", + "twapFast": "136736369582641353", + "depositTokenBalance": "561639763286026258881", + "pairedTokenBalance": "0", + "usedToken0": "46733706737980356482371", + "usedToken1": "15228595699765333968366", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19920" + }, + "limitPosition": { + "bottomTick": "19920", + "topTick": "23520" + } + } + }, + { + "transactionHash": "0xdf2c8377551f3c7067fddf8c7f87cb7e3d4f5cbc93c81250f1a8f4a2be4bf08f", + "state": { + "depositToken": 0, + "blockNumber": 33530760, + "lastRebalancePrice": "136736369582641353", + "state": "0", + "currentTick": "19587", + "currentPrice": "141055468615301335", + "twapSlow": "136996402636590915", + "twapFast": "138428527762048448", + "depositTokenBalance": "160962023452005620291", + "pairedTokenBalance": "0", + "usedToken0": "46929230564981983897429", + "usedToken1": "15007825611111848602689", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19620" + }, + "limitPosition": { + "bottomTick": "19620", + "topTick": "23160" + } + } + }, + { + "transactionHash": "0x8054588016b4e218e8d8cf6f8606197310e5bc9f8f4da8a1c096f69213cafe1e", + "state": { + "depositToken": 0, + "blockNumber": 33532022, + "lastRebalancePrice": "141055468615301335", + "state": "0", + "currentTick": "19280", + "currentPrice": "145452805410618934", + "twapSlow": "143732260596483222", + "twapFast": "145452805410618934", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "47962961540224142484225", + "usedToken1": "14784362961110205675533", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19320" + }, + "limitPosition": { + "bottomTick": "19320", + "topTick": "22860" + } + } + }, + { + "transactionHash": "0x4fa71a1eca6017185661aef65086083a3c6f5f4e8f9b969b2cdc259b27db25d6", + "state": { + "depositToken": 0, + "blockNumber": 33533795, + "lastRebalancePrice": "145452805410618934", + "state": "0", + "currentTick": "19339", + "currentPrice": "144597203146609382", + "twapSlow": "145046127503778152", + "twapFast": "144741865435852109", + "depositTokenBalance": "1800000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "49470071086769618746779", + "usedToken1": "16758285649246568339971", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "22920" + } + } + }, + { + "transactionHash": "0xa13b37ae62ea48420676faa48da595567bb28d8ad3b3cf55872bd3f44c6f1994", + "state": { + "depositToken": 0, + "blockNumber": 33543054, + "lastRebalancePrice": "144597203146609382", + "state": "0", + "currentTick": "19522", + "currentPrice": "141975269285912543", + "twapSlow": "144380480760251376", + "twapFast": "142972532658428270", + "depositTokenBalance": "20000000000000000000", + "pairedTokenBalance": "2", + "usedToken0": "47317994536440226400521", + "usedToken1": "31946527008885313165606", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19560" + }, + "limitPosition": { + "bottomTick": "19560", + "topTick": "23100" + } + } + }, + { + "transactionHash": "0xb2b1fc1f11bb2c8325d9f93d8ea0a56017f8533f4aa4b0ad3b5ea90d9bb3da95", + "state": { + "depositToken": 0, + "blockNumber": 33544316, + "lastRebalancePrice": "141975269285912543", + "state": "0", + "currentTick": "19616", + "currentPrice": "140647020714068007", + "twapSlow": "141989466812841135", + "twapFast": "140815889996907868", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "46487704560408393103649", + "usedToken1": "37820443981555472543911", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0xfd8419fcef0acd8f55f2a0c4ab82ca6e2eb5ac33132bcc8fd4c32c914c25fdba", + "state": { + "depositToken": 0, + "blockNumber": 33545885, + "lastRebalancePrice": "140647020714068007", + "state": "1", + "currentTick": "19670", + "currentPrice": "139889611517283489", + "twapSlow": "139889611517283489", + "twapFast": "139889611517283489", + "depositTokenBalance": "10809700000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "56520968648565052864328", + "usedToken1": "43394843576705897331333", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "23220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0xb9f3743c7e5b166d282794b372224e49293e33db766a7037d8dd03d775808779", + "state": { + "depositToken": 0, + "blockNumber": 33551158, + "lastRebalancePrice": "139889611517283489", + "state": "1", + "currentTick": "20190", + "currentPrice": "132801591645467023", + "twapSlow": "134552649332184923", + "twapFast": "133387176712392562", + "depositTokenBalance": "516963790677743488218", + "pairedTokenBalance": "1", + "usedToken0": "48119942286172877135504", + "usedToken1": "109125781632422570582337", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18780", + "topTick": "20160" + } + } + }, + { + "transactionHash": "0x8953b19127b6bb2e1ae3953d69f72ad18482ea8f91851df4ed68b254c78d4c9f", + "state": { + "depositToken": 0, + "blockNumber": 33552419, + "lastRebalancePrice": "132801591645467023", + "state": "2", + "currentTick": "20249", + "currentPrice": "132020408070800555", + "twapSlow": "132060018153966058", + "twapFast": "132020408070800555", + "depositTokenBalance": "11817632172364745853660", + "pairedTokenBalance": "0", + "usedToken0": "59796261364769364891111", + "usedToken1": "109864911675081788436893", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18840", + "topTick": "20220" + } + } + }, + { + "transactionHash": "0x65ee1ccc16f08ead56af3a6b402a2320d7c3efb0753a70fdcc480bf2e8f993d6", + "state": { + "depositToken": 0, + "blockNumber": 33555252, + "lastRebalancePrice": "132020408070800555", + "state": "2", + "currentTick": "20063", + "currentPrice": "134498841725026400", + "twapSlow": "132046813472618796", + "twapFast": "133467229029164448", + "depositTokenBalance": "154968873723860684424", + "pairedTokenBalance": "0", + "usedToken0": "61445392201674431093873", + "usedToken1": "95999774593844938926438", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23580" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x54aff53b26b2655ca1adc73e528dc769521ec3c56a823995955a267792627818", + "state": { + "depositToken": 0, + "blockNumber": 33560093, + "lastRebalancePrice": "134498841725026400", + "state": "1", + "currentTick": "20010", + "currentPrice": "135213542134920202", + "twapSlow": "135213542134920202", + "twapFast": "135213542134920202", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "2", + "usedToken0": "63474248502304231137533", + "usedToken1": "88431800192625322692330", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x4f3014a5f166d39c3251d75220dc0d13e6f519d0bd0e8048db8d25587514b0ce", + "state": { + "depositToken": 0, + "blockNumber": 33563579, + "lastRebalancePrice": "135213542134920202", + "state": "1", + "currentTick": "20069", + "currentPrice": "134418170657217905", + "twapSlow": "134579561207577853", + "twapFast": "134418170657217905", + "depositTokenBalance": "2443656205841603687723", + "pairedTokenBalance": "1", + "usedToken0": "64738979717255823981802", + "usedToken1": "97173346208225918679990", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23580" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x0c42670f4a69dc24596b7c090cd85b9309a54c1767fc6a26e18aefb715bd88c6", + "state": { + "depositToken": 0, + "blockNumber": 33565581, + "lastRebalancePrice": "134418170657217905", + "state": "1", + "currentTick": "20081", + "currentPrice": "134256973649692485", + "twapSlow": "134350981729911200", + "twapFast": "134256973649692485", + "depositTokenBalance": "1071841943816834986133", + "pairedTokenBalance": "0", + "usedToken0": "65582136748742642683710", + "usedToken1": "98828316903498644144687", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23640" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xb5cbaca624e5f7d2041dada4f2492210913ffd74cbbe19d3a61589423045dee5", + "state": { + "depositToken": 0, + "blockNumber": 33592935, + "lastRebalancePrice": "134256973649692485", + "state": "1", + "currentTick": "20373", + "currentPrice": "130393543755794897", + "twapSlow": "131690785731060246", + "twapFast": "130850697854634434", + "depositTokenBalance": "666988306534051909851", + "pairedTokenBalance": "1", + "usedToken0": "60435089297780834340867", + "usedToken1": "143183776095218673658497", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18960", + "topTick": "20340" + } + } + }, + { + "transactionHash": "0x1656711b536d4761f1bfd4df29d702e4334f1b1e4a52b73943f450733e45f1f1", + "state": { + "depositToken": 0, + "blockNumber": 33601967, + "lastRebalancePrice": "130393543755794897", + "state": "2", + "currentTick": "20430", + "currentPrice": "129652451729052132", + "twapSlow": "129730262650550566", + "twapFast": "129678383515922460", + "depositTokenBalance": "1099513416748995185262", + "pairedTokenBalance": "0", + "usedToken0": "61233210476812240594852", + "usedToken1": "143950772451062648130066", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19020", + "topTick": "20400" + } + } + }, + { + "transactionHash": "0x3c945d4d5cf9faa4b1e61a7e43c78fe002f428bf0603be30305d997ea42e2c1b", + "state": { + "depositToken": 0, + "blockNumber": 33611405, + "lastRebalancePrice": "129652451729052132", + "state": "2", + "currentTick": "20485", + "currentPrice": "128941356104162515", + "twapSlow": "128980042379363389", + "twapFast": "128941356104162515", + "depositTokenBalance": "5020533368354770249078", + "pairedTokenBalance": "0", + "usedToken0": "65933355546913318360893", + "usedToken1": "144912692963573309778106", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19080", + "topTick": "20460" + } + } + }, + { + "transactionHash": "0x2feec9d126483f615cb6fcb8daeea8a4de1b334ada7c49aaefae6abf28a3ba4e", + "state": { + "depositToken": 0, + "blockNumber": 33616275, + "lastRebalancePrice": "128941356104162515", + "state": "2", + "currentTick": "20538", + "currentPrice": "128259808689570321", + "twapSlow": "128285461933906321", + "twapFast": "128285461933906321", + "depositTokenBalance": "1083218918068491394142", + "pairedTokenBalance": "0", + "usedToken0": "66656465093148616435033", + "usedToken1": "145832005377537422229091", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19140", + "topTick": "20520" + } + } + }, + { + "transactionHash": "0x17501ddf44071f9d6f0e1e973e1c20017a68878e453fe9c4057a41b46c3b600b", + "state": { + "depositToken": 0, + "blockNumber": 33618246, + "lastRebalancePrice": "128259808689570321", + "state": "2", + "currentTick": "20545", + "currentPrice": "128170062725462923", + "twapSlow": "128195698019708643", + "twapFast": "128170062725462923", + "depositTokenBalance": "4987250057266024445574", + "pairedTokenBalance": "0", + "usedToken0": "71621168364298289138420", + "usedToken1": "146000210945097943300202", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19140", + "topTick": "20520" + } + } + }, + { + "transactionHash": "0xb556153f6fbb4053115464fe545e5701654f58dec850c8c6764b0a56248cd39d", + "state": { + "depositToken": 0, + "blockNumber": 33638614, + "lastRebalancePrice": "128170062725462923", + "state": "2", + "currentTick": "20515", + "currentPrice": "128555130974134055", + "twapSlow": "128208517589510614", + "twapFast": "128555130974134055", + "depositTokenBalance": "2684701003588529147948", + "pairedTokenBalance": "0", + "usedToken0": "73130594409869401055505", + "usedToken1": "142193654990303156106104", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19080", + "topTick": "20460" + } + } + }, + { + "transactionHash": "0x61f5f11967ebd601ec7c5a94c04a1391f50cce2ef4e7ee8753a746ec9edbd977", + "state": { + "depositToken": 0, + "blockNumber": 33655814, + "lastRebalancePrice": "128555130974134055", + "state": "2", + "currentTick": "20499", + "currentPrice": "128760973521864115", + "twapSlow": "128760973521864115", + "twapFast": "128760973521864115", + "depositTokenBalance": "1945658405170873659840", + "pairedTokenBalance": "0", + "usedToken0": "75095525243748266427963", + "usedToken1": "141642864469688121141905", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19080", + "topTick": "20460" + } + } + }, + { + "transactionHash": "0x07c1cb564b4be5421b897e4c87ebcd9608cf45ead5a4f5f8c29f89a7274d2cdf", + "state": { + "depositToken": 0, + "blockNumber": 33659720, + "lastRebalancePrice": "128760973521864115", + "state": "2", + "currentTick": "20462", + "currentPrice": "129238247673302395", + "twapSlow": "129238247673302395", + "twapFast": "129238247673302395", + "depositTokenBalance": "1072000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "76306323154125111033968", + "usedToken1": "140569562599573839413915", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "19020", + "topTick": "20460" + } + } + }, + { + "transactionHash": "0x94b938d55a058fdb7cd6f1962b29a53411d8db12fc6608ac20a7da197e84d98a", + "state": { + "depositToken": 0, + "blockNumber": 33660954, + "lastRebalancePrice": "129238247673302395", + "state": "2", + "currentTick": "20391", + "currentPrice": "130159058201423655", + "twapSlow": "128567986487231469", + "twapFast": "130133030294034545", + "depositTokenBalance": "505915600000000000000", + "pairedTokenBalance": "0", + "usedToken0": "77721840112136494360998", + "usedToken1": "133548331679313803598616", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19860", + "topTick": "23940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0xc772df0993880fc7de011246266edf2528c607c1108379c2c832e6c405598574", + "state": { + "depositToken": 0, + "blockNumber": 33664401, + "lastRebalancePrice": "130159058201423655", + "state": "1", + "currentTick": "19647", + "currentPrice": "140211711792358802", + "twapSlow": "131283196763696560", + "twapFast": "138027686573895501", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "90640051555900891491865", + "usedToken1": "36884990151266256534390", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19680" + }, + "limitPosition": { + "bottomTick": "19680", + "topTick": "23220" + } + } + }, + { + "transactionHash": "0x7adce00da1728461a326a8d5152f01ee5b07689798eff757945add8723c36e0f", + "state": { + "depositToken": 0, + "blockNumber": 33666726, + "lastRebalancePrice": "140211711792358802", + "state": "0", + "currentTick": "19600", + "currentPrice": "140872224802423308", + "twapSlow": "140366021814911442", + "twapFast": "140872224802423308", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "91583982399229434906413", + "usedToken1": "36774399235382720872374", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19620" + }, + "limitPosition": { + "bottomTick": "19620", + "topTick": "23220" + } + } + }, + { + "transactionHash": "0x2096cd038486afbe8fd7521c7c5caf75dd36ecf991b87cce90fa7f73ed9fa241", + "state": { + "depositToken": 0, + "blockNumber": 33669634, + "lastRebalancePrice": "140872224802423308", + "state": "0", + "currentTick": "19653", + "currentPrice": "140127614201892773", + "twapSlow": "140366021814911442", + "twapFast": "140127614201892773", + "depositTokenBalance": "5251630022081076128981", + "pairedTokenBalance": "0", + "usedToken0": "95671240819759809792535", + "usedToken1": "43410431857889608124838", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19680" + }, + "limitPosition": { + "bottomTick": "19680", + "topTick": "23220" + } + } + }, + { + "transactionHash": "0x5464ad4009b029faca859dda290d98f4f07d886fa230fbecf9ae9be6100e36b2", + "state": { + "depositToken": 0, + "blockNumber": 33672983, + "lastRebalancePrice": "139777750171547671", + "state": "0", + "currentTick": "19517", + "currentPrice": "142046271119502252", + "twapSlow": "140534553713551208", + "twapFast": "141776652903472643", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "98568412422419546027927", + "usedToken1": "43005037444872053779323", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19560" + }, + "limitPosition": { + "bottomTick": "19560", + "topTick": "23100" + } + } + }, + { + "transactionHash": "0x1adb25b5d1b2d622c9d68d3a12f47bfcf746ac12c2c2dd299979f1e1c181ab31", + "state": { + "depositToken": 0, + "blockNumber": 33674242, + "lastRebalancePrice": "142046271119502252", + "state": "0", + "currentTick": "19379", + "currentPrice": "144019998372895760", + "twapSlow": "143287402717109576", + "twapFast": "144019998372895760", + "depositTokenBalance": "4934840611670285115", + "pairedTokenBalance": "1", + "usedToken0": "98615883191947521849828", + "usedToken1": "42709217392995106188598", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "22980" + } + } + }, + { + "transactionHash": "0x44a1989afb0abbce1ea1dd24c357f3e60e7a265d690685d531feb540d9097e68", + "state": { + "depositToken": 0, + "blockNumber": 33681368, + "lastRebalancePrice": "144019998372895760", + "state": "0", + "currentTick": "19494", + "currentPrice": "142373337171832815", + "twapSlow": "142672620353343503", + "twapFast": "142458782532984171", + "depositTokenBalance": "97665541353738994316", + "pairedTokenBalance": "0", + "usedToken0": "93091468453408806711423", + "usedToken1": "65123386715847715609064", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19320", + "topTick": "23040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19320" + } + } + }, + { + "transactionHash": "0x6cdb547cf46824f23513572c9ba9c93917f32df227dfc5a5f960f973e500c829", + "state": { + "depositToken": 0, + "blockNumber": 33682628, + "lastRebalancePrice": "142373337171832815", + "state": "1", + "currentTick": "19348", + "currentPrice": "144467130708667467", + "twapSlow": "143230102081897757", + "twapFast": "144467130708667467", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "97254841683170143687024", + "usedToken1": "35831351592402226961835", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "22920" + } + } + }, + { + "transactionHash": "0xe42c992ad96fb2ede156c2c18bf63b8767da99fc0e756053796c08aef3035c8c", + "state": { + "depositToken": 0, + "blockNumber": 33683921, + "lastRebalancePrice": "144467130708667467", + "state": "0", + "currentTick": "19240", + "currentPrice": "146035752602547580", + "twapSlow": "144553832660051833", + "twapFast": "145481897426229111", + "depositTokenBalance": "592490918424704600836", + "pairedTokenBalance": "2", + "usedToken0": "96911464455950835867116", + "usedToken1": "35283673241939687134330", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19260" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "22860" + } + } + }, + { + "transactionHash": "0x6831cdca394af92b25dc045c8025929f3c6bfff6ad872315285e18dcd19d2f4a", + "state": { + "depositToken": 0, + "blockNumber": 33689316, + "lastRebalancePrice": "146035752602547580", + "state": "0", + "currentTick": "19425", + "currentPrice": "143359060748641348", + "twapSlow": "145060632116528530", + "twapFast": "144019998372895760", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "92774719959806514575623", + "usedToken1": "68620235891461215734026", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x75094ba1c321140b2487a3931ee46e2b4609275a13918f8d94d897f89493aef7", + "state": { + "depositToken": 0, + "blockNumber": 33690953, + "lastRebalancePrice": "143359060748641348", + "state": "1", + "currentTick": "19288", + "currentPrice": "145336495511850848", + "twapSlow": "140886312024903551", + "twapFast": "144843215142515419", + "depositTokenBalance": "123538487722150356484", + "pairedTokenBalance": "0", + "usedToken0": "96807255208932054536899", + "usedToken1": "41449856012274198263813", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19320" + }, + "limitPosition": { + "bottomTick": "19320", + "topTick": "22860" + } + } + }, + { + "transactionHash": "0xb748fe916c536a5ca4b42492458bac942ace46535666bd21bf3b429d73c1a838", + "state": { + "depositToken": 0, + "blockNumber": 33692608, + "lastRebalancePrice": "145336495511850848", + "state": "0", + "currentTick": "19451", + "currentPrice": "142986829911694113", + "twapSlow": "144611662866924043", + "twapFast": "143545539388692909", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "92882133227792370286740", + "usedToken1": "68710564508911280889488", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x5349edd071bfa489206e9dfea943fd9945824b40ae8a5472d7541b546d8cb92f", + "state": { + "depositToken": 0, + "blockNumber": 33698551, + "lastRebalancePrice": "142986829911694113", + "state": "1", + "currentTick": "19990", + "currentPrice": "135484226279129069", + "twapSlow": "138110523892753585", + "twapFast": "136000019937046191", + "depositTokenBalance": "700000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "78324895399782401323373", + "usedToken1": "178935179201770189816818", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18540", + "topTick": "19980" + } + } + }, + { + "transactionHash": "0x7d9cb91631542dfc8c2f26f53e5d6b77c77e5061cf59bbca66b759edbb49adff", + "state": { + "depositToken": 0, + "blockNumber": 33699815, + "lastRebalancePrice": "135484226279129069", + "state": "2", + "currentTick": "20137", + "currentPrice": "133507273202023536", + "twapSlow": "134350981729911200", + "twapFast": "133507273202023536", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "77746904780225290182616", + "usedToken1": "182631070289789863230512", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "20100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18720", + "topTick": "20100" + } + } + }, + { + "transactionHash": "0xdc077ce5478288e2b39a9f6d280e22bf012c68f9b0f9c5df7b58e05dcdb5bd8d", + "state": { + "depositToken": 0, + "blockNumber": 33701086, + "lastRebalancePrice": "133507273202023536", + "state": "2", + "currentTick": "19792", + "currentPrice": "138193410926430239", + "twapSlow": "136285905759917306", + "twapFast": "138193410926430239", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "83545121397493313569855", + "usedToken1": "140003310846431311831030", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x9b3274e5745598cf0076d8277ee76fcfccb419acc0b06b55646d03374ec0549d", + "state": { + "depositToken": 0, + "blockNumber": 33715585, + "lastRebalancePrice": "138193410926430239", + "state": "1", + "currentTick": "19325", + "currentPrice": "144799770867117358", + "twapSlow": "144857699464029670", + "twapFast": "144799770867117358", + "depositTokenBalance": "2000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "97861976911488265387808", + "usedToken1": "54607355743944804137162", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19200", + "topTick": "22860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19200" + } + } + }, + { + "transactionHash": "0x73738579e4447e727572ccbf426a100740024ee1ffce552663bd859b0a79a106", + "state": { + "depositToken": 0, + "blockNumber": 33716848, + "lastRebalancePrice": "144799770867117358", + "state": "1", + "currentTick": "19325", + "currentPrice": "144799770867117358", + "twapSlow": "144799770867117358", + "twapFast": "144799770867117358", + "depositTokenBalance": "8000000000000000000000", + "pairedTokenBalance": "2", + "usedToken0": "105699955557279509318972", + "usedToken1": "54075796092444564982315", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x3ad9bedd5e8d7aeebe74c8bce7c160b5ebb2c9e6afe0b1fefa11eed8f970e413", + "state": { + "depositToken": 0, + "blockNumber": 33723517, + "lastRebalancePrice": "144799770867117358", + "state": "1", + "currentTick": "19375", + "currentPrice": "144077615014020915", + "twapSlow": "143588607357019244", + "twapFast": "144077615014020915", + "depositTokenBalance": "1174093741544366243067", + "pairedTokenBalance": "1", + "usedToken0": "105275805158128379374832", + "usedToken1": "65637145101748105099793", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0xe5d8aee6e3c57346c3502423c4031d41d1cdb9e4fb5449484b3c2b7a2e1c05a5", + "state": { + "depositToken": 0, + "blockNumber": 33726647, + "lastRebalancePrice": "144077615014020915", + "state": "1", + "currentTick": "19235", + "currentPrice": "146108785083884545", + "twapSlow": "144655050704278618", + "twapFast": "145758561946411910", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "106720609569234196898481", + "usedToken1": "38690754055464466753405", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19260" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "22860" + } + } + }, + { + "transactionHash": "0x37d3c1f8256679f145a6cd59ed129f68d62ca29fec82f0b0f1c2ab512a6906ae", + "state": { + "depositToken": 0, + "blockNumber": 33738067, + "lastRebalancePrice": "146108785083884545", + "state": "0", + "currentTick": "19124", + "currentPrice": "147739545036457414", + "twapSlow": "146973331593699855", + "twapFast": "147459120409638141", + "depositTokenBalance": "322455949257546236532", + "pairedTokenBalance": "0", + "usedToken0": "106699687616076175451723", + "usedToken1": "38370350131596207679428", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19140" + }, + "limitPosition": { + "bottomTick": "19140", + "topTick": "22740" + } + } + }, + { + "transactionHash": "0x8a78fcf869308631807b643b731ac72d09cc857b27b6d8a5cb5a6cb927e5963f", + "state": { + "depositToken": 0, + "blockNumber": 33739337, + "lastRebalancePrice": "147739545036457414", + "state": "0", + "currentTick": "19267", + "currentPrice": "145642007552450863", + "twapSlow": "145758561946411910", + "twapFast": "145642007552450863", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "102589539003358616039598", + "usedToken1": "66353528802112127163752", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19320" + }, + "limitPosition": { + "bottomTick": "19320", + "topTick": "22860" + } + } + }, + { + "transactionHash": "0x60195fc925e7954f2d4e9cf81cf576fa57571236503014067d27ba7f39f678ac", + "state": { + "depositToken": 0, + "blockNumber": 33745544, + "lastRebalancePrice": "146284212089934528", + "state": "0", + "currentTick": "19321", + "currentPrice": "144857699464029670", + "twapSlow": "145860623554174467", + "twapFast": "145612883519618104", + "depositTokenBalance": "6078483212554597410945", + "pairedTokenBalance": "0", + "usedToken0": "108315909326462992763174", + "usedToken1": "66760484725585612413179", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "22920" + } + } + }, + { + "transactionHash": "0xfb5e7af5c2e4c10a1e58aad7f66740b323bee6cbc3bdbed6a92ae9606ee046f2", + "state": { + "depositToken": 0, + "blockNumber": 33746796, + "lastRebalancePrice": "144857699464029670", + "state": "0", + "currentTick": "19321", + "currentPrice": "144857699464029670", + "twapSlow": "144857699464029670", + "twapFast": "144857699464029670", + "depositTokenBalance": "3252723420558551916304", + "pairedTokenBalance": "1", + "usedToken0": "97931105000801608380955", + "usedToken1": "58339389829978665091573", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "22920" + } + } + }, + { + "transactionHash": "0x55c48524f02d151df3e18ed385d60a69d4a1b41490755de595d94571b7365b4e", + "state": { + "depositToken": 0, + "blockNumber": 33748053, + "lastRebalancePrice": "144857699464029670", + "state": "0", + "currentTick": "19453", + "currentPrice": "142958236834744796", + "twapSlow": "143201460357811591", + "twapFast": "142958236834744796", + "depositTokenBalance": "30018833495213586683169", + "pairedTokenBalance": "0", + "usedToken0": "125680346504253351628919", + "usedToken1": "73929804646721574088261", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19500" + }, + "limitPosition": { + "bottomTick": "19500", + "topTick": "23040" + } + } + }, + { + "transactionHash": "0x334db3aebb1db4171b1d62ca1ceb0b90f57bccd724b83e247aeb342e736b1f2d", + "state": { + "depositToken": 0, + "blockNumber": 33749654, + "lastRebalancePrice": "142958236834744796", + "state": "0", + "currentTick": "19375", + "currentPrice": "144077615014020915", + "twapSlow": "143746633822542871", + "twapFast": "144077615014020915", + "depositTokenBalance": "1451427821913651050429", + "pairedTokenBalance": "0", + "usedToken0": "125293256176669579518582", + "usedToken1": "72455900899240251978707", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "19380", + "topTick": "22980" + } + } + }, + { + "transactionHash": "0x1b001c7ae8b2fd6b90b113d53b63a9b3fa6721752ab5dba54cbba6e8f57af06b", + "state": { + "depositToken": 0, + "blockNumber": 33752564, + "lastRebalancePrice": "144077615014020915", + "state": "0", + "currentTick": "19226", + "currentPrice": "146240335601897650", + "twapSlow": "144092022775522317", + "twapFast": "145394638830826680", + "depositTokenBalance": "264498033839491712555", + "pairedTokenBalance": "0", + "usedToken0": "125634320793637717458485", + "usedToken1": "71921900943780307295330", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19260" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "22800" + } + } + }, + { + "transactionHash": "0x83c945e2ffb7dfea903e191ecaeb2bc310b78ecd57eac398244e18dabba53e50", + "state": { + "depositToken": 0, + "blockNumber": 33753828, + "lastRebalancePrice": "146240335601897650", + "state": "0", + "currentTick": "19260", + "currentPrice": "145743987547657144", + "twapSlow": "146079567709546959", + "twapFast": "145889797137491537", + "depositTokenBalance": "2001692623395551954876", + "pairedTokenBalance": "0", + "usedToken0": "127611442315140775057131", + "usedToken1": "72084460874030709484337", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19260" + }, + "limitPosition": { + "bottomTick": "19320", + "topTick": "22860" + } + } + }, + { + "transactionHash": "0x47c6e76c0e273199c92016173f9122609b234c3e7c40d43c7bb838e5ba6e8c7e", + "state": { + "depositToken": 0, + "blockNumber": 33761847, + "lastRebalancePrice": "145743987547657144", + "state": "0", + "currentTick": "19133", + "currentPrice": "147606645904350155", + "twapSlow": "146430562147477081", + "twapFast": "147267557673838113", + "depositTokenBalance": "500000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "128178573603075268591640", + "usedToken1": "71635853070925201115111", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19140" + }, + "limitPosition": { + "bottomTick": "19140", + "topTick": "22740" + } + } + }, + { + "transactionHash": "0x7bd171147ccb2beb188068ed64dff6f149c44911056b1b6c826672929bf1d310", + "state": { + "depositToken": 0, + "blockNumber": 33766019, + "lastRebalancePrice": "147606645904350155", + "state": "0", + "currentTick": "19216", + "currentPrice": "146386641763202481", + "twapSlow": "146988028926859225", + "twapFast": "146533094296523948", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "125188489869311121411788", + "usedToken1": "91975796021405082784100", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19020", + "topTick": "22740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19020" + } + } + }, + { + "transactionHash": "0x8940adfb80ba410c90cbffaf81121e685b97820b12357f9d4602d4ccbfbf4c6f", + "state": { + "depositToken": 0, + "blockNumber": 33771629, + "lastRebalancePrice": "146386641763202481", + "state": "1", + "currentTick": "19160", + "currentPrice": "147208665374579509", + "twapSlow": "147193945979981511", + "twapFast": "147208665374579509", + "depositTokenBalance": "99876352669970495780816", + "pairedTokenBalance": "2", + "usedToken0": "227273577160828981624700", + "usedToken1": "77075490585510308839442", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19200" + }, + "limitPosition": { + "bottomTick": "19200", + "topTick": "22740" + } + } + }, + { + "transactionHash": "0x63aa91d6098350267d7b9838bf6afa96d26f7017d22be2bdf2e7e956403d2281", + "state": { + "depositToken": 0, + "blockNumber": 33777762, + "lastRebalancePrice": "147208665374579509", + "state": "0", + "currentTick": "19221", + "currentPrice": "146313470395194636", + "twapSlow": "146841121709021416", + "twapFast": "146415920555421539", + "depositTokenBalance": "2857730887505019666535", + "pairedTokenBalance": "0", + "usedToken0": "219354264131617060896568", + "usedToken1": "84074175846597814338815", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19260" + }, + "limitPosition": { + "bottomTick": "19260", + "topTick": "22800" + } + } + }, + { + "transactionHash": "0xcc2d311d37645fee5e0278953f10ff5cef8179757a650d9a368181bda0641e37", + "state": { + "depositToken": 0, + "blockNumber": 33779618, + "lastRebalancePrice": "146313470395194636", + "state": "0", + "currentTick": "19462", + "currentPrice": "142829638729219066", + "twapSlow": "145540098914695391", + "twapFast": "143818521515555063", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "205705174893946529921173", + "usedToken1": "178630520248299781541637", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x92ed3d1420ae3750dc684d90b6e22a953dae330cdb4a803ff70414062012189c", + "state": { + "depositToken": 0, + "blockNumber": 33783436, + "lastRebalancePrice": "142829638729219066", + "state": "1", + "currentTick": "19389", + "currentPrice": "143876057553847864", + "twapSlow": "143876057553847864", + "twapFast": "143876057553847864", + "depositTokenBalance": "3398307871272181654725", + "pairedTokenBalance": "2", + "usedToken0": "213813354557664236240928", + "usedToken1": "145997958325464972575355", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x1dcf433890d6bc438cc0e74da7e328bcac927b76e5997c3ed35e00532bae34a6", + "state": { + "depositToken": 0, + "blockNumber": 33784761, + "lastRebalancePrice": "143876057553847864", + "state": "1", + "currentTick": "19386", + "currentPrice": "143919224687539621", + "twapSlow": "143962404772666543", + "twapFast": "143919224687539621", + "depositTokenBalance": "6684072797151692357211", + "pairedTokenBalance": "1", + "usedToken0": "220680048681812697602991", + "usedToken1": "144557169440772369709421", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x57ccf2e0754bc97806f23defd28f09397739a80187ddab39b63c1c6599b63d65", + "state": { + "depositToken": 0, + "blockNumber": 33816211, + "lastRebalancePrice": "143919224687539621", + "state": "1", + "currentTick": "19401", + "currentPrice": "143703518455756886", + "twapSlow": "143703518455756886", + "twapFast": "143703518455756886", + "depositTokenBalance": "3943469361939984139250", + "pairedTokenBalance": "0", + "usedToken0": "219016042507711145594691", + "usedToken1": "148994555334617716126115", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x466bdf32daf6d42f57f3b5f3740955adccffa3fe94abeddd04a1c87f07c73a1f", + "state": { + "depositToken": 0, + "blockNumber": 33827570, + "lastRebalancePrice": "143703518455756886", + "state": "1", + "currentTick": "19437", + "currentPrice": "143187141643647226", + "twapSlow": "143201460357811591", + "twapFast": "143187141643647226", + "depositTokenBalance": "8423449526558090010487", + "pairedTokenBalance": "2", + "usedToken0": "217412805648914087355064", + "usedToken1": "159972758410060756693091", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x7bba1de75c5de35d65658d2d4b82fb39269367483f00cc17794ba291aacfda71", + "state": { + "depositToken": 0, + "blockNumber": 33832659, + "lastRebalancePrice": "143187141643647226", + "state": "1", + "currentTick": "19401", + "currentPrice": "143703518455756886", + "twapSlow": "143703518455756886", + "twapFast": "143703518455756886", + "depositTokenBalance": "2999041870466276043650", + "pairedTokenBalance": "1", + "usedToken0": "221042449291645538168333", + "usedToken1": "141950759021794903721823", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "22920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x72fa7b8c467f267a808ab12bdbd6a80e03fab96a9cf45fa6673543d016b0b1b1", + "state": { + "depositToken": 0, + "blockNumber": 33868778, + "lastRebalancePrice": "143703518455756886", + "state": "1", + "currentTick": "19911", + "currentPrice": "136558736670090069", + "twapSlow": "136599708387989755", + "twapFast": "136586049783011454", + "depositTokenBalance": "1235766283776286731790", + "pairedTokenBalance": "0", + "usedToken0": "106734861434521108596085", + "usedToken1": "221294280821318464988615", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18480", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x8e89aaab92d2bcf86cd06987695f45d9bbc2c329bdbefc34519102cc566b5154", + "state": { + "depositToken": 0, + "blockNumber": 33871968, + "lastRebalancePrice": "136558736670090069", + "state": "2", + "currentTick": "19651", + "currentPrice": "140155641126009294", + "twapSlow": "136695356874581577", + "twapFast": "139164109751184066", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "111620929084807845997038", + "usedToken1": "183705300709285091951660", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19140", + "topTick": "23160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19140" + } + } + }, + { + "transactionHash": "0x1b6b87d43ab9aefd62f623cb27822bd9045cd5995fa46dc009a4fbabcc505ece", + "state": { + "depositToken": 0, + "blockNumber": 33875204, + "lastRebalancePrice": "140155641126009294", + "state": "1", + "currentTick": "19929", + "currentPrice": "136313164303928348", + "twapSlow": "139038924653302197", + "twapFast": "138872186343488268", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "102045950452589299176761", + "usedToken1": "252983995936419676631280", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19920" + } + } + }, + { + "transactionHash": "0x7428ea91ec3f9f3002b20e69e33c2c4a6430841605047deaa915954b621be5ce", + "state": { + "depositToken": 0, + "blockNumber": 33876458, + "lastRebalancePrice": "136313164303928348", + "state": "3", + "currentTick": "19835", + "currentPrice": "137600484610402443", + "twapSlow": "137270655891271402", + "twapFast": "137600484610402443", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "102241248651472422278771", + "usedToken1": "251556857511171438121131", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "19800" + } + } + }, + { + "transactionHash": "0xb704da4b3d863243c0d620272c6f06d2a00465df13cc51760d666cf275759f85", + "state": { + "depositToken": 0, + "blockNumber": 33880512, + "lastRebalancePrice": "137600484610402443", + "state": "2", + "currentTick": "19973", + "currentPrice": "135714733814512855", + "twapSlow": "136558736670090069", + "twapFast": "135972824012515448", + "depositTokenBalance": "549755289000000000000", + "pairedTokenBalance": "0", + "usedToken0": "102089673313381821850820", + "usedToken1": "256701304812489745725868", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18540", + "topTick": "19920" + } + } + }, + { + "transactionHash": "0x3c5caa2bad845d544d0939f41506286564b9ec2dd2a125e588e5e0d9c5bc5445", + "state": { + "depositToken": 0, + "blockNumber": 33887043, + "lastRebalancePrice": "135714733814512855", + "state": "2", + "currentTick": "19875", + "currentPrice": "137051209417977709", + "twapSlow": "137064914538919507", + "twapFast": "137051209417977709", + "depositTokenBalance": "1425147926819493639569", + "pairedTokenBalance": "0", + "usedToken0": "101825750912667181677998", + "usedToken1": "238639058735153076650491", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0xb7161388c05ba768529a3e42650ebf6d00ed05e31c71fe999edc533dce56ed0f", + "state": { + "depositToken": 0, + "blockNumber": 33891239, + "lastRebalancePrice": "137051209417977709", + "state": "2", + "currentTick": "19730", + "currentPrice": "139052828545767527", + "twapSlow": "137133460704051138", + "twapFast": "138456214851886135", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "104942239352783560036627", + "usedToken1": "215964710598282303139931", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18300", + "topTick": "19680" + } + } + }, + { + "transactionHash": "0xae834b139342849f50712a0e1c49fdedbb2fdfdf27ee6da6d861f4d0342d1276", + "state": { + "depositToken": 0, + "blockNumber": 33894480, + "lastRebalancePrice": "139052828545767527", + "state": "2", + "currentTick": "19653", + "currentPrice": "140127614201892773", + "twapSlow": "139679944872459239", + "twapFast": "140127614201892773", + "depositTokenBalance": "2000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "105060873987282637637203", + "usedToken1": "204380354073021946970477", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18240", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xad81b22f4e7c700c670ee42ef45ed5cb4185583644baa93f8138ceb79356173f", + "state": { + "depositToken": 0, + "blockNumber": 33906173, + "lastRebalancePrice": "140127614201892773", + "state": "2", + "currentTick": "19809", + "currentPrice": "137958693429931536", + "twapSlow": "138830533018527889", + "twapFast": "138290175339532287", + "depositTokenBalance": "704080424751065188624", + "pairedTokenBalance": "0", + "usedToken0": "101063120601435365463403", + "usedToken1": "202417451078646508954703", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "19800" + } + } + }, + { + "transactionHash": "0x855724506b7449de03dd6f80b0e4d1841c23e2c77d071e9651d5a208ed476fef", + "state": { + "depositToken": 0, + "blockNumber": 33910128, + "lastRebalancePrice": "137958693429931536", + "state": "2", + "currentTick": "19804", + "currentPrice": "138027686573895501", + "twapSlow": "138124334945142860", + "twapFast": "138027686573895501", + "depositTokenBalance": "1643539200701310445756", + "pairedTokenBalance": "0", + "usedToken0": "102566412892202858644814", + "usedToken1": "201890346789515031278790", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "19800" + } + } + }, + { + "transactionHash": "0xa2bf9818656dc3bc759e995ce2e664aadccd2801e502f6250bda63b8dea1d94f", + "state": { + "depositToken": 0, + "blockNumber": 33915096, + "lastRebalancePrice": "138027686573895501", + "state": "2", + "currentTick": "19768", + "currentPrice": "138525456806318195", + "twapSlow": "138567018599262320", + "twapFast": "138525456806318195", + "depositTokenBalance": "1336981996801677903301", + "pairedTokenBalance": "0", + "usedToken0": "104564883927732846396745", + "usedToken1": "197148156134684707276669", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "19740" + } + } + }, + { + "transactionHash": "0xad918468bd9ff03e20f40ab5f2515c0e86184ed8b5aa422a857db1afe3ed80d0", + "state": { + "depositToken": 0, + "blockNumber": 33919624, + "lastRebalancePrice": "138525456806318195", + "state": "2", + "currentTick": "19814", + "currentPrice": "137889734772192996", + "twapSlow": "137889734772192996", + "twapFast": "137889734772192996", + "depositTokenBalance": "2935398313062701367737", + "pairedTokenBalance": "0", + "usedToken0": "107253443028478359958723", + "usedToken1": "198893767699267761970489", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "19800" + } + } + }, + { + "transactionHash": "0xa7bfde66ae293c5add985763b4448ce07888571ba1bbe9eb0f60e93597ed39da", + "state": { + "depositToken": 0, + "blockNumber": 33928260, + "lastRebalancePrice": "137889734772192996", + "state": "2", + "currentTick": "19894", + "currentPrice": "136791072335203544", + "twapSlow": "136709026410269035", + "twapFast": "136791072335203544", + "depositTokenBalance": "1496731997087326243224", + "pairedTokenBalance": "0", + "usedToken0": "108325530632513667761441", + "usedToken1": "202010319630541572613812", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18480", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x1be8f5e253fca8dd3f791e9292d66046bbe21c616b5af9454f3188cb536e9faf", + "state": { + "depositToken": 0, + "blockNumber": 33931306, + "lastRebalancePrice": "136791072335203544", + "state": "2", + "currentTick": "19776", + "currentPrice": "138414686293419106", + "twapSlow": "137545458173855214", + "twapFast": "138151961193375238", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "110240765665277781120659", + "usedToken1": "188070561173375144886536", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "19740" + } + } + }, + { + "transactionHash": "0xb768189752a2ccac4f93bb32561bd5b6602a702ba0b5ada7c091f14f999252a5", + "state": { + "depositToken": 0, + "blockNumber": 33937581, + "lastRebalancePrice": "138414686293419106", + "state": "2", + "currentTick": "19901", + "currentPrice": "136695356874581577", + "twapSlow": "137256930198251576", + "twapFast": "136873167500001543", + "depositTokenBalance": "150000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "109702668334850464117784", + "usedToken1": "193098998119982055577896", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18480", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x8c0174ce0ae06ce62f8b0830e4f991f12eb581f0356d0b6ccdf588a0ced52c5f", + "state": { + "depositToken": 0, + "blockNumber": 33939821, + "lastRebalancePrice": "136695356874581577", + "state": "2", + "currentTick": "19926", + "currentPrice": "136354062342750768", + "twapSlow": "136381334518759942", + "twapFast": "136354062342750768", + "depositTokenBalance": "1739070122789649323036", + "pairedTokenBalance": "0", + "usedToken0": "111303890348463856560770", + "usedToken1": "194100365209778486269928", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18480", + "topTick": "19920" + } + } + }, + { + "transactionHash": "0x00b17a90955a13d83b0b3e0039290c5292aa8088e3fedccd6e15983b28372bcb", + "state": { + "depositToken": 0, + "blockNumber": 33941646, + "lastRebalancePrice": "136354062342750768", + "state": "2", + "currentTick": "19862", + "currentPrice": "137229482929370873", + "twapSlow": "136149694781432400", + "twapFast": "136613368358828554", + "depositTokenBalance": "734628586614389529062", + "pairedTokenBalance": "0", + "usedToken0": "113180741665485232832855", + "usedToken1": "185740808413155517723528", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19380", + "topTick": "23400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19380" + } + } + }, + { + "transactionHash": "0x2bd3afd08ab27ff814b758665ec49ccc172744fc2d86f3615f28e566801dbe61", + "state": { + "depositToken": 0, + "blockNumber": 33942917, + "lastRebalancePrice": "137229482929370873", + "state": "1", + "currentTick": "19940", + "currentPrice": "136163309750910543", + "twapSlow": "136435895235993056", + "twapFast": "136190543774493822", + "depositTokenBalance": "5256186644980121246697", + "pairedTokenBalance": "0", + "usedToken0": "115703398154698123245167", + "usedToken1": "205854831917154636313140", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19380", + "topTick": "23460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19380" + } + } + }, + { + "transactionHash": "0xb7ef312b872aeb78a2367fa6c77bd8a15068caeb19ba92467aa9d39d4fd94877", + "state": { + "depositToken": 0, + "blockNumber": 33944180, + "lastRebalancePrice": "136163309750910543", + "state": "1", + "currentTick": "19937", + "currentPrice": "136204162828871272", + "twapSlow": "136176926081885634", + "twapFast": "136204162828871272", + "depositTokenBalance": "4503483854264118027205", + "pairedTokenBalance": "1", + "usedToken0": "120299471805091831546203", + "usedToken1": "205081582886131818734618", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19380", + "topTick": "23460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19380" + } + } + }, + { + "transactionHash": "0x97f2c00bed46e6fbbeba5342b046dcd89f29384c140173ea2ebef1e6178be5ee", + "state": { + "depositToken": 0, + "blockNumber": 33951102, + "lastRebalancePrice": "136204162828871272", + "state": "1", + "currentTick": "19937", + "currentPrice": "136204162828871272", + "twapSlow": "136231405023478674", + "twapFast": "136204162828871272", + "depositTokenBalance": "3214171207044733880513", + "pairedTokenBalance": "1", + "usedToken0": "123522297446620777921628", + "usedToken1": "205078825894225615595123", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0x7fa7f3adad9ec6e63276cc55481b7363ce0062a3cafc2b88c64f5f57cff45259", + "state": { + "depositToken": 0, + "blockNumber": 33952365, + "lastRebalancePrice": "136204162828871272", + "state": "1", + "currentTick": "19938", + "currentPrice": "136190543774493822", + "twapSlow": "136204162828871272", + "twapFast": "136190543774493822", + "depositTokenBalance": "2500000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "125999435263274947014649", + "usedToken1": "205157435907082671386666", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0xe08051ed7fea2d816150505f2725b9dea50b23145735ad43c2af2bcf77443e3a", + "state": { + "depositToken": 0, + "blockNumber": 33957627, + "lastRebalancePrice": "136190543774493822", + "state": "1", + "currentTick": "19929", + "currentPrice": "136313164303928348", + "twapSlow": "136613368358828554", + "twapFast": "136313164303928348", + "depositTokenBalance": "4999792118106760041031", + "pairedTokenBalance": "1", + "usedToken0": "131379102678840673710882", + "usedToken1": "202655930738264930535177", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0xfb990874a051ad9a8745e0e058b6500136b2a4fe4a42bfe1c5de3e82b575aedd", + "state": { + "depositToken": 0, + "blockNumber": 33966866, + "lastRebalancePrice": "136313164303928348", + "state": "1", + "currentTick": "19717", + "currentPrice": "139233705723862344", + "twapSlow": "139345131681677099", + "twapFast": "139289407560731181", + "depositTokenBalance": "6516193031347514714467", + "pairedTokenBalance": "1", + "usedToken0": "146608325060576541412339", + "usedToken1": "140430601412627320362798", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0x1d62de1cc34289bc3fd4b05b25feee74bf8a5045dbf5ab69929115ee61ad7e87", + "state": { + "depositToken": 0, + "blockNumber": 33968639, + "lastRebalancePrice": "139233705723862344", + "state": "1", + "currentTick": "19736", + "currentPrice": "138969426041948855", + "twapSlow": "139038924653302197", + "twapFast": "138969426041948855", + "depositTokenBalance": "2201176499709647269926", + "pairedTokenBalance": "2", + "usedToken0": "145654667505020321243176", + "usedToken1": "143821321159758963759275", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0x7c848dce8face34d054b36b7878425710b43471f7b9411d0b64f2af979d962d6", + "state": { + "depositToken": 0, + "blockNumber": 33973034, + "lastRebalancePrice": "138969426041948855", + "state": "1", + "currentTick": "19625", + "currentPrice": "140520501663384869", + "twapSlow": "140337952820967720", + "twapFast": "140534553713551208", + "depositTokenBalance": "1891668666892672903933", + "pairedTokenBalance": "1", + "usedToken0": "150577611831574512961920", + "usedToken1": "106592020837968318666011", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19440", + "topTick": "23160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19440" + } + } + }, + { + "transactionHash": "0x829e199f228c69610edb084e23dd7515f23214d9b1e158f0f22567fccc67fae1", + "state": { + "depositToken": 0, + "blockNumber": 33976103, + "lastRebalancePrice": "140520501663384869", + "state": "1", + "currentTick": "19687", + "currentPrice": "139652013073324443", + "twapSlow": "139735825231763649", + "twapFast": "139652013073324443", + "depositTokenBalance": "6500000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "154171052620526356947727", + "usedToken1": "127220264951957052096497", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "23220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0xac32956a2002647feb23ffafb609510b4fb157a59a587cee7a66e5ffb41e8565", + "state": { + "depositToken": 0, + "blockNumber": 33989543, + "lastRebalancePrice": "139652013073324443", + "state": "1", + "currentTick": "19682", + "currentPrice": "139721853046459003", + "twapSlow": "139721853046459003", + "twapFast": "139721853046459003", + "depositTokenBalance": "2410294388840104216779", + "pairedTokenBalance": "1", + "usedToken0": "154683935985184534405095", + "usedToken1": "123830611366815337357284", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "23220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0x97529767256cb3cebe0fdb21287de91fd4953267f54a5493a2e09114d8534e97", + "state": { + "depositToken": 0, + "blockNumber": 33997459, + "lastRebalancePrice": "139721853046459003", + "state": "1", + "currentTick": "19704", + "currentPrice": "139414818183424626", + "twapSlow": "139470592476144760", + "twapFast": "139442702541209493", + "depositTokenBalance": "2000000272637418134388", + "pairedTokenBalance": "0", + "usedToken0": "153731408904110865092298", + "usedToken1": "129620318211220491425897", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "23220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0x0b5af6003cbae85fc696aa87f890b76237190b237a6a40659e2b7a07910e52da", + "state": { + "depositToken": 0, + "blockNumber": 34001701, + "lastRebalancePrice": "139414818183424626", + "state": "1", + "currentTick": "19778", + "currentPrice": "138387007508047421", + "twapSlow": "139052828545767527", + "twapFast": "138387007508047421", + "depositTokenBalance": "4082921584584469200414", + "pairedTokenBalance": "0", + "usedToken0": "154181810188848185335426", + "usedToken1": "154935916156558399741641", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0x730f25a8de4241e0385fbe848760e9087629e9d1fb485cf44ca624deb1967a0c", + "state": { + "depositToken": 0, + "blockNumber": 34006627, + "lastRebalancePrice": "138387007508047421", + "state": "1", + "currentTick": "19800", + "currentPrice": "138082905930738378", + "twapSlow": "138165776389494576", + "twapFast": "138082905930738378", + "depositTokenBalance": "8155412061889343798501", + "pairedTokenBalance": "0", + "usedToken0": "161284651468656146964779", + "usedToken1": "162490044404070361220377", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0xfa17a9ea4d72c695f7564ba085ed49e1ea030bda41f1522ffbf42e5a40d90adf", + "state": { + "depositToken": 0, + "blockNumber": 34025005, + "lastRebalancePrice": "138082905930738378", + "state": "1", + "currentTick": "19878", + "currentPrice": "137010102276854574", + "twapSlow": "137010102276854574", + "twapFast": "137010102276854574", + "depositTokenBalance": "3438861737316851167231", + "pairedTokenBalance": "0", + "usedToken0": "159855252054270161382670", + "usedToken1": "189913400859991661829189", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19560", + "topTick": "23400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19560" + } + } + }, + { + "transactionHash": "0x050b16451e608c953140a40702f32c481829ce902dc080e7a095d6c83451858a", + "state": { + "depositToken": 0, + "blockNumber": 34026512, + "lastRebalancePrice": "137010102276854574", + "state": "1", + "currentTick": "19865", + "currentPrice": "137188322316888948", + "twapSlow": "137160888767526555", + "twapFast": "137188322316888948", + "depositTokenBalance": "5802629211919612709504", + "pairedTokenBalance": "0", + "usedToken0": "161446010083082052720731", + "usedToken1": "178860144413886535921103", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19560", + "topTick": "23400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19560" + } + } + }, + { + "transactionHash": "0x1ad05f3443525d05c4233a291640561138b501936009fdb6c445b9a7495785ea", + "state": { + "depositToken": 0, + "blockNumber": 34043481, + "lastRebalancePrice": "137188322316888948", + "state": "1", + "currentTick": "19770", + "currentPrice": "138497755870166603", + "twapSlow": "138096714221331452", + "twapFast": "138497755870166603", + "depositTokenBalance": "6571898948334971412927", + "pairedTokenBalance": "0", + "usedToken0": "170853380648555440497341", + "usedToken1": "142984179085696163453733", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19560", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19560" + } + } + }, + { + "transactionHash": "0x0e39efcae08d116f6de3f6d7d5a47fa7f1180890242d4ac3a3bcdf5d2d058962", + "state": { + "depositToken": 0, + "blockNumber": 34057942, + "lastRebalancePrice": "138497755870166603", + "state": "1", + "currentTick": "19591", + "currentPrice": "140999060530581460", + "twapSlow": "140043567052325239", + "twapFast": "140801809815926275", + "depositTokenBalance": "828800894470000000000", + "pairedTokenBalance": "2", + "usedToken0": "181125967904542026170869", + "usedToken1": "74523393375860426345457", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19620" + }, + "limitPosition": { + "bottomTick": "19620", + "topTick": "23160" + } + } + }, + { + "transactionHash": "0x785efdb760a3ac0349ab5088adfd83fb0c21fa64c2612f4fdeb6b3c0418625fc", + "state": { + "depositToken": 0, + "blockNumber": 34059201, + "lastRebalancePrice": "140999060530581460", + "state": "0", + "currentTick": "19751", + "currentPrice": "138761138571740481", + "twapSlow": "139331198561820917", + "twapFast": "138761138571740481", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "171923146241037196856427", + "usedToken1": "125826804685148728406126", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19560", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19560" + } + } + }, + { + "transactionHash": "0x7578a15c9b4e95bc53cf47284c634295225182109609efba163f328034d7f381", + "state": { + "depositToken": 0, + "blockNumber": 34062540, + "lastRebalancePrice": "138761138571740481", + "state": "1", + "currentTick": "19755", + "currentPrice": "138705647989650904", + "twapSlow": "138705647989650904", + "twapFast": "138705647989650904", + "depositTokenBalance": "4094204940391658789569", + "pairedTokenBalance": "1", + "usedToken0": "175828806517247489042670", + "usedToken1": "126932254464372442702331", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x8484828a249fb1320ad67a7f754663c1be274d502572cd2002c64ad53c12128c", + "state": { + "depositToken": 0, + "blockNumber": 34066208, + "lastRebalancePrice": "138705647989650904", + "state": "1", + "currentTick": "19790", + "currentPrice": "138221050990549634", + "twapSlow": "138248696582958254", + "twapFast": "138221050990549634", + "depositTokenBalance": "2700000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "169205618351018435009621", + "usedToken1": "135160386736622090209545", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x3ee7a21687f0d7b9c983b9c85aa6af038d87bde7abb83b83b2ae8631ee0d93c1", + "state": { + "depositToken": 0, + "blockNumber": 34068284, + "lastRebalancePrice": "138221050990549634", + "state": "1", + "currentTick": "19793", + "currentPrice": "138179592967133525", + "twapSlow": "138179592967133525", + "twapFast": "138179592967133525", + "depositTokenBalance": "2730684087480604687267", + "pairedTokenBalance": "2", + "usedToken0": "171783464324461893212421", + "usedToken1": "136056253096845840482914", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xf70a64dcd802cfac3fe2ce9aea3ce9152aad86c6c4d2d2c24ba88e80157cd8ce", + "state": { + "depositToken": 0, + "blockNumber": 34074702, + "lastRebalancePrice": "138179592967133525", + "state": "1", + "currentTick": "19795", + "currentPrice": "138151961193375238", + "twapSlow": "138179592967133525", + "twapFast": "138151961193375238", + "depositTokenBalance": "1975737218614076405657", + "pairedTokenBalance": "0", + "usedToken0": "173688817849367975536613", + "usedToken1": "136584116000878078632652", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xeb99d781eb07278e08bac79030740fe61cedb250844a1efcd943e4a392471a82", + "state": { + "depositToken": 0, + "blockNumber": 34100553, + "lastRebalancePrice": "138151961193375238", + "state": "1", + "currentTick": "19751", + "currentPrice": "138761138571740481", + "twapSlow": "138705647989650904", + "twapFast": "138761138571740481", + "depositTokenBalance": "2190761261377289407557", + "pairedTokenBalance": "1", + "usedToken0": "176441665752951288195041", + "usedToken1": "118892162373271397952990", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xb3317246b03c2b6c76c85e7c80b5cea3dea54979ded55811b876445cdfcc8f0f", + "state": { + "depositToken": 0, + "blockNumber": 34105336, + "lastRebalancePrice": "138761138571740481", + "state": "1", + "currentTick": "19759", + "currentPrice": "138650179598246215", + "twapSlow": "138636315966649551", + "twapFast": "138650179598246215", + "depositTokenBalance": "2110000150000000000000", + "pairedTokenBalance": "2", + "usedToken0": "177982161182173447649807", + "usedToken1": "121740293357137742874652", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x68d45cfa4dc98041c99ba4487023685caca505300a2213c8666d806664ff6eb0", + "state": { + "depositToken": 0, + "blockNumber": 34116774, + "lastRebalancePrice": "138650179598246215", + "state": "1", + "currentTick": "19889", + "currentPrice": "136859481551846358", + "twapSlow": "137010102276854574", + "twapFast": "136859481551846358", + "depositTokenBalance": "8878721445361660292067", + "pairedTokenBalance": "1", + "usedToken0": "177604163757887068643649", + "usedToken1": "171899894883976318984662", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xd0be5df575ae102ff528314e1157ea28d3aa86356e2b50449bcf98fd3f3b32ef", + "state": { + "depositToken": 0, + "blockNumber": 34118036, + "lastRebalancePrice": "136859481551846358", + "state": "1", + "currentTick": "19896", + "currentPrice": "136763718223921577", + "twapSlow": "136763718223921577", + "twapFast": "136763718223921577", + "depositTokenBalance": "3005471561585963190765", + "pairedTokenBalance": "1", + "usedToken0": "180102711026753716999962", + "usedToken1": "174254389998728652888805", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19620", + "topTick": "23460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x7302928bf2d28eb50775a537d960382458c94533ca95aadad44cf6b510b0fb45", + "state": { + "depositToken": 0, + "blockNumber": 34145611, + "lastRebalancePrice": "136763718223921577", + "state": "1", + "currentTick": "19963", + "currentPrice": "135850509636246203", + "twapSlow": "135945633526353842", + "twapFast": "135850509636246203", + "depositTokenBalance": "23144549574940440153994", + "pairedTokenBalance": "0", + "usedToken0": "155343999319370674727400", + "usedToken1": "151822155507903142843879", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19680", + "topTick": "23520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19680" + } + } + }, + { + "transactionHash": "0x5a4de6077017b16714e78ce8fa1b176739388abd68e3578626b23cae13047f4c", + "state": { + "depositToken": 0, + "blockNumber": 34148052, + "lastRebalancePrice": "135850509636246203", + "state": "1", + "currentTick": "19811", + "currentPrice": "137931105829454587", + "twapSlow": "136463183779399207", + "twapFast": "136750043219599617", + "depositTokenBalance": "7579807362162886940318", + "pairedTokenBalance": "0", + "usedToken0": "170002760456875112504667", + "usedToken1": "97514990617687096878564", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19680", + "topTick": "23340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "19680" + } + } + }, + { + "transactionHash": "0x1a4ab598ae119993c39c8a6aea643598edabbaedf0755f5da4c77556b7e72023", + "state": { + "depositToken": 0, + "blockNumber": 34149809, + "lastRebalancePrice": "137931105829454587", + "state": "1", + "currentTick": "19751", + "currentPrice": "138761138571740481", + "twapSlow": "138221050990549634", + "twapFast": "138705647989650904", + "depositTokenBalance": "4877291480389273865", + "pairedTokenBalance": "1", + "usedToken0": "157331912767299233320730", + "usedToken1": "67673075335123722980113", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19800" + }, + "limitPosition": { + "bottomTick": "19800", + "topTick": "23340" + } + } + }, + { + "transactionHash": "0x710a0f118a2461e09126e09ae5eb6897710b19e1beb318c55d6138cc1836e7b2", + "state": { + "depositToken": 0, + "blockNumber": 34151074, + "lastRebalancePrice": "138761138571740481", + "state": "0", + "currentTick": "19699", + "currentPrice": "139484539535392375", + "twapSlow": "138899962169478829", + "twapFast": "139122368866713864", + "depositTokenBalance": "5093037384622514362285", + "pairedTokenBalance": "2", + "usedToken0": "162446863651768577943674", + "usedToken1": "67496734295974341466099", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19740" + }, + "limitPosition": { + "bottomTick": "19740", + "topTick": "23280" + } + } + }, + { + "transactionHash": "0x403b56fe7ca4ba00cae8ef2cd79dc671b8a1c0b4faca7e66a71dde9e90b361e7", + "state": { + "depositToken": 0, + "blockNumber": 34152882, + "lastRebalancePrice": "139484539535392375", + "state": "0", + "currentTick": "19703", + "currentPrice": "139428759665242969", + "twapSlow": "139484539535392375", + "twapFast": "139428759665242969", + "depositTokenBalance": "3600089279096483683773", + "pairedTokenBalance": "1", + "usedToken0": "166045082663606018527575", + "usedToken1": "67510238512566465196497", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19740" + }, + "limitPosition": { + "bottomTick": "19740", + "topTick": "23280" + } + } + }, + { + "transactionHash": "0xef7d05e628519a65f6b1d3ecf01c188f13129df3183ff0261f10a279cbe7a24a", + "state": { + "depositToken": 0, + "blockNumber": 34157342, + "lastRebalancePrice": "139428759665242969", + "state": "0", + "currentTick": "19661", + "currentPrice": "140015562539661681", + "twapSlow": "139763773794168254", + "twapFast": "140015562539661681", + "depositTokenBalance": "2011447242474037533294", + "pairedTokenBalance": "1", + "usedToken0": "168076432352313505924139", + "usedToken1": "67368661293485153600192", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19680" + }, + "limitPosition": { + "bottomTick": "19680", + "topTick": "23280" + } + } + }, + { + "transactionHash": "0xf78abbba0e3387c002930e96a60736182a5f1b569768c6ad1b05db56feec3495", + "state": { + "depositToken": 0, + "blockNumber": 34165239, + "lastRebalancePrice": "140015562539661681", + "state": "0", + "currentTick": "19548", + "currentPrice": "141606631454190385", + "twapSlow": "141097789487691039", + "twapFast": "141422671630929307", + "depositTokenBalance": "84670741376992532956", + "pairedTokenBalance": "0", + "usedToken0": "168214659244276598271147", + "usedToken1": "66992412608169270316697", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19560" + }, + "limitPosition": { + "bottomTick": "19560", + "topTick": "23160" + } + } + }, + { + "transactionHash": "0x1ba0e3bfb5d3445e77db3671aa9ba24f7781245575c91118e58bb0310345be05", + "state": { + "depositToken": 0, + "blockNumber": 34169654, + "lastRebalancePrice": "141606631454190385", + "state": "0", + "currentTick": "19509", + "currentPrice": "142159947917309353", + "twapSlow": "141961073178594684", + "twapFast": "142159947917309353", + "depositTokenBalance": "11478937333907140988672", + "pairedTokenBalance": "0", + "usedToken0": "178063100885135370217075", + "usedToken1": "66202719912750959382354", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19560" + }, + "limitPosition": { + "bottomTick": "19560", + "topTick": "23100" + } + } + }, + { + "transactionHash": "0xfd3d73600b83ea50cfbf9c684e69095fd851b161c67f658a4b5caf97e5712ba4", + "state": { + "depositToken": 0, + "blockNumber": 34173241, + "lastRebalancePrice": "142159947917309353", + "state": "0", + "currentTick": "19399", + "currentPrice": "143732260596483222", + "twapSlow": "142572789455448357", + "twapFast": "143459442201586223", + "depositTokenBalance": "1691894726309496498853", + "pairedTokenBalance": "2", + "usedToken0": "179806579603667619467258", + "usedToken1": "65839496252913972467851", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "19440" + }, + "limitPosition": { + "bottomTick": "19440", + "topTick": "22980" + } + } + }, + { + "transactionHash": "0x92330296aeb1d249dd0c2846f70b0bb15844df89d56aa3f350d3feb84094720c", + "state": { + "depositToken": 0, + "blockNumber": 34175355, + "lastRebalancePrice": "143732260596483222", + "state": "0", + "currentTick": "18957", + "currentPrice": "150227386710177020", + "twapSlow": "143991198693245124", + "twapFast": "147769094422860156", + "depositTokenBalance": "129166464902568162955", + "pairedTokenBalance": "1", + "usedToken0": "180146759009224568976934", + "usedToken1": "64400997199779059909122", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18960" + }, + "limitPosition": { + "bottomTick": "18960", + "topTick": "22560" + } + } + }, + { + "transactionHash": "0x3dd67368be9b3b3cf63b26a3d6ccad57ce51d67e415791393464181ec5c79ea8", + "state": { + "depositToken": 0, + "blockNumber": 34176616, + "lastRebalancePrice": "150227386710177020", + "state": "0", + "currentTick": "18753", + "currentPrice": "153323341986078509", + "twapSlow": "155127669607230529", + "twapFast": "153323341986078509", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "180199587277872608034312", + "usedToken1": "63730926840010300820330", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18780" + }, + "limitPosition": { + "bottomTick": "18780", + "topTick": "22320" + } + } + }, + { + "transactionHash": "0x5854967692c87f950d988ac71d1b3cd0426b0241512b4a19324c6bab877fd7d2", + "state": { + "depositToken": 0, + "blockNumber": 34178477, + "lastRebalancePrice": "153323341986078509", + "state": "0", + "currentTick": "18805", + "currentPrice": "152528169605594612", + "twapSlow": "152406201961752846", + "twapFast": "152634971360573165", + "depositTokenBalance": "3451761086407349853123", + "pairedTokenBalance": "1", + "usedToken0": "182227233330906590832565", + "usedToken1": "73147301889345838847577", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18840" + }, + "limitPosition": { + "bottomTick": "18840", + "topTick": "22380" + } + } + }, + { + "transactionHash": "0xe6d9bb9666a0fb8711775dc7f385bf07e579ea76fee9d868fce2d9549f3572af", + "state": { + "depositToken": 0, + "blockNumber": 34184697, + "lastRebalancePrice": "152528169605594612", + "state": "0", + "currentTick": "18700", + "currentPrice": "154138072090503997", + "twapSlow": "152482420304878057", + "twapFast": "153568843407155601", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "178094662181835093323053", + "usedToken1": "71002250075150926964363", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18720" + }, + "limitPosition": { + "bottomTick": "18720", + "topTick": "22320" + } + } + }, + { + "transactionHash": "0x283fd0050769008408686d78d92837499bf7973df42ab9f8d7ce0ab3515a8012", + "state": { + "depositToken": 0, + "blockNumber": 34196457, + "lastRebalancePrice": "154138072090503997", + "state": "0", + "currentTick": "18595", + "currentPrice": "155764966754744053", + "twapSlow": "155081140612457493", + "twapFast": "155764966754744053", + "depositTokenBalance": "632670325136790334281", + "pairedTokenBalance": "1", + "usedToken0": "178782347270003447593053", + "usedToken1": "70579698569812675195025", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18600" + }, + "limitPosition": { + "bottomTick": "18600", + "topTick": "22200" + } + } + }, + { + "transactionHash": "0xeb7380f0189f4bcc3a0492efeccb7bb99063a102fbd648721cc9ca73e4cd8e04", + "state": { + "depositToken": 0, + "blockNumber": 34198909, + "lastRebalancePrice": "155764966754744053", + "state": "0", + "currentTick": "18643", + "currentPrice": "155019123661225491", + "twapSlow": "155593728051658700", + "twapFast": "155174212562097914", + "depositTokenBalance": "2077708680990852373076", + "pairedTokenBalance": "1", + "usedToken0": "178478639060520544460975", + "usedToken1": "86007151694735001472182", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18660" + }, + "limitPosition": { + "bottomTick": "18660", + "topTick": "22260" + } + } + }, + { + "transactionHash": "0xd718544bc8c3b664de2e86d540bf6cb2d7dffc89e74db30037a73e99456c90e0", + "state": { + "depositToken": 0, + "blockNumber": 34209215, + "lastRebalancePrice": "155019123661225491", + "state": "0", + "currentTick": "18735", + "currentPrice": "153599558711525466", + "twapSlow": "153737853623111274", + "twapFast": "153614918667396619", + "depositTokenBalance": "4010649206693199280349", + "pairedTokenBalance": "0", + "usedToken0": "178384654065813974594524", + "usedToken1": "112725948066953744399850", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18780" + }, + "limitPosition": { + "bottomTick": "18780", + "topTick": "22320" + } + } + }, + { + "transactionHash": "0xe21f3f9f97477c9778e5ef8f9187736fab43806aacd5fcb2f5f000ed58d6737f", + "state": { + "depositToken": 0, + "blockNumber": 34218640, + "lastRebalancePrice": "153599558711525466", + "state": "0", + "currentTick": "18553", + "currentPrice": "156420522541404358", + "twapSlow": "154307708771181070", + "twapFast": "155998777828985588", + "depositTokenBalance": "204372103562562212834", + "pairedTokenBalance": "0", + "usedToken0": "178747095286760551967926", + "usedToken1": "111518139805590728568954", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18600" + }, + "limitPosition": { + "bottomTick": "18600", + "topTick": "22140" + } + } + }, + { + "transactionHash": "0xbde68987470b9d29fb558bdb4dcd99231ff522eba8e9863e43d355c18bc6ff37", + "state": { + "depositToken": 0, + "blockNumber": 34222529, + "lastRebalancePrice": "156420522541404358", + "state": "0", + "currentTick": "18409", + "currentPrice": "158689159623071600", + "twapSlow": "157235986855880871", + "twapFast": "158118934180834072", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "178871926269611862863257", + "usedToken1": "110712012758080930164662", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "22020" + } + } + }, + { + "transactionHash": "0x06203e8379cfffb3739295820537f0b7ff3aabe8122322034321d000dd1a2d0d", + "state": { + "depositToken": 0, + "blockNumber": 34223788, + "lastRebalancePrice": "158689159623071600", + "state": "0", + "currentTick": "18430", + "currentPrice": "158356278678951916", + "twapSlow": "158578121630973586", + "twapFast": "158356278678951916", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "178286570692108241095276", + "usedToken1": "114406663090670350803410", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "21960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0xdb23a4878c6cf800bc6f3be9bfe2cd78f45c482caaf61056518192ff0a8bce4b", + "state": { + "depositToken": 0, + "blockNumber": 34228510, + "lastRebalancePrice": "158356278678951916", + "state": "1", + "currentTick": "18431", + "currentPrice": "158340444634488467", + "twapSlow": "158546410763356807", + "twapFast": "158372114306819811", + "depositTokenBalance": "21239985431020869957433", + "pairedTokenBalance": "0", + "usedToken0": "199517028194264269333997", + "usedToken1": "114746114140034289067853", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "21960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x321cdd7d6c4e027652e4ed45af399ad6240bec00d667b2b2d783df381c7c1ad1", + "state": { + "depositToken": 0, + "blockNumber": 34241701, + "lastRebalancePrice": "158340444634488467", + "state": "1", + "currentTick": "18450", + "currentPrice": "158039898426050726", + "twapSlow": "158372114306819811", + "twapFast": "158039898426050726", + "depositTokenBalance": "11214274688076633369336", + "pairedTokenBalance": "0", + "usedToken0": "209586777831082514205877", + "usedToken1": "122519112030889736561693", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "21960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x7acc88d7d6d7b853ce6979297203337ac367f8c3f1fe142a36fba066fcdf8cb9", + "state": { + "depositToken": 0, + "blockNumber": 34248402, + "lastRebalancePrice": "158039898426050726", + "state": "1", + "currentTick": "18354", + "currentPrice": "159564310703646697", + "twapSlow": "157204544374960435", + "twapFast": "158609838841080997", + "depositTokenBalance": "1437383122285479917540", + "pairedTokenBalance": "1", + "usedToken0": "217294690143091838919832", + "usedToken1": "83103528094004654488927", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18360" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "21960" + } + } + }, + { + "transactionHash": "0xf38ed85868f02721d4b523c807509f56aee6662fc150dbde48ceb6944d73ca05", + "state": { + "depositToken": 0, + "blockNumber": 34249665, + "lastRebalancePrice": "159564310703646697", + "state": "0", + "currentTick": "18541", + "currentPrice": "156608330440419179", + "twapSlow": "157361819680248211", + "twapFast": "156655317637957827", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "205272270785964000419822", + "usedToken1": "158290023116959700267716", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x8f097b41c71085092294ead80d70ba9c767ed7b1fccae756feddd853672c847c", + "state": { + "depositToken": 0, + "blockNumber": 34251738, + "lastRebalancePrice": "156608330440419179", + "state": "1", + "currentTick": "18556", + "currentPrice": "156373605768309318", + "twapSlow": "156451808210117864", + "twapFast": "156420522541404358", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "209356132046337476798897", + "usedToken1": "164189047041019596700480", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xeb65ea049930adbc8ba1aabdf8510ccbc6db8572eceb94431694df9972918f26", + "state": { + "depositToken": 0, + "blockNumber": 34262736, + "lastRebalancePrice": "156373605768309318", + "state": "1", + "currentTick": "18321", + "currentPrice": "160091716299765441", + "twapSlow": "158372114306819811", + "twapFast": "159197752819766357", + "depositTokenBalance": "285300082491874486092", + "pairedTokenBalance": "0", + "usedToken0": "215879703307479677824394", + "usedToken1": "64749389875221785112888", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18360" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0x9632e999478f6df8a1166a765b159599b8bcf40c3854c8d9b4ace69be9c9f7cf", + "state": { + "depositToken": 0, + "blockNumber": 34268484, + "lastRebalancePrice": "160091716299765441", + "state": "0", + "currentTick": "18425", + "currentPrice": "158435472655502901", + "twapSlow": "159739919232124973", + "twapFast": "158483008050522167", + "depositTokenBalance": "42470206838613958195", + "pairedTokenBalance": "0", + "usedToken0": "210209523016100958328574", + "usedToken1": "91817256005800430206653", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18480" + }, + "limitPosition": { + "bottomTick": "18480", + "topTick": "22020" + } + } + }, + { + "transactionHash": "0x512b7419eaf8c7a922428c0e7064362f8075c632e74ede3776b445713652eede", + "state": { + "depositToken": 0, + "blockNumber": 34271174, + "lastRebalancePrice": "158435472655502901", + "state": "0", + "currentTick": "18287", + "currentPrice": "160636927208444803", + "twapSlow": "158324612173271140", + "twapFast": "159739919232124973", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210283374663489432507285", + "usedToken1": "90855075159567311575731", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18300" + }, + "limitPosition": { + "bottomTick": "18300", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0x614e246c9e054b3bad4220d0e6f083deace937d2a487f83ea9429e443c7c1b28", + "state": { + "depositToken": 0, + "blockNumber": 34272434, + "lastRebalancePrice": "160636927208444803", + "state": "0", + "currentTick": "18158", + "currentPrice": "162722462074686954", + "twapSlow": "161135649367071206", + "twapFast": "162722462074686954", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210377883920966559745358", + "usedToken1": "90270476506128112898013", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "18180", + "topTick": "21780" + } + } + }, + { + "transactionHash": "0x2f8ec8882e45f3298e07fff1f4ed4aa74aed6039b161358859563ecbadf9ae36", + "state": { + "depositToken": 0, + "blockNumber": 34273698, + "lastRebalancePrice": "162722462074686954", + "state": "0", + "currentTick": "17990", + "currentPrice": "165479152975033338", + "twapSlow": "164752680436532840", + "twapFast": "165479152975033338", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210501891485698049993212", + "usedToken1": "89514728611844097041199", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "18000", + "topTick": "21600" + } + } + }, + { + "transactionHash": "0x1a258ac2434119b999d0072049946fa6c0ea2d135bed8d5685823db1fa3e6879", + "state": { + "depositToken": 0, + "blockNumber": 34275063, + "lastRebalancePrice": "165479152975033338", + "state": "0", + "currentTick": "17887", + "currentPrice": "167192310209043626", + "twapSlow": "166009507862524196", + "twapFast": "167125450000847769", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210577990660048617229140", + "usedToken1": "89057185582690349437903", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17940" + }, + "limitPosition": { + "bottomTick": "17940", + "topTick": "21480" + } + } + }, + { + "transactionHash": "0xcf34a6c79e979372b4db358fed2f67f985745d6f060c9f3c2508eb12a93d74fb", + "state": { + "depositToken": 0, + "blockNumber": 34276327, + "lastRebalancePrice": "167192310209043626", + "state": "0", + "currentTick": "17617", + "currentPrice": "171767764507236218", + "twapSlow": "169532392213464514", + "twapFast": "171767764507236218", + "depositTokenBalance": "200000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "210981844965201921918276", + "usedToken1": "87861052029295647182952", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17640" + }, + "limitPosition": { + "bottomTick": "17640", + "topTick": "21240" + } + } + }, + { + "transactionHash": "0x97df72a13108b4454d5d1721b129b5e5143ba89739c1fdc4e52ec437928e2ae0", + "state": { + "depositToken": 0, + "blockNumber": 34277592, + "lastRebalancePrice": "171767764507236218", + "state": "0", + "currentTick": "17402", + "currentPrice": "175500568669356672", + "twapSlow": "173355239758000100", + "twapFast": "175500568669356672", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "211143557148053963120699", + "usedToken1": "86922873369394457017195", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17460" + }, + "limitPosition": { + "bottomTick": "17460", + "topTick": "21000" + } + } + }, + { + "transactionHash": "0x7f5cf20711705a7f200426e82cb42625ea336e6a1ee8997ad70a3c479269e0aa", + "state": { + "depositToken": 0, + "blockNumber": 34278857, + "lastRebalancePrice": "175500568669356672", + "state": "0", + "currentTick": "17402", + "currentPrice": "175500568669356672", + "twapSlow": "176292061176968689", + "twapFast": "175500568669356672", + "depositTokenBalance": "3534000435208267310361", + "pairedTokenBalance": "0", + "usedToken0": "214678194373201980726877", + "usedToken1": "86920730553286409117136", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17460" + }, + "limitPosition": { + "bottomTick": "17460", + "topTick": "21000" + } + } + }, + { + "transactionHash": "0xd4ab6121c42bbcfeaba61b3b19d4557b312052137a8e2cce4758a28ef34527e4", + "state": { + "depositToken": 0, + "blockNumber": 34285985, + "lastRebalancePrice": "176256808052790051", + "state": "0", + "currentTick": "17375", + "currentPrice": "175975036725407273", + "twapSlow": "176168706081117109", + "twapFast": "175975036725407273", + "depositTokenBalance": "2610311268153338606305", + "pairedTokenBalance": "0", + "usedToken0": "212350803123631329686769", + "usedToken1": "84802033083897226191338", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17400" + }, + "limitPosition": { + "bottomTick": "17400", + "topTick": "21000" + } + } + }, + { + "transactionHash": "0x384ecfd372453e6963cb6cb6ad9b3171f8e50a03888547ca849bd1c92f4dfcd5", + "state": { + "depositToken": 0, + "blockNumber": 34290508, + "lastRebalancePrice": "175975036725407273", + "state": "0", + "currentTick": "17268", + "currentPrice": "177867984182108241", + "twapSlow": "177246565425048882", + "twapFast": "177743526381279160", + "depositTokenBalance": "899575230870225497469", + "pairedTokenBalance": "0", + "usedToken0": "213264302171945688551709", + "usedToken1": "84320072267145943464202", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17280" + }, + "limitPosition": { + "bottomTick": "17280", + "topTick": "20880" + } + } + }, + { + "transactionHash": "0x8266e5ad73a321d85ff7a82024880e7914b4dcbb610c8878c7c07dc49bb9c3ff", + "state": { + "depositToken": 0, + "blockNumber": 34293034, + "lastRebalancePrice": "177867984182108241", + "state": "0", + "currentTick": "17102", + "currentPrice": "180845085447010669", + "twapSlow": "178866788997524687", + "twapFast": "180285361687896067", + "depositTokenBalance": "285933715091664569", + "pairedTokenBalance": "0", + "usedToken0": "209305927175848374850918", + "usedToken1": "82023663084964899264564", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17160" + }, + "limitPosition": { + "bottomTick": "17160", + "topTick": "20700" + } + } + }, + { + "transactionHash": "0x9e4873e7e1d10a1af9e7395d487af636c6c56adffb0364d8e8e9d77593f65a8c", + "state": { + "depositToken": 0, + "blockNumber": 34300326, + "lastRebalancePrice": "180845085447010669", + "state": "0", + "currentTick": "16966", + "currentPrice": "183321254588866347", + "twapSlow": "180917434332617999", + "twapFast": "182498203349210872", + "depositTokenBalance": "586122009061703639634", + "pairedTokenBalance": "0", + "usedToken0": "210005132791642416554142", + "usedToken1": "81538591326354834882186", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16980" + }, + "limitPosition": { + "bottomTick": "16980", + "topTick": "20580" + } + } + }, + { + "transactionHash": "0xcd5652ef9552bc7ae5caf23ff414e7ecd6a2d5085f62f2a62b5f8edef1ec1f51", + "state": { + "depositToken": 0, + "blockNumber": 34301590, + "lastRebalancePrice": "183321254588866347", + "state": "0", + "currentTick": "16646", + "currentPrice": "189282101626084499", + "twapSlow": "186538794971629030", + "twapFast": "188112241401996308", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210233174721262948134248", + "usedToken1": "80174031409443154736781", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16680" + }, + "limitPosition": { + "bottomTick": "16680", + "topTick": "20220" + } + } + }, + { + "transactionHash": "0x5995a34c192ec865c9135e90ccec830b43b3919d081bd086adea383a8f770863", + "state": { + "depositToken": 0, + "blockNumber": 34303136, + "lastRebalancePrice": "189282101626084499", + "state": "0", + "currentTick": "16469", + "currentPrice": "192662050137449417", + "twapSlow": "190002705863619997", + "twapFast": "191241683820213335", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210368298137250342880911", + "usedToken1": "79466431596974029987641", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16500" + }, + "limitPosition": { + "bottomTick": "16500", + "topTick": "20040" + } + } + }, + { + "transactionHash": "0x988732dc10bdc8472674fc3474f5560d4784ac36c47b32e793237cbce7628c67", + "state": { + "depositToken": 0, + "blockNumber": 34304852, + "lastRebalancePrice": "192662050137449417", + "state": "0", + "currentTick": "16486", + "currentPrice": "192334819238556243", + "twapSlow": "193105660629127557", + "twapFast": "192334819238556243", + "depositTokenBalance": "2924271322125661673701", + "pairedTokenBalance": "1", + "usedToken0": "213279876124683373135764", + "usedToken1": "79536883245228248613303", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16500" + }, + "limitPosition": { + "bottomTick": "16500", + "topTick": "20100" + } + } + }, + { + "transactionHash": "0x434616685fec8ba18d22b652cef75f0f4c018b80a8044eecee0e2c19fac92ed9", + "state": { + "depositToken": 0, + "blockNumber": 34306616, + "lastRebalancePrice": "192334819238556243", + "state": "0", + "currentTick": "16661", + "currentPrice": "188998405483513392", + "twapSlow": "190802355334904068", + "twapFast": "189509365115874307", + "depositTokenBalance": "510000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "203353536693449177183726", + "usedToken1": "134344088425569625250230", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16440", + "topTick": "20220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16440" + } + } + }, + { + "transactionHash": "0xaed7423f322416f4a7ec203342811edc8a511ffa68e3f107c072f88359ff0e15", + "state": { + "depositToken": 0, + "blockNumber": 34320319, + "lastRebalancePrice": "188998405483513392", + "state": "1", + "currentTick": "16618", + "currentPrice": "189812807617457588", + "twapSlow": "189357825824418177", + "twapFast": "189812807617457588", + "depositTokenBalance": "51792367176725112561858", + "pairedTokenBalance": "0", + "usedToken0": "254476172862341609787451", + "usedToken1": "118237148330301763191154", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "20160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0xbcd9f9001b163192eb6f17f99fb675c54467216607d80d055e08e7817dc82102", + "state": { + "depositToken": 0, + "blockNumber": 34322196, + "lastRebalancePrice": "189812807617457588", + "state": "1", + "currentTick": "16541", + "currentPrice": "191279934069394216", + "twapSlow": "190764200587144633", + "twapFast": "191241683820213335", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "260435712643079547518059", + "usedToken1": "86323975137778406662437", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16560" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "20160" + } + } + }, + { + "transactionHash": "0x484a82b4ed20636a02ac4410f60bfc799a6798f6c07c6e83e2893ce3e3de3536", + "state": { + "depositToken": 0, + "blockNumber": 34323458, + "lastRebalancePrice": "191279934069394216", + "state": "0", + "currentTick": "16424", + "currentPrice": "193530939454111716", + "twapSlow": "193202232771939336", + "twapFast": "193530939454111716", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "260532148023851225442333", + "usedToken1": "85822721115427533268728", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16440" + }, + "limitPosition": { + "bottomTick": "16440", + "topTick": "20040" + } + } + }, + { + "transactionHash": "0x57a0a921162a34b39c683ab11f9cd28c87b8e87a385518c3f2b30b869407a755", + "state": { + "depositToken": 0, + "blockNumber": 34326229, + "lastRebalancePrice": "193530939454111716", + "state": "0", + "currentTick": "16282", + "currentPrice": "196298543905550190", + "twapSlow": "193337514914111331", + "twapFast": "195397689199819602", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "260650818192778874270755", + "usedToken1": "85213827147691639718086", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16320" + }, + "limitPosition": { + "bottomTick": "16320", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x7a3470f8f50cbedd18b5e145ec1c69fa43daf3c946f62f11231bda077887001e", + "state": { + "depositToken": 0, + "blockNumber": 34327735, + "lastRebalancePrice": "196298543905550190", + "state": "0", + "currentTick": "16170", + "currentPrice": "198509334377326953", + "twapSlow": "198132543545873076", + "twapFast": "198449793485589022", + "depositTokenBalance": "974659741251329563908", + "pairedTokenBalance": "1", + "usedToken0": "261719994297603683487808", + "usedToken1": "84738303862922251914033", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16200" + }, + "limitPosition": { + "bottomTick": "16200", + "topTick": "19740" + } + } + }, + { + "transactionHash": "0x1020611e3442dea01397561c61ae2ceff342dda4b8b533d2cc74b94723edb2da", + "state": { + "depositToken": 0, + "blockNumber": 34329583, + "lastRebalancePrice": "198509334377326953", + "state": "0", + "currentTick": "16060", + "currentPrice": "200704880647204511", + "twapSlow": "199524267115586934", + "twapFast": "200243812905865193", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "261795027694477751839094", + "usedToken1": "84267366820217855105496", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16080" + }, + "limitPosition": { + "bottomTick": "16080", + "topTick": "19680" + } + } + }, + { + "transactionHash": "0x8c391be972f08a2fafe0c6bde3b26c60136661e3927f94757f4dbb141e598b7c", + "state": { + "depositToken": 0, + "blockNumber": 34330850, + "lastRebalancePrice": "200704880647204511", + "state": "0", + "currentTick": "15948", + "currentPrice": "202965296995414551", + "twapSlow": "202843560428566172", + "twapFast": "202965296995414551", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "261889979230069676660469", + "usedToken1": "83795416455766444622888", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15960" + }, + "limitPosition": { + "bottomTick": "15960", + "topTick": "19560" + } + } + }, + { + "transactionHash": "0xc4ad4c32fca1a63f045e09db5aef4d6b3e51f37508324744a420b87f3efb51ca", + "state": { + "depositToken": 0, + "blockNumber": 34332246, + "lastRebalancePrice": "202965296995414551", + "state": "0", + "currentTick": "15680", + "currentPrice": "208478032037170595", + "twapSlow": "204125444461218889", + "twapFast": "206672230075087658", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "262118872502333689185028", + "usedToken1": "82682626174204643681386", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15720" + }, + "limitPosition": { + "bottomTick": "15720", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x8887632dc304a2551843b38eb12626ed24194b06029db700e8208705906284e4", + "state": { + "depositToken": 0, + "blockNumber": 34333509, + "lastRebalancePrice": "208478032037170595", + "state": "0", + "currentTick": "15494", + "currentPrice": "212391813082981327", + "twapSlow": "211861523202854960", + "twapFast": "212413052264289625", + "depositTokenBalance": "20632349575840652954", + "pairedTokenBalance": "0", + "usedToken0": "262302241412900733997059", + "usedToken1": "81917463460341912744632", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15540" + }, + "limitPosition": { + "bottomTick": "15540", + "topTick": "19080" + } + } + }, + { + "transactionHash": "0x66440664d09cb5fc599936fdd08138e2f3767c1b2a6a1ba2b4e98ad20a995c96", + "state": { + "depositToken": 0, + "blockNumber": 34334774, + "lastRebalancePrice": "212391813082981327", + "state": "0", + "currentTick": "15543", + "currentPrice": "211353690581269365", + "twapSlow": "211649778156895475", + "twapFast": "211353690581269365", + "depositTokenBalance": "14206019612065031838060", + "pairedTokenBalance": "0", + "usedToken0": "276175054616026698495584", + "usedToken1": "83486517040141057523841", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15600" + }, + "limitPosition": { + "bottomTick": "15600", + "topTick": "19140" + } + } + }, + { + "transactionHash": "0x573521574aac4cca503e706c8c20c405b04194eb79f68c1166aa67b7997e6663", + "state": { + "depositToken": 0, + "blockNumber": 34336051, + "lastRebalancePrice": "211353690581269365", + "state": "0", + "currentTick": "15341", + "currentPrice": "215666229518553963", + "twapSlow": "212009870767432726", + "twapFast": "214097676652692550", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "276354577288312905025518", + "usedToken1": "82644236649012738875574", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15360" + }, + "limitPosition": { + "bottomTick": "15360", + "topTick": "18960" + } + } + }, + { + "transactionHash": "0x4921fe82b52d9980d429946bf2a1f3b78074548f574f9eab099090583b85ea33", + "state": { + "depositToken": 0, + "blockNumber": 34337286, + "lastRebalancePrice": "215666229518553963", + "state": "0", + "currentTick": "15168", + "currentPrice": "219429525785673908", + "twapSlow": "220198836168918084", + "twapFast": "219429525785673908", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "276509060999749097806214", + "usedToken1": "81934072939688652411492", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15180" + }, + "limitPosition": { + "bottomTick": "15180", + "topTick": "18780" + } + } + }, + { + "transactionHash": "0x552f56abe1e4ad8cd7d6784cc7c15beb9f2708cdd880dcaeb916d2b04cc8c1b0", + "state": { + "depositToken": 0, + "blockNumber": 34338777, + "lastRebalancePrice": "219429525785673908", + "state": "0", + "currentTick": "15074", + "currentPrice": "221501784072878371", + "twapSlow": "220485266474022503", + "twapFast": "221501784072878371", + "depositTokenBalance": "6151149433242632303998", + "pairedTokenBalance": "0", + "usedToken0": "281207693359721640360523", + "usedToken1": "81102837693795750701008", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15120" + }, + "limitPosition": { + "bottomTick": "15120", + "topTick": "18660" + } + } + }, + { + "transactionHash": "0xb0cdb2a1606ac5057dbe27dc70bd31102c2c413f4d71b9237dfe2b4e07894045", + "state": { + "depositToken": 0, + "blockNumber": 34340042, + "lastRebalancePrice": "221501784072878371", + "state": "0", + "currentTick": "14755", + "currentPrice": "228681235485547631", + "twapSlow": "224220520476450335", + "twapFast": "228681235485547631", + "depositTokenBalance": "264994959401486196646", + "pairedTokenBalance": "0", + "usedToken0": "281759323294232824205494", + "usedToken1": "79814648112350738935669", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14760" + }, + "limitPosition": { + "bottomTick": "14760", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0xea10c0b9ddabcfe359112aaf86a0ea53dea220b5e1fc5747e1a257f205763821", + "state": { + "depositToken": 0, + "blockNumber": 34342337, + "lastRebalancePrice": "228681235485547631", + "state": "0", + "currentTick": "14762", + "currentPrice": "228521222632249261", + "twapSlow": "228452679974448075", + "twapFast": "228452679974448075", + "depositTokenBalance": "3516187152064463093280", + "pairedTokenBalance": "1", + "usedToken0": "284095632710157538791643", + "usedToken1": "80649815002791322390989", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14820" + }, + "limitPosition": { + "bottomTick": "14820", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0xedf5bfd0816faee1e0bd7a965008d0e7cf14f0bfbc7c26373b58ea8eea538d15", + "state": { + "depositToken": 0, + "blockNumber": 34343600, + "lastRebalancePrice": "228521222632249261", + "state": "0", + "currentTick": "14516", + "currentPrice": "234212273099537342", + "twapSlow": "229047400007910212", + "twapFast": "232299680434433983", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "283557341405870969651077", + "usedToken1": "79321088636031353167075", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14520" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "18120" + } + } + }, + { + "transactionHash": "0x0b0848c1bc3aefb2edc27cd3b7a3acd47ca63aee73ddeb34b61c65ebc399ec4d", + "state": { + "depositToken": 0, + "blockNumber": 34344856, + "lastRebalancePrice": "234212273099537342", + "state": "0", + "currentTick": "13631", + "currentPrice": "255883798530171233", + "twapSlow": "251068140748820714", + "twapFast": "255602495161937915", + "depositTokenBalance": "1340271230733990987128", + "pairedTokenBalance": "0", + "usedToken0": "285743813442617941681299", + "usedToken1": "75891105626349140996858", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13680" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0x7eefb781cfa2ae4edf5bbbd5122ca3e5899e78c503da24ad91eeea2d8ba66a3c", + "state": { + "depositToken": 0, + "blockNumber": 34358419, + "lastRebalancePrice": "255883798530171233", + "state": "0", + "currentTick": "13574", + "currentPrice": "257346427584496085", + "twapSlow": "254862358648807574", + "twapFast": "256652564059875189", + "depositTokenBalance": "3556578637386943769822", + "pairedTokenBalance": "0", + "usedToken0": "288864557867597019448595", + "usedToken1": "75693824240990510568299", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13620" + }, + "limitPosition": { + "bottomTick": "13620", + "topTick": "17160" + } + } + }, + { + "transactionHash": "0x2355b820fc06e664e18535453d8f990e9cafa5b43ca85c3516613b1fd0fd9931", + "state": { + "depositToken": 0, + "blockNumber": 34366484, + "lastRebalancePrice": "257346427584496085", + "state": "0", + "currentTick": "13678", + "currentPrice": "254684026337810743", + "twapSlow": "255628055411454108", + "twapFast": "254811393821929250", + "depositTokenBalance": "254283140086124434", + "pairedTokenBalance": "0", + "usedToken0": "283618370325300087811289", + "usedToken1": "96096744546228252151195", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13680" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0x25242746eb45e0daa06dafe980c623200f89b99581ebd958a67e285054e809c1", + "state": { + "depositToken": 0, + "blockNumber": 34369320, + "lastRebalancePrice": "254684026337810743", + "state": "0", + "currentTick": "13719", + "currentPrice": "253642011519691170", + "twapSlow": "253794234777977934", + "twapFast": "253692742458415224", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "280227884671426859703870", + "usedToken1": "109248582049451452581809", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13560", + "topTick": "17280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0xb8c5a18adfcf09f5d28e1f849782bfbd015e785fee2d981558fe8f184c69943a", + "state": { + "depositToken": 0, + "blockNumber": 34410737, + "lastRebalancePrice": "253642011519691170", + "state": "1", + "currentTick": "13987", + "currentPrice": "246935016104861139", + "twapSlow": "246959709606471625", + "twapFast": "246935016104861139", + "depositTokenBalance": "10578415105479352715632", + "pairedTokenBalance": "1", + "usedToken0": "259352673271000787403537", + "usedToken1": "194956452357475761874306", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13560", + "topTick": "17520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0x7833477b6cf87d2b90e675ebdbe3af53ca0e7ec3aef941bf9f33084f2817861b", + "state": { + "depositToken": 0, + "blockNumber": 34433146, + "lastRebalancePrice": "246935016104861139", + "state": "1", + "currentTick": "14272", + "currentPrice": "239997050630083217", + "twapSlow": "241658673205418814", + "twapFast": "240573706429464309", + "depositTokenBalance": "1396954343520139570612", + "pairedTokenBalance": "1", + "usedToken0": "231822338404498235791191", + "usedToken1": "279966793007137026348977", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12840", + "topTick": "14220" + } + } + }, + { + "transactionHash": "0x24f65fa52a27350f08ce24d9f3487e599f671861b6357aef3eb7cd7983a177a1", + "state": { + "depositToken": 0, + "blockNumber": 34444036, + "lastRebalancePrice": "239997050630083217", + "state": "2", + "currentTick": "14259", + "currentPrice": "240309234062258136", + "twapSlow": "240309234062258136", + "twapFast": "240309234062258136", + "depositTokenBalance": "5538861398030199995985", + "pairedTokenBalance": "0", + "usedToken0": "232891093303141625824755", + "usedToken1": "273360360873629494430546", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12840", + "topTick": "14220" + } + } + }, + { + "transactionHash": "0xa73b85d36ef9e46be1bbc766207dbf57d4c78af26cc4d82e99eeafc3683f38fc", + "state": { + "depositToken": 0, + "blockNumber": 34448386, + "lastRebalancePrice": "240309234062258136", + "state": "2", + "currentTick": "14469", + "currentPrice": "235315606419710504", + "twapSlow": "238800120042413646", + "twapFast": "236282332504853129", + "depositTokenBalance": "265404855273253276210", + "pairedTokenBalance": "0", + "usedToken0": "230726719321012167430838", + "usedToken1": "283585845541255134717522", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13020", + "topTick": "14460" + } + } + }, + { + "transactionHash": "0x7d1dab7d410ddf82e1d3f630bca81e08346a7feb0da9f4b24a8d1deb087db657", + "state": { + "depositToken": 0, + "blockNumber": 34454586, + "lastRebalancePrice": "235315606419710504", + "state": "2", + "currentTick": "14522", + "currentPrice": "234071794907142034", + "twapSlow": "234235694326847296", + "twapFast": "234071794907142034", + "depositTokenBalance": "3543000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "228718708953595626235590", + "usedToken1": "280050724908763313292293", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13080", + "topTick": "14520" + } + } + }, + { + "transactionHash": "0xd30f3510d8a7a62c98a215a99a67616dfbbf4fc8547ce27b0a1499b45c953c15", + "state": { + "depositToken": 0, + "blockNumber": 34457848, + "lastRebalancePrice": "234071794907142034", + "state": "2", + "currentTick": "14689", + "currentPrice": "230195447333208718", + "twapSlow": "233020890682213138", + "twapFast": "231511242046968832", + "depositTokenBalance": "140319419582566474859", + "pairedTokenBalance": "0", + "usedToken0": "226957888530027985647650", + "usedToken1": "288235952567489676533596", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14640" + } + } + }, + { + "transactionHash": "0x56fe3b777ea90f5eb78bd859d9baab75aea85bb3e1e69658ad35df078b1fd7cd", + "state": { + "depositToken": 0, + "blockNumber": 34463241, + "lastRebalancePrice": "230195447333208718", + "state": "2", + "currentTick": "14714", + "currentPrice": "229620706177228898", + "twapSlow": "229643668247846621", + "twapFast": "229620706177228898", + "depositTokenBalance": "3984395745990026377296", + "pairedTokenBalance": "0", + "usedToken0": "230136463577032331152101", + "usedToken1": "288825677273413711020025", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "200", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14700" + } + } + }, + { + "transactionHash": "0xbe9285fb903bf806c393b8b00cf20f08eaf95f068d709de874b6efbb4c3f5089", + "state": { + "depositToken": 0, + "blockNumber": 34475592, + "lastRebalancePrice": "229620706177228898", + "state": "2", + "currentTick": "14579", + "currentPrice": "232741447284901408", + "twapSlow": "231905126171220622", + "twapFast": "232439095092293051", + "depositTokenBalance": "78799186983148777239", + "pairedTokenBalance": "0", + "usedToken0": "235612497065374985103379", + "usedToken1": "262582284354905854200826", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13140", + "topTick": "14520" + } + } + }, + { + "transactionHash": "0x8e2d2e8bcaac50738a1a60b6e65751bcaeeea20d30f157ffe8fb7f3a67ca4e2e", + "state": { + "depositToken": 0, + "blockNumber": 34481848, + "lastRebalancePrice": "232741447284901408", + "state": "2", + "currentTick": "14492", + "currentPrice": "234775029455144601", + "twapSlow": "234775029455144601", + "twapFast": "234775029455144601", + "depositTokenBalance": "3121076856330000000000", + "pairedTokenBalance": "0", + "usedToken0": "240415743045047326059582", + "usedToken1": "254027201119388438180408", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13080", + "topTick": "14460" + } + } + }, + { + "transactionHash": "0x6cf7066e8e805c53683fbd285f086c701afd4eff86510bb0c1c1b09b2ab2d9cd", + "state": { + "depositToken": 0, + "blockNumber": 34496962, + "lastRebalancePrice": "234775029455144601", + "state": "2", + "currentTick": "14618", + "currentPrice": "231835568545358123", + "twapSlow": "233767714472636034", + "twapFast": "232322910402477427", + "depositTokenBalance": "2528249608909306425328", + "pairedTokenBalance": "0", + "usedToken0": "233021332027073044629620", + "usedToken1": "251338487398851321449755", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13200", + "topTick": "14580" + } + } + }, + { + "transactionHash": "0x5af317229d8c6959b662a99fca453a4f298bfe698e9b09dd9f3d955323b449dc", + "state": { + "depositToken": 0, + "blockNumber": 34518814, + "lastRebalancePrice": "231835568545358123", + "state": "2", + "currentTick": "14566", + "currentPrice": "233044192771281360", + "twapSlow": "233090803940277544", + "twapFast": "233044192771281360", + "depositTokenBalance": "4649178868343147701153", + "pairedTokenBalance": "0", + "usedToken0": "235510189149474107357663", + "usedToken1": "243405000330277981293778", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13140", + "topTick": "14520" + } + } + }, + { + "transactionHash": "0x3634c0eababa08dbc409e2759fc72a32b4ec7625b981d387eed0237c558e2701", + "state": { + "depositToken": 0, + "blockNumber": 34526918, + "lastRebalancePrice": "233044192771281360", + "state": "2", + "currentTick": "14488", + "currentPrice": "234868953554367549", + "twapSlow": "233604142507833662", + "twapFast": "234610752651818074", + "depositTokenBalance": "592717566223632244557", + "pairedTokenBalance": "0", + "usedToken0": "234585076566948750267505", + "usedToken1": "231948233135973457241695", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0x7adcbf293817be8e0eb7197ee3966704a370ad637ec2669048120267039801b2", + "state": { + "depositToken": 0, + "blockNumber": 34550624, + "lastRebalancePrice": "234868953554367549", + "state": "1", + "currentTick": "14265", + "currentPrice": "240165098973305645", + "twapSlow": "240405372175398344", + "twapFast": "240165098973305645", + "depositTokenBalance": "16387025420042870490808", + "pairedTokenBalance": "0", + "usedToken0": "264007285111052498101498", + "usedToken1": "161291432204680971021187", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "17820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0x83264b194089b6c6feb35598682459d4b4668ce5808092dbf4abb2b7eb55d84e", + "state": { + "depositToken": 0, + "blockNumber": 34600077, + "lastRebalancePrice": "240165098973305645", + "state": "1", + "currentTick": "14469", + "currentPrice": "235315606419710504", + "twapSlow": "235386208161339926", + "twapFast": "235315606419710504", + "depositTokenBalance": "3634191796183797146099", + "pairedTokenBalance": "0", + "usedToken0": "243407163041616178566572", + "usedToken1": "224958141512830397709135", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0xad64d7baf31cdbdb916d30827825fe260b38f7c302201e7052bf76f638537627", + "state": { + "depositToken": 0, + "blockNumber": 34629596, + "lastRebalancePrice": "235315606419710504", + "state": "1", + "currentTick": "14564", + "currentPrice": "233090803940277544", + "twapSlow": "233184054248234277", + "twapFast": "233160738174416836", + "depositTokenBalance": "3658942589866038916691", + "pairedTokenBalance": "0", + "usedToken0": "238999969814649442127124", + "usedToken1": "252744965201565420182723", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "18120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0x4a0f526372e70c546a59543a104a8ca1154b2305ab52bb201cf14f1c7ad83547", + "state": { + "depositToken": 0, + "blockNumber": 34646546, + "lastRebalancePrice": "233090803940277544", + "state": "1", + "currentTick": "14664", + "currentPrice": "230771627067624588", + "twapSlow": "231326116369604683", + "twapFast": "230794704230331351", + "depositTokenBalance": "121781255699653153635", + "pairedTokenBalance": "0", + "usedToken0": "231767942727471366523485", + "usedToken1": "283893649399333625127467", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14640" + } + } + }, + { + "transactionHash": "0x7ad73d1fa746f253b057653d27cd53707f4962d925c50b291ba052eb485c942a", + "state": { + "depositToken": 0, + "blockNumber": 34654153, + "lastRebalancePrice": "230771627067624588", + "state": "2", + "currentTick": "14875", + "currentPrice": "225953595608666773", + "twapSlow": "228818478533598251", + "twapFast": "227063429609194370", + "depositTokenBalance": "1365797821058992806235", + "pairedTokenBalance": "0", + "usedToken0": "229893384412905739452944", + "usedToken1": "293479738461145430276751", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13440", + "topTick": "14820" + } + } + }, + { + "transactionHash": "0xa33612052911ac19b399b7b4d88fe2b0b92d33bf500d305bd4e4cd1d4dcafa49", + "state": { + "depositToken": 0, + "blockNumber": 34657728, + "lastRebalancePrice": "225953595608666773", + "state": "2", + "currentTick": "14988", + "currentPrice": "223414818021719938", + "twapSlow": "227108844565750505", + "twapFast": "224153267771296760", + "depositTokenBalance": "72220893731149451073", + "pairedTokenBalance": "0", + "usedToken0": "228671111718566844007763", + "usedToken1": "299229073923393398231151", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13560", + "topTick": "14940" + } + } + }, + { + "transactionHash": "0x257876057d73304129c52c9b53d3a3f30e0d4d199adf082b09c5a22e233643d1", + "state": { + "depositToken": 0, + "blockNumber": 34662095, + "lastRebalancePrice": "223414818021719938", + "state": "2", + "currentTick": "15020", + "currentPrice": "222701068898544276", + "twapSlow": "223906847053819659", + "twapFast": "222879292122435222", + "depositTokenBalance": "3258527787933912126085", + "pairedTokenBalance": "0", + "usedToken0": "226059980427870627562378", + "usedToken1": "293736504205574839001966", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13620", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0xb409bb1a68872063046e83fcb4965651d5ce2bce298758b7872139664c636864", + "state": { + "depositToken": 0, + "blockNumber": 34677428, + "lastRebalancePrice": "222701068898544276", + "state": "2", + "currentTick": "15132", + "currentPrice": "220220856052534976", + "twapSlow": "221103459377218431", + "twapFast": "220353021603699652", + "depositTokenBalance": "307938537356649753051", + "pairedTokenBalance": "0", + "usedToken0": "224428492155177547718153", + "usedToken1": "298467808341188431671262", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15120" + } + } + }, + { + "transactionHash": "0x7243c489b957e30fb5dbc93d68d049489db8d46c2939041baf8aa394b7422f25", + "state": { + "depositToken": 0, + "blockNumber": 34689417, + "lastRebalancePrice": "220220856052534976", + "state": "2", + "currentTick": "15014", + "currentPrice": "222834722949498093", + "twapSlow": "221523934251285659", + "twapFast": "222456244641791130", + "depositTokenBalance": "600057216059304999186", + "pairedTokenBalance": "0", + "usedToken0": "229004716755987492128115", + "usedToken1": "273822091291261852071265", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13560", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0x0d65a64e62b240bbb44ab5616aa07f7981da97eff33ed4d414ce8e21963b9138", + "state": { + "depositToken": 0, + "blockNumber": 34692573, + "lastRebalancePrice": "222834722949498093", + "state": "2", + "currentTick": "14897", + "currentPrice": "225457068903880201", + "twapSlow": "224108443841444032", + "twapFast": "225119153695765223", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "233664392559784778888140", + "usedToken1": "252928462426836176690774", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13440", + "topTick": "14880" + } + } + }, + { + "transactionHash": "0xf72082f3b5c39f59b6f2721e5fb8e0a4b9bfb94ca67aeb1346583e5bd7e6066a", + "state": { + "depositToken": 0, + "blockNumber": 34695039, + "lastRebalancePrice": "225457068903880201", + "state": "2", + "currentTick": "14868", + "currentPrice": "226111810583757084", + "twapSlow": "226338024171793770", + "twapFast": "226111810583757084", + "depositTokenBalance": "4372732979175516391538", + "pairedTokenBalance": "0", + "usedToken0": "238712194885351821389714", + "usedToken1": "250052252483722525246091", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13440", + "topTick": "14820" + } + } + }, + { + "transactionHash": "0xbd44365708263693c33d141fc08e8a3f7a9b4a8853738cb406df02708e8cba21", + "state": { + "depositToken": 0, + "blockNumber": 34697446, + "lastRebalancePrice": "226111810583757084", + "state": "2", + "currentTick": "15103", + "currentPrice": "220860391436973216", + "twapSlow": "224422399683103861", + "twapFast": "221479636109267444", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "235908478280792928797618", + "usedToken1": "262490218073638818508826", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15060" + } + } + }, + { + "transactionHash": "0xb63644f0a62fe7037581170d358e3659af4554ae6586b4bc7050a52a11c2b5bc", + "state": { + "depositToken": 0, + "blockNumber": 34706693, + "lastRebalancePrice": "220860391436973216", + "state": "2", + "currentTick": "14995", + "currentPrice": "223258490186491626", + "twapSlow": "222767885900468607", + "twapFast": "223079963740615247", + "depositTokenBalance": "982385579241238087419", + "pairedTokenBalance": "0", + "usedToken0": "239972845581409425182012", + "usedToken1": "247275908553143232220500", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14460", + "topTick": "18540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14460" + } + } + }, + { + "transactionHash": "0x9dae9625d61bf58d1817ea62c9d7eef497dddb548b0eb3cf4d40e64dc1967c13", + "state": { + "depositToken": 0, + "blockNumber": 34732916, + "lastRebalancePrice": "223258490186491626", + "state": "1", + "currentTick": "14440", + "currentPrice": "235998977920092132", + "twapSlow": "234939421286737335", + "twapFast": "235692393900529322", + "depositTokenBalance": "2867516525056689719243", + "pairedTokenBalance": "1", + "usedToken0": "280075504512805653638165", + "usedToken1": "72060418584016429296280", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14460" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0xe8c2a2759d7302e25560bf3d699026a268f89eee54ee4af2dd1a41872e4d89ed", + "state": { + "depositToken": 0, + "blockNumber": 34735379, + "lastRebalancePrice": "235998977920092132", + "state": "0", + "currentTick": "14298", + "currentPrice": "239373899902432050", + "twapSlow": "238680755794054113", + "twapFast": "239373899902432050", + "depositTokenBalance": "29110520077948749521670", + "pairedTokenBalance": "1", + "usedToken0": "296459957380383626731579", + "usedToken1": "67929134351136526787574", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14340" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0xb22d17d428a3b1b47b948030a819936dd56a5adae9ec24bffe6ea06c17fe458c", + "state": { + "depositToken": 0, + "blockNumber": 34737843, + "lastRebalancePrice": "239373899902432050", + "state": "0", + "currentTick": "14171", + "currentPrice": "242433180786191763", + "twapSlow": "240381334041994145", + "twapFast": "242433180786191763", + "depositTokenBalance": "17574468669909611559068", + "pairedTokenBalance": "1", + "usedToken0": "314116619103094902891875", + "usedToken1": "67491978577773779568255", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14220" + }, + "limitPosition": { + "bottomTick": "14220", + "topTick": "17760" + } + } + }, + { + "transactionHash": "0x7cd923eadc41e8bd8ba49baeb9495f342d02afd2070f1066a2392fb74b147c86", + "state": { + "depositToken": 0, + "blockNumber": 34752860, + "lastRebalancePrice": "242433180786191763", + "state": "0", + "currentTick": "14256", + "currentPrice": "240381334041994145", + "twapSlow": "240549651464317877", + "twapFast": "240381334041994145", + "depositTokenBalance": "3609220586792599157554", + "pairedTokenBalance": "1", + "usedToken0": "311794392841299043090097", + "usedToken1": "81914900665541888044006", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14280" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0xa351853b715b7d1f85383a28982d9438c8678f665d5ae669cb880ef2f377ae3f", + "state": { + "depositToken": 0, + "blockNumber": 34756919, + "lastRebalancePrice": "240381334041994145", + "state": "0", + "currentTick": "14280", + "currentPrice": "239805139359725649", + "twapSlow": "240453455653887146", + "twapFast": "239805139359725649", + "depositTokenBalance": "5539336599294860298475", + "pairedTokenBalance": "1", + "usedToken0": "317262430056549535167843", + "usedToken1": "81800918338312161693707", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14280" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0x2ec0ab186df9a554e575019219711b14c04336bbddece4e854f153aac6bfddca", + "state": { + "depositToken": 0, + "blockNumber": 34761137, + "lastRebalancePrice": "239805139359725649", + "state": "0", + "currentTick": "14340", + "currentPrice": "238370687902453296", + "twapSlow": "238776242418171829", + "twapFast": "238370687902453296", + "depositTokenBalance": "6851126012261693024711", + "pairedTokenBalance": "0", + "usedToken0": "322177370773967924788685", + "usedToken1": "81521023382931606948895", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14340" + }, + "limitPosition": { + "bottomTick": "14400", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0xab1772398aac5dc86f8b977baf907702d2d9a8b91a8634bda7b573c9e7d0a125", + "state": { + "depositToken": 0, + "blockNumber": 34772072, + "lastRebalancePrice": "238370687902453296", + "state": "0", + "currentTick": "14443", + "currentPrice": "235928192384295144", + "twapSlow": "236826380082580847", + "twapFast": "236069784693673496", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "317842720094021855221941", + "usedToken1": "99926623351619046494189", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14460" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0x92b9f5f801c6ef1f5e769c2eefbe8fd3f10e4e6c654cd5f5fae8498918b81776", + "state": { + "depositToken": 0, + "blockNumber": 34777834, + "lastRebalancePrice": "235928192384295144", + "state": "0", + "currentTick": "14338", + "currentPrice": "238418364423740666", + "twapSlow": "237514138965849827", + "twapFast": "238037219095181286", + "depositTokenBalance": "10000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "317968020480792607528090", + "usedToken1": "99364194759868225136698", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14340" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0x4fa502e731b63d702c3adc53cf39f4ecf1297beaf95915967034ea6028f2bcd2", + "state": { + "depositToken": 0, + "blockNumber": 34781543, + "lastRebalancePrice": "238418364423740666", + "state": "0", + "currentTick": "14424", + "currentPrice": "236376859615740173", + "twapSlow": "237632919789121909", + "twapFast": "236637004207600260", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "309604401267047477423358", + "usedToken1": "133554923174781936479402", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14280", + "topTick": "17940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14280" + } + } + }, + { + "transactionHash": "0xb3b180ca7e54325950492d308afd0b8d4e9ce54fdd0b0eec49458ee5e0960e4a", + "state": { + "depositToken": 0, + "blockNumber": 34794417, + "lastRebalancePrice": "236376859615740173", + "state": "1", + "currentTick": "14547", + "currentPrice": "233487375469026611", + "twapSlow": "233487375469026611", + "twapFast": "233487375469026611", + "depositTokenBalance": "4416704532528039144425", + "pairedTokenBalance": "0", + "usedToken0": "288378572109965841679554", + "usedToken1": "175639234683669903413893", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14280", + "topTick": "18060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14280" + } + } + }, + { + "transactionHash": "0x690d6e374314d30fb1c8752fa05f71f4ea57dd8c7b18303605083a6a081704c7", + "state": { + "depositToken": 0, + "blockNumber": 34807950, + "lastRebalancePrice": "233487375469026611", + "state": "1", + "currentTick": "14560", + "currentPrice": "233184054248234277", + "twapSlow": "233207372653659101", + "twapFast": "233207372653659101", + "depositTokenBalance": "4410186304612532700887", + "pairedTokenBalance": "1", + "usedToken0": "290725049008057365183920", + "usedToken1": "179762166642557416793462", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14280", + "topTick": "18120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14280" + } + } + }, + { + "transactionHash": "0x27bb6c79ed0755fb86d68042253cc7c4770806d21788b50e36039cd0cceaee3e", + "state": { + "depositToken": 0, + "blockNumber": 34812878, + "lastRebalancePrice": "233184054248234277", + "state": "1", + "currentTick": "14510", + "currentPrice": "234352835599922626", + "twapSlow": "234352835599922626", + "twapFast": "234352835599922626", + "depositTokenBalance": "5701449720981743167213", + "pairedTokenBalance": "1", + "usedToken0": "300852848148177759995779", + "usedToken1": "160595084078258902550217", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14280", + "topTick": "18060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14280" + } + } + }, + { + "transactionHash": "0x3aeb7b6ae48a404729916d3bfb5bfe883aa7d86bf3be3d94729e4ab0f9dff1e6", + "state": { + "depositToken": 0, + "blockNumber": 34829863, + "lastRebalancePrice": "234352835599922626", + "state": "1", + "currentTick": "14491", + "currentPrice": "234798506958090115", + "twapSlow": "234681142916170809", + "twapFast": "234798506958090115", + "depositTokenBalance": "11328968132751475900916", + "pairedTokenBalance": "0", + "usedToken0": "309765222988920658675353", + "usedToken1": "150810932054399239365252", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14280", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14280" + } + } + }, + { + "transactionHash": "0x6e2c66229ae89780fd4e906e3dcea6732284c336d4cf3380f51a911bda3e7ca7", + "state": { + "depositToken": 0, + "blockNumber": 34840574, + "lastRebalancePrice": "234798506958090115", + "state": "1", + "currentTick": "14574", + "currentPrice": "232857841285016118", + "twapSlow": "232857841285016118", + "twapFast": "232857841285016118", + "depositTokenBalance": "21304890053959111667215", + "pairedTokenBalance": "0", + "usedToken0": "323061156371385322127830", + "usedToken1": "185198558347660347400279", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14340", + "topTick": "18120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14340" + } + } + }, + { + "transactionHash": "0xcd2b43260856eabb389e92ea02f34f6ba9175d11c896b93c20e662f7bdac9472", + "state": { + "depositToken": 0, + "blockNumber": 34859103, + "lastRebalancePrice": "232857841285016118", + "state": "1", + "currentTick": "14710", + "currentPrice": "229712568237860666", + "twapSlow": "229712568237860666", + "twapFast": "229712568237860666", + "depositTokenBalance": "6450773367605448848937", + "pairedTokenBalance": "1", + "usedToken0": "313917548479739689460843", + "usedToken1": "241866343378183235815077", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14340", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14340" + } + } + }, + { + "transactionHash": "0x9bbd6398e95cc20b300df0d587fb705beb7f360a7c8dfc0d3aab3230622948ca", + "state": { + "depositToken": 0, + "blockNumber": 34861984, + "lastRebalancePrice": "229712568237860666", + "state": "1", + "currentTick": "14706", + "currentPrice": "229804467048828778", + "twapSlow": "229781488899938784", + "twapFast": "229804467048828778", + "depositTokenBalance": "12242458076255517491412", + "pairedTokenBalance": "0", + "usedToken0": "323881038082745978695432", + "usedToken1": "238014506163543698524451", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14340", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14340" + } + } + }, + { + "transactionHash": "0x454e4b31ead3f0fb91d3f029102892934254de4e94766ef71db92ea1b9687eda", + "state": { + "depositToken": 0, + "blockNumber": 34887480, + "lastRebalancePrice": "229804467048828778", + "state": "1", + "currentTick": "14377", + "currentPrice": "237490389926857141", + "twapSlow": "237300483082965018", + "twapFast": "237442898972633625", + "depositTokenBalance": "3742753780345953937277", + "pairedTokenBalance": "0", + "usedToken0": "360733829216380314415313", + "usedToken1": "95987235096651204065735", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14400" + }, + "limitPosition": { + "bottomTick": "14400", + "topTick": "18000" + } + } + }, + { + "transactionHash": "0x3347de7b08e361f1dc10bd1c169da0c4c8cef8f3625be3336879972b24183f77", + "state": { + "depositToken": 0, + "blockNumber": 34895858, + "lastRebalancePrice": "237490389926857141", + "state": "0", + "currentTick": "14493", + "currentPrice": "234751554299714629", + "twapSlow": "236471424543143578", + "twapFast": "234962915228866009", + "depositTokenBalance": "2222990888578988734513", + "pairedTokenBalance": "0", + "usedToken0": "351289001623076023971915", + "usedToken1": "139044093615195044769592", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14520" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0xe4c7c94d5d5448fbbd9554806dda904bd8a55b7340f7d35703c75b2e030508fe", + "state": { + "depositToken": 0, + "blockNumber": 34898321, + "lastRebalancePrice": "234751554299714629", + "state": "0", + "currentTick": "14563", + "currentPrice": "233114113020671571", + "twapSlow": "233090803940277544", + "twapFast": "233114113020671571", + "depositTokenBalance": "7165938592108789685582", + "pairedTokenBalance": "0", + "usedToken0": "353684359376917654951401", + "usedToken1": "159396297716725807248399", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x1a07cf5d5255c3a5febdde0706912ad8b342d36b842b4bb0b42fb76b6924c430", + "state": { + "depositToken": 0, + "blockNumber": 34925846, + "lastRebalancePrice": "233114113020671571", + "state": "1", + "currentTick": "14813", + "currentPrice": "227358789242117797", + "twapSlow": "226360657974210950", + "twapFast": "227336055636554141", + "depositTokenBalance": "4095317533447132865283", + "pairedTokenBalance": "0", + "usedToken0": "314234780590803910087954", + "usedToken1": "264280616695342054894572", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x630c06a346b1d88d12cf9d901367cd109fbc86d026d56298e798b54e98eaf737", + "state": { + "depositToken": 0, + "blockNumber": 34953242, + "lastRebalancePrice": "227358789242117797", + "state": "1", + "currentTick": "14616", + "currentPrice": "231881937977422880", + "twapSlow": "230840865479124459", + "twapFast": "231881937977422880", + "depositTokenBalance": "4098240018052016650335", + "pairedTokenBalance": "0", + "usedToken0": "335052824203707335579378", + "usedToken1": "178201833077922078703168", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x2869c886320716c284eee11a41766d48db83150c1431b7e46f5be0020c2f2e3f", + "state": { + "depositToken": 0, + "blockNumber": 34959360, + "lastRebalancePrice": "231881937977422880", + "state": "1", + "currentTick": "14621", + "currentPrice": "231766031782610620", + "twapSlow": "231766031782610620", + "twapFast": "231766031782610620", + "depositTokenBalance": "9911796038784252037951", + "pairedTokenBalance": "1", + "usedToken0": "341012976591336633483235", + "usedToken1": "178024272811430179994946", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x1f331ae2c6b3fd1b0e74d83fcfedb2d31be6d7aeb252fa8160d244d069702989", + "state": { + "depositToken": 0, + "blockNumber": 34961823, + "lastRebalancePrice": "231766031782610620", + "state": "1", + "currentTick": "14593", + "currentPrice": "232415853506942357", + "twapSlow": "232230004465961831", + "twapFast": "232415853506942357", + "depositTokenBalance": "4450068373533031646131", + "pairedTokenBalance": "0", + "usedToken0": "345236866609207535798616", + "usedToken1": "163783825373700969299218", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x8342f68bd98dc85df277b5a140c24f8f65b0998bf040b23fa3ca962a0370a736", + "state": { + "depositToken": 0, + "blockNumber": 34973398, + "lastRebalancePrice": "232415853506942357", + "state": "1", + "currentTick": "14682", + "currentPrice": "230356632495443551", + "twapSlow": "230356632495443551", + "twapFast": "230356632495443551", + "depositTokenBalance": "12535881452448902026307", + "pairedTokenBalance": "0", + "usedToken0": "346641176472320380933874", + "usedToken1": "203957031031729422889491", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x03f80d6a54949a02c530718ba098cf209526b6eec0968fd3450fe8637e6fd1a5", + "state": { + "depositToken": 0, + "blockNumber": 34991899, + "lastRebalancePrice": "230356632495443551", + "state": "1", + "currentTick": "14674", + "currentPrice": "230540982314198589", + "twapSlow": "230057378392964688", + "twapFast": "230540982314198589", + "depositTokenBalance": "31285920824830041752938", + "pairedTokenBalance": "1", + "usedToken0": "372715934582816097155928", + "usedToken1": "197122281748643394551327", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14460", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14460" + } + } + }, + { + "transactionHash": "0x19b07ed7003abcc7625d84f09b4bf90848100c1dd22f5b21ae10ea51e739ad95", + "state": { + "depositToken": 0, + "blockNumber": 35029480, + "lastRebalancePrice": "230540982314198589", + "state": "1", + "currentTick": "14837", + "currentPrice": "226813809633570380", + "twapSlow": "226813809633570380", + "twapFast": "226813809633570380", + "depositTokenBalance": "5385009750855029215850", + "pairedTokenBalance": "1", + "usedToken0": "323185548288501335340174", + "usedToken1": "249705738164807683047990", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14460", + "topTick": "18360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14460" + } + } + }, + { + "transactionHash": "0xffcfefd1e6e4ae5b4aa8781f9c04ce8d5ede399ae79d268ffe860751712ca66d", + "state": { + "depositToken": 0, + "blockNumber": 35054340, + "lastRebalancePrice": "226904548767159664", + "state": "1", + "currentTick": "15131", + "currentPrice": "220242878138140229", + "twapSlow": "220904565723864525", + "twapFast": "220353021603699652", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "282126539384676458172234", + "usedToken1": "362218422680512133562020", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15120" + } + } + }, + { + "transactionHash": "0x10eb2b393bc149b5fc8c00b2cba24ffc98a4a30e6ce84d4dde986e565b85344f", + "state": { + "depositToken": 0, + "blockNumber": 35063792, + "lastRebalancePrice": "220242878138140229", + "state": "2", + "currentTick": "15237", + "currentPrice": "217920748761847708", + "twapSlow": "219539262493713729", + "twapFast": "217246274139634156", + "depositTokenBalance": "510148178229459789143", + "pairedTokenBalance": "0", + "usedToken0": "280533707599625861907387", + "usedToken1": "367554486300066155957465", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13800", + "topTick": "15180" + } + } + }, + { + "transactionHash": "0xec67f8e5032055a4cb4c2e1b1c705d5ab091b5ec45c3147609271af358cc7ace", + "state": { + "depositToken": 0, + "blockNumber": 35072394, + "lastRebalancePrice": "217920748761847708", + "state": "2", + "currentTick": "15134", + "currentPrice": "220176818487069377", + "twapSlow": "219232137919558393", + "twapFast": "220132789727795920", + "depositTokenBalance": "499781829051981857478", + "pairedTokenBalance": "0", + "usedToken0": "280188283041636500662008", + "usedToken1": "345959508710142339022445", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15120" + } + } + }, + { + "transactionHash": "0x148368138d1f3f9e7acc0b7457b5cde4d98a117dc78ca5257d7aa4bdbdabf51f", + "state": { + "depositToken": 0, + "blockNumber": 35075354, + "lastRebalancePrice": "220176818487069377", + "state": "2", + "currentTick": "15085", + "currentPrice": "221258278238248348", + "twapSlow": "221723385559338948", + "twapFast": "221280404066072173", + "depositTokenBalance": "17713439287068262304443", + "pairedTokenBalance": "0", + "usedToken0": "260843108492684969171914", + "usedToken1": "289909682803291142005582", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15060" + } + } + }, + { + "transactionHash": "0xf44785ec644c2c89373f0e5ea7a2f0d8c13f744e8fbd17e6a8bdba63fab0e747", + "state": { + "depositToken": 0, + "blockNumber": 35079430, + "lastRebalancePrice": "221258278238248348", + "state": "2", + "currentTick": "15216", + "currentPrice": "218378840257785054", + "twapSlow": "219495361226514814", + "twapFast": "218706637915346190", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "259104105493083837279881", + "usedToken1": "297538855388623918574663", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13800", + "topTick": "15180" + } + } + }, + { + "transactionHash": "0x00b18b2f18e9ff57193b8e7f26e4c2e7cccbd38af9ad3074f55ea4b541191227", + "state": { + "depositToken": 0, + "blockNumber": 35081893, + "lastRebalancePrice": "218378840257785054", + "state": "2", + "currentTick": "15350", + "currentPrice": "215472226926216293", + "twapSlow": "215472226926216293", + "twapFast": "215472226926216293", + "depositTokenBalance": "13247621998783415176885", + "pairedTokenBalance": "0", + "usedToken0": "261563901653024030124660", + "usedToken1": "294798241356483977729550", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13920", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0xbbca5c6ee528d7d9b1674f49eee93eca2ec74a6629d5cddd46aaaff2c00bf7ba", + "state": { + "depositToken": 0, + "blockNumber": 35094472, + "lastRebalancePrice": "215472226926216293", + "state": "2", + "currentTick": "15476", + "currentPrice": "212774443479381439", + "twapSlow": "215020232609142971", + "twapFast": "213392354007695602", + "depositTokenBalance": "1756085802348762928619", + "pairedTokenBalance": "0", + "usedToken0": "261666522209840429520105", + "usedToken1": "302454697438691032085257", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "15420" + } + } + }, + { + "transactionHash": "0x42b1637185dfeb6cc02a2df434c6894f7bca4581b3c0f08b1da9e5e6e33fe361", + "state": { + "depositToken": 0, + "blockNumber": 35102950, + "lastRebalancePrice": "212774443479381439", + "state": "2", + "currentTick": "15579", + "currentPrice": "210594223129513348", + "twapSlow": "210889246759315097", + "twapFast": "210699541302606465", + "depositTokenBalance": "853253815068158020271", + "pairedTokenBalance": "0", + "usedToken0": "256312205173420675937495", + "usedToken1": "303077616517172528946576", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0xee3eed28d085cca1aed07402209556a5ca654d55430dd9066abafb946a9c6e8b", + "state": { + "depositToken": 0, + "blockNumber": 35105421, + "lastRebalancePrice": "210594223129513348", + "state": "2", + "currentTick": "15706", + "currentPrice": "207936720229287228", + "twapSlow": "208540581701331185", + "twapFast": "207936720229287228", + "depositTokenBalance": "119801708499558724934", + "pairedTokenBalance": "0", + "usedToken0": "249778009636904775273356", + "usedToken1": "304695225522121712458439", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0x04a8bfddd9462a269b3553671f1a2a429ab844c9a517f1379a6f84a3c072a9fa", + "state": { + "depositToken": 0, + "blockNumber": 35112162, + "lastRebalancePrice": "207936720229287228", + "state": "2", + "currentTick": "15603", + "currentPrice": "210089428229496311", + "twapSlow": "209522980144224001", + "twapFast": "210026414004292576", + "depositTokenBalance": "336018996477832571298", + "pairedTokenBalance": "0", + "usedToken0": "253380307843271827048074", + "usedToken1": "289013392040584342289055", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0x71aaad4cf51b62b24b0eacb59097f4c77409a01119851409212658c32074d66c", + "state": { + "depositToken": 0, + "blockNumber": 35114621, + "lastRebalancePrice": "210089428229496311", + "state": "2", + "currentTick": "15536", + "currentPrice": "211501682556349395", + "twapSlow": "211501682556349395", + "twapFast": "211501682556349395", + "depositTokenBalance": "3500000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "259714679309023927207238", + "usedToken1": "275637943833680498817638", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "19080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0x86eb29eb2a25da61e1372c0c9ddfb5a1a20716eaada7191ea652ebe87919628e", + "state": { + "depositToken": 0, + "blockNumber": 35127765, + "lastRebalancePrice": "211501682556349395", + "state": "1", + "currentTick": "15628", + "currentPrice": "209564886835482647", + "twapSlow": "209564886835482647", + "twapFast": "209564886835482647", + "depositTokenBalance": "9266046206061130745405", + "pairedTokenBalance": "0", + "usedToken0": "261690578950439594604881", + "usedToken1": "310937059292724525179535", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15060", + "topTick": "19140" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15060" + } + } + }, + { + "transactionHash": "0x2e2120a7c7a44a659f9942921697460227affbbe518b640370e4df0e1a2cb081", + "state": { + "depositToken": 0, + "blockNumber": 35143185, + "lastRebalancePrice": "209564886835482647", + "state": "1", + "currentTick": "15092", + "currentPrice": "221103459377218431", + "twapSlow": "221214033219464123", + "twapFast": "221103459377218431", + "depositTokenBalance": "25577118162730224048181", + "pairedTokenBalance": "0", + "usedToken0": "328054599807243385397856", + "usedToken1": "104526046461716684132950", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "18600" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0xa42caf497ff75bc6cd04e21f22de672cf0732b42babb15ac8fac6ab5bb1ede77", + "state": { + "depositToken": 0, + "blockNumber": 35146770, + "lastRebalancePrice": "221103459377218431", + "state": "1", + "currentTick": "15053", + "currentPrice": "221967403267907955", + "twapSlow": "220816225983614234", + "twapFast": "221701215437795169", + "depositTokenBalance": "51466866909189858812", + "pairedTokenBalance": "0", + "usedToken0": "300188670886129020246272", + "usedToken1": "78271347471149606044688", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15060" + }, + "limitPosition": { + "bottomTick": "15060", + "topTick": "18660" + } + } + }, + { + "transactionHash": "0xb8453537f2c2ddf5786ce6775b3106cb0591ebad0548bd11b5569dbf5b9102b0", + "state": { + "depositToken": 0, + "blockNumber": 35149687, + "lastRebalancePrice": "221967403267907955", + "state": "0", + "currentTick": "14917", + "currentPrice": "225006627878912800", + "twapSlow": "223169209111801660", + "twapFast": "224534633327429718", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "300294166968825619408890", + "usedToken1": "77624842261418479730733", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14940" + }, + "limitPosition": { + "bottomTick": "14940", + "topTick": "18540" + } + } + }, + { + "transactionHash": "0xce106417e315d30c2629b3335d0ec68ca93486b68a1bd9c1269dc667c0331b7c", + "state": { + "depositToken": 0, + "blockNumber": 35153941, + "lastRebalancePrice": "225006627878912800", + "state": "0", + "currentTick": "14779", + "currentPrice": "228133085969918672", + "twapSlow": "226021388466183195", + "twapFast": "227722836262814587", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "300034862423298517132615", + "usedToken1": "76972363490816134328333", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14820" + }, + "limitPosition": { + "bottomTick": "14820", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0x6baf53993bdb3e526be38428cf68440c7471b5d9c20451a782212a45c8374dd2", + "state": { + "depositToken": 0, + "blockNumber": 35156401, + "lastRebalancePrice": "228133085969918672", + "state": "0", + "currentTick": "14976", + "currentPrice": "223683063306288217", + "twapSlow": "224736795348756141", + "twapFast": "223683063306288217", + "depositTokenBalance": "50000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "335596567898486884008472", + "usedToken1": "141005881856219921024438", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15000" + }, + "limitPosition": { + "bottomTick": "15000", + "topTick": "18600" + } + } + }, + { + "transactionHash": "0x20c689d4edfb21c58e7745f8a457272942639b4c915cefa79ed12b0c520fd051", + "state": { + "depositToken": 0, + "blockNumber": 35166430, + "lastRebalancePrice": "223683063306288217", + "state": "0", + "currentTick": "15017", + "currentPrice": "222767885900468607", + "twapSlow": "223013053134060422", + "twapFast": "222857006421793043", + "depositTokenBalance": "286848538708852520565", + "pairedTokenBalance": "1", + "usedToken0": "334042081584968181425089", + "usedToken1": "149468497712423795066250", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14880", + "topTick": "18540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14880" + } + } + }, + { + "transactionHash": "0xe9927d085bb3053b53657d5276d2019a2e18309b7962d5643cd449b67943ddef", + "state": { + "depositToken": 0, + "blockNumber": 35174301, + "lastRebalancePrice": "222767885900468607", + "state": "1", + "currentTick": "15022", + "currentPrice": "222656535364905941", + "twapSlow": "222834722949498093", + "twapFast": "222656535364905941", + "depositTokenBalance": "4140156804554002299260", + "pairedTokenBalance": "0", + "usedToken0": "334516294917561090166709", + "usedToken1": "150133511249323069819163", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14880", + "topTick": "18540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14880" + } + } + }, + { + "transactionHash": "0x1a40f17285efc9d48c2ec54d62dbb58111fb25bd5190a5a668029545afbbe0ab", + "state": { + "depositToken": 0, + "blockNumber": 35184327, + "lastRebalancePrice": "222656535364905941", + "state": "1", + "currentTick": "15299", + "currentPrice": "216573887047032147", + "twapSlow": "217224551684465709", + "twapFast": "216595544435736850", + "depositTokenBalance": "4182280650433382232122", + "pairedTokenBalance": "1", + "usedToken0": "305693901343897068455801", + "usedToken1": "277701337421863971088478", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14880", + "topTick": "18840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14880" + } + } + }, + { + "transactionHash": "0x615403762db67f0f4eb32ff42887b92fa5809b06a0a873b3df042d3739a88e75", + "state": { + "depositToken": 0, + "blockNumber": 35190345, + "lastRebalancePrice": "216573887047032147", + "state": "1", + "currentTick": "15543", + "currentPrice": "211353690581269365", + "twapSlow": "211692110229024636", + "twapFast": "211480534502899105", + "depositTokenBalance": "9365653764116427741", + "pairedTokenBalance": "2", + "usedToken0": "264878650544899152561498", + "usedToken1": "359095031095703587929014", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14100", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x8d73f0bc5b58b9411097a83a3310b31286009127ec17ced7347baf26b73579f9", + "state": { + "depositToken": 0, + "blockNumber": 35192808, + "lastRebalancePrice": "211353690581269365", + "state": "2", + "currentTick": "15763", + "currentPrice": "206754911368278208", + "twapSlow": "206961759344171533", + "twapFast": "206754911368278208", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "261963443406928727137580", + "usedToken1": "372168080155164177585491", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0xf7d5efef1ccfabd34672ba0a5350d4d0df3dece29dd029b72d988b5ed53d9173", + "state": { + "depositToken": 0, + "blockNumber": 35198998, + "lastRebalancePrice": "206754911368278208", + "state": "2", + "currentTick": "15736", + "currentPrice": "207313875943832599", + "twapSlow": "207313875943832599", + "twapFast": "207313875943832599", + "depositTokenBalance": "3518013649980194703630", + "pairedTokenBalance": "0", + "usedToken0": "246669215123568347354617", + "usedToken1": "343447096603558915764881", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0xa37c81b0e8e29e064d8fc5830f9cc622db8b5cbf9fcabedce7561d340120c862", + "state": { + "depositToken": 0, + "blockNumber": 35234007, + "lastRebalancePrice": "207313875943832599", + "state": "2", + "currentTick": "15709", + "currentPrice": "207874351687342600", + "twapSlow": "207874351687342600", + "twapFast": "207874351687342600", + "depositTokenBalance": "3359118116482236285074", + "pairedTokenBalance": "0", + "usedToken0": "250687404916420843457523", + "usedToken1": "339978312761805527021590", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0xdbb63f03c8a11fb8e80cc5ef7c66826da96acc9a433d4835fbfc72b0f29adf60", + "state": { + "depositToken": 0, + "blockNumber": 35247293, + "lastRebalancePrice": "207874351687342600", + "state": "2", + "currentTick": "15813", + "currentPrice": "205723768373320989", + "twapSlow": "206176836202612382", + "twapFast": "205764915184233337", + "depositTokenBalance": "1648319077880669130549", + "pairedTokenBalance": "0", + "usedToken0": "250177158479763984961044", + "usedToken1": "344936284658648699733981", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14400", + "topTick": "15780" + } + } + }, + { + "transactionHash": "0x0652b7a96574d64720d2afd96487bbc865eb2ffeade183d9bec37b548962be25", + "state": { + "depositToken": 0, + "blockNumber": 35268488, + "lastRebalancePrice": "205723768373320989", + "state": "2", + "currentTick": "15755", + "currentPrice": "206920373200327736", + "twapSlow": "207023854081034527", + "twapFast": "206941065237647768", + "depositTokenBalance": "10464613265697416130853", + "pairedTokenBalance": "0", + "usedToken0": "262009399583013290252961", + "usedToken1": "336281135974710125410368", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0x885650fa0e1ce722ef0d133bdceb750d458224fe244637bdd2b15d22045b1c4c", + "state": { + "depositToken": 0, + "blockNumber": 35274058, + "lastRebalancePrice": "206920373200327736", + "state": "2", + "currentTick": "15481", + "currentPrice": "212668088166362654", + "twapSlow": "208144750545997392", + "twapFast": "211184683690777489", + "depositTokenBalance": "13908857568888298628", + "pairedTokenBalance": "0", + "usedToken0": "274957931808562225085245", + "usedToken1": "274504045712252946665825", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0x6137bcff84a289a2aa82e236c2b6656b5977f2a61dde3c474c5e327136b47fd1", + "state": { + "depositToken": 0, + "blockNumber": 35280403, + "lastRebalancePrice": "212668088166362654", + "state": "1", + "currentTick": "15693", + "currentPrice": "208207200215711852", + "twapSlow": "208999853031122942", + "twapFast": "208373824285561543", + "depositTokenBalance": "1385499423320786356021", + "pairedTokenBalance": "1", + "usedToken0": "257242570586507155541715", + "usedToken1": "358270021943085884843007", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0xc7e1ef1024d3735df73ed24baf55dcfa258643a4966f22b91bfa3a7073dfee96", + "state": { + "depositToken": 0, + "blockNumber": 35301171, + "lastRebalancePrice": "208207200215711852", + "state": "2", + "currentTick": "15626", + "currentPrice": "209606801908498612", + "twapSlow": "209606801908498612", + "twapFast": "209606801908498612", + "depositTokenBalance": "3670640630423540496582", + "pairedTokenBalance": "0", + "usedToken0": "262047134972512334810905", + "usedToken1": "345430011583177929069522", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14220", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0x570984c8fc8de33044cc5a17336f5c8b3a4c5ad6b106754ae2c6d5239a9b2984", + "state": { + "depositToken": 0, + "blockNumber": 35324236, + "lastRebalancePrice": "209606801908498612", + "state": "2", + "currentTick": "15597", + "currentPrice": "210215513404050347", + "twapSlow": "210236534955390752", + "twapFast": "210215513404050347", + "depositTokenBalance": "3654052043529542950683", + "pairedTokenBalance": "0", + "usedToken0": "264461132842810144593627", + "usedToken1": "340936827104888813517392", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x785e22d452a36d0d74a670e5eb0381aeb89364e1e647aacb3eec38a7d4fdefd0", + "state": { + "depositToken": 0, + "blockNumber": 35338600, + "lastRebalancePrice": "210215513404050347", + "state": "2", + "currentTick": "15627", + "currentPrice": "209585843324166195", + "twapSlow": "209669690237484825", + "twapFast": "209585843324166195", + "depositTokenBalance": "11538014825690093597482", + "pairedTokenBalance": "0", + "usedToken0": "260968049020684435769188", + "usedToken1": "323772537339227017923503", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14220", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0x1adbc6c882a9dcf680cb37f96279213b9c41962240d6febbd6e88f8853de7df5", + "state": { + "depositToken": 0, + "blockNumber": 35341048, + "lastRebalancePrice": "209585843324166195", + "state": "2", + "currentTick": "15507", + "currentPrice": "212115896905923724", + "twapSlow": "210131448216036492", + "twapFast": "211946280524674961", + "depositTokenBalance": "88697482827001701092", + "pairedTokenBalance": "0", + "usedToken0": "266116227078655747466927", + "usedToken1": "299675367789711326387124", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14100", + "topTick": "15480" + } + } + }, + { + "transactionHash": "0x9268c5f09e6c7768c26f0894939761bbacac9380abddc721fa42c05fe1cafa54", + "state": { + "depositToken": 0, + "blockNumber": 35343519, + "lastRebalancePrice": "212115896905923724", + "state": "2", + "currentTick": "15457", + "currentPrice": "213179078972551546", + "twapSlow": "213136449551276795", + "twapFast": "213179078972551546", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "267564719488464818190265", + "usedToken1": "293059058533734355128727", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14940", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14940" + } + } + }, + { + "transactionHash": "0xaaabba849769fb4ab1879f9d84888d981fa5b6d571e3b72089b5f448f4171a7f", + "state": { + "depositToken": 0, + "blockNumber": 35360821, + "lastRebalancePrice": "213179078972551546", + "state": "1", + "currentTick": "15405", + "currentPrice": "214290441654830471", + "twapSlow": "214719429934374236", + "twapFast": "214290441654830471", + "depositTokenBalance": "3380019310344063584718", + "pairedTokenBalance": "0", + "usedToken0": "275451121172556406549511", + "usedToken1": "274671798306602082566520", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14940", + "topTick": "18960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14940" + } + } + }, + { + "transactionHash": "0x31944fcd891423c2fbc72bddbe95ec2d4cac4026b2e362b9870cb3fbb48b1237", + "state": { + "depositToken": 0, + "blockNumber": 35364534, + "lastRebalancePrice": "214290441654830471", + "state": "1", + "currentTick": "15480", + "currentPrice": "212689354975179291", + "twapSlow": "212689354975179291", + "twapFast": "212689354975179291", + "depositTokenBalance": "17899398960899989631311", + "pairedTokenBalance": "1", + "usedToken0": "286511267032789327482674", + "usedToken1": "302431578266068784903739", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0x779b2f84fea1ba787bf54bf9f70f09a8d7acea8f14dd312964aa4cf8b8924a31", + "state": { + "depositToken": 0, + "blockNumber": 35366990, + "lastRebalancePrice": "212689354975179291", + "state": "1", + "currentTick": "15494", + "currentPrice": "212391813082981327", + "twapSlow": "212646823484014253", + "twapFast": "212391813082981327", + "depositTokenBalance": "17470280501706785292888", + "pairedTokenBalance": "1", + "usedToken0": "302674236259788553727987", + "usedToken1": "308163191265493942137740", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0x17f93f00e2bd35fb5482777996d75b435e510a787246d0fbfe560760c9202857", + "state": { + "depositToken": 0, + "blockNumber": 35371992, + "lastRebalancePrice": "212391813082981327", + "state": "1", + "currentTick": "15517", + "currentPrice": "211903897626110763", + "twapSlow": "211903897626110763", + "twapFast": "211903897626110763", + "depositTokenBalance": "6319772784909716492627", + "pairedTokenBalance": "0", + "usedToken0": "306831957429281004626421", + "usedToken1": "318456999844511701147470", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "19080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0xeef8846d7925ab656d8728b7649d82ab062401229b283c3e4832852680965738", + "state": { + "depositToken": 0, + "blockNumber": 35405707, + "lastRebalancePrice": "211903897626110763", + "state": "1", + "currentTick": "15509", + "currentPrice": "212073480089171088", + "twapSlow": "212221976068087641", + "twapFast": "212094687437180006", + "depositTokenBalance": "4460210364621557464316", + "pairedTokenBalance": "1", + "usedToken0": "312230045390770281654304", + "usedToken1": "315134329460208362520768", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0xf6575926b39ddf0393dca0b5bd37d0174bde965363f5257e77d209b5e44b4400", + "state": { + "depositToken": 0, + "blockNumber": 35474700, + "lastRebalancePrice": "202661092470323506", + "state": "3", + "currentTick": "15930", + "currentPrice": "203330945232592507", + "twapSlow": "203330945232592507", + "twapFast": "203330945232592507", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "287585755892912454650345", + "usedToken1": "511631112168789517174308", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15900" + } + } + }, + { + "transactionHash": "0x7ef3ec2259e3fc07d515c74e8be175e9b6c86eb8b39a29881a6818fe2ebaf664", + "state": { + "depositToken": 0, + "blockNumber": 35481701, + "lastRebalancePrice": "203330945232592507", + "state": "2", + "currentTick": "16012", + "currentPrice": "201670531500665163", + "twapSlow": "201731038710432978", + "twapFast": "201670531500665163", + "depositTokenBalance": "11868069392889911694088", + "pairedTokenBalance": "0", + "usedToken0": "272041878330327564166248", + "usedToken1": "470090569741548330541898", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14580", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0xf604e08de87b9a91bd257c2e35f4b75aba4b772d9bc89a8c772de0d3c509e3fc", + "state": { + "depositToken": 0, + "blockNumber": 35492124, + "lastRebalancePrice": "201670531500665163", + "state": "2", + "currentTick": "16208", + "currentPrice": "197756467901597239", + "twapSlow": "200624618761420298", + "twapFast": "199125637275225926", + "depositTokenBalance": "181154834630000000000", + "pairedTokenBalance": "0", + "usedToken0": "269579809520944064677161", + "usedToken1": "483327137649184943149117", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14760", + "topTick": "16200" + } + } + }, + { + "transactionHash": "0xce45e974b86fd42c3093b72834ca0f6c5bc6cd3269b4dfbc9cbda801ff5e66dd", + "state": { + "depositToken": 0, + "blockNumber": 35494598, + "lastRebalancePrice": "197756467901597239", + "state": "2", + "currentTick": "16390", + "currentPrice": "194190031515813233", + "twapSlow": "194676089611580139", + "twapFast": "194190031515813233", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "267115611764899793810018", + "usedToken1": "495798822552595883967829", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14940", + "topTick": "16380" + } + } + }, + { + "transactionHash": "0x5a8224ae8694b4f1cb47b00536b61c7f6ce29cd1bf3f0c2d080a2159723bbc82", + "state": { + "depositToken": 0, + "blockNumber": 35497926, + "lastRebalancePrice": "194190031515813233", + "state": "2", + "currentTick": "16496", + "currentPrice": "192142590161168355", + "twapSlow": "192238680672429478", + "twapFast": "192181020600626491", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "265704804401323063571872", + "usedToken1": "503102937378121950488986", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15060", + "topTick": "16440" + } + } + }, + { + "transactionHash": "0xe6f0d4e281d182df36d88c5da14d9bdee571dbb12f5dad35b96c9799ef1e7cbb", + "state": { + "depositToken": 0, + "blockNumber": 35503807, + "lastRebalancePrice": "192142590161168355", + "state": "2", + "currentTick": "16616", + "currentPrice": "189850772077109156", + "twapSlow": "192084958910754277", + "twapFast": "190802355334904068", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "264114817754763507042539", + "usedToken1": "511452214211659469600801", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15180", + "topTick": "16560" + } + } + }, + { + "transactionHash": "0x5de6a84cdfbb716e585db450494a2190416afcd0abf43d693288b52e7bade0aa", + "state": { + "depositToken": 0, + "blockNumber": 35509923, + "lastRebalancePrice": "189850772077109156", + "state": "2", + "currentTick": "16725", + "currentPrice": "187792738221152600", + "twapSlow": "191107868173150369", + "twapFast": "188545375814505063", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "262665760223065332053465", + "usedToken1": "519000480774798168664632", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15300", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0xc6c89c22932a840c343027e74ef49749a71f8ca50c476b040ddd166c26700740", + "state": { + "depositToken": 0, + "blockNumber": 35516852, + "lastRebalancePrice": "187792738221152600", + "state": "2", + "currentTick": "16830", + "currentPrice": "185831327962091778", + "twapSlow": "186538794971629030", + "twapFast": "186110270161507902", + "depositTokenBalance": "639000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "261503036075093745934356", + "usedToken1": "525531616215338165896445", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15420", + "topTick": "16800" + } + } + }, + { + "transactionHash": "0x1aa4d341fb38c4cad2ffa87a83aa899674eb92bd58fdab1c41dbd9c7fab134d0", + "state": { + "depositToken": 0, + "blockNumber": 35529227, + "lastRebalancePrice": "185831327962091778", + "state": "2", + "currentTick": "16908", + "currentPrice": "184387553830166935", + "twapSlow": "184332248625427516", + "twapFast": "184387553830166935", + "depositTokenBalance": "50105395207938882640982", + "pairedTokenBalance": "0", + "usedToken0": "298051371000278035046798", + "usedToken1": "505507784513380292970206", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15480", + "topTick": "16860" + } + } + }, + { + "transactionHash": "0x1bab9b5f52a7e64d35526b1928d50e8ce7ce15a4215b6db06d7d45bacf7cdc20", + "state": { + "depositToken": 0, + "blockNumber": 35532872, + "lastRebalancePrice": "184387553830166935", + "state": "2", + "currentTick": "17019", + "currentPrice": "182352270463990946", + "twapSlow": "183064797217142964", + "twapFast": "182625990422566099", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "287888033631136006102334", + "usedToken1": "499693288185946721145812", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15600", + "topTick": "16980" + } + } + }, + { + "transactionHash": "0x4eb567885fd510707da8e9d9cf02030d9733de9c74d52749ca98d8f0f37640c4", + "state": { + "depositToken": 0, + "blockNumber": 35538980, + "lastRebalancePrice": "182352270463990946", + "state": "2", + "currentTick": "17180", + "currentPrice": "179440050789413032", + "twapSlow": "182242897385479918", + "twapFast": "180574034710023349", + "depositTokenBalance": "84146555002592739310", + "pairedTokenBalance": "0", + "usedToken0": "285670492441844375159996", + "usedToken1": "512461807140540202263593", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15780", + "topTick": "17160" + } + } + }, + { + "transactionHash": "0xc1c884aa227b43d35149127ddeb9e2a8a4607173bb720e9a55f1628013203307", + "state": { + "depositToken": 0, + "blockNumber": 35541439, + "lastRebalancePrice": "179440050789413032", + "state": "2", + "currentTick": "17562", + "currentPrice": "172715042475520457", + "twapSlow": "169685032412360687", + "twapFast": "173026193946979722", + "depositTokenBalance": "60664463046765326334", + "pairedTokenBalance": "0", + "usedToken0": "274063643001521705281938", + "usedToken1": "531034426853872247017728", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16140", + "topTick": "17520" + } + } + }, + { + "transactionHash": "0x9a6e5257ef2d292686f0f605bfedb24380077d115102df47645d5a7814a5d6b6", + "state": { + "depositToken": 0, + "blockNumber": 35543897, + "lastRebalancePrice": "172715042475520457", + "state": "2", + "currentTick": "17666", + "currentPrice": "170928203043847536", + "twapSlow": "171167658135008672", + "twapFast": "170928203043847536", + "depositTokenBalance": "66203048452646768416", + "pairedTokenBalance": "0", + "usedToken0": "272714885374095786329267", + "usedToken1": "539223079483285280295707", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16260", + "topTick": "17640" + } + } + }, + { + "transactionHash": "0xc45526b362bd9433142d796bdcf8978c7fefdf6372101c0785ba80fb7dc5383c", + "state": { + "depositToken": 0, + "blockNumber": 35550113, + "lastRebalancePrice": "170928203043847536", + "state": "2", + "currentTick": "17504", + "currentPrice": "173719650038161649", + "twapSlow": "170979486632777710", + "twapFast": "173130035620737785", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "281779464294314569568170", + "usedToken1": "482141183969592784869171", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16080", + "topTick": "17460" + } + } + }, + { + "transactionHash": "0x17f6d246ad298f8d97ae70895ed4ea2f1687067066cef60d1a35597e5b1dd917", + "state": { + "depositToken": 0, + "blockNumber": 35552885, + "lastRebalancePrice": "173719650038161649", + "state": "2", + "currentTick": "17392", + "currentPrice": "175676148234345684", + "twapSlow": "175255052050578111", + "twapFast": "175518118726223607", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "246955770522211827081593", + "usedToken1": "391032821292537204600188", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15960", + "topTick": "17340" + } + } + }, + { + "transactionHash": "0xe7bd7adbc01c16fe68cbc0430e1d44a59d5215f2167f8d2cb302db554f1672b1", + "state": { + "depositToken": 0, + "blockNumber": 35559026, + "lastRebalancePrice": "175676148234345684", + "state": "2", + "currentTick": "17733", + "currentPrice": "169786868887956920", + "twapSlow": "174817483487108429", + "twapFast": "171441731885099497", + "depositTokenBalance": "2023582031894126116010", + "pairedTokenBalance": "0", + "usedToken0": "204636712992934317469194", + "usedToken1": "346781404415152271705240", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16320", + "topTick": "17700" + } + } + }, + { + "transactionHash": "0x8ba14d1f90990d103aea7517557a78680f4671005e741011a3a64b52cb28bec1", + "state": { + "depositToken": 0, + "blockNumber": 35569327, + "lastRebalancePrice": "169786868887956920", + "state": "2", + "currentTick": "17607", + "currentPrice": "171939609587853222", + "twapSlow": "170996584581440988", + "twapFast": "171784941283686942", + "depositTokenBalance": "1257115084478051346114", + "pairedTokenBalance": "0", + "usedToken0": "210346626563542786226399", + "usedToken1": "320708804446154893086069", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16200", + "topTick": "17580" + } + } + }, + { + "transactionHash": "0x1176c342ee4b0e15ff24b5c3597293c368a7f5856cd8c4ad89a7451cb211877c", + "state": { + "depositToken": 0, + "blockNumber": 35573902, + "lastRebalancePrice": "171939609587853222", + "state": "2", + "currentTick": "17651", + "currentPrice": "171184774900822173", + "twapSlow": "171270384408462008", + "twapFast": "171184774900822173", + "depositTokenBalance": "4950066528175367874774", + "pairedTokenBalance": "0", + "usedToken0": "214613660065867308760491", + "usedToken1": "323115005456654356286469", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16200", + "topTick": "17640" + } + } + }, + { + "transactionHash": "0x7c2e411178eb0d9f73f59f4a4bf9cf2d75ef0636b50a69e1f2cc1af4bec2500c", + "state": { + "depositToken": 0, + "blockNumber": 35577658, + "lastRebalancePrice": "171184774900822173", + "state": "2", + "currentTick": "17849", + "currentPrice": "167828817761448060", + "twapSlow": "170416212403755224", + "twapFast": "168838766989386365", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "212508546793988015073023", + "usedToken1": "335507673834839587519818", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16440", + "topTick": "17820" + } + } + }, + { + "transactionHash": "0xf76a74393afb5edaad759d35dde384f49374d491f9fad25c639bfa42de068f23", + "state": { + "depositToken": 0, + "blockNumber": 35580144, + "lastRebalancePrice": "167828817761448060", + "state": "2", + "currentTick": "17734", + "currentPrice": "169769891898767043", + "twapSlow": "169312154300957531", + "twapFast": "169668065605800107", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "216417167090422679070281", + "usedToken1": "312374121175459200420037", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16320", + "topTick": "17700" + } + } + }, + { + "transactionHash": "0x292bb3e2a2b4dfe2f8953f21b1ba0e577387fabf3c9ff50003ebc1478996ef0b", + "state": { + "depositToken": 0, + "blockNumber": 35582608, + "lastRebalancePrice": "169769891898767043", + "state": "2", + "currentTick": "17558", + "currentPrice": "172784138856104092", + "twapSlow": "172645973726580800", + "twapFast": "172784138856104092", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "222418168143502032151070", + "usedToken1": "277375138028249368153195", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17100", + "topTick": "21120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17100" + } + } + }, + { + "transactionHash": "0x1487080a15495df11ed332fa00e118ad6a4b4dbac01599ec2f8306b7a80adfc6", + "state": { + "depositToken": 0, + "blockNumber": 35592297, + "lastRebalancePrice": "172784138856104092", + "state": "1", + "currentTick": "17437", + "currentPrice": "174887420970251569", + "twapSlow": "175149935813096619", + "twapFast": "174887420970251569", + "depositTokenBalance": "3822607296540172297545", + "pairedTokenBalance": "1", + "usedToken0": "234347063423026958233549", + "usedToken1": "229887885798945305399288", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17100", + "topTick": "21000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17100" + } + } + }, + { + "transactionHash": "0xac7de0be2ec260419ee78e1bdf15f9f4c46a5e713fc29e1ad11a6affd3310b42", + "state": { + "depositToken": 0, + "blockNumber": 35612041, + "lastRebalancePrice": "174887420970251569", + "state": "1", + "currentTick": "17655", + "currentPrice": "171116318105916238", + "twapSlow": "171527469896929738", + "twapFast": "171219013567650086", + "depositTokenBalance": "13130793146952206331146", + "pairedTokenBalance": "1", + "usedToken0": "216906772651609012768093", + "usedToken1": "298959874503111442259458", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17100", + "topTick": "21180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17100" + } + } + }, + { + "transactionHash": "0x173276654ea64d054c09a03fe09eef8bf090d48dfe9f1fb573107eb2b4407ce4", + "state": { + "depositToken": 0, + "blockNumber": 35617801, + "lastRebalancePrice": "171116318105916238", + "state": "1", + "currentTick": "17659", + "currentPrice": "171047888686883954", + "twapSlow": "171064993475752643", + "twapFast": "171064993475752643", + "depositTokenBalance": "2774205911342698996300", + "pairedTokenBalance": "2", + "usedToken0": "219172127701666424419668", + "usedToken1": "298824720455104324948471", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17100", + "topTick": "21180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17100" + } + } + }, + { + "transactionHash": "0xca1836c47df2440af742a8525388b62d50a2c5f6be242f71a3aef62dc302308a", + "state": { + "depositToken": 0, + "blockNumber": 35644982, + "lastRebalancePrice": "171047888686883954", + "state": "1", + "currentTick": "17621", + "currentPrice": "171699074574775020", + "twapSlow": "171699074574775020", + "twapFast": "171699074574775020", + "depositTokenBalance": "29098147176589340528493", + "pairedTokenBalance": "0", + "usedToken0": "251048045304855478580595", + "usedToken1": "284579715059052247711248", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17220", + "topTick": "21180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0xe9d5b5f57e26175ea06e34eaaeef95462bb5749d554a8fe28d0bcc3a7e4446e5", + "state": { + "depositToken": 0, + "blockNumber": 35648929, + "lastRebalancePrice": "171699074574775020", + "state": "1", + "currentTick": "17690", + "currentPrice": "170518487697037917", + "twapSlow": "170757368813723376", + "twapFast": "170518487697037917", + "depositTokenBalance": "6278586607546563561851", + "pairedTokenBalance": "2", + "usedToken0": "251246812623123788854074", + "usedToken1": "314562443503482288284267", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17220", + "topTick": "21240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0xd6a13cd7bbdf5b222446648ee609717c607930af6b3b6fd7e84f36fb1358383d", + "state": { + "depositToken": 0, + "blockNumber": 35679126, + "lastRebalancePrice": "170518487697037917", + "state": "1", + "currentTick": "17637", + "currentPrice": "171424589426156881", + "twapSlow": "171424589426156881", + "twapFast": "171424589426156881", + "depositTokenBalance": "5060266810795283998677", + "pairedTokenBalance": "0", + "usedToken0": "260460922469331695252502", + "usedToken1": "290626622107835942383369", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17220", + "topTick": "21180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0xdde41f529ec853afcd4a1b534e392d8bbe9c7299eee1878a52cf10773718efa0", + "state": { + "depositToken": 0, + "blockNumber": 35722119, + "lastRebalancePrice": "171424589426156881", + "state": "1", + "currentTick": "17889", + "currentPrice": "167158876762102438", + "twapSlow": "167443274302378239", + "twapFast": "167192310209043626", + "depositTokenBalance": "1905625625003547606503", + "pairedTokenBalance": "1", + "usedToken0": "237703771144413761568739", + "usedToken1": "402894724732991770652833", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16440", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0xace451581fe44dff281ffcc0b0d35b2bdcd3537ca1e4bf3b27ec6b5e62b766f5", + "state": { + "depositToken": 0, + "blockNumber": 35724581, + "lastRebalancePrice": "167158876762102438", + "state": "2", + "currentTick": "17999", + "currentPrice": "165330296175678776", + "twapSlow": "166741522347949004", + "twapFast": "165330296175678776", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "235409636997720207342582", + "usedToken1": "407429731455743520623784", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0x4c5fb6889f8bdd100e7717d01ff29de1bbfde4d1101f8ac64d7e9b8e5697a1b7", + "state": { + "depositToken": 0, + "blockNumber": 35740343, + "lastRebalancePrice": "165330296175678776", + "state": "2", + "currentTick": "18123", + "currentPrice": "163292959956468760", + "twapSlow": "163816308171931456", + "twapFast": "163505368219634400", + "depositTokenBalance": "110096754710109374225", + "pairedTokenBalance": "0", + "usedToken0": "233943255731242864344075", + "usedToken1": "416076808616853587284391", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16680", + "topTick": "18120" + } + } + }, + { + "transactionHash": "0xe14351c7dc193f39dc2f5c381151cd4c8d0c1e2071b486cf64c2b568e0401a88", + "state": { + "depositToken": 0, + "blockNumber": 35742806, + "lastRebalancePrice": "163292959956468760", + "state": "2", + "currentTick": "18272", + "currentPrice": "160878051341142773", + "twapSlow": "161345251443151224", + "twapFast": "160878051341142773", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "222317214888851212475965", + "usedToken1": "408632673311772093721797", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16860", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0x4bf23ca553ac3023af76b80a626a0719b9c8f52d4b12a6c5fb66e2f3c6646a72", + "state": { + "depositToken": 0, + "blockNumber": 35745294, + "lastRebalancePrice": "160878051341142773", + "state": "2", + "currentTick": "18194", + "currentPrice": "162137743571426147", + "twapSlow": "159580267134717062", + "twapFast": "160540578776880806", + "depositTokenBalance": "11016277427017527727674", + "pairedTokenBalance": "0", + "usedToken0": "234168498705770856880237", + "usedToken1": "389375612287879253367164", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16740", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0x53035213447e57a26f0e911b1a0eb73918decc831e65dcb5213503ac80307469", + "state": { + "depositToken": 0, + "blockNumber": 35755958, + "lastRebalancePrice": "162137743571426147", + "state": "2", + "currentTick": "18088", + "currentPrice": "163865457979036097", + "twapSlow": "163031913165780163", + "twapFast": "163619856319238730", + "depositTokenBalance": "485864168401357443817", + "pairedTokenBalance": "0", + "usedToken0": "236632471661538128410584", + "usedToken1": "359178579677932393674708", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16680", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0xbd1dd4cbcb33372d9be8e118e0a5cc8ab0fe3bd67961d63d904fda1bffb6f39b", + "state": { + "depositToken": 0, + "blockNumber": 35785158, + "lastRebalancePrice": "163865457979036097", + "state": "2", + "currentTick": "18196", + "currentPrice": "162105320886195699", + "twapSlow": "162706191455541400", + "twapFast": "162170172741517868", + "depositTokenBalance": "921480006738143026382", + "pairedTokenBalance": "0", + "usedToken0": "234799275668932751599167", + "usedToken1": "364800156045730022179177", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16740", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0x9c3b683c222f50601b14b7a732c83b3d5778f4a784bc29f91601460c21932057", + "state": { + "depositToken": 0, + "blockNumber": 35793077, + "lastRebalancePrice": "162105320886195699", + "state": "2", + "currentTick": "18331", + "currentPrice": "159931712598700907", + "twapSlow": "161409799225088968", + "twapFast": "160364090051109689", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "233189154775351368793232", + "usedToken1": "374405657236358936664624", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16920", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xf29f03c5d0107cea691bd0377222c2dee337359c800d2c83af7e8d709480dc21", + "state": { + "depositToken": 0, + "blockNumber": 35808820, + "lastRebalancePrice": "159931712598700907", + "state": "2", + "currentTick": "18292", + "currentPrice": "160556632834758494", + "twapSlow": "160781558285721724", + "twapFast": "160572688498041970", + "depositTokenBalance": "10832030539250665046397", + "pairedTokenBalance": "0", + "usedToken0": "244771060231256600354817", + "usedToken1": "370076745594503439665024", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16860", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0x5195a7cb59fbde6e5e82ad24d252ea2e7b876ea0b1536999baad8e72d1611921", + "state": { + "depositToken": 0, + "blockNumber": 35821035, + "lastRebalancePrice": "160556632834758494", + "state": "2", + "currentTick": "18419", + "currentPrice": "158530557707586049", + "twapSlow": "159006839632703578", + "twapFast": "158736771131791999", + "depositTokenBalance": "1716688306490196237280", + "pairedTokenBalance": "0", + "usedToken0": "244612334151803397774219", + "usedToken1": "379245248082529225534639", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16980", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0x724337390a10e540f612775dc968041ca7f3c15625e207ae7db996a43cbcf062", + "state": { + "depositToken": 0, + "blockNumber": 35835066, + "lastRebalancePrice": "158530557707586049", + "state": "2", + "currentTick": "18532", + "currentPrice": "156749334329971588", + "twapSlow": "157472006005514732", + "twapFast": "157016021484054092", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "243197440915483398590190", + "usedToken1": "387911897198342809071491", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17100", + "topTick": "18480" + } + } + }, + { + "transactionHash": "0x3675f66b0b092c9977533454840f278907177f0ca8adee4214e51d7a24581379", + "state": { + "depositToken": 0, + "blockNumber": 35864077, + "lastRebalancePrice": "156749334329971588", + "state": "2", + "currentTick": "18639", + "currentPrice": "155081140612457493", + "twapSlow": "155282867102907662", + "twapFast": "155143182374191252", + "depositTokenBalance": "432886831445183941125", + "pairedTokenBalance": "0", + "usedToken0": "232123362714147097633510", + "usedToken1": "379645295929771283875253", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17220", + "topTick": "18600" + } + } + }, + { + "transactionHash": "0x120d04f7bdd678a96427d5c2dd56223c2a657b28f46968e32c9323ba98709c09", + "state": { + "depositToken": 0, + "blockNumber": 35878230, + "lastRebalancePrice": "155081140612457493", + "state": "2", + "currentTick": "18759", + "currentPrice": "153231380170204503", + "twapSlow": "153722481374973776", + "twapFast": "153323341986078509", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "230708038486340382844350", + "usedToken1": "388427107741121633700977", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17340", + "topTick": "18720" + } + } + }, + { + "transactionHash": "0x6d82226aa1c4c2498de1d3c8030a7fa446e885ecf9c6fe5044765def1a4dc1b2", + "state": { + "depositToken": 0, + "blockNumber": 35880707, + "lastRebalancePrice": "153231380170204503", + "state": "2", + "currentTick": "18779", + "currentPrice": "152925238959921747", + "twapSlow": "152986418231631770", + "twapFast": "152925238959921747", + "depositTokenBalance": "6832636837652133326516", + "pairedTokenBalance": "0", + "usedToken0": "237311493676265807968944", + "usedToken1": "389935484318346932079317", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17340", + "topTick": "18720" + } + } + }, + { + "transactionHash": "0x2a2efaeccbfa7d46b85a5e9d63fbe33e7f4418a0ce9b7b8e32c82050d17e7f15", + "state": { + "depositToken": 0, + "blockNumber": 35893537, + "lastRebalancePrice": "152925238959921747", + "state": "2", + "currentTick": "18921", + "currentPrice": "150769152808378953", + "twapSlow": "151934497839611210", + "twapFast": "151101193453595197", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "226536884963629207912232", + "usedToken1": "385628588411512857697333", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17520", + "topTick": "18900" + } + } + }, + { + "transactionHash": "0x904fff7bc6b736bb4a8526dbcf0cde00b45b6d8f64b0420118f552b63e2e334a", + "state": { + "depositToken": 0, + "blockNumber": 35904392, + "lastRebalancePrice": "150769152808378953", + "state": "2", + "currentTick": "18848", + "currentPrice": "151873739230886991", + "twapSlow": "151873739230886991", + "twapFast": "151873739230886991", + "depositTokenBalance": "14000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "241785317782118480511645", + "usedToken1": "367089668269445722436810", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8100", + "underTrigger": "7800", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22380" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x38e11755ce092a6bff6b4f2e55c19102edb6d8e6061c2a374cebf81611b0b90d", + "state": { + "depositToken": 0, + "blockNumber": 35933377, + "lastRebalancePrice": "151873739230886991", + "state": "1", + "currentTick": "18813", + "currentPrice": "152406201961752846", + "twapSlow": "151964886258524110", + "twapFast": "152375725292937006", + "depositTokenBalance": "3442601000813934645992", + "pairedTokenBalance": "0", + "usedToken0": "246933378468274452091716", + "usedToken1": "348937087827371000495377", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18360", + "topTick": "22320" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0x4663683da6df1490e038fef7a0064050236eb61117e3fef31bc5dc9eae5404fa", + "state": { + "depositToken": 0, + "blockNumber": 36152327, + "lastRebalancePrice": "152406201961752846", + "state": "1", + "currentTick": "18307", + "currentPrice": "160315990444336359", + "twapSlow": "160332022043380793", + "twapFast": "160315990444336359", + "depositTokenBalance": "2816609592253642118473", + "pairedTokenBalance": "0", + "usedToken0": "230719739057280162906135", + "usedToken1": "102071356548726754031329", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "21840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0xdb07a87784338c0cacdf5f20ff9278788f9a9aa045df597e4c0172f892d68d6f", + "state": { + "depositToken": 0, + "blockNumber": 36154792, + "lastRebalancePrice": "160315990444336359", + "state": "1", + "currentTick": "18295", + "currentPrice": "160508475476700711", + "twapSlow": "160428245309617009", + "twapFast": "160508475476700711", + "depositTokenBalance": "4296698913303145811217", + "pairedTokenBalance": "0", + "usedToken0": "234976090658399674970952", + "usedToken1": "93060302499469944121888", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18300" + }, + "limitPosition": { + "bottomTick": "18300", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0x971b4872573f40746cb9fc714637b91e92a4d115c2f4892e4dde9af344076ad2", + "state": { + "depositToken": 0, + "blockNumber": 36160188, + "lastRebalancePrice": "160508475476700711", + "state": "0", + "currentTick": "18151", + "currentPrice": "162836401975552126", + "twapSlow": "161813808323996173", + "twapFast": "162511070877421234", + "depositTokenBalance": "0", + "pairedTokenBalance": "2", + "usedToken0": "235083585439558390675887", + "usedToken1": "92395368430780605121388", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "18180", + "topTick": "21720" + } + } + }, + { + "transactionHash": "0x9d1509a50f3fc450bd6d75b7eff45747efbd29d8d03ce50ccee6c73d3229e6b1", + "state": { + "depositToken": 0, + "blockNumber": 36164659, + "lastRebalancePrice": "162836401975552126", + "state": "0", + "currentTick": "18215", + "currentPrice": "161797628561140059", + "twapSlow": "161797628561140059", + "twapFast": "161797628561140059", + "depositTokenBalance": "4951356501605194363888", + "pairedTokenBalance": "2", + "usedToken0": "237445716230965696118667", + "usedToken1": "108604400251328221593352", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "18240", + "topTick": "21840" + } + } + }, + { + "transactionHash": "0xc82fa0d8c8c75226d1bf650022d0357dab5ac9c5f90a7e7a66909753e46fffaa", + "state": { + "depositToken": 0, + "blockNumber": 36185834, + "lastRebalancePrice": "161797628561140059", + "state": "0", + "currentTick": "18312", + "currentPrice": "160235856490902820", + "twapSlow": "160235856490902820", + "twapFast": "160235856490902820", + "depositTokenBalance": "2822981660609201223776", + "pairedTokenBalance": "1", + "usedToken0": "202704128398666736985238", + "usedToken1": "121781426492975333757786", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18360" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0xfc5b29e03e61717913da188243ef5436ad9341c3eaf585447dfd1bca506a58f8", + "state": { + "depositToken": 0, + "blockNumber": 36195508, + "lastRebalancePrice": "160235856490902820", + "state": "0", + "currentTick": "18367", + "currentPrice": "159357022230681966", + "twapSlow": "159388895228698325", + "twapFast": "159357022230681966", + "depositTokenBalance": "7191981951638837028093", + "pairedTokenBalance": "1", + "usedToken0": "209329763588942944548078", + "usedToken1": "124915115402114338880021", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "21960" + } + } + }, + { + "transactionHash": "0x9e00ec36edc4719d4479ddd69773c69d4ddb6884f5bf16f172f3d0248143970a", + "state": { + "depositToken": 0, + "blockNumber": 36199346, + "lastRebalancePrice": "159357022230681966", + "state": "0", + "currentTick": "18367", + "currentPrice": "159357022230681966", + "twapSlow": "159357022230681966", + "twapFast": "159357022230681966", + "depositTokenBalance": "2412679882604800161694", + "pairedTokenBalance": "2", + "usedToken0": "211741517343934592586895", + "usedToken1": "124874881693750883845779", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "21960" + } + } + }, + { + "transactionHash": "0x41f7c1f7e71cc13c04592be611f4c0680b0df973ce64aa4911efebba5b026782", + "state": { + "depositToken": 0, + "blockNumber": 36234878, + "lastRebalancePrice": "159357022230681966", + "state": "0", + "currentTick": "18533", + "currentPrice": "156733660963875201", + "twapSlow": "158451316202768452", + "twapFast": "157409032947164238", + "depositTokenBalance": "300000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "204606745515172123373861", + "usedToken1": "172056656687431338953309", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x1c6e01c29edcf3fa9b41b37f59554c0cb1750dd73388718adc52da79899ea412", + "state": { + "depositToken": 0, + "blockNumber": 36278843, + "lastRebalancePrice": "156733660963875201", + "state": "1", + "currentTick": "18528", + "currentPrice": "156812043469290650", + "twapSlow": "156921844835737252", + "twapFast": "156812043469290650", + "depositTokenBalance": "3747847738293018635290", + "pairedTokenBalance": "0", + "usedToken0": "208892292761733218922227", + "usedToken1": "171153863183511674302881", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xabf2e35c4f4285481693ce84649a1b946c3ae4f874cd35cd6f08a49eae466f30", + "state": { + "depositToken": 0, + "blockNumber": 36284193, + "lastRebalancePrice": "156812043469290650", + "state": "1", + "currentTick": "18523", + "currentPrice": "156890465173797841", + "twapSlow": "156890465173797841", + "twapFast": "156890465173797841", + "depositTokenBalance": "3279679676329879315400", + "pairedTokenBalance": "1", + "usedToken0": "212042700852333650493634", + "usedToken1": "168031594425690656747259", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x1d49513c5e33eca35c1a60ef52fac3054b0efc94a739e317f0143750ded953be", + "state": { + "depositToken": 0, + "blockNumber": 36292632, + "lastRebalancePrice": "156890465173797841", + "state": "1", + "currentTick": "18563", + "currentPrice": "156264188015749017", + "twapSlow": "156279814434550592", + "twapFast": "156264188015749017", + "depositTokenBalance": "3333912978957164560093", + "pairedTokenBalance": "0", + "usedToken0": "212790338108621228074923", + "usedToken1": "184859877777746370917271", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xcb696e0ec634b9b5543bf1c163938ccbc0b5122e8623bd05b4cafbf1865e3edd", + "state": { + "depositToken": 0, + "blockNumber": 36306418, + "lastRebalancePrice": "156264188015749017", + "state": "1", + "currentTick": "18499", + "currentPrice": "157267435625611915", + "twapSlow": "157818808421682859", + "twapFast": "157298890685411394", + "depositTokenBalance": "10351662437111231674755", + "pairedTokenBalance": "0", + "usedToken0": "226595531419210382118178", + "usedToken1": "157370516098798171399549", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "22020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x84c7b5c6089d3b954e257280cc869bff098721c0cc13b980107a69982a7fb7c4", + "state": { + "depositToken": 0, + "blockNumber": 36316785, + "lastRebalancePrice": "157267435625611915", + "state": "1", + "currentTick": "18447", + "currentPrice": "158087315136933534", + "twapSlow": "157881945414811328", + "twapFast": "158087315136933534", + "depositTokenBalance": "10551160565726885226839", + "pairedTokenBalance": "1", + "usedToken0": "240661287546541959225997", + "usedToken1": "133457595875205893030694", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "21960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x584d065ae61f8079858cc3d8fd646aacbb430e729f73d91d01ee165763beed62", + "state": { + "depositToken": 0, + "blockNumber": 36339041, + "lastRebalancePrice": "158087315136933534", + "state": "1", + "currentTick": "18426", + "currentPrice": "158419630692433658", + "twapSlow": "158467161334388729", + "twapFast": "158419630692433658", + "depositTokenBalance": "3516126792870322531636", + "pairedTokenBalance": "0", + "usedToken0": "245730199081233514447086", + "usedToken1": "124305352804821613085927", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "21960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xb5897e00a7c40e9d723ea040c58f495a965a414ce117121bee999cb4464d869c", + "state": { + "depositToken": 0, + "blockNumber": 36344115, + "lastRebalancePrice": "158419630692433658", + "state": "1", + "currentTick": "18375", + "currentPrice": "159229593962307838", + "twapSlow": "158784396925393407", + "twapFast": "159118177817448589", + "depositTokenBalance": "199909166051204198154", + "pairedTokenBalance": "1", + "usedToken0": "249637718486073223420580", + "usedToken1": "99140765791576393820646", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "21960" + } + } + }, + { + "transactionHash": "0xbee6827aaba418862935d1cedc26bb313db940d01f0f34b0a4f5fa77b14badcf", + "state": { + "depositToken": 0, + "blockNumber": 36346573, + "lastRebalancePrice": "159229593962307838", + "state": "0", + "currentTick": "18365", + "currentPrice": "159388895228698325", + "twapSlow": "159707976039837245", + "twapFast": "159388895228698325", + "depositTokenBalance": "4149527913353540933775", + "pairedTokenBalance": "0", + "usedToken0": "253791052424177913177794", + "usedToken1": "99088536676552995734040", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "21960" + } + } + }, + { + "transactionHash": "0x95818adcf4be2971916fc0e1efa5243d90922f6ee8b1738997c82b9eb28f0933", + "state": { + "depositToken": 0, + "blockNumber": 36358462, + "lastRebalancePrice": "159388895228698325", + "state": "0", + "currentTick": "18228", + "currentPrice": "161587438806264084", + "twapSlow": "160444288134147970", + "twapFast": "161329118531298094", + "depositTokenBalance": "268949250402672007370", + "pairedTokenBalance": "1", + "usedToken0": "252810147539866577766057", + "usedToken1": "97926495409517927780366", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "18240", + "topTick": "21840" + } + } + }, + { + "transactionHash": "0x31e4372bd3e7f9214e5eba9a6d7ad92726f21db3c2b7f9de7a38afbac09e96d5", + "state": { + "depositToken": 0, + "blockNumber": 36370724, + "lastRebalancePrice": "161587438806264084", + "state": "0", + "currentTick": "18163", + "currentPrice": "162641125246324774", + "twapSlow": "162641125246324774", + "twapFast": "162641125246324774", + "depositTokenBalance": "7224361712946450936381", + "pairedTokenBalance": "1", + "usedToken0": "260097694136795304302580", + "usedToken1": "97686238819788866852550", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "18180", + "topTick": "21780" + } + } + }, + { + "transactionHash": "0xf25b477aa1bb9826b7f94b4ed6409d29eb00e6d136a9f78a059c621be0c6a764", + "state": { + "depositToken": 0, + "blockNumber": 36379047, + "lastRebalancePrice": "162641125246324774", + "state": "0", + "currentTick": "18201", + "currentPrice": "162024292535878182", + "twapSlow": "162024292535878182", + "twapFast": "162024292535878182", + "depositTokenBalance": "20000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "278048170820968017065555", + "usedToken1": "108027633648809566592540", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18240" + }, + "limitPosition": { + "bottomTick": "18240", + "topTick": "21780" + } + } + }, + { + "transactionHash": "0xdeb4c76322bd5d24bf90ae1201036d9917bdfc2e71a3fd81a79368ba50b72e8c", + "state": { + "depositToken": 0, + "blockNumber": 36388382, + "lastRebalancePrice": "162024292535878182", + "state": "0", + "currentTick": "18305", + "currentPrice": "160348055245585131", + "twapSlow": "160524526324248381", + "twapFast": "160444288134147970", + "depositTokenBalance": "3527282446076931902462", + "pairedTokenBalance": "0", + "usedToken0": "275900549319391667806308", + "usedToken1": "143482653694142585331343", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18360" + }, + "limitPosition": { + "bottomTick": "18360", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0xfea0ea0d757b36b55cdc838ebde9fc101155d2026b3a67ab8b5ab4293a9e89f0", + "state": { + "depositToken": 0, + "blockNumber": 36472953, + "lastRebalancePrice": "160348055245585131", + "state": "0", + "currentTick": "18649", + "currentPrice": "154926144732365606", + "twapSlow": "158975043034346278", + "twapFast": "156451808210117864", + "depositTokenBalance": "2858649991713797015000", + "pairedTokenBalance": "2", + "usedToken0": "244660386278511072285214", + "usedToken1": "288315530879458219909151", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "22200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0x8f414134931170895e04e4eed7679aa5523cd9b3e66511145fbab83100d6e15e", + "state": { + "depositToken": 0, + "blockNumber": 36481338, + "lastRebalancePrice": "154926144732365606", + "state": "1", + "currentTick": "18274", + "currentPrice": "160845880556572653", + "twapSlow": "160476378596217681", + "twapFast": "160717261737348196", + "depositTokenBalance": "813230244975160181439", + "pairedTokenBalance": "0", + "usedToken0": "273629263948451670062510", + "usedToken1": "106807285742626540426476", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18300" + }, + "limitPosition": { + "bottomTick": "18300", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0xd3a09b8dd8b19f13e52b113d2a02e60f01830e91520e4a1dcf65254932c894ad", + "state": { + "depositToken": 0, + "blockNumber": 36532488, + "lastRebalancePrice": "160845880556572653", + "state": "0", + "currentTick": "16756", + "currentPrice": "187211511160921722", + "twapSlow": "183578071234379726", + "twapFast": "186594762206470907", + "depositTokenBalance": "58728044075104996912200", + "pairedTokenBalance": "1", + "usedToken0": "298606354995147108649079", + "usedToken1": "86508629010111994675116", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16800" + }, + "limitPosition": { + "bottomTick": "16800", + "topTick": "20340" + } + } + }, + { + "transactionHash": "0xcecc98eec30c0d0c1471f0c5485ed3aaccc516ddaf83ca78b14609eb93ff758f", + "state": { + "depositToken": 0, + "blockNumber": 36560753, + "lastRebalancePrice": "187211511160921722", + "state": "0", + "currentTick": "15237", + "currentPrice": "217920748761847708", + "twapSlow": "218313339706254673", + "twapFast": "217920748761847708", + "depositTokenBalance": "13973688067918826414023", + "pairedTokenBalance": "0", + "usedToken0": "305971300937779999366971", + "usedToken1": "78895117159613559990384", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15240" + }, + "limitPosition": { + "bottomTick": "15240", + "topTick": "18840" + } + } + }, + { + "transactionHash": "0x8e0429fdf52ec9de5ee76edb27e52921314cd226cb671d37de6170b95ba736a5", + "state": { + "depositToken": 0, + "blockNumber": 36569963, + "lastRebalancePrice": "217920748761847708", + "state": "0", + "currentTick": "15267", + "currentPrice": "217267998767048119", + "twapSlow": "217289725566924824", + "twapFast": "217267998767048119", + "depositTokenBalance": "3997633989103788907612", + "pairedTokenBalance": "0", + "usedToken0": "307296871091023630285072", + "usedToken1": "89759788224117156847492", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15300" + }, + "limitPosition": { + "bottomTick": "15300", + "topTick": "18840" + } + } + }, + { + "transactionHash": "0xc985390f61f0f5bb21d5d365be98df5a4d7789527f87f931a5ec1e511ca6c020", + "state": { + "depositToken": 0, + "blockNumber": 36572419, + "lastRebalancePrice": "217267998767048119", + "state": "0", + "currentTick": "15396", + "currentPrice": "214483380214881911", + "twapSlow": "215149277006044075", + "twapFast": "214483380214881911", + "depositTokenBalance": "17024499622866146559", + "pairedTokenBalance": "1", + "usedToken0": "298173724481154580733075", + "usedToken1": "131909540537207937961285", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15420" + }, + "limitPosition": { + "bottomTick": "15420", + "topTick": "19020" + } + } + }, + { + "transactionHash": "0x6235dc67104b627ab003b84b7f0a22a1fb0d2d27e2885c812e8ea8427531415c", + "state": { + "depositToken": 0, + "blockNumber": 36578208, + "lastRebalancePrice": "214483380214881911", + "state": "0", + "currentTick": "15370", + "currentPrice": "215041734632403885", + "twapSlow": "215041734632403885", + "twapFast": "215041734632403885", + "depositTokenBalance": "4853836834357049227980", + "pairedTokenBalance": "1", + "usedToken0": "303004362440899058402672", + "usedToken1": "131604121016338841884626", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15420" + }, + "limitPosition": { + "bottomTick": "15420", + "topTick": "18960" + } + } + }, + { + "transactionHash": "0x1ed8a566b5b395b34d2ffc444d661621490a080d8bfaab480d6d39a3a99b93fc", + "state": { + "depositToken": 0, + "blockNumber": 36582188, + "lastRebalancePrice": "215041734632403885", + "state": "0", + "currentTick": "15474", + "currentPrice": "212817000495821751", + "twapSlow": "214955739438424304", + "twapFast": "213734037964471289", + "depositTokenBalance": "505534563889059065238", + "pairedTokenBalance": "0", + "usedToken0": "298251640640101097188316", + "usedToken1": "155554378457415121419261", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0x4955137cb55c1f8179629549988e7f29d81be71f61abda40aee15709a632a709", + "state": { + "depositToken": 0, + "blockNumber": 36585506, + "lastRebalancePrice": "212817000495821751", + "state": "1", + "currentTick": "15301", + "currentPrice": "216530578765973165", + "twapSlow": "213584483965477617", + "twapFast": "215623102741774581", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "314137727740818633684659", + "usedToken1": "81542451372870545498560", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15360" + }, + "limitPosition": { + "bottomTick": "15360", + "topTick": "18900" + } + } + }, + { + "transactionHash": "0xc9ada9d28f452352b62e7eddbf8d4a2e2f1fddc34fff9da60514e69a13927916", + "state": { + "depositToken": 0, + "blockNumber": 36587970, + "lastRebalancePrice": "216530578765973165", + "state": "0", + "currentTick": "14987", + "currentPrice": "223437159503522110", + "twapSlow": "220485266474022503", + "twapFast": "223325474431525538", + "depositTokenBalance": "37649655791261759461", + "pairedTokenBalance": "0", + "usedToken0": "314456134278868809256583", + "usedToken1": "80272686808698644372212", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15000" + }, + "limitPosition": { + "bottomTick": "15000", + "topTick": "18600" + } + } + }, + { + "transactionHash": "0x98847473bbff52bfc2cb954cd833991bafbaaf626f8fb7652c325cda85220a0a", + "state": { + "depositToken": 0, + "blockNumber": 36590429, + "lastRebalancePrice": "223437159503522110", + "state": "0", + "currentTick": "14529", + "currentPrice": "233908010171152492", + "twapSlow": "233207372653659101", + "twapFast": "233908010171152492", + "depositTokenBalance": "677602100240486901858", + "pairedTokenBalance": "1", + "usedToken0": "315552305342063304798886", + "usedToken1": "78456330798351457380422", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14580" + }, + "limitPosition": { + "bottomTick": "14580", + "topTick": "18120" + } + } + }, + { + "transactionHash": "0x1ac146e4e6162656df52e16dba72f106539cb195693a037f3e67629bd000f196", + "state": { + "depositToken": 0, + "blockNumber": 36592886, + "lastRebalancePrice": "233908010171152492", + "state": "0", + "currentTick": "14595", + "currentPrice": "232369377307787026", + "twapSlow": "232369377307787026", + "twapFast": "232369377307787026", + "depositTokenBalance": "7703144194288477943983", + "pairedTokenBalance": "1", + "usedToken0": "321658062733125589799341", + "usedToken1": "85378791165240034460710", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14640" + }, + "limitPosition": { + "bottomTick": "14640", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0x018ab97437635fcf8f32e8a3abcdc9dfc3c4e99294e581335262bc8c6d00de2b", + "state": { + "depositToken": 0, + "blockNumber": 36595351, + "lastRebalancePrice": "232369377307787026", + "state": "0", + "currentTick": "14263", + "currentPrice": "240213134394751295", + "twapSlow": "238108637402264450", + "twapFast": "240213134394751295", + "depositTokenBalance": "9037637926608287147933", + "pairedTokenBalance": "0", + "usedToken0": "311863826760596210580149", + "usedToken1": "78910708600063942883632", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14280" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0x76ed5013bff8dd92f126c0abbaf3d04661fcddd6792346b8c505f66038703a00", + "state": { + "depositToken": 0, + "blockNumber": 36597808, + "lastRebalancePrice": "240213134394751295", + "state": "0", + "currentTick": "14074", + "currentPrice": "244796106157219100", + "twapSlow": "243672686085991460", + "twapFast": "244673744814990264", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "312041555169024511042879", + "usedToken1": "78168155441786411198441", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14100" + }, + "limitPosition": { + "bottomTick": "14100", + "topTick": "17700" + } + } + }, + { + "transactionHash": "0xe341cf0b37c9a0617384d276e6445b7e08a20fd77682412623cdccbe22723870", + "state": { + "depositToken": 0, + "blockNumber": 36600270, + "lastRebalancePrice": "244796106157219100", + "state": "0", + "currentTick": "13400", + "currentPrice": "261863211658278640", + "twapSlow": "260036660888418302", + "twapFast": "261863211658278640", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "312697111733263944626043", + "usedToken1": "75578783881646433281641", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13440" + }, + "limitPosition": { + "bottomTick": "13440", + "topTick": "16980" + } + } + }, + { + "transactionHash": "0x6475eda96a890a1ca6b94f1ed0bc9875c4635cfd590f1f3aa221f15502f594ea", + "state": { + "depositToken": 0, + "blockNumber": 36602728, + "lastRebalancePrice": "261863211658278640", + "state": "0", + "currentTick": "13263", + "currentPrice": "265475242981828415", + "twapSlow": "263755335650407080", + "twapFast": "265475242981828415", + "depositTokenBalance": "2760261293662731985370", + "pairedTokenBalance": "0", + "usedToken0": "305440171014541187341704", + "usedToken1": "72643300405095937458604", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13320" + }, + "limitPosition": { + "bottomTick": "13320", + "topTick": "16860" + } + } + }, + { + "transactionHash": "0x405eb132749754daecb10d9a8490144c30ec0f5659442a52c28adf61a56877b5", + "state": { + "depositToken": 0, + "blockNumber": 36605186, + "lastRebalancePrice": "265475242981828415", + "state": "0", + "currentTick": "13290", + "currentPrice": "264759462352876496", + "twapSlow": "265236434683213834", + "twapFast": "264759462352876496", + "depositTokenBalance": "7422848630884735843680", + "pairedTokenBalance": "0", + "usedToken0": "312832208282325102797950", + "usedToken1": "72724531101493770927483", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13320" + }, + "limitPosition": { + "bottomTick": "13320", + "topTick": "16860" + } + } + }, + { + "transactionHash": "0x7f79db8d9d8bd3750d66d9777bbc8e0f82c64114e8498a2bdfa9f23af33e2f27", + "state": { + "depositToken": 0, + "blockNumber": 36607646, + "lastRebalancePrice": "264759462352876496", + "state": "0", + "currentTick": "12655", + "currentPrice": "282116060905598848", + "twapSlow": "276723694256272674", + "twapFast": "282031443011470085", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313453060071671281347253", + "usedToken1": "70450421102255778542551", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12660" + }, + "limitPosition": { + "bottomTick": "12660", + "topTick": "16260" + } + } + }, + { + "transactionHash": "0x0409b33fa1f0e9cd31a9e26af248745111f7c03a7b55278e892c339f492b497f", + "state": { + "depositToken": 0, + "blockNumber": 36610115, + "lastRebalancePrice": "282116060905598848", + "state": "0", + "currentTick": "12507", + "currentPrice": "286322217086181940", + "twapSlow": "285321890933736159", + "twapFast": "286322217086181940", + "depositTokenBalance": "2892510747846061135140", + "pairedTokenBalance": "1", + "usedToken0": "316504865465484611810730", + "usedToken1": "70043598700517332010241", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12540" + }, + "limitPosition": { + "bottomTick": "12540", + "topTick": "18540" + } + } + }, + { + "transactionHash": "0x3639757b6b4779b8fd93fd3be1d759a0d1b1d8327453f14571ca2e53c8574250", + "state": { + "depositToken": 0, + "blockNumber": 36612624, + "lastRebalancePrice": "286322217086181940", + "state": "0", + "currentTick": "11763", + "currentPrice": "308435914769071574", + "twapSlow": "290532974658462974", + "twapFast": "305856032750371054", + "depositTokenBalance": "160276018752544231114", + "pairedTokenBalance": "1", + "usedToken0": "317394261248544954318932", + "usedToken1": "67399121937932372643821", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11820" + }, + "limitPosition": { + "bottomTick": "11820", + "topTick": "17760" + } + } + }, + { + "transactionHash": "0xb5e8fe571d48345521926ff9b5f42d10ce7c85356301d768bdfff7aa8c200b69", + "state": { + "depositToken": 0, + "blockNumber": 36615077, + "lastRebalancePrice": "308435914769071574", + "state": "0", + "currentTick": "12070", + "currentPrice": "299111264115668204", + "twapSlow": "305489243967486294", + "twapFast": "299141175242079771", + "depositTokenBalance": "37831262875902360429", + "pairedTokenBalance": "0", + "usedToken0": "301880934472679258051892", + "usedToken1": "118322659830997814155298", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0xe7159cb950a07a9c632c1f1143a02603eb797c8828f66f2ee62f87d1f2806948", + "state": { + "depositToken": 0, + "blockNumber": 36625353, + "lastRebalancePrice": "299111264115668204", + "state": "1", + "currentTick": "12059", + "currentPrice": "299440451066753933", + "twapSlow": "299320704824384577", + "twapFast": "299440451066753933", + "depositTokenBalance": "3656437583191226851121", + "pairedTokenBalance": "0", + "usedToken0": "306412321048294913070872", + "usedToken1": "116695270579529378074860", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0xa0ead3fd629ff08f284c3167f1c42b6519abe0aa2fafff26f51a1080c156e955", + "state": { + "depositToken": 0, + "blockNumber": 36631270, + "lastRebalancePrice": "299440451066753933", + "state": "1", + "currentTick": "11801", + "currentPrice": "307266140758851612", + "twapSlow": "305978393516056622", + "twapFast": "306989739451248279", + "depositTokenBalance": "102771547482755219456", + "pairedTokenBalance": "0", + "usedToken0": "321819465000057116760696", + "usedToken1": "65205970655904255076264", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11820" + }, + "limitPosition": { + "bottomTick": "11820", + "topTick": "17820" + } + } + }, + { + "transactionHash": "0x3608adb99643577e4ea159b21310edf6b98505d110a1e38b241d6a24458891a2", + "state": { + "depositToken": 0, + "blockNumber": 36633736, + "lastRebalancePrice": "307266140758851612", + "state": "0", + "currentTick": "11772", + "currentPrice": "308158461191064393", + "twapSlow": "308960675506832931", + "twapFast": "308158461191064393", + "depositTokenBalance": "24219327410440000000000", + "pairedTokenBalance": "1", + "usedToken0": "346002664316421830555963", + "usedToken1": "65076304248970739170976", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11820" + }, + "limitPosition": { + "bottomTick": "11820", + "topTick": "17760" + } + } + }, + { + "transactionHash": "0x0e9457e05f9d427e3651ff122505e3d77433e19ab80afaf778c2ad2983a777b2", + "state": { + "depositToken": 0, + "blockNumber": 36636193, + "lastRebalancePrice": "308158461191064393", + "state": "0", + "currentTick": "11385", + "currentPrice": "320317342655703064", + "twapSlow": "317003469988317889", + "twapFast": "320317342655703064", + "depositTokenBalance": "3431073970311917532694", + "pairedTokenBalance": "0", + "usedToken0": "349828024682885089139989", + "usedToken1": "63825790482325271354034", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11400" + }, + "limitPosition": { + "bottomTick": "11400", + "topTick": "17400" + } + } + }, + { + "transactionHash": "0x13babc855b9352066405c577bf83ac39f5e48e5d38bb112d95866fc3259f79e8", + "state": { + "depositToken": 0, + "blockNumber": 36638664, + "lastRebalancePrice": "320317342655703064", + "state": "0", + "currentTick": "11242", + "currentPrice": "324930555864507129", + "twapSlow": "324119284549395455", + "twapFast": "324930555864507129", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "347418639466077149960877", + "usedToken1": "62907890764151464193892", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11280" + }, + "limitPosition": { + "bottomTick": "11280", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0x9a25a8f2a47cd99a0d54c0e0e7b91d0d248271b29ce9a97362615c689383b71f", + "state": { + "depositToken": 0, + "blockNumber": 36641128, + "lastRebalancePrice": "324930555864507129", + "state": "0", + "currentTick": "11514", + "currentPrice": "316211990648038095", + "twapSlow": "317225438999134640", + "twapFast": "316528344972034005", + "depositTokenBalance": "1963188010746361531038", + "pairedTokenBalance": "0", + "usedToken0": "333703434702512197957673", + "usedToken1": "112424266558195833612034", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11280", + "topTick": "17460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11280" + } + } + }, + { + "transactionHash": "0x2bdf2f6460d640e613fb879d27c74fa4f91328df1b3f400c66edf4e44e67be94", + "state": { + "depositToken": 0, + "blockNumber": 36644747, + "lastRebalancePrice": "316211990648038095", + "state": "1", + "currentTick": "11268", + "currentPrice": "324086875861809274", + "twapSlow": "320317342655703064", + "twapFast": "322631833970827517", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "348892718524383488029416", + "usedToken1": "63997687876554830652425", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11280" + }, + "limitPosition": { + "bottomTick": "11280", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0xe7ab2d38646e0c45e9b950274365d5831a771536bcae1fa81d1b61aa6a69194a", + "state": { + "depositToken": 0, + "blockNumber": 36647443, + "lastRebalancePrice": "324086875861809274", + "state": "0", + "currentTick": "11397", + "currentPrice": "319933211575491689", + "twapSlow": "323762967162453242", + "twapFast": "320573686236623584", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "340932341291780692323063", + "usedToken1": "88503840826651387158459", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11400" + }, + "limitPosition": { + "bottomTick": "11400", + "topTick": "17400" + } + } + }, + { + "transactionHash": "0x69470768b6b430c7660981c6dac0eb3d5c61769872149ff4c0ac3ebc17a1a0d5", + "state": { + "depositToken": 0, + "blockNumber": 36649902, + "lastRebalancePrice": "319933211575491689", + "state": "0", + "currentTick": "11314", + "currentPrice": "322599574013426175", + "twapSlow": "323827722993515404", + "twapFast": "322599574013426175", + "depositTokenBalance": "4479656023954383435478", + "pairedTokenBalance": "0", + "usedToken0": "345531304959434842894866", + "usedToken1": "88136719854700368527082", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11340" + }, + "limitPosition": { + "bottomTick": "11340", + "topTick": "17340" + } + } + }, + { + "transactionHash": "0xdd8a99e18501ea76248385218e7ef5e5ad320502ee8326239c7601eca4334587", + "state": { + "depositToken": 0, + "blockNumber": 36658184, + "lastRebalancePrice": "322599574013426175", + "state": "0", + "currentTick": "11434", + "currentPrice": "318751704902191598", + "twapSlow": "320798155148684531", + "twapFast": "319549541153094095", + "depositTokenBalance": "1866412414785170224916", + "pairedTokenBalance": "0", + "usedToken0": "341097558978054412400255", + "usedToken1": "108074698477734937970239", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11220", + "topTick": "17400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11220" + } + } + }, + { + "transactionHash": "0x84ed119424f1900d59488c1d6c57150e56c6673670325cb08ac4282df6ef7c51", + "state": { + "depositToken": 0, + "blockNumber": 36665749, + "lastRebalancePrice": "318751704902191598", + "state": "1", + "currentTick": "11572", + "currentPrice": "314383360685146383", + "twapSlow": "314163380333606170", + "twapFast": "314383360685146383", + "depositTokenBalance": "9573933022709085115729", + "pairedTokenBalance": "0", + "usedToken0": "341510224806779663930246", + "usedToken1": "137052240481278317021185", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11220", + "topTick": "17520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11220" + } + } + }, + { + "transactionHash": "0xcba283c21d2b883a3161130b134faabc98e446e22e73c9dad5dfe8494090be1f", + "state": { + "depositToken": 0, + "blockNumber": 36690943, + "lastRebalancePrice": "314383360685146383", + "state": "1", + "currentTick": "11442", + "currentPrice": "318496818250643921", + "twapSlow": "318337617604896178", + "twapFast": "318496818250643921", + "depositTokenBalance": "3876130312117748837123", + "pairedTokenBalance": "0", + "usedToken0": "341411146612717502674235", + "usedToken1": "105890192015135143018543", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11220", + "topTick": "17400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11220" + } + } + }, + { + "transactionHash": "0xcf93e929f926ba2a37b1228245ecf1a9010bc0c4ce660a82d3c9cf88c13bae6a", + "state": { + "depositToken": 0, + "blockNumber": 36696768, + "lastRebalancePrice": "318496818250643921", + "state": "1", + "currentTick": "11496", + "currentPrice": "316781656293676028", + "twapSlow": "316781656293676028", + "twapFast": "316781656293676028", + "depositTokenBalance": "5086000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "338678805612977056151142", + "usedToken1": "115259862552156303897026", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11220", + "topTick": "17460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11220" + } + } + }, + { + "transactionHash": "0xbeaf3f3c258cdcf1e4cb881ab351a6af234461dab10be443141e21a26b93dc26", + "state": { + "depositToken": 0, + "blockNumber": 36704721, + "lastRebalancePrice": "316781656293676028", + "state": "1", + "currentTick": "11055", + "currentPrice": "331063616011141169", + "twapSlow": "320189247743969823", + "twapFast": "327867982592060708", + "depositTokenBalance": "439601862889634164236", + "pairedTokenBalance": "0", + "usedToken0": "357635304700840252265353", + "usedToken1": "57773590514952698431083", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11100" + }, + "limitPosition": { + "bottomTick": "11100", + "topTick": "17040" + } + } + }, + { + "transactionHash": "0x5d2a4f6145ad8bfbef6af965864b15a35957943efc2b9ffcaae2b06d5566f034", + "state": { + "depositToken": 0, + "blockNumber": 36707518, + "lastRebalancePrice": "331063616011141169", + "state": "0", + "currentTick": "11171", + "currentPrice": "327245655938478026", + "twapSlow": "329050375240592395", + "twapFast": "327638566779747364", + "depositTokenBalance": "3386766412128031955392", + "pairedTokenBalance": "0", + "usedToken0": "355929993580016447412874", + "usedToken1": "73098343236011701973508", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11220" + }, + "limitPosition": { + "bottomTick": "11220", + "topTick": "17160" + } + } + }, + { + "transactionHash": "0x2f5acc80a07febd723b2363c03c672e2f600fb7c489c622b365295e6c59b6eb1", + "state": { + "depositToken": 0, + "blockNumber": 36709980, + "lastRebalancePrice": "327245655938478026", + "state": "0", + "currentTick": "11430", + "currentPrice": "318879224710529808", + "twapSlow": "318943003744264161", + "twapFast": "318879224710529808", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "339577752674447815886574", + "usedToken1": "117886125728972018564153", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11160", + "topTick": "17400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11160" + } + } + }, + { + "transactionHash": "0xbfd9db1dfc013fa703c87a05b838e4048a5a989fb3fd33b94748bfef41402f0a", + "state": { + "depositToken": 0, + "blockNumber": 36719814, + "lastRebalancePrice": "318879224710529808", + "state": "1", + "currentTick": "11756", + "currentPrice": "308651884691748362", + "twapSlow": "309177012872244275", + "twapFast": "308651884691748362", + "depositTokenBalance": "5809009599260643310518", + "pairedTokenBalance": "0", + "usedToken0": "315618131039920743096698", + "usedToken1": "181877580900820479394218", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4500", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11220", + "topTick": "17700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11220" + } + } + }, + { + "transactionHash": "0x5eeb2d14376385859e921618d1b6b48c9b83ab7fc0edb9792aebd04d4486773d", + "state": { + "depositToken": 0, + "blockNumber": 36745207, + "lastRebalancePrice": "308651884691748362", + "state": "1", + "currentTick": "9896", + "currentPrice": "371743743627825213", + "twapSlow": "364930046073793172", + "twapFast": "372004042327563185", + "depositTokenBalance": "4091340066064962724678", + "pairedTokenBalance": "1", + "usedToken0": "353271705422874766886366", + "usedToken1": "70032061700014812969128", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "13440" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0x0c544db3b77ea2be394376474602835e0932dc58d37322910107893d660b11b9", + "state": { + "depositToken": 0, + "blockNumber": 36750131, + "lastRebalancePrice": "374654536626625465", + "state": "0", + "currentTick": "8834", + "currentPrice": "413393302474049803", + "twapSlow": "403348388447623614", + "twapFast": "413227986484124011", + "depositTokenBalance": "399796971932596413801", + "pairedTokenBalance": "0", + "usedToken0": "336982161237965169337362", + "usedToken1": "41756192106985393728086", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8880" + }, + "limitPosition": { + "bottomTick": "8880", + "topTick": "12420" + } + } + }, + { + "transactionHash": "0xc8223e59d187382b1e3111d0c7e8a856173d948114771f3f8a610fd1f71d03c1", + "state": { + "depositToken": 0, + "blockNumber": 36752595, + "lastRebalancePrice": "413393302474049803", + "state": "0", + "currentTick": "8439", + "currentPrice": "430048275576865490", + "twapSlow": "430478517425781190", + "twapFast": "430048275576865490", + "depositTokenBalance": "3088766189724795902068", + "pairedTokenBalance": "1", + "usedToken0": "340129239046711797810878", + "usedToken1": "40941974689281221378855", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8460" + }, + "limitPosition": { + "bottomTick": "8460", + "topTick": "12060" + } + } + }, + { + "transactionHash": "0xce0061005c8c00cb41ae5ba74ca5073cf108f413415957c38137134b0a98867a", + "state": { + "depositToken": 0, + "blockNumber": 36755054, + "lastRebalancePrice": "430048275576865490", + "state": "0", + "currentTick": "8309", + "currentPrice": "435675117051063163", + "twapSlow": "433112329654359560", + "twapFast": "435718684562768269", + "depositTokenBalance": "531802900283052589056", + "pairedTokenBalance": "0", + "usedToken0": "340827195320367637705741", + "usedToken1": "40803949333095957024685", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8340" + }, + "limitPosition": { + "bottomTick": "8340", + "topTick": "11880" + } + } + }, + { + "transactionHash": "0x93ef9e77d1c01e4b6f82ece0d5328d6595010704c1ca49c5315572f04fe0dbf9", + "state": { + "depositToken": 0, + "blockNumber": 36757518, + "lastRebalancePrice": "435675117051063163", + "state": "0", + "currentTick": "8418", + "currentPrice": "430952280629177297", + "twapSlow": "431340292860770005", + "twapFast": "430952280629177297", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "332259258293663739857066", + "usedToken1": "59795341842895693826821", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8460" + }, + "limitPosition": { + "bottomTick": "8460", + "topTick": "12000" + } + } + }, + { + "transactionHash": "0x1c2f87fc460fdd75d3f6186bb34c4beeea0512c720d4bc14c74cf172dd94602d", + "state": { + "depositToken": 0, + "blockNumber": 36762595, + "lastRebalancePrice": "430952280629177297", + "state": "0", + "currentTick": "8316", + "currentPrice": "435370266421572630", + "twapSlow": "431556006145543295", + "twapFast": "434456993796824413", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "332158095457149906612532", + "usedToken1": "59335273664144962412824", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8340" + }, + "limitPosition": { + "bottomTick": "8340", + "topTick": "11940" + } + } + }, + { + "transactionHash": "0xdfc024201d3cc07413b9b89bfadc0f4f299515faa0384a27f4c1cb61bd4c6980", + "state": { + "depositToken": 0, + "blockNumber": 36765187, + "lastRebalancePrice": "435370266421572630", + "state": "0", + "currentTick": "8130", + "currentPrice": "443543520360992563", + "twapSlow": "438296894133012711", + "twapFast": "441772978250004896", + "depositTokenBalance": "2304608083802885783425", + "pairedTokenBalance": "0", + "usedToken0": "334049843690293854301958", + "usedToken1": "58664938200908421666919", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8160" + }, + "limitPosition": { + "bottomTick": "8160", + "topTick": "11700" + } + } + }, + { + "transactionHash": "0xfcad31e1d4324294a7dd22562220abd0f9f9b04d8c400ccd2eed9b9b64a2576d", + "state": { + "depositToken": 0, + "blockNumber": 36767647, + "lastRebalancePrice": "443543520360992563", + "state": "0", + "currentTick": "7756", + "currentPrice": "460445296172555905", + "twapSlow": "458699011402204321", + "twapFast": "460445296172555905", + "depositTokenBalance": "919460065600000000000", + "pairedTokenBalance": "0", + "usedToken0": "335459232961860385689734", + "usedToken1": "57578269182369348394951", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7800" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "11340" + } + } + }, + { + "transactionHash": "0x9b37f21eed9ce82f8a8c4ae960bc19d99170931f9eb81de108be383e26b0d8dc", + "state": { + "depositToken": 0, + "blockNumber": 36770110, + "lastRebalancePrice": "460445296172555905", + "state": "0", + "currentTick": "7520", + "currentPrice": "471440488386635430", + "twapSlow": "471346214430287228", + "twapFast": "471440488386635430", + "depositTokenBalance": "200000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "335977685987123615188766", + "usedToken1": "56906571093310836398561", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7560" + }, + "limitPosition": { + "bottomTick": "7560", + "topTick": "11100" + } + } + }, + { + "transactionHash": "0x1389d8c4c0c6d1bd3107cf527ea9ceab0a8ed8cb282e708327de513dc76b2101", + "state": { + "depositToken": 0, + "blockNumber": 36772569, + "lastRebalancePrice": "471440488386635430", + "state": "0", + "currentTick": "7415", + "currentPrice": "476416442767410348", + "twapSlow": "476797709344910907", + "twapFast": "476416442767410348", + "depositTokenBalance": "220187133176503410688", + "pairedTokenBalance": "0", + "usedToken0": "336336097636932238930688", + "usedToken1": "56605341558132046240203", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7440" + }, + "limitPosition": { + "bottomTick": "7440", + "topTick": "11040" + } + } + }, + { + "transactionHash": "0xbd8b3d951eab281a647fdfbfa081340eb713b14212235a3abc8c9cfcaf1b2ee3", + "state": { + "depositToken": 0, + "blockNumber": 36775671, + "lastRebalancePrice": "476416442767410348", + "state": "0", + "currentTick": "7360", + "currentPrice": "479043820501856585", + "twapSlow": "478134546789383989", + "twapFast": "479043820501856585", + "depositTokenBalance": "4023657402175022273381", + "pairedTokenBalance": "0", + "usedToken0": "340435233663192548372612", + "usedToken1": "56451090194982453019751", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7380" + }, + "limitPosition": { + "bottomTick": "7380", + "topTick": "10980" + } + } + }, + { + "transactionHash": "0xbf33606e70b982c8f9a3e9f85d32f2963ee626dba574b161f5a096cc7c027c95", + "state": { + "depositToken": 0, + "blockNumber": 36778309, + "lastRebalancePrice": "479043820501856585", + "state": "0", + "currentTick": "7157", + "currentPrice": "488867289778990703", + "twapSlow": "479331318660312369", + "twapFast": "485360261093953342", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "338012756830959031478152", + "usedToken1": "55437458699159651000314", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7200" + }, + "limitPosition": { + "bottomTick": "7200", + "topTick": "10740" + } + } + }, + { + "transactionHash": "0x8fa92dc20d274ac25b92de60f41b51c0cd687a03580b64b21bb621c7611d13c9", + "state": { + "depositToken": 0, + "blockNumber": 36780765, + "lastRebalancePrice": "488867289778990703", + "state": "0", + "currentTick": "6968", + "currentPrice": "498194277623749598", + "twapSlow": "488525219517931959", + "twapFast": "498194277623749598", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "338270768891700982314894", + "usedToken1": "54914628873250913268426", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7020" + }, + "limitPosition": { + "bottomTick": "7020", + "topTick": "10560" + } + } + }, + { + "transactionHash": "0x12056b4adec1a24233490e55292e1e4bca185eae840a36cd2632e028de2f7cf6", + "state": { + "depositToken": 0, + "blockNumber": 36860795, + "lastRebalancePrice": "498194277623749598", + "state": "0", + "currentTick": "6347", + "currentPrice": "530111314507754945", + "twapSlow": "528259260493204255", + "twapFast": "529263856923564824", + "depositTokenBalance": "36302976390736181124304", + "pairedTokenBalance": "0", + "usedToken0": "276065246566451770212069", + "usedToken1": "40230330956881633922078", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6360" + }, + "limitPosition": { + "bottomTick": "6360", + "topTick": "9960" + } + } + }, + { + "transactionHash": "0x2594565d04eecd57969f29df6d1179366acd1d0b24d6845909c3ebb189416c02", + "state": { + "depositToken": 0, + "blockNumber": 36909083, + "lastRebalancePrice": "530111314507754945", + "state": "0", + "currentTick": "6356", + "currentPrice": "529634452787347361", + "twapSlow": "529581494637883573", + "twapFast": "529634452787347361", + "depositTokenBalance": "7583583360459944759763", + "pairedTokenBalance": "0", + "usedToken0": "276868896045814654700116", + "usedToken1": "37201150522663872823946", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6360" + }, + "limitPosition": { + "bottomTick": "6360", + "topTick": "9960" + } + } + }, + { + "transactionHash": "0xc1dbfdf602e27b60a56f8c1820f46b2972678b2a9a50590eead813bc7ab4e778", + "state": { + "depositToken": 0, + "blockNumber": 36911537, + "lastRebalancePrice": "529634452787347361", + "state": "0", + "currentTick": "6571", + "currentPrice": "518369408435885966", + "twapSlow": "517695999685317221", + "twapFast": "518369408435885966", + "depositTokenBalance": "472385729005808407211", + "pairedTokenBalance": "0", + "usedToken0": "259429742943279871403787", + "usedToken1": "70816205579507473338500", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "10080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0x170d1d2dae54f360b4e034e210c77fe57aa88342ef060e00e4c4beb5f8b159f3", + "state": { + "depositToken": 0, + "blockNumber": 36913976, + "lastRebalancePrice": "518369408435885966", + "state": "1", + "currentTick": "7232", + "currentPrice": "485214682132387947", + "twapSlow": "503351937155536215", + "twapFast": "491710816141261582", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "206994507061045615975388", + "usedToken1": "174951808937069035447314", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7200" + } + } + }, + { + "transactionHash": "0xacc6c5651294eb8bd3ee3052552b1b75380a581b690ae041b12ec6248f61fb62", + "state": { + "depositToken": 0, + "blockNumber": 36916561, + "lastRebalancePrice": "485214682132387947", + "state": "3", + "currentTick": "6141", + "currentPrice": "541144305613566749", + "twapSlow": "506077253083472743", + "twapFast": "536081634102477435", + "depositTokenBalance": "17500000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "216572711527136378714144", + "usedToken1": "155274175751863800065892", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4740", + "topTick": "6120" + } + } + }, + { + "transactionHash": "0x654d26f7ae881b5a405cbc9be7095ad7bc2809ece67afb744dc70916c37d9262", + "state": { + "depositToken": 0, + "blockNumber": 36920398, + "lastRebalancePrice": "541144305613566749", + "state": "2", + "currentTick": "6022", + "currentPrice": "547622065198357372", + "twapSlow": "544618561219355406", + "twapFast": "547020042200637099", + "depositTokenBalance": "828185835271686581609", + "pairedTokenBalance": "0", + "usedToken0": "223733605776621729614506", + "usedToken1": "143474930520154729684386", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4620", + "topTick": "6000" + } + } + }, + { + "transactionHash": "0xc6986136fce5f7e0e45d916d2f89e25dcf7503305b0ae559091571fcad242012", + "state": { + "depositToken": 0, + "blockNumber": 36924272, + "lastRebalancePrice": "547622065198357372", + "state": "2", + "currentTick": "5880", + "currentPrice": "555453377698694145", + "twapSlow": "552683180581494199", + "twapFast": "554399070904137389", + "depositTokenBalance": "109406256686071116449", + "pairedTokenBalance": "0", + "usedToken0": "231182181580397875156587", + "usedToken1": "130248402061962327949539", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4440", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0x089918b10674699c167c3e7f02bf419f0be7b1cff14ed445f5bfb30dee92a38f", + "state": { + "depositToken": 0, + "blockNumber": 36927721, + "lastRebalancePrice": "555453377698694145", + "state": "2", + "currentTick": "5751", + "currentPrice": "562664779248098896", + "twapSlow": "559466872590920459", + "twapFast": "561372201917330730", + "depositTokenBalance": "980137242047161447588", + "pairedTokenBalance": "0", + "usedToken0": "235876747082037993090043", + "usedToken1": "123560522751716521016717", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4320", + "topTick": "5700" + } + } + }, + { + "transactionHash": "0x3506e9fab0866ee430cd52837bc622c1462e10a605936cbfcc7b4095d4de2cf6", + "state": { + "depositToken": 0, + "blockNumber": 36931306, + "lastRebalancePrice": "562664779248098896", + "state": "2", + "currentTick": "5605", + "currentPrice": "570939529995651380", + "twapSlow": "567694593772240894", + "twapFast": "569400149331437153", + "depositTokenBalance": "260718892486496873548", + "pairedTokenBalance": "0", + "usedToken0": "241393533059697232167170", + "usedToken1": "113656465918476725475293", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4200", + "topTick": "5580" + } + } + }, + { + "transactionHash": "0x6587dca5c3bcb16ea3bb207859f2c4bc1f12c3d06e6e9b5fec1e36270445692e", + "state": { + "depositToken": 0, + "blockNumber": 36933765, + "lastRebalancePrice": "570939529995651380", + "state": "2", + "currentTick": "5560", + "currentPrice": "573514418292124393", + "twapSlow": "573514418292124393", + "twapFast": "573514418292124393", + "depositTokenBalance": "1300000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "243972964467177392383389", + "usedToken1": "111435536238814659257421", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4980", + "topTick": "9120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4980" + } + } + }, + { + "transactionHash": "0x6ef3ea560a8471987f9782d1ec3908375bb64f147ea5fc356852e625f250dc88", + "state": { + "depositToken": 0, + "blockNumber": 36942066, + "lastRebalancePrice": "573514418292124393", + "state": "1", + "currentTick": "5457", + "currentPrice": "579451845193593927", + "twapSlow": "577600655330309034", + "twapFast": "578872711919477203", + "depositTokenBalance": "5534856004000865595327", + "pairedTokenBalance": "0", + "usedToken0": "256687788232329714354338", + "usedToken1": "98176946817671088397283", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4980", + "topTick": "9000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4980" + } + } + }, + { + "transactionHash": "0xccf60aecf4520891aec0928196951cbbb47d481799edc5da0b12b374d29bb853", + "state": { + "depositToken": 0, + "blockNumber": 36951217, + "lastRebalancePrice": "579451845193593927", + "state": "1", + "currentTick": "5481", + "currentPrice": "578062897615106454", + "twapSlow": "577831730250790938", + "twapFast": "578062897615106454", + "depositTokenBalance": "24342855497573597166380", + "pairedTokenBalance": "0", + "usedToken0": "229011528015816403281712", + "usedToken1": "81688983204699832748913", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5040", + "topTick": "9000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5040" + } + } + }, + { + "transactionHash": "0xf1a7e95585c773573b4a66e9df70101266e816d16995f413b2d1a2210455e4e5", + "state": { + "depositToken": 0, + "blockNumber": 36956643, + "lastRebalancePrice": "578062897615106454", + "state": "1", + "currentTick": "5527", + "currentPrice": "575410047160059835", + "twapSlow": "577023372228308299", + "twapFast": "575467588164775840", + "depositTokenBalance": "14209143192457009276455", + "pairedTokenBalance": "0", + "usedToken0": "239778387851181079661803", + "usedToken1": "86889214753226107144693", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5040", + "topTick": "9060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5040" + } + } + }, + { + "transactionHash": "0x568396defc60b957db52c696e87574c6b5e58848d9f9f30475321ffbd6f3e8fc", + "state": { + "depositToken": 0, + "blockNumber": 36966928, + "lastRebalancePrice": "575410047160059835", + "state": "1", + "currentTick": "5494", + "currentPrice": "577311941622530199", + "twapSlow": "577947302375158399", + "twapFast": "577311941622530199", + "depositTokenBalance": "30633127330295080427787", + "pairedTokenBalance": "1", + "usedToken0": "270906955887968254813854", + "usedToken1": "82570993850171103411550", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5100", + "topTick": "9060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5100" + } + } + }, + { + "transactionHash": "0x284669b51b93a198edb3d6fde4ac3f89e5c463c55edceba46e96629f140cdf41", + "state": { + "depositToken": 0, + "blockNumber": 36981554, + "lastRebalancePrice": "577311941622530199", + "state": "1", + "currentTick": "5875", + "currentPrice": "555731159938436074", + "twapSlow": "558851828119254817", + "twapFast": "556009081097078875", + "depositTokenBalance": "1615276241723251844016", + "pairedTokenBalance": "0", + "usedToken0": "239156456429733743691518", + "usedToken1": "136960617562314441956509", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4440", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0x9237e350f4108dd18659eea3e3307a73160e62d56f2f27faf18d3e8ac28ee218", + "state": { + "depositToken": 0, + "blockNumber": 36984016, + "lastRebalancePrice": "555731159938436074", + "state": "2", + "currentTick": "6002", + "currentPrice": "548718350435232525", + "twapSlow": "548169933759211217", + "twapFast": "548718350435232525", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "237357822152520950237292", + "usedToken1": "138646648348489509386975", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4560", + "topTick": "6000" + } + } + }, + { + "transactionHash": "0xbabcb35c4ea1c6b6cc14830e41fcc51fd679fe556e60bc720d8827eaf4ae8083", + "state": { + "depositToken": 0, + "blockNumber": 36986476, + "lastRebalancePrice": "548718350435232525", + "state": "2", + "currentTick": "6202", + "currentPrice": "537853536933099986", + "twapSlow": "549542004364895097", + "twapFast": "538014909130323878", + "depositTokenBalance": "5000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "235008074672568707726016", + "usedToken1": "142993601032850496793546", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4800", + "topTick": "6180" + } + } + }, + { + "transactionHash": "0x4ea307f486dea2e94eaf304bc8efdd3336c74f6381ea7d0d652b0937b0a11a32", + "state": { + "depositToken": 0, + "blockNumber": 36989502, + "lastRebalancePrice": "537853536933099986", + "state": "2", + "currentTick": "6087", + "currentPrice": "544074242078567567", + "twapSlow": "540117158887755377", + "twapFast": "541577372608771044", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "236844948186935869683451", + "usedToken1": "130658045687922418158287", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4680", + "topTick": "6060" + } + } + }, + { + "transactionHash": "0x5b64d921fc9e7c19590ab77fbd29497042a271464f83e8779f68d3485e44b68d", + "state": { + "depositToken": 0, + "blockNumber": 36991963, + "lastRebalancePrice": "544074242078567567", + "state": "2", + "currentTick": "6072", + "currentPrice": "544890924967267663", + "twapSlow": "545981742731399375", + "twapFast": "544890924967267663", + "depositTokenBalance": "7472313221493616151137", + "pairedTokenBalance": "0", + "usedToken0": "244083573484801430165341", + "usedToken1": "130053568269352446082697", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4620", + "topTick": "6060" + } + } + }, + { + "transactionHash": "0x7fa6bcf26650d1cbfef183475b4da33c84567af9e1ad24f3f6bc5b574b95f1bf", + "state": { + "depositToken": 0, + "blockNumber": 36998635, + "lastRebalancePrice": "544890924967267663", + "state": "2", + "currentTick": "5930", + "currentPrice": "552683180581494199", + "twapSlow": "549157478787450902", + "twapFast": "552683180581494199", + "depositTokenBalance": "228426721529818568894", + "pairedTokenBalance": "0", + "usedToken0": "232273107391405500946579", + "usedToken1": "108883654104355596853460", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5340", + "topTick": "9480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5340" + } + } + }, + { + "transactionHash": "0x87f79b5072b2d86e8ba1532a5d355d6ca6fc5a8fbec69f299f5b4be522b824a7", + "state": { + "depositToken": 0, + "blockNumber": 37062552, + "lastRebalancePrice": "552683180581494199", + "state": "1", + "currentTick": "7044", + "currentPrice": "494422540452478643", + "twapSlow": "498493268929430124", + "twapFast": "495709647217149650", + "depositTokenBalance": "12869232955059409561656", + "pairedTokenBalance": "0", + "usedToken0": "148935316411906870663354", + "usedToken1": "227222141498073455110888", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7020" + } + } + }, + { + "transactionHash": "0xc2d0c9d97c10ccde7ca1616d9f2f16733f40b005a0b59363dd2e5fcc5722d26e", + "state": { + "depositToken": 0, + "blockNumber": 37065010, + "lastRebalancePrice": "494422540452478643", + "state": "3", + "currentTick": "7201", + "currentPrice": "486721106077837814", + "twapSlow": "487402958719768531", + "twapFast": "486721106077837814", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "144794520549518175590558", + "usedToken1": "223447482204990347982004", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5760", + "topTick": "7200" + } + } + }, + { + "transactionHash": "0xbcb8048d47b1a95347103b91461c1c7e0dbb55a66539edd19b28d6507fdf4d8e", + "state": { + "depositToken": 0, + "blockNumber": 37085231, + "lastRebalancePrice": "486721106077837814", + "state": "2", + "currentTick": "7385", + "currentPrice": "477847766442795673", + "twapSlow": "475987882277733787", + "twapFast": "477847766442795673", + "depositTokenBalance": "11056287252752524830112", + "pairedTokenBalance": "0", + "usedToken0": "153742820261741744288100", + "usedToken1": "225155053690061092399001", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5940", + "topTick": "7380" + } + } + }, + { + "transactionHash": "0x736081e70aa44230a7bbe7f61796cf351091fd168ba6214920a6c61afe9dcc82", + "state": { + "depositToken": 0, + "blockNumber": 37088777, + "lastRebalancePrice": "477847766442795673", + "state": "2", + "currentTick": "7592", + "currentPrice": "468058475822842484", + "twapSlow": "474657046787144116", + "twapFast": "470216396329624422", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "151790690899572010672790", + "usedToken1": "227699164719803626254790", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6180", + "topTick": "7560" + } + } + }, + { + "transactionHash": "0xb0f94d984d63e5bd5e10cbdfa18725bc8ce53cda88141cb3c1269023d4de295c", + "state": { + "depositToken": 0, + "blockNumber": 37091322, + "lastRebalancePrice": "468058475822842484", + "state": "2", + "currentTick": "7721", + "currentPrice": "462059597374698928", + "twapSlow": "462984595009655218", + "twapFast": "462799447460852786", + "depositTokenBalance": "149785971815000000000", + "pairedTokenBalance": "0", + "usedToken0": "150966285785386923542943", + "usedToken1": "229815548222995424105287", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6300", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0x899abbad31385c0f4fb995739a98642c3615a2fb57b8a5615a15ca8232fb4a5d", + "state": { + "depositToken": 0, + "blockNumber": 37093779, + "lastRebalancePrice": "462059597374698928", + "state": "2", + "currentTick": "8189", + "currentPrice": "440934448372753509", + "twapSlow": "447463730962423939", + "twapFast": "440934448372753509", + "depositTokenBalance": "11090000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "147483450011768299769251", + "usedToken1": "237535211086963148508996", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6780", + "topTick": "8160" + } + } + }, + { + "transactionHash": "0xd39fd39bbd05eede8a86f0d07afcf29b2dd1e7438189586bea67fb150c6531e8", + "state": { + "depositToken": 0, + "blockNumber": 37096236, + "lastRebalancePrice": "440934448372753509", + "state": "2", + "currentTick": "8460", + "currentPrice": "429146166848511900", + "twapSlow": "429446659301022514", + "twapFast": "429146166848511900", + "depositTokenBalance": "2983841394412316119796", + "pairedTokenBalance": "0", + "usedToken0": "145282934865457626947324", + "usedToken1": "236794971537107193714563", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7020", + "topTick": "8400" + } + } + }, + { + "transactionHash": "0xca8c450925b8972b643080a54ac47e3f001fb8af2bc474b442af6d21f9d0e995", + "state": { + "depositToken": 0, + "blockNumber": 37098694, + "lastRebalancePrice": "429146166848511900", + "state": "2", + "currentTick": "8816", + "currentPrice": "414138043247711347", + "twapSlow": "417589520251919856", + "twapFast": "413351967277322071", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "142051333728780537224158", + "usedToken1": "241761154339853538100091", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7380", + "topTick": "8760" + } + } + }, + { + "transactionHash": "0x30598164a52a3a5b0cd1a0d07b7aa1082dbdf37f22fe8bcb8231c7ab7fa3c377", + "state": { + "depositToken": 0, + "blockNumber": 37101155, + "lastRebalancePrice": "414138043247711347", + "state": "2", + "currentTick": "9057", + "currentPrice": "404277110927163217", + "twapSlow": "412072624151187354", + "twapFast": "404357970392119759", + "depositTokenBalance": "67303720792550729941", + "pairedTokenBalance": "0", + "usedToken0": "140430898143963571673911", + "usedToken1": "245885728103031472548180", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7620", + "topTick": "9000" + } + } + }, + { + "transactionHash": "0xbe4f20b02080cbccc0db3360d6dec791f43b8a257042ed9a552bb4141e174cdb", + "state": { + "depositToken": 0, + "blockNumber": 37103730, + "lastRebalancePrice": "404277110927163217", + "state": "2", + "currentTick": "9253", + "currentPrice": "396430816716295152", + "twapSlow": "399654784579693514", + "twapFast": "397979838080084772", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "139051273020857617729434", + "usedToken1": "249288278136368856766282", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0xb57895ea050535ff391b3ab20f9b8e8fe78bf97e572942844b326351bdc06156", + "state": { + "depositToken": 0, + "blockNumber": 37106193, + "lastRebalancePrice": "396430816716295152", + "state": "2", + "currentTick": "9078", + "currentPrice": "403429062158797023", + "twapSlow": "400014617795113725", + "twapFast": "403429062158797023", + "depositTokenBalance": "20000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "150730710226381665100016", + "usedToken1": "220157389550949092411506", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7680", + "topTick": "9060" + } + } + }, + { + "transactionHash": "0x12efc54c3679446eee5d3ead8cddb95319a34eedb661c265ef3dee156e5f7a89", + "state": { + "depositToken": 0, + "blockNumber": 37108657, + "lastRebalancePrice": "403429062158797023", + "state": "2", + "currentTick": "9055", + "currentPrice": "404357970392119759", + "twapSlow": "402502287852759306", + "twapFast": "404357970392119759", + "depositTokenBalance": "29753747716966937179531", + "pairedTokenBalance": "0", + "usedToken0": "180947280295081661124383", + "usedToken1": "219096591545810240808943", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7620", + "topTick": "9000" + } + } + }, + { + "transactionHash": "0x8cebe03b403c67dad83fe240f0a171db4a9d06d6ae37de6d0c84dce3fe5ebb67", + "state": { + "depositToken": 0, + "blockNumber": 37111118, + "lastRebalancePrice": "404357970392119759", + "state": "2", + "currentTick": "8680", + "currentPrice": "419808508887536262", + "twapSlow": "416005770291748547", + "twapFast": "419808508887536262", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "204425742930885677294291", + "usedToken1": "163133521737872948513764", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7260", + "topTick": "8640" + } + } + }, + { + "transactionHash": "0x5b5f6facf28d7a2020c7d233ce2a5a48c4fe4ee3d2813b73cff97d98ff4e7d0c", + "state": { + "depositToken": 0, + "blockNumber": 37113581, + "lastRebalancePrice": "419808508887536262", + "state": "2", + "currentTick": "8643", + "currentPrice": "421364599559775908", + "twapSlow": "417923708816574999", + "twapFast": "421364599559775908", + "depositTokenBalance": "4017133171138888584110", + "pairedTokenBalance": "0", + "usedToken0": "208817167698992115019585", + "usedToken1": "162256978367904309261587", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7200", + "topTick": "8640" + } + } + }, + { + "transactionHash": "0x360bb3b9f162f37faa80e1b72b9ac040081f98e73f7248d08224c8767363bfd1", + "state": { + "depositToken": 0, + "blockNumber": 37116047, + "lastRebalancePrice": "421364599559775908", + "state": "2", + "currentTick": "8703", + "currentPrice": "418844107023647163", + "twapSlow": "420102463018239171", + "twapFast": "419263139660789061", + "depositTokenBalance": "3000063142775966625251", + "pairedTokenBalance": "0", + "usedToken0": "211139783604546800380764", + "usedToken1": "163737516170703283361822", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7260", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0x41ce9c773847a167508f5f3dbc10ee8061177d73a62b6281d065ad508d131f2a", + "state": { + "depositToken": 0, + "blockNumber": 37118509, + "lastRebalancePrice": "418844107023647163", + "state": "2", + "currentTick": "9039", + "currentPrice": "405005428600825695", + "twapSlow": "408789357893445014", + "twapFast": "405005428600825695", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "207266622881258182380349", + "usedToken1": "172060151976176947607201", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7620", + "topTick": "9000" + } + } + }, + { + "transactionHash": "0xb5a831d788ab3cf1f611b9722776fba3d0e5989a4d6e73f9c69081666c6dc4d6", + "state": { + "depositToken": 0, + "blockNumber": 37125706, + "lastRebalancePrice": "405005428600825695", + "state": "2", + "currentTick": "9158", + "currentPrice": "400214665109473408", + "twapSlow": "404479289914380865", + "twapFast": "400975757728221925", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "206038669649658086043868", + "usedToken1": "175026416212468004460102", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7740", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x453b46fc5cc3b1c0a004f1ee28bb0221d822e42c2659df65421cfedbfe97ab45", + "state": { + "depositToken": 0, + "blockNumber": 37128159, + "lastRebalancePrice": "400214665109473408", + "state": "2", + "currentTick": "8918", + "currentPrice": "409935514659350832", + "twapSlow": "403429062158797023", + "twapFast": "407687170358308829", + "depositTokenBalance": "12949998741501522069", + "pairedTokenBalance": "0", + "usedToken0": "217042954201231154797508", + "usedToken1": "147928947472231054913658", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7500", + "topTick": "8880" + } + } + }, + { + "transactionHash": "0x28d6d05769719893a44df4970dfcb6199f6dbac45f8a75fab9fa38a798993166", + "state": { + "depositToken": 0, + "blockNumber": 37130615, + "lastRebalancePrice": "409935514659350832", + "state": "2", + "currentTick": "8820", + "currentPrice": "413972429435935275", + "twapSlow": "413972429435935275", + "twapFast": "413972429435935275", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "220152745531614822104982", + "usedToken1": "140388962002513193912848", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8220", + "topTick": "12360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8220" + } + } + }, + { + "transactionHash": "0x6e93ff42504f5b9a0b0f050a6e8a78b17c16c79e3b379d6ff74fe86b747b8ee3", + "state": { + "depositToken": 0, + "blockNumber": 37138168, + "lastRebalancePrice": "413972429435935275", + "state": "1", + "currentTick": "8563", + "currentPrice": "424748866163659309", + "twapSlow": "425131293088482679", + "twapFast": "424748866163659309", + "depositTokenBalance": "16045289696782515362382", + "pairedTokenBalance": "0", + "usedToken0": "253931205691770463010705", + "usedToken1": "98564599254477620696151", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8220", + "topTick": "12120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8220" + } + } + }, + { + "transactionHash": "0x06b6dfc779c63ab5728f4c6e4f543c74c46b562f50b1138c5795f1e0d06e121f", + "state": { + "depositToken": 0, + "blockNumber": 37142818, + "lastRebalancePrice": "424748866163659309", + "state": "1", + "currentTick": "8223", + "currentPrice": "439437891662891944", + "twapSlow": "433328929134751045", + "twapFast": "438559938022793234", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "280459664730750888513369", + "usedToken1": "36699097796153673609598", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8280" + }, + "limitPosition": { + "bottomTick": "8280", + "topTick": "11820" + } + } + }, + { + "transactionHash": "0xb106e8be4e1c6a27e71d90dbef3292bcd27d3bd11acb935aa649d54075194021", + "state": { + "depositToken": 0, + "blockNumber": 37145279, + "lastRebalancePrice": "439437891662891944", + "state": "0", + "currentTick": "7888", + "currentPrice": "454407656225588834", + "twapSlow": "452684269807714509", + "twapFast": "454407656225588834", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "280732386052204721374535", + "usedToken1": "36088753513160960965594", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7920" + }, + "limitPosition": { + "bottomTick": "7920", + "topTick": "11460" + } + } + }, + { + "transactionHash": "0x9b4ffcbadb15f64dceac88ed304a2de327ceb6d4b3da0f4a77091417bc4bbd1f", + "state": { + "depositToken": 0, + "blockNumber": 37150798, + "lastRebalancePrice": "454407656225588834", + "state": "0", + "currentTick": "7715", + "currentPrice": "462336902451305239", + "twapSlow": "457599508680060373", + "twapFast": "459157916883215171", + "depositTokenBalance": "1558191730746165423103", + "pairedTokenBalance": "0", + "usedToken0": "273580250024165786042854", + "usedToken1": "34650627181480374127189", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7740" + }, + "limitPosition": { + "bottomTick": "7740", + "topTick": "11340" + } + } + }, + { + "transactionHash": "0x7573d7f1f824938b9de9515f320d8acf32a55923cedb1cdc8107b8290ae5bc32", + "state": { + "depositToken": 0, + "blockNumber": 37153260, + "lastRebalancePrice": "462336902451305239", + "state": "0", + "currentTick": "7741", + "currentPrice": "461136447793941195", + "twapSlow": "463169816628586766", + "twapFast": "461136447793941195", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "278478483295263047597626", + "usedToken1": "34875043505998083544193", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7800" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "11340" + } + } + }, + { + "transactionHash": "0x3e63b58feb4bee9f6136df71867e00d6803b05067af2231aa5d2a4ae579a934a", + "state": { + "depositToken": 0, + "blockNumber": 37155715, + "lastRebalancePrice": "461136447793941195", + "state": "0", + "currentTick": "7770", + "currentPrice": "459801155967735489", + "twapSlow": "458882518530540728", + "twapFast": "459801155967735489", + "depositTokenBalance": "9131402554024620701010", + "pairedTokenBalance": "0", + "usedToken0": "287584000272561759863864", + "usedToken1": "34926650025525027275141", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7800" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "11340" + } + } + }, + { + "transactionHash": "0x396c93b782cd7dbb762c766c30ecf3fd20813e3d32877eb0ccc2b2dc19b5e3bd", + "state": { + "depositToken": 0, + "blockNumber": 37158178, + "lastRebalancePrice": "459801155967735489", + "state": "0", + "currentTick": "7753", + "currentPrice": "460583443575227002", + "twapSlow": "459939110109020290", + "twapFast": "460583443575227002", + "depositTokenBalance": "24728910000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "312326139023023477014225", + "usedToken1": "34896847786314923577190", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7800" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "11340" + } + } + }, + { + "transactionHash": "0xce5cb696deb3edd0c03cf9a858f7b5102378396226c2a8f818d97fa2c06a2a80", + "state": { + "depositToken": 0, + "blockNumber": 37160640, + "lastRebalancePrice": "460583443575227002", + "state": "0", + "currentTick": "7515", + "currentPrice": "471676255779592227", + "twapSlow": "466423216292498143", + "twapFast": "471676255779592227", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "312518898684853628254651", + "usedToken1": "34483256710813741157571", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7560" + }, + "limitPosition": { + "bottomTick": "7560", + "topTick": "11100" + } + } + }, + { + "transactionHash": "0x4d3b51c511f4b261ef8b77ae1bbbe0a2f8afbf10617dd0e8d8b0ba7c25700f1d", + "state": { + "depositToken": 0, + "blockNumber": 37165477, + "lastRebalancePrice": "471676255779592227", + "state": "0", + "currentTick": "7616", + "currentPrice": "466936538440164077", + "twapSlow": "468245727298552451", + "twapFast": "466936538440164077", + "depositTokenBalance": "14110987751480520232637", + "pairedTokenBalance": "0", + "usedToken0": "316781555297035361271636", + "usedToken1": "45650094496386157729940", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7620" + }, + "limitPosition": { + "bottomTick": "7620", + "topTick": "11220" + } + } + }, + { + "transactionHash": "0x5f38c5efd0b460166c5bcb910984ba3ea59ca5aaa2f9ffb31dfc8b04704dfc4b", + "state": { + "depositToken": 0, + "blockNumber": 37168954, + "lastRebalancePrice": "466936538440164077", + "state": "0", + "currentTick": "7724", + "currentPrice": "461921007214442458", + "twapSlow": "467543920284213515", + "twapFast": "462244448939072935", + "depositTokenBalance": "277986011210000000000", + "pairedTokenBalance": "0", + "usedToken0": "305700089886534844659929", + "usedToken1": "66924656387230035486552", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7560", + "topTick": "11280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7560" + } + } + }, + { + "transactionHash": "0x67e11e88923964d8074f620aee966a9b76cec7ad2299e266ab42df0b16dcc53e", + "state": { + "depositToken": 0, + "blockNumber": 37171417, + "lastRebalancePrice": "461921007214442458", + "state": "1", + "currentTick": "7847", + "currentPrice": "456274458607485608", + "twapSlow": "456913658225423005", + "twapFast": "456274458607485608", + "depositTokenBalance": "274387505509595351128015", + "pairedTokenBalance": "0", + "usedToken0": "568590122275743130442122", + "usedToken1": "92104593592951245219335", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7740", + "topTick": "11400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7740" + } + } + }, + { + "transactionHash": "0x30bdaa9002c08072aa4cda22a0c3f037ece52f82eab940fcbf1528639be1ebd8", + "state": { + "depositToken": 0, + "blockNumber": 37174504, + "lastRebalancePrice": "456274458607485608", + "state": "1", + "currentTick": "7785", + "currentPrice": "459112005682646907", + "twapSlow": "457005045526204672", + "twapFast": "458423888296474026", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "579492469557842116122965", + "usedToken1": "68065005492781837326197", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7800" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "11400" + } + } + }, + { + "transactionHash": "0xf70597a621c0d612fcf96ce022cd77cfa22509eb7eb48935c4015e8cbebacded", + "state": { + "depositToken": 0, + "blockNumber": 37280194, + "lastRebalancePrice": "459112005682646907", + "state": "0", + "currentTick": "6449", + "currentPrice": "524731929564605258", + "twapSlow": "520915524122895890", + "twapFast": "524731929564605258", + "depositTokenBalance": "34982036874766759600841", + "pairedTokenBalance": "0", + "usedToken0": "498172769007479813355556", + "usedToken1": "53115254716298506899217", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6480" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "10020" + } + } + }, + { + "transactionHash": "0xd1b8439c7cf9d38d26f53f8af70097bc4b0e908b1ead9c715f798a5204a71ea4", + "state": { + "depositToken": 0, + "blockNumber": 37282653, + "lastRebalancePrice": "524731929564605258", + "state": "0", + "currentTick": "6225", + "currentPrice": "536617957037656314", + "twapSlow": "535064096840190912", + "twapFast": "536617957037656314", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "497337293032127772341638", + "usedToken1": "50012770332786370604206", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6240" + }, + "limitPosition": { + "bottomTick": "6240", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x76996da476de43104f6bf015575012f64e1920720e3c455478167da403e9fa2a", + "state": { + "depositToken": 0, + "blockNumber": 37300363, + "lastRebalancePrice": "536617957037656314", + "state": "0", + "currentTick": "6260", + "currentPrice": "534743170715590285", + "twapSlow": "534689701745415744", + "twapFast": "534743170715590285", + "depositTokenBalance": "6210921588080769872841", + "pairedTokenBalance": "1", + "usedToken0": "495613106849028666103025", + "usedToken1": "55623820857674990678344", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6300" + }, + "limitPosition": { + "bottomTick": "6300", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xc40ea3ff455b1b636c84d85494b52ab2c78bda2c796b9200bd64555debb72a4b", + "state": { + "depositToken": 0, + "blockNumber": 37310029, + "lastRebalancePrice": "534743170715590285", + "state": "0", + "currentTick": "6362", + "currentPrice": "529316783309257181", + "twapSlow": "530694728602422318", + "twapFast": "529634452787347361", + "depositTokenBalance": "2896815138183505422149", + "pairedTokenBalance": "0", + "usedToken0": "460650910543220867718271", + "usedToken1": "69449727278888557410896", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6420" + }, + "limitPosition": { + "bottomTick": "6420", + "topTick": "9960" + } + } + }, + { + "transactionHash": "0xf66ead2de130d982b5d2cca32d40b6b265258d6bcc6c3721632778b017949a11", + "state": { + "depositToken": 0, + "blockNumber": 37315581, + "lastRebalancePrice": "529316783309257181", + "state": "0", + "currentTick": "6465", + "currentPrice": "523893071684748148", + "twapSlow": "525256897686517020", + "twapFast": "523945460991916622", + "depositTokenBalance": "50123772248364064028", + "pairedTokenBalance": "0", + "usedToken0": "444697879714067616336187", + "usedToken1": "80095005526423402480504", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6480" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0x3477f22de22a1bdbd4caaf7686e441e3cebdce12285e12ca95e14a84c0cbd326", + "state": { + "depositToken": 0, + "blockNumber": 37318988, + "lastRebalancePrice": "523893071684748148", + "state": "0", + "currentTick": "6358", + "currentPrice": "529528541783705202", + "twapSlow": "528840636309520263", + "twapFast": "529369714987588106", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "444921766538013470032395", + "usedToken1": "79663707557433791833500", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6360" + }, + "limitPosition": { + "bottomTick": "6360", + "topTick": "9960" + } + } + }, + { + "transactionHash": "0x26a2fc9086db374dff32a38db7abc8df1ec354b4370dd4a20a493b96e38a777b", + "state": { + "depositToken": 0, + "blockNumber": 37322254, + "lastRebalancePrice": "529528541783705202", + "state": "0", + "currentTick": "6169", + "currentPrice": "539631296408385294", + "twapSlow": "532874934349050921", + "twapFast": "537799756957404246", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "445322232900577333125422", + "usedToken1": "78914525693033673908065", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6180" + }, + "limitPosition": { + "bottomTick": "6180", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0x3931186f491c89dcb011ff92ce61623d686ca19a56b4e877dc605cebda2c3e85", + "state": { + "depositToken": 0, + "blockNumber": 37324712, + "lastRebalancePrice": "539631296408385294", + "state": "0", + "currentTick": "6227", + "currentPrice": "536510649542641290", + "twapSlow": "536510649542641290", + "twapFast": "536510649542641290", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "438793756337300536616065", + "usedToken1": "91003919122038028639025", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6060", + "topTick": "9780" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6060" + } + } + }, + { + "transactionHash": "0xf9260d470f3be027dda998df71c3c358e7f808c261e1d285a757c6b52a0e7a06", + "state": { + "depositToken": 0, + "blockNumber": 37352315, + "lastRebalancePrice": "536510649542641290", + "state": "1", + "currentTick": "5903", + "currentPrice": "554177366704596783", + "twapSlow": "535010595780612851", + "twapFast": "548992764487772643", + "depositTokenBalance": "324717215266613166679", + "pairedTokenBalance": "0", + "usedToken0": "453629589451984990463447", + "usedToken1": "48268867967772987603253", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5940" + }, + "limitPosition": { + "bottomTick": "5940", + "topTick": "9480" + } + } + }, + { + "transactionHash": "0xa5fb5af3e6b7716215601d5e98a3aac2f0947274c111b9a54b379309b0bba614", + "state": { + "depositToken": 0, + "blockNumber": 37354777, + "lastRebalancePrice": "554177366704596783", + "state": "0", + "currentTick": "5920", + "currentPrice": "553236112535840544", + "twapSlow": "552517408782784583", + "twapFast": "553291436147094129", + "depositTokenBalance": "14234447543205077813338", + "pairedTokenBalance": "0", + "usedToken0": "468037663048521620147513", + "usedToken1": "48493708399734209948532", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5940" + }, + "limitPosition": { + "bottomTick": "5940", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0xba4c83f14ea355818af272d62d874d92732071cb9fbc9769ee4fe28d5d8c38c7", + "state": { + "depositToken": 0, + "blockNumber": 37357242, + "lastRebalancePrice": "553236112535840544", + "state": "0", + "currentTick": "5565", + "currentPrice": "573227747090072083", + "twapSlow": "562552263169942275", + "twapFast": "571282179365997917", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "468075816931988136469246", + "usedToken1": "46861682977772188327279", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5580" + }, + "limitPosition": { + "bottomTick": "5580", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0x1038c635f3033b3d969bdd39bcb76f8c05c5e7cb1519a02887ea80fed7153208", + "state": { + "depositToken": 0, + "blockNumber": 37359702, + "lastRebalancePrice": "573227747090072083", + "state": "0", + "currentTick": "4831", + "currentPrice": "616883033112169303", + "twapSlow": "609098543940366711", + "twapFast": "616883033112169303", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "448818003351007172626772", + "usedToken1": "43220675675076005773432", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "4860" + }, + "limitPosition": { + "bottomTick": "4860", + "topTick": "8400" + } + } + }, + { + "transactionHash": "0x0bdf2b8077f39e0bd88fb9022228032c92599049a6266938de932a3944a0c6a9", + "state": { + "depositToken": 0, + "blockNumber": 37362163, + "lastRebalancePrice": "616883033112169303", + "state": "0", + "currentTick": "4476", + "currentPrice": "639174600638657301", + "twapSlow": "645404448696037458", + "twapFast": "643986190476678785", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "449289297545126295513252", + "usedToken1": "42460744009563222153831", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "4500" + }, + "limitPosition": { + "bottomTick": "4500", + "topTick": "8100" + } + } + }, + { + "transactionHash": "0x4662c1ea8990e7c5709da370bfeaa450e746c4bc5f3248bbd16b12f1f4a755fa", + "state": { + "depositToken": 0, + "blockNumber": 37369529, + "lastRebalancePrice": "639174600638657301", + "state": "0", + "currentTick": "4558", + "currentPrice": "633955059251164233", + "twapSlow": "640262067171990778", + "twapFast": "638216605312776866", + "depositTokenBalance": "5426490874010776793543", + "pairedTokenBalance": "0", + "usedToken0": "441172255811412725519788", + "usedToken1": "54274082376426156538154", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "4560" + }, + "limitPosition": { + "bottomTick": "4560", + "topTick": "8160" + } + } + }, + { + "transactionHash": "0x97d47e7613e14ec1e53226647a25f3dbb6a3e133b5bf508fabc97f8f92263b3b", + "state": { + "depositToken": 0, + "blockNumber": 37375342, + "lastRebalancePrice": "633955059251164233", + "state": "0", + "currentTick": "4631", + "currentPrice": "629344267718175488", + "twapSlow": "632372230103957611", + "twapFast": "630478050810535369", + "depositTokenBalance": "543505974190639513575", + "pairedTokenBalance": "1", + "usedToken0": "432257865614678104973226", + "usedToken1": "69547220470119489340784", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4440", + "topTick": "8160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4440" + } + } + }, + { + "transactionHash": "0xafc54ad09e5dfb1c391b715b489b6768af176449ad7019884b922bb8917bf4e5", + "state": { + "depositToken": 0, + "blockNumber": 37402111, + "lastRebalancePrice": "629344267718175488", + "state": "1", + "currentTick": "4745", + "currentPrice": "622210837534817450", + "twapSlow": "622646515807147262", + "twapFast": "622335285924432789", + "depositTokenBalance": "11868958258479910776163", + "pairedTokenBalance": "1", + "usedToken0": "428030657111921186051038", + "usedToken1": "94058993956104049714045", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4500", + "topTick": "8280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4500" + } + } + }, + { + "transactionHash": "0xfca71dd6caab59ee7a6ed06d073c6089407738f1cf95913f4405b2e0e0926bd8", + "state": { + "depositToken": 0, + "blockNumber": 37404570, + "lastRebalancePrice": "622210837534817450", + "state": "1", + "currentTick": "4759", + "currentPrice": "621340395335358081", + "twapSlow": "621340395335358081", + "twapFast": "621340395335358081", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "430917842633393166966109", + "usedToken1": "96470625402839709716076", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4500", + "topTick": "8280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4500" + } + } + }, + { + "transactionHash": "0x92b0302fea46380e0d32daef85985e99ae6c437d3b2d24aedfd9c805c38bff63", + "state": { + "depositToken": 0, + "blockNumber": 37430361, + "lastRebalancePrice": "621340395335358081", + "state": "1", + "currentTick": "4918", + "currentPrice": "611539695108235089", + "twapSlow": "611723175363569952", + "twapFast": "611539695108235089", + "depositTokenBalance": "10302401315267684826865", + "pairedTokenBalance": "0", + "usedToken0": "416180668172518362118370", + "usedToken1": "129982108725498983820651", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4500", + "topTick": "8460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4500" + } + } + }, + { + "transactionHash": "0x4dc8d22219e03557fc3409bb4ac608ed0fef9c1d7583ccb8d98c0c49f500ca03", + "state": { + "depositToken": 0, + "blockNumber": 37488224, + "lastRebalancePrice": "611539695108235089", + "state": "1", + "currentTick": "5202", + "currentPrice": "594417115307706764", + "twapSlow": "594476557019237534", + "twapFast": "594417115307706764", + "depositTokenBalance": "5131147921399686255197", + "pairedTokenBalance": "1", + "usedToken0": "384884834008176625228427", + "usedToken1": "190413954310169895658658", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4500", + "topTick": "8760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4500" + } + } + }, + { + "transactionHash": "0x8e604ae3cc4f105f2d3824a35cb78fc31473654368f4806bdc644a7f7b0067c3", + "state": { + "depositToken": 0, + "blockNumber": 37495900, + "lastRebalancePrice": "594417115307706764", + "state": "1", + "currentTick": "5421", + "currentPrice": "581541526523617207", + "twapSlow": "594595458275406952", + "twapFast": "590802387764800948", + "depositTokenBalance": "20000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "358581442460649637601240", + "usedToken1": "232708708276817988535012", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5400" + } + } + }, + { + "transactionHash": "0xf1583d02a601ecf8e4102c776e0da49c58110efdf95eb1cbb89b8d5d0ad386fd", + "state": { + "depositToken": 0, + "blockNumber": 37498352, + "lastRebalancePrice": "581541526523617207", + "state": "3", + "currentTick": "5493", + "currentPrice": "577369672816692452", + "twapSlow": "578409822074672285", + "twapFast": "577369672816692452", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "357301058121575267322024", + "usedToken1": "234918458885381473377428", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4080", + "topTick": "5460" + } + } + }, + { + "transactionHash": "0x33bfb9953ffb34a0c0adc723217a02b9c1737c7dbbe9d7ea58f7cfad8414da20", + "state": { + "depositToken": 0, + "blockNumber": 37502342, + "lastRebalancePrice": "577369672816692452", + "state": "2", + "currentTick": "5627", + "currentPrice": "569684906351812090", + "twapSlow": "574375292370729148", + "twapFast": "571510726516960264", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "354258712041132368429621", + "usedToken1": "238635599633105396421314", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4200", + "topTick": "5580" + } + } + }, + { + "transactionHash": "0x820c04806f00b9706e458bc3e30cdcdbef78df6f3c481d9b88dcf51aba80009c", + "state": { + "depositToken": 0, + "blockNumber": 37506520, + "lastRebalancePrice": "569684906351812090", + "state": "2", + "currentTick": "5791", + "currentPrice": "560418727529842409", + "twapSlow": "565202349128633417", + "twapFast": "561877639040211357", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "344735864065161637669528", + "usedToken1": "239219457216666956182576", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4380", + "topTick": "5760" + } + } + }, + { + "transactionHash": "0xcd318643bc985a653a7f6849e95d67e5b14b4e65da17f1df373597c2a3400217", + "state": { + "depositToken": 0, + "blockNumber": 37552932, + "lastRebalancePrice": "560418727529842409", + "state": "2", + "currentTick": "5684", + "currentPrice": "566447100784968110", + "twapSlow": "563960332779238774", + "twapFast": "565711234763178993", + "depositTokenBalance": "2656557083866279247198", + "pairedTokenBalance": "0", + "usedToken0": "352826205333103263583212", + "usedToken1": "223214708663873546590138", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4260", + "topTick": "5640" + } + } + }, + { + "transactionHash": "0x8abef9335a1271dae8ded0b4b7579a47d6e4ac27cd85d39aa1b586763922222b", + "state": { + "depositToken": 0, + "blockNumber": 37566665, + "lastRebalancePrice": "566447100784968110", + "state": "2", + "currentTick": "5496", + "currentPrice": "577196496551254982", + "twapSlow": "569798849029931516", + "twapFast": "574375292370729148", + "depositTokenBalance": "1967356201125346679601", + "pairedTokenBalance": "0", + "usedToken0": "369141779972161305104710", + "usedToken1": "197946873958941896957417", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4080", + "topTick": "5460" + } + } + }, + { + "transactionHash": "0xfd6500aeb604c71792babb26412133706dbb83d52f19037fd1c03234b6d15621", + "state": { + "depositToken": 0, + "blockNumber": 37582312, + "lastRebalancePrice": "577196496551254982", + "state": "2", + "currentTick": "5603", + "currentPrice": "571053723611045810", + "twapSlow": "573170430047067377", + "twapFast": "571282179365997917", + "depositTokenBalance": "4483329729391424905000", + "pairedTokenBalance": "0", + "usedToken0": "370886364281619326559745", + "usedToken1": "200949932309879152250601", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4200", + "topTick": "5580" + } + } + }, + { + "transactionHash": "0x00540c3f6e42d63b734f3ee15b61fe285e9df48244d990992098a939809f2fae", + "state": { + "depositToken": 0, + "blockNumber": 37585703, + "lastRebalancePrice": "571053723611045810", + "state": "2", + "currentTick": "5717", + "currentPrice": "564580999416551033", + "twapSlow": "567524319450108753", + "twapFast": "564806865693435999", + "depositTokenBalance": "2000670000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "370739364129206862289692", + "usedToken1": "204618284999983895030996", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4260", + "topTick": "5700" + } + } + }, + { + "transactionHash": "0x1435b4c4a356c9c830946af182b9f94c2bb73c40d36d95bdfd31f094953caf76", + "state": { + "depositToken": 0, + "blockNumber": 37588164, + "lastRebalancePrice": "564580999416551033", + "state": "2", + "currentTick": "5854", + "currentPrice": "556899363149197821", + "twapSlow": "561821456894521905", + "twapFast": "556899363149197821", + "depositTokenBalance": "30000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "368079785713635832565072", + "usedToken1": "209031009685134269471646", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4440", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0xa7358935da389a4d6dd81e7fb37e3d2432cc5d0f35f1c1ddf42b54ead0f7891c", + "state": { + "depositToken": 0, + "blockNumber": 37590664, + "lastRebalancePrice": "556899363149197821", + "state": "2", + "currentTick": "5920", + "currentPrice": "553236112535840544", + "twapSlow": "556342769958220303", + "twapFast": "553236112535840544", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "371873548378723430696944", + "usedToken1": "211237688792433950246216", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4500", + "topTick": "5880" + } + } + }, + { + "transactionHash": "0xbaa23c3aaf14001c762d6c2da5d910fb250246d591e68f3a048909b734093adb", + "state": { + "depositToken": 0, + "blockNumber": 37622603, + "lastRebalancePrice": "553236112535840544", + "state": "2", + "currentTick": "6030", + "currentPrice": "547184164624445576", + "twapSlow": "548115122246986519", + "twapFast": "547403071123534024", + "depositTokenBalance": "599506379973048329053", + "pairedTokenBalance": "0", + "usedToken0": "359214385475113824875630", + "usedToken1": "208491737065053035484624", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4620", + "topTick": "6000" + } + } + }, + { + "transactionHash": "0x9e8a2da0026d98e8b5088a74cb1ced57452de1651e22fb2997668942166f4a03", + "state": { + "depositToken": 0, + "blockNumber": 37629198, + "lastRebalancePrice": "547184164624445576", + "state": "2", + "currentTick": "6177", + "currentPrice": "539199785573787341", + "twapSlow": "548608623224501393", + "twapFast": "540603458818308204", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "356457289494036384232617", + "usedToken1": "213177040836299137268289", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4740", + "topTick": "6120" + } + } + }, + { + "transactionHash": "0x8d3a2b1852460528f3d318859c4862ec66795ae814399fea146ac5a5e6023122", + "state": { + "depositToken": 0, + "blockNumber": 37651797, + "lastRebalancePrice": "539199785573787341", + "state": "2", + "currentTick": "6179", + "currentPrice": "539091961790509621", + "twapSlow": "539793201986786333", + "twapFast": "539307630922899954", + "depositTokenBalance": "10750406000893307713197", + "pairedTokenBalance": "0", + "usedToken0": "367179775630026903198073", + "usedToken1": "213296325498496164120228", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4740", + "topTick": "6120" + } + } + }, + { + "transactionHash": "0x0f5af6fcb61ac934246f728efc942a11732742b7ca01c48b6344865ee2047c88", + "state": { + "depositToken": 0, + "blockNumber": 37660646, + "lastRebalancePrice": "539091961790509621", + "state": "2", + "currentTick": "6283", + "currentPrice": "533514736084985320", + "twapSlow": "534208721536013315", + "twapFast": "533621444367349678", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "356480901495224595471531", + "usedToken1": "211607990918184751953388", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4860", + "topTick": "6240" + } + } + }, + { + "transactionHash": "0xf29beda91616004acb933a4886d415e488f909084c4270e80048330ae716a48c", + "state": { + "depositToken": 0, + "blockNumber": 37670722, + "lastRebalancePrice": "533514736084985320", + "state": "2", + "currentTick": "6411", + "currentPrice": "526729604192930099", + "twapSlow": "529105109517027325", + "twapFast": "527836843194769786", + "depositTokenBalance": "20766314759855142084", + "pairedTokenBalance": "0", + "usedToken0": "353483316546391347063479", + "usedToken1": "215434859960005726443853", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4980", + "topTick": "6360" + } + } + }, + { + "transactionHash": "0x3666733687ad9c40e1a34d68f5aea04da101e81795cf950b3c35815d49df4ac5", + "state": { + "depositToken": 0, + "blockNumber": 37674563, + "lastRebalancePrice": "526729604192930099", + "state": "2", + "currentTick": "6277", + "currentPrice": "533834924964517819", + "twapSlow": "527362027475406973", + "twapFast": "532608576794469655", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "357546898192204159658357", + "usedToken1": "198442074706160332455998", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4860", + "topTick": "6240" + } + } + }, + { + "transactionHash": "0x47c664dba9ba6ef586d2071d33713749dcd6ca9701b8472c0e8fe5493703427d", + "state": { + "depositToken": 0, + "blockNumber": 37677027, + "lastRebalancePrice": "533834924964517819", + "state": "2", + "currentTick": "5886", + "currentPrice": "555120222286185854", + "twapSlow": "551634131901767937", + "twapFast": "555120222286185854", + "depositTokenBalance": "5691361755031268227761", + "pairedTokenBalance": "0", + "usedToken0": "392348504303076409911677", + "usedToken1": "145374568293183549059012", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7900", + "underTrigger": "7600", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5400", + "topTick": "9420" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5400" + } + } + }, + { + "transactionHash": "0x6b45ddf3a17ade5e75eaf811825ecb95973464515ffee7c51c4b924ea67c9a54", + "state": { + "depositToken": 0, + "blockNumber": 37712722, + "lastRebalancePrice": "555120222286185854", + "state": "1", + "currentTick": "6233", + "currentPrice": "536188855790114271", + "twapSlow": "543258783234736149", + "twapFast": "538391632568678427", + "depositTokenBalance": "1559089668482979021013", + "pairedTokenBalance": "0", + "usedToken0": "352435526128118970499835", + "usedToken1": "222544901945131736187660", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5220", + "topTick": "6180" + } + } + }, + { + "transactionHash": "0xc2b4068d32090d156019c691ce5a97d0d9408a0551c8e65c7fa80ba6081101e1", + "state": { + "depositToken": 0, + "blockNumber": 37719101, + "lastRebalancePrice": "536188855790114271", + "state": "2", + "currentTick": "6117", + "currentPrice": "542444546601174127", + "twapSlow": "540387271484316585", + "twapFast": "542010786178854515", + "depositTokenBalance": "8477476412221384785", + "pairedTokenBalance": "0", + "usedToken0": "360973591071873528884644", + "usedToken1": "205288911152956919500589", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5160", + "topTick": "6060" + } + } + }, + { + "transactionHash": "0xc1410fd46f5938cdf0a8a20a89d0806f34a1f31265a8b82ee9eb7398352055da", + "state": { + "depositToken": 0, + "blockNumber": 37723719, + "lastRebalancePrice": "542444546601174127", + "state": "2", + "currentTick": "6231", + "currentPrice": "536296098923160852", + "twapSlow": "539038057984711150", + "twapFast": "536886319683337293", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "358912993641980209082145", + "usedToken1": "209090174042322337753033", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5220", + "topTick": "6180" + } + } + }, + { + "transactionHash": "0x53b7e45741f1d239454aca9224b537a2a731fec9387233ddb81efda046961992", + "state": { + "depositToken": 0, + "blockNumber": 37726176, + "lastRebalancePrice": "536296098923160852", + "state": "2", + "currentTick": "6552", + "currentPrice": "519355197226103511", + "twapSlow": "524207486122198397", + "twapFast": "519355197226103511", + "depositTokenBalance": "996460410768167656649", + "pairedTokenBalance": "0", + "usedToken0": "325832438178955171848870", + "usedToken1": "202329289322292082961245", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5580", + "topTick": "6540" + } + } + }, + { + "transactionHash": "0x0c616d39ff24bb5d8de9dfd25f4e63f6aa525a99477db7e726380da90f50569f", + "state": { + "depositToken": 0, + "blockNumber": 37730482, + "lastRebalancePrice": "519355197226103511", + "state": "2", + "currentTick": "6367", + "currentPrice": "529052204296597666", + "twapSlow": "520707209994382656", + "twapFast": "525572130624169509", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "345397136090885820683076", + "usedToken1": "164887061523993578378974", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5400", + "topTick": "6360" + } + } + }, + { + "transactionHash": "0xa067dd7fc74cc9749acee0c6acefa0f07ab4abf9f2773d4baf09e6f35a8606ae", + "state": { + "depositToken": 0, + "blockNumber": 37733485, + "lastRebalancePrice": "529052204296597666", + "state": "2", + "currentTick": "6499", + "currentPrice": "522114948667657420", + "twapSlow": "527256570888663531", + "twapFast": "524102660349101973", + "depositTokenBalance": "7176200000000000000", + "pairedTokenBalance": "0", + "usedToken0": "343141573158150237624042", + "usedToken1": "169199039996003640363846", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5520", + "topTick": "6480" + } + } + }, + { + "transactionHash": "0x329dc599f4ff55ac33c5ee1f2650971e75651ce33c3079ce5a33c250a86e0a85", + "state": { + "depositToken": 0, + "blockNumber": 37736007, + "lastRebalancePrice": "522114948667657420", + "state": "2", + "currentTick": "6458", + "currentPrice": "524259906870810616", + "twapSlow": "522062742393418078", + "twapFast": "523317134925541244", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "345488436820077136101066", + "usedToken1": "164706670710555383258880", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6060", + "topTick": "8640" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6060" + } + } + }, + { + "transactionHash": "0xdaceca693a0683aa2e9868212114d34c575a1e4539c77ef7fa986e22d32dd3ec", + "state": { + "depositToken": 0, + "blockNumber": 37738466, + "lastRebalancePrice": "524259906870810616", + "state": "1", + "currentTick": "6615", + "currentPrice": "516093707036300990", + "twapSlow": "520551029068610650", + "twapFast": "516506726537072861", + "depositTokenBalance": "26458894690546475461", + "pairedTokenBalance": "0", + "usedToken0": "319318663270789894421589", + "usedToken1": "215128268114882753576831", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5640", + "topTick": "6600" + } + } + }, + { + "transactionHash": "0x433e9512622b111fdb8d207b08f61bbec2fc62811809438b4dd4da5e742226f4", + "state": { + "depositToken": 0, + "blockNumber": 37742917, + "lastRebalancePrice": "516093707036300990", + "state": "2", + "currentTick": "6509", + "currentPrice": "521593120767383562", + "twapSlow": "519614926765430097", + "twapFast": "521488817788937597", + "depositTokenBalance": "254480009632178551319", + "pairedTokenBalance": "0", + "usedToken0": "291384313512659822626603", + "usedToken1": "170964703867861474071406", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5520", + "topTick": "6480" + } + } + }, + { + "transactionHash": "0x5dfaf0e8cbc464db3822c604c998d4bf4fdf9a2eeb8fe6faa005198c1e9a804c", + "state": { + "depositToken": 0, + "blockNumber": 37747213, + "lastRebalancePrice": "521593120767383562", + "state": "2", + "currentTick": "6403", + "currentPrice": "527151135390074162", + "twapSlow": "524941853822445854", + "twapFast": "526308410069043090", + "depositTokenBalance": "350064501000000000000", + "pairedTokenBalance": "0", + "usedToken0": "299467441434443964998827", + "usedToken1": "156284786804442567814589", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5400", + "topTick": "6360" + } + } + }, + { + "transactionHash": "0x1f6f4f68857cebfabd5ef89032ebcf191183836d627c469008b06a812067a413", + "state": { + "depositToken": 0, + "blockNumber": 37754405, + "lastRebalancePrice": "527151135390074162", + "state": "2", + "currentTick": "6307", + "currentPrice": "532235899876387090", + "twapSlow": "527467505154522329", + "twapFast": "531650791510050776", + "depositTokenBalance": "30062258560233624394237", + "pairedTokenBalance": "0", + "usedToken0": "334036019128214794337132", + "usedToken1": "145944920131019619076768", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5940", + "topTick": "8520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5940" + } + } + }, + { + "transactionHash": "0x7cc0c1080e96a14346a7859ccedc67b41e2dc31b50194dd31d1f62ba6ee8a695", + "state": { + "depositToken": 0, + "blockNumber": 37766045, + "lastRebalancePrice": "532235899876387090", + "state": "1", + "currentTick": "6436", + "currentPrice": "525414490514055162", + "twapSlow": "527203850503613170", + "twapFast": "525887552748875835", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313469022774537218089427", + "usedToken1": "184674698954898892558580", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5460", + "topTick": "6420" + } + } + }, + { + "transactionHash": "0x5b616095de26c619a187b5885087950aa48b79101973793bd85e789fc5d23d4b", + "state": { + "depositToken": 0, + "blockNumber": 37770087, + "lastRebalancePrice": "525414490514055162", + "state": "2", + "currentTick": "6604", + "currentPrice": "516661694050752286", + "twapSlow": "520915524122895890", + "twapFast": "518317576678218144", + "depositTokenBalance": "80376026552457069502", + "pairedTokenBalance": "0", + "usedToken0": "310933446902999156188920", + "usedToken1": "189766292602152348094968", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5640", + "topTick": "6600" + } + } + }, + { + "transactionHash": "0x72fa55ec4f2bbd5aa025c166fb70a3a4e5cf7a94f4f5f5fa597d61124eb89753", + "state": { + "depositToken": 0, + "blockNumber": 37781746, + "lastRebalancePrice": "516661694050752286", + "state": "2", + "currentTick": "6614", + "currentPrice": "516145316407004620", + "twapSlow": "517695999685317221", + "twapFast": "516610033047447541", + "depositTokenBalance": "4769606603776930666311", + "pairedTokenBalance": "0", + "usedToken0": "315592520865307629622407", + "usedToken1": "190185878935755966249701", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5640", + "topTick": "6600" + } + } + }, + { + "transactionHash": "0x9ff56a044b3481f07e0f1507c82186e496bb690578106ecb6e37db554625ffa3", + "state": { + "depositToken": 0, + "blockNumber": 37794973, + "lastRebalancePrice": "516145316407004620", + "state": "2", + "currentTick": "6801", + "currentPrice": "506583558132060002", + "twapSlow": "517644235261791042", + "twapFast": "510754411900491273", + "depositTokenBalance": "1066726370000000000000", + "pairedTokenBalance": "0", + "usedToken0": "310582439366892793338135", + "usedToken1": "193892970147416236665215", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "6780" + } + } + }, + { + "transactionHash": "0x7b5ab9632c6ab0e6af9297a286df89e8c5fe9ff34da59a17a8e270e61dc727d1", + "state": { + "depositToken": 0, + "blockNumber": 37797431, + "lastRebalancePrice": "506583558132060002", + "state": "2", + "currentTick": "7057", + "currentPrice": "493780240849529930", + "twapSlow": "498493268929430124", + "twapFast": "493928389735685795", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "306519265408602659009207", + "usedToken1": "201689027361962028591388", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6060", + "topTick": "7020" + } + } + }, + { + "transactionHash": "0xd2d3294572aeb3e5ee8f25ad08ecdb4a6ff5b47b9343269177c56aaf4803d87a", + "state": { + "depositToken": 0, + "blockNumber": 37801043, + "lastRebalancePrice": "493780240849529930", + "state": "2", + "currentTick": "7209", + "currentPrice": "486331904354183257", + "twapSlow": "494175403328332143", + "twapFast": "488183388610305010", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "304211086855293250403335", + "usedToken1": "206399449669252305018409", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6240", + "topTick": "7200" + } + } + }, + { + "transactionHash": "0x8dc7c52ea30e443cd4abe6645ce78fd85905d32e996ed442a917fbe292dd4a47", + "state": { + "depositToken": 0, + "blockNumber": 37803484, + "lastRebalancePrice": "486331904354183257", + "state": "2", + "currentTick": "7692", + "currentPrice": "463401447858514652", + "twapSlow": "461782458622920041", + "twapFast": "463401447858514652", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "287999035956363576390457", + "usedToken1": "215227889332321130090482", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6720", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0xa09bfb28a95f36f682e635fe25153bf8ec808ee745dc59767c23f7ade43bde82", + "state": { + "depositToken": 0, + "blockNumber": 37805946, + "lastRebalancePrice": "463401447858514652", + "state": "2", + "currentTick": "7723", + "currentPrice": "461967199315163902", + "twapSlow": "462429374455164524", + "twapFast": "461967199315163902", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "292534680702685186411145", + "usedToken1": "215972566832481010877974", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6720", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0x4da153e028664e9ad2a5a66ebe77810bf728187ef6a6d7d8dc7c4bdc258b0b47", + "state": { + "depositToken": 0, + "blockNumber": 37809931, + "lastRebalancePrice": "461967199315163902", + "state": "2", + "currentTick": "7826", + "currentPrice": "457233593754042606", + "twapSlow": "459801155967735489", + "twapFast": "457782575941333362", + "depositTokenBalance": "49802356778091431332", + "pairedTokenBalance": "0", + "usedToken0": "288122123521326331244905", + "usedToken1": "217020632932618591278767", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6840", + "topTick": "7800" + } + } + }, + { + "transactionHash": "0xde6b20bb4fd8f046060be8beb5cf9308f8ba6d222e68b63cb2ecea1d2658bef6", + "state": { + "depositToken": 0, + "blockNumber": 37812399, + "lastRebalancePrice": "457233593754042606", + "state": "2", + "currentTick": "7988", + "currentPrice": "449886449428666731", + "twapSlow": "447284790207464357", + "twapFast": "449886449428666731", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "285786611797964138268834", + "usedToken1": "222128371648319427316799", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7020", + "topTick": "7980" + } + } + }, + { + "transactionHash": "0x70b2a1305c95386423fcaf2937102a762405cad11fde73375115b1d252ec6bc1", + "state": { + "depositToken": 0, + "blockNumber": 37815071, + "lastRebalancePrice": "449886449428666731", + "state": "2", + "currentTick": "7880", + "currentPrice": "454771309610163059", + "twapSlow": "451870211696372738", + "twapFast": "454680368989561456", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "296501774075568772394102", + "usedToken1": "198446164619563651315751", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6900", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0xf7d901287e5c0ce656e57a14f18b084ea76282cbc9360068383acc51e0c003b9", + "state": { + "depositToken": 0, + "blockNumber": 37827250, + "lastRebalancePrice": "454771309610163059", + "state": "2", + "currentTick": "7736", + "currentPrice": "461367062136094540", + "twapSlow": "455089745044783778", + "twapFast": "458744881303344541", + "depositTokenBalance": "301500000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "308456710216354629570147", + "usedToken1": "171589626981770178994128", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6780", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0x360c1821c896b9064d1710ca2c21725e824296ab39e7153ad0d11d2067da010a", + "state": { + "depositToken": 0, + "blockNumber": 37829859, + "lastRebalancePrice": "461367062136094540", + "state": "2", + "currentTick": "7887", + "currentPrice": "454453096991211393", + "twapSlow": "458469730685303674", + "twapFast": "455453944291436430", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "306067039001398119974510", + "usedToken1": "176501681425998214982892", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6900", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0xdca643ec65276fe9ec45b4d735613236daf5a4c8c0a053b47c72fb5a0ec12e74", + "state": { + "depositToken": 0, + "blockNumber": 37832319, + "lastRebalancePrice": "454453096991211393", + "state": "2", + "currentTick": "8041", + "currentPrice": "447508477335520181", + "twapSlow": "449032519360986141", + "twapFast": "448269850662932041", + "depositTokenBalance": "17519052772912502758", + "pairedTokenBalance": "0", + "usedToken0": "245184633944882958356930", + "usedToken1": "146718812640282333490515", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7080", + "topTick": "8040" + } + } + }, + { + "transactionHash": "0x6964fff3dd65a2abd42e1dcbe481f4ced98387ca8127dc3c46f222bfa11ae2c7", + "state": { + "depositToken": 0, + "blockNumber": 37834740, + "lastRebalancePrice": "447508477335520181", + "state": "2", + "currentTick": "9233", + "currentPrice": "397224432020402767", + "twapSlow": "399415075614074827", + "twapFast": "397224432020402767", + "depositTokenBalance": "2232150024585873706983", + "pairedTokenBalance": "0", + "usedToken0": "228813351569480502743709", + "usedToken1": "177211721953895510629241", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8220", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0x326e1326766cc6a3cbcaad150bdd4839ff016ad0b7b3f93b46e0bfe8a40daab0", + "state": { + "depositToken": 0, + "blockNumber": 37837191, + "lastRebalancePrice": "397224432020402767", + "state": "2", + "currentTick": "8947", + "currentPrice": "408748483045140500", + "twapSlow": "406709943151688410", + "twapFast": "408748483045140500", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "245438203923805412497509", + "usedToken1": "131284880396740076813835", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8580", + "topTick": "11160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8580" + } + } + }, + { + "transactionHash": "0x401784b99a54334b4a9ff9086f152032f1a3732253159487c6aee08296763827", + "state": { + "depositToken": 0, + "blockNumber": 37839650, + "lastRebalancePrice": "408748483045140500", + "state": "1", + "currentTick": "9130", + "currentPrice": "401336780295137123", + "twapSlow": "403388723286468376", + "twapFast": "401256524977576358", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "220424376057901903903369", + "usedToken1": "181805018775149408231440", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8160", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x33eb51182910f88567951e6675f8b3eb68aca45bc75c68822b90f871271f74ac", + "state": { + "depositToken": 0, + "blockNumber": 37842114, + "lastRebalancePrice": "401336780295137123", + "state": "2", + "currentTick": "9322", + "currentPrice": "393704995267898019", + "twapSlow": "397065581962094709", + "twapFast": "393704995267898019", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "218249859284120485476884", + "usedToken1": "186327722439495123475638", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8340", + "topTick": "9300" + } + } + }, + { + "transactionHash": "0x8c3389f8bd90b0bb86f73bf0bca11ce4f59c95891cc781fa50bcd60e5a8d1834", + "state": { + "depositToken": 0, + "blockNumber": 37844579, + "lastRebalancePrice": "393704995267898019", + "state": "2", + "currentTick": "9162", + "currentPrice": "400054619256893237", + "twapSlow": "398736680703756816", + "twapFast": "400054619256893237", + "depositTokenBalance": "1161863132245046131997", + "pairedTokenBalance": "0", + "usedToken0": "230362013481363692869389", + "usedToken1": "158545096145103942013833", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8160", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x7f879de9a5d5d38db30d0d02f5ab0f42e7a893085e2b9931508afa37555a24ef", + "state": { + "depositToken": 0, + "blockNumber": 37847041, + "lastRebalancePrice": "400054619256893237", + "state": "2", + "currentTick": "9006", + "currentPrice": "406344087155239295", + "twapSlow": "405897376730292308", + "twapFast": "406344087155239295", + "depositTokenBalance": "233201894562599952452", + "pairedTokenBalance": "0", + "usedToken0": "238832940250468307185074", + "usedToken1": "138272070719494647323539", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8640", + "topTick": "11220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8640" + } + } + }, + { + "transactionHash": "0x8a29419ef596a0b3f04db474309137f3bee87b9b92ca0e2e1f5872e9c7193e2f", + "state": { + "depositToken": 0, + "blockNumber": 37858466, + "lastRebalancePrice": "393704995267898019", + "state": "2", + "currentTick": "9477", + "currentPrice": "387649918654914594", + "twapSlow": "394532603062314023", + "twapFast": "387649918654914594", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "161806383852337018974581", + "usedToken1": "149627233296659807836816", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8520", + "topTick": "9420" + } + } + }, + { + "transactionHash": "0x0dab3a6ba6f7e3a3dc8050a29a670f4029cfb83e17e034aa0788609e51425c3c", + "state": { + "depositToken": 0, + "blockNumber": 37860925, + "lastRebalancePrice": "387649918654914594", + "state": "2", + "currentTick": "9330", + "currentPrice": "393390172958250386", + "twapSlow": "392525709059155490", + "twapFast": "393390172958250386", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "168123593895394007485068", + "usedToken1": "133408313136211250822423", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8340", + "topTick": "9300" + } + } + }, + { + "transactionHash": "0xb233f7faeaa58eafd750455be1a58d8d43b58caabaa9476ecbf7fad7ff4d19cb", + "state": { + "depositToken": 0, + "blockNumber": 37864271, + "lastRebalancePrice": "393390172958250386", + "state": "2", + "currentTick": "9219", + "currentPrice": "397780907844093932", + "twapSlow": "395124816405706910", + "twapFast": "397661597434617962", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "172884871680917862595663", + "usedToken1": "121386146400760167076198", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8220", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0xfea3c90815aeb0abfb4f5861ef7ff49ed4372dd1b458864a45107dc0495e6b48", + "state": { + "depositToken": 0, + "blockNumber": 37871229, + "lastRebalancePrice": "397780907844093932", + "state": "2", + "currentTick": "9061", + "currentPrice": "404115440502419317", + "twapSlow": "401617800336115773", + "twapFast": "403146774741543698", + "depositTokenBalance": "928138382651569766018", + "pairedTokenBalance": "0", + "usedToken0": "180300291489462014903685", + "usedToken1": "105292562814982718124097", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8700", + "topTick": "11280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0xeea31e47b1ee6c30e0e248d2d2da90d3e0c022e47be9a35f395c8cd83fbc3587", + "state": { + "depositToken": 0, + "blockNumber": 37878391, + "lastRebalancePrice": "404115440502419317", + "state": "1", + "currentTick": "8710", + "currentPrice": "418551033389906466", + "twapSlow": "414718213524665209", + "twapFast": "418299990642155948", + "depositTokenBalance": "71648789890908465713", + "pairedTokenBalance": "1", + "usedToken0": "210980812644471582580100", + "usedToken1": "31541867962774002482936", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8760" + }, + "limitPosition": { + "bottomTick": "8760", + "topTick": "10980" + } + } + }, + { + "transactionHash": "0x9166d26018f5fb6dd887203610a835a8cb5c1cc2f295c2931396e8363b5490d9", + "state": { + "depositToken": 0, + "blockNumber": 37882786, + "lastRebalancePrice": "418551033389906466", + "state": "0", + "currentTick": "8813", + "currentPrice": "414262297085241095", + "twapSlow": "415423798786534647", + "twapFast": "414303723314949620", + "depositTokenBalance": "2052192222320294933289", + "pairedTokenBalance": "0", + "usedToken0": "207384058338992187800432", + "usedToken1": "44411512702896093231310", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8820" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "11100" + } + } + }, + { + "transactionHash": "0x21edf2eb7986ef37fe207e33ecb1c79d54bf82203779a90d39090751e5142162", + "state": { + "depositToken": 0, + "blockNumber": 37885241, + "lastRebalancePrice": "414262297085241095", + "state": "0", + "currentTick": "8983", + "currentPrice": "407279707326232181", + "twapSlow": "408503319769610089", + "twapFast": "407564888664355297", + "depositTokenBalance": "7777000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "199465696809813326274877", + "usedToken1": "82721298850813555902860", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8760", + "topTick": "11160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8760" + } + } + }, + { + "transactionHash": "0xa319f32cbc75abf1a230e7393c8289b6734998f5447e0dadca45eb853bcd887b", + "state": { + "depositToken": 0, + "blockNumber": 37891837, + "lastRebalancePrice": "407279707326232181", + "state": "1", + "currentTick": "9153", + "currentPrice": "400414812467497002", + "twapSlow": "400575002418974448", + "twapFast": "400414812467497002", + "depositTokenBalance": "3844680247205467978193", + "pairedTokenBalance": "1", + "usedToken0": "186922165753742891382063", + "usedToken1": "123639354039711845855939", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8700", + "topTick": "11340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0xcc9cc9d5f296c96d1949fbdf162cd3a4546b6ded7951b9c27f3ca1bbcf72b54a", + "state": { + "depositToken": 0, + "blockNumber": 37894426, + "lastRebalancePrice": "400414812467497002", + "state": "1", + "currentTick": "9165", + "currentPrice": "399934626870393378", + "twapSlow": "399934626870393378", + "twapFast": "399934626870393378", + "depositTokenBalance": "4171149893492625062347", + "pairedTokenBalance": "1", + "usedToken0": "178047871142343930429078", + "usedToken1": "117768189168777889212260", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8760", + "topTick": "11340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "8760" + } + } + }, + { + "transactionHash": "0xe472b59480c703461df32c545237afaf2a21d968e017e78c08f11650526c88a9", + "state": { + "depositToken": 0, + "blockNumber": 37898064, + "lastRebalancePrice": "399934626870393378", + "state": "1", + "currentTick": "9236", + "currentPrice": "397105288520290918", + "twapSlow": "397900254050272177", + "twapFast": "397383345628265786", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "171911869439194483273366", + "usedToken1": "133139578667357949108458", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8280", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0x6ea32bbc02e65e3730332ed683c6072aca452cddf6a035376a24899ff886e0a1", + "state": { + "depositToken": 0, + "blockNumber": 37900835, + "lastRebalancePrice": "397105288520290918", + "state": "2", + "currentTick": "9484", + "currentPrice": "387378672221278923", + "twapSlow": "395915817226303284", + "twapFast": "389476070060877052", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "169794565328376774998454", + "usedToken1": "138538275563218666878712", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8520", + "topTick": "9480" + } + } + }, + { + "transactionHash": "0xc9fa65cce67b96f2524394431dcf4a09339bc1c9da9ba3188ab1c6860ecce48a", + "state": { + "depositToken": 0, + "blockNumber": 37910744, + "lastRebalancePrice": "387378672221278923", + "state": "2", + "currentTick": "9599", + "currentPrice": "382949555175919286", + "twapSlow": "383716182327174050", + "twapFast": "383256022067383326", + "depositTokenBalance": "1033418889133834737121", + "pairedTokenBalance": "0", + "usedToken0": "166773879701394558186091", + "usedToken1": "138557391654553668392200", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8640", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x2d0af7ffad4edbc0db2db29085d3f642ae2ee7801fe9f55dc7516a7958a22c85", + "state": { + "depositToken": 0, + "blockNumber": 37913838, + "lastRebalancePrice": "382949555175919286", + "state": "2", + "currentTick": "9782", + "currentPrice": "376005655959303772", + "twapSlow": "380430535967582985", + "twapFast": "377625880255931798", + "depositTokenBalance": "773999571071310617198", + "pairedTokenBalance": "0", + "usedToken0": "165997666691228286052292", + "usedToken1": "142486131199388244824793", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0x2c0f303a3bb9d4e6073972dc09c2b6c55a6a3b2a830b17fb44f8c9d275e2e276", + "state": { + "depositToken": 0, + "blockNumber": 37916868, + "lastRebalancePrice": "376005655959303772", + "state": "2", + "currentTick": "9912", + "currentPrice": "371149458906313162", + "twapSlow": "373719116817205079", + "twapFast": "372041242731795941", + "depositTokenBalance": "789159211755297582973", + "pairedTokenBalance": "0", + "usedToken0": "165404010401668833989896", + "usedToken1": "145083230308423137390524", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0x7b6febe7225e35a0c8d0bf10d030d6dd3f12e17c19804e2d410702af17cc1140", + "state": { + "depositToken": 0, + "blockNumber": 37923367, + "lastRebalancePrice": "371149458906313162", + "state": "2", + "currentTick": "9805", + "currentPrice": "375141879861956637", + "twapSlow": "374467265543382360", + "twapFast": "374879385554275587", + "depositTokenBalance": "30978250188745020090", + "pairedTokenBalance": "0", + "usedToken0": "171065997445735381787719", + "usedToken1": "130232317752669692564230", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0x4f94ae9e8984615a9e057b3a50d56e5f953889c4d721d06378bc8e6179f59e58", + "state": { + "depositToken": 0, + "blockNumber": 37934705, + "lastRebalancePrice": "375141879861956637", + "state": "2", + "currentTick": "9931", + "currentPrice": "370444979625005680", + "twapSlow": "371260814878839973", + "twapFast": "369593977748541995", + "depositTokenBalance": "1131002502255795081319", + "pairedTokenBalance": "0", + "usedToken0": "171052029020307600245596", + "usedToken1": "133089589835111387354867", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0xe533231ed30fdf14d720a8905dce7927092254d9d59b6adebd21d695f01a9431", + "state": { + "depositToken": 0, + "blockNumber": 37937163, + "lastRebalancePrice": "370444979625005680", + "state": "2", + "currentTick": "9782", + "currentPrice": "376005655959303772", + "twapSlow": "371260814878839973", + "twapFast": "376043256524899702", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "175905317224338590314282", + "usedToken1": "114779629308220553756828", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9420", + "topTick": "12000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9420" + } + } + }, + { + "transactionHash": "0x8fa5fa7834bee770be8ef2707bd69f193e105e799fa4f285fd253eb5176c9b4a", + "state": { + "depositToken": 0, + "blockNumber": 37941039, + "lastRebalancePrice": "376005655959303772", + "state": "1", + "currentTick": "9922", + "currentPrice": "370778513497982896", + "twapSlow": "374542162741163692", + "twapFast": "372227300561006711", + "depositTokenBalance": "38000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "164246796276496514352082", + "usedToken1": "146154971144242484844712", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0x112e4d546334603f1c27094060ee70fe9800ecf8205f52f43646480387d0afdd", + "state": { + "depositToken": 0, + "blockNumber": 37943501, + "lastRebalancePrice": "370778513497982896", + "state": "2", + "currentTick": "10147", + "currentPrice": "362529558115694763", + "twapSlow": "364055307805176264", + "twapFast": "362529558115694763", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "162411376186037981336218", + "usedToken1": "151114300734788455305928", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9180", + "topTick": "10140" + } + } + }, + { + "transactionHash": "0x56a9e7af32283df85e361fc44876d0ac2cfa3155ae1bdf45fc04d483fa9dff5d", + "state": { + "depositToken": 0, + "blockNumber": 37946361, + "lastRebalancePrice": "362529558115694763", + "state": "2", + "currentTick": "9910", + "currentPrice": "371223692509589014", + "twapSlow": "364128122507290377", + "twapFast": "368450067588859235", + "depositTokenBalance": "1993643908986834139807", + "pairedTokenBalance": "0", + "usedToken0": "177985938830202727029313", + "usedToken1": "114161033157912311910709", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "12120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x272a0e6dd8b6b2028083da75df614a6814935c33b70b8794c463011b0a333ec1", + "state": { + "depositToken": 0, + "blockNumber": 37961212, + "lastRebalancePrice": "371223692509589014", + "state": "1", + "currentTick": "9993", + "currentPrice": "368155440132610627", + "twapSlow": "369963738087939563", + "twapFast": "368155440132610627", + "depositTokenBalance": "2308384666342702463189", + "pairedTokenBalance": "0", + "usedToken0": "172569005347971821501126", + "usedToken1": "133106791567900781312433", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "12180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x6625ec77841e310b1e1abfe6d634e40f4c846d04a3e3c8f1f1921d448db28911", + "state": { + "depositToken": 0, + "blockNumber": 37964595, + "lastRebalancePrice": "368155440132610627", + "state": "1", + "currentTick": "9995", + "currentPrice": "368081820087774871", + "twapSlow": "368081820087774871", + "twapFast": "368081820087774871", + "depositTokenBalance": "3627414583013489070862", + "pairedTokenBalance": "0", + "usedToken0": "176005025742824145357698", + "usedToken1": "133131690149154471210016", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "12180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x3280e8dfc1b7c993f842c68ad7ca82bcb8e1c68a3568b805df05644a8d04ebd4", + "state": { + "depositToken": 0, + "blockNumber": 37968823, + "lastRebalancePrice": "368081820087774871", + "state": "1", + "currentTick": "9861", + "currentPrice": "373047061040807647", + "twapSlow": "371855277903597613", + "twapFast": "372078446856069121", + "depositTokenBalance": "2480166639164368826928", + "pairedTokenBalance": "1", + "usedToken0": "189716117801473504097670", + "usedToken1": "102486254477055764666962", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "12060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x834de3e1133651ca71c2a5c89306c2753cfd7d33abd14deb7fd8d922686d45bf", + "state": { + "depositToken": 0, + "blockNumber": 37971286, + "lastRebalancePrice": "373047061040807647", + "state": "1", + "currentTick": "9715", + "currentPrice": "378533225380691748", + "twapSlow": "378117088556479116", + "twapFast": "378533225380691748", + "depositTokenBalance": "2439602120783164376653", + "pairedTokenBalance": "1", + "usedToken0": "205384790004444939348422", + "usedToken1": "66730054031388691052686", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "11940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0xfd5515be064a354bce298bb7e0cd2540adf31adafe38ab9020622e87f8685f14", + "state": { + "depositToken": 0, + "blockNumber": 37984245, + "lastRebalancePrice": "378533225380691748", + "state": "1", + "currentTick": "10028", + "currentPrice": "366869212613566977", + "twapSlow": "370852672908467628", + "twapFast": "367126098117772829", + "depositTokenBalance": "1904027613097979327119", + "pairedTokenBalance": "0", + "usedToken0": "176969211728721457145057", + "usedToken1": "148115170083372598458166", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9060", + "topTick": "10020" + } + } + }, + { + "transactionHash": "0xac9a49ba1b1a1234a732239f012b4846c23a3b5c1fa2b03a804dff9b293fb9cf", + "state": { + "depositToken": 0, + "blockNumber": 37989506, + "lastRebalancePrice": "366869212613566977", + "state": "2", + "currentTick": "9905", + "currentPrice": "371409341481925482", + "twapSlow": "368523761286877682", + "twapFast": "370852672908467628", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "183649300472902811379455", + "usedToken1": "129748893534306423917446", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0x07eab34b39ddeef590c3697ded1148d55bd692243e33e435d4f92fa889ea8bd2", + "state": { + "depositToken": 0, + "blockNumber": 37991961, + "lastRebalancePrice": "371409341481925482", + "state": "2", + "currentTick": "9446", + "currentPrice": "388853437718573358", + "twapSlow": "387998943168242211", + "twapFast": "388853437718573358", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "207249481905495006937775", + "usedToken1": "67657832237574143935552", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9300", + "topTick": "11640" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9300" + } + } + }, + { + "transactionHash": "0x822d724793f57571c80fcec630f6a697514d2dfa7ea637bccb7c404fbaefd793", + "state": { + "depositToken": 0, + "blockNumber": 38023340, + "lastRebalancePrice": "388853437718573358", + "state": "1", + "currentTick": "9803", + "currentPrice": "375216911989347827", + "twapSlow": "378533225380691748", + "twapFast": "376532406179697425", + "depositTokenBalance": "433785188175727554899", + "pairedTokenBalance": "1", + "usedToken0": "170375074702916894319880", + "usedToken1": "159160850090208448388274", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xede515dcffefdb31c30c52e63c839185a6499cc826c4e5affcf8d0b31e53ed1f", + "state": { + "depositToken": 0, + "blockNumber": 38025804, + "lastRebalancePrice": "375216911989347827", + "state": "2", + "currentTick": "9807", + "currentPrice": "375066862738740262", + "twapSlow": "375104369425014136", + "twapFast": "375066862738740262", + "depositTokenBalance": "5708048586409142627805", + "pairedTokenBalance": "0", + "usedToken0": "175842019279233532345600", + "usedToken1": "158011307566394809021222", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xd57bc309868fc20508e76e78a3cfef821b6b3d74ccc0a419760a2abe1831caed", + "state": { + "depositToken": 0, + "blockNumber": 38031381, + "lastRebalancePrice": "375066862738740262", + "state": "2", + "currentTick": "9696", + "currentPrice": "379253086167675923", + "twapSlow": "377701409208241787", + "twapFast": "378987715166373380", + "depositTokenBalance": "405244889837599822233", + "pairedTokenBalance": "0", + "usedToken0": "179554853497318749237703", + "usedToken1": "141527844699684759836346", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8700", + "topTick": "9660" + } + } + }, + { + "transactionHash": "0x27de05e1ed8a38c8f26a9be9f3d9b930568b01c8da2d509121d6fafc6232c874", + "state": { + "depositToken": 0, + "blockNumber": 38045127, + "lastRebalancePrice": "379253086167675923", + "state": "2", + "currentTick": "9595", + "currentPrice": "383102757976494801", + "twapSlow": "383102757976494801", + "twapFast": "383102757976494801", + "depositTokenBalance": "3138085751548284387312", + "pairedTokenBalance": "0", + "usedToken0": "186564041945885972238732", + "usedToken1": "130864262976774319648149", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8640", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x842111aeff2ade94703894a02d63faf5036d39e85457037f7d522cde8f5ba692", + "state": { + "depositToken": 0, + "blockNumber": 38047587, + "lastRebalancePrice": "383102757976494801", + "state": "2", + "currentTick": "9595", + "currentPrice": "383102757976494801", + "twapSlow": "383102757976494801", + "twapFast": "383102757976494801", + "depositTokenBalance": "3048811315460692117081", + "pairedTokenBalance": "0", + "usedToken0": "189494048541223000640624", + "usedToken1": "130809131248640812768322", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8640", + "topTick": "9540" + } + } + }, + { + "transactionHash": "0x9ea9cc265de1e8fd8275a4403673b948d27803c82abfa2fab118ec139c3eb208", + "state": { + "depositToken": 0, + "blockNumber": 38058503, + "lastRebalancePrice": "383102757976494801", + "state": "2", + "currentTick": "9755", + "currentPrice": "377022192110723046", + "twapSlow": "380658851361353111", + "twapFast": "378003676113156882", + "depositTokenBalance": "285836534049346313241", + "pairedTokenBalance": "0", + "usedToken0": "188268259399176064687874", + "usedToken1": "134808284352101426606692", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8760", + "topTick": "9720" + } + } + }, + { + "transactionHash": "0x46d7729342f482398e059c21692e8ebed049d1e1350da28c44541e637d26b4fd", + "state": { + "depositToken": 0, + "blockNumber": 38064740, + "lastRebalancePrice": "377022192110723046", + "state": "2", + "currentTick": "9715", + "currentPrice": "378533225380691748", + "twapSlow": "378495375843107438", + "twapFast": "378533225380691748", + "depositTokenBalance": "14312337045198214958634", + "pairedTokenBalance": "0", + "usedToken0": "201366276381197931938810", + "usedToken1": "132062248593374561503160", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9300", + "topTick": "11940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9300" + } + } + }, + { + "transactionHash": "0xd2d4a60f3a20d6e9fdd9fce974402da2ae7b77719d68461a2bbbd3f78adaffb3", + "state": { + "depositToken": 0, + "blockNumber": 38067458, + "lastRebalancePrice": "378533225380691748", + "state": "1", + "currentTick": "9850", + "currentPrice": "373457618045401185", + "twapSlow": "377059894329934119", + "twapFast": "374879385554275587", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "187994435604508027105453", + "usedToken1": "165669027694032896478386", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8880", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x1fef78395e9ad41d24ea1de15457f605ed9e60ce929a1d11150f1efc6e4314e0", + "state": { + "depositToken": 0, + "blockNumber": 38075852, + "lastRebalancePrice": "373457618045401185", + "state": "2", + "currentTick": "9747", + "currentPrice": "377323915451741298", + "twapSlow": "376683041735619842", + "twapFast": "377248461986859306", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "194318812900110135268401", + "usedToken1": "148999008743573431255828", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8760", + "topTick": "9720" + } + } + }, + { + "transactionHash": "0x6b857c05ad3a4bb6f41d5fb35038dff1e310fdca0f4fc4f42c98edabc0d24d7e", + "state": { + "depositToken": 0, + "blockNumber": 38082296, + "lastRebalancePrice": "377323915451741298", + "state": "2", + "currentTick": "9796", + "currentPrice": "375479642636425794", + "twapSlow": "376833737554803363", + "twapFast": "375629857023760878", + "depositTokenBalance": "11555505155861492928819", + "pairedTokenBalance": "0", + "usedToken0": "205394027132982172449527", + "usedToken1": "150286928810628875615250", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xede1d6a0f9e3f698525fe71086a390415a2fc9a9908666560eab17a017194a50", + "state": { + "depositToken": 0, + "blockNumber": 38084752, + "lastRebalancePrice": "375479642636425794", + "state": "2", + "currentTick": "9935", + "currentPrice": "370296838670246037", + "twapSlow": "371446482416073674", + "twapFast": "370296838670246037", + "depositTokenBalance": "1514208298210946693453", + "pairedTokenBalance": "0", + "usedToken0": "205483383661604388416845", + "usedToken1": "154134181618540119604189", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0xd6c7b4080f3aab9a3bc69e4f8d4525407085ee1f081b3b34d5180bb485fc06ae", + "state": { + "depositToken": 0, + "blockNumber": 38088196, + "lastRebalancePrice": "370296838670246037", + "state": "2", + "currentTick": "9798", + "currentPrice": "375404557970786057", + "twapSlow": "370074738308648052", + "twapFast": "373943404352637867", + "depositTokenBalance": "527414344266325925866", + "pairedTokenBalance": "0", + "usedToken0": "212539210420959434881175", + "usedToken1": "136616772705526002104812", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9420", + "topTick": "12000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9420" + } + } + }, + { + "transactionHash": "0x11b3b7a070bd9549f0f2f5e9ac735144236b2c5617efe00ce7ff74c471fd8d83", + "state": { + "depositToken": 0, + "blockNumber": 38096862, + "lastRebalancePrice": "375404557970786057", + "state": "1", + "currentTick": "9836", + "currentPrice": "373980798693073131", + "twapSlow": "373980798693073131", + "twapFast": "373980798693073131", + "depositTokenBalance": "3426256982440177724478", + "pairedTokenBalance": "1", + "usedToken0": "212075758018285693507504", + "usedToken1": "147095694449635675428748", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9420", + "topTick": "12060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9420" + } + } + }, + { + "transactionHash": "0x7cce82d064b30a44966c51436e60237301e318d23ec083b6f0b980f69c890379", + "state": { + "depositToken": 0, + "blockNumber": 38105478, + "lastRebalancePrice": "373980798693073131", + "state": "1", + "currentTick": "9920", + "currentPrice": "370852672908467628", + "twapSlow": "373607023501570296", + "twapFast": "371929652677731112", + "depositTokenBalance": "2348312458725896635893", + "pairedTokenBalance": "1", + "usedToken0": "205653189066278418661902", + "usedToken1": "169302979821333206399993", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0xcaac5f10e5c211c4a5106f0018ad1072e781798ffe949482cb6189805f8f5e5a", + "state": { + "depositToken": 0, + "blockNumber": 38110593, + "lastRebalancePrice": "370852672908467628", + "state": "2", + "currentTick": "9935", + "currentPrice": "370296838670246037", + "twapSlow": "373382937724027002", + "twapFast": "372152866266224803", + "depositTokenBalance": "22079323778051193360719", + "pairedTokenBalance": "0", + "usedToken0": "227588851319476645979923", + "usedToken1": "169802657968307867700617", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0x538e4461d7fa7d0b9100f63654e32d0e82cf1ae62877b71fe86e31d562e481bb", + "state": { + "depositToken": 0, + "blockNumber": 38112445, + "lastRebalancePrice": "370296838670246037", + "state": "2", + "currentTick": "8224", + "currentPrice": "439393952267665177", + "twapSlow": "377210740912768029", + "twapFast": "414842641430683733", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "293692461285167642596904", + "usedToken1": "0", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8220", + "topTick": "887220" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x96921e5895ea65640a1a8317c4c3beed28ffd528f0fd1f50733e5c6008e39d09", + "state": { + "depositToken": 0, + "blockNumber": 38114903, + "lastRebalancePrice": "439393952267665177", + "state": "3", + "currentTick": "8173", + "currentPrice": "441640472858491523", + "twapSlow": "444965061803580467", + "twapFast": "441640472858491523", + "depositTokenBalance": "282135261859350582752780", + "pairedTokenBalance": "0", + "usedToken0": "282135261859350582754688", + "usedToken1": "0", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8220", + "topTick": "13320" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x72c90cb3986552ec557d883b66970e06ce4f803100c31915300e9d1e10294b1b", + "state": { + "depositToken": 0, + "blockNumber": 38117364, + "lastRebalancePrice": "441640472858491523", + "state": "0", + "currentTick": "7911", + "currentPrice": "453363771736942526", + "twapSlow": "453001243876122102", + "twapFast": "453363771736942526", + "depositTokenBalance": "3201196668600000000000", + "pairedTokenBalance": "0", + "usedToken0": "285336458527950582754687", + "usedToken1": "0", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7920", + "topTick": "13020" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xf150e13166d2d0f6a87316dc51567708a55ff4b38212c39019acf7e1a9e5368b", + "state": { + "depositToken": 0, + "blockNumber": 38120509, + "lastRebalancePrice": "453363771736942526", + "state": "0", + "currentTick": "7932", + "currentPrice": "452412754284181923", + "twapSlow": "452548491683302219", + "twapFast": "452412754284181923", + "depositTokenBalance": "6627244734024077412768", + "pairedTokenBalance": "0", + "usedToken0": "291169267391210911564237", + "usedToken1": "1703398472494575594421", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7980" + }, + "limitPosition": { + "bottomTick": "7980", + "topTick": "13080" + } + } + }, + { + "transactionHash": "0x2ea84f3aa865945eede946bf138beb3ee0de641876c4ef006f336aa228b138fd", + "state": { + "depositToken": 0, + "blockNumber": 38128268, + "lastRebalancePrice": "452412754284181923", + "state": "0", + "currentTick": "8034", + "currentPrice": "447821827262099649", + "twapSlow": "449346936437085607", + "twapFast": "448135396599442175", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "283167665008161211951551", + "usedToken1": "9452127052736204623072", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8040" + }, + "limitPosition": { + "bottomTick": "8040", + "topTick": "11640" + } + } + }, + { + "transactionHash": "0x49388ed87e38b6af0d75c630d4e1439e0975c1e8a822f834b969999f2b230be0", + "state": { + "depositToken": 0, + "blockNumber": 38132490, + "lastRebalancePrice": "447821827262099649", + "state": "0", + "currentTick": "8176", + "currentPrice": "441508007210646604", + "twapSlow": "443720964383522400", + "twapFast": "442613102768722012", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "271483977568351520321175", + "usedToken1": "35712152595785135028128", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8220" + }, + "limitPosition": { + "bottomTick": "8220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x7841d6c559748f60bf30510fa95fd22631488359119543517a2fd6c4a820d79e", + "state": { + "depositToken": 0, + "blockNumber": 38177059, + "lastRebalancePrice": "441508007210646604", + "state": "0", + "currentTick": "6904", + "currentPrice": "501392785385636964", + "twapSlow": "501392785385636964", + "twapFast": "501392785385636964", + "depositTokenBalance": "24329373900827041794992", + "pairedTokenBalance": "1", + "usedToken0": "285256120015856180556835", + "usedToken1": "32259415196935406466806", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6960" + }, + "limitPosition": { + "bottomTick": "6960", + "topTick": "10500" + } + } + }, + { + "transactionHash": "0x2bd3afc68f3682a25947a4feac70011586c3fd074b6773a661a100c9ad90829c", + "state": { + "depositToken": 0, + "blockNumber": 38191415, + "lastRebalancePrice": "495660081209028747", + "state": "0", + "currentTick": "7103", + "currentPrice": "491514180976054196", + "twapSlow": "493237408338382672", + "twapFast": "491907529972333947", + "depositTokenBalance": "1000699078267280635406", + "pairedTokenBalance": "0", + "usedToken0": "274354633943271652422145", + "usedToken1": "57016943234211874912772", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6960", + "topTick": "10620" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6960" + } + } + }, + { + "transactionHash": "0xe7c7daba3e22c621e6711d554a03a832a68033d69a755c2509b9ffcf632b43bb", + "state": { + "depositToken": 0, + "blockNumber": 38226328, + "lastRebalancePrice": "491514180976054196", + "state": "1", + "currentTick": "7437", + "currentPrice": "475369530963257720", + "twapSlow": "477036155884122512", + "twapFast": "475369530963257720", + "depositTokenBalance": "4714934164927014398203", + "pairedTokenBalance": "0", + "usedToken0": "243192657571650614326725", + "usedToken1": "112318343911038980722411", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6960", + "topTick": "10980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6960" + } + } + }, + { + "transactionHash": "0x87c05ef7c67ff52a4acdf80f21b0175629136d036e0d78765414a0f994003fb1", + "state": { + "depositToken": 0, + "blockNumber": 38246404, + "lastRebalancePrice": "475369530963257720", + "state": "1", + "currentTick": "7368", + "currentPrice": "478660757843761026", + "twapSlow": "478660757843761026", + "twapFast": "478660757843761026", + "depositTokenBalance": "4950196973931405749502", + "pairedTokenBalance": "0", + "usedToken0": "248844299695662830640738", + "usedToken1": "99124591953228142181830", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6960", + "topTick": "10920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6960" + } + } + }, + { + "transactionHash": "0x7c3c42257cfbe2e8e1e53b5ec7f11782ce0689859d636d23bec8b48a4f483bbc", + "state": { + "depositToken": 0, + "blockNumber": 38264048, + "lastRebalancePrice": "478660757843761026", + "state": "1", + "currentTick": "7381", + "currentPrice": "478038934222150217", + "twapSlow": "478038934222150217", + "twapFast": "478278001497935342", + "depositTokenBalance": "6275092317311701161654", + "pairedTokenBalance": "0", + "usedToken0": "254004804731794393935915", + "usedToken1": "101056050707166199374164", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6960", + "topTick": "10920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6960" + } + } + }, + { + "transactionHash": "0x8ff8cb682157ce85753eba94995edb43346190cdb90801585f9a68b958a71eb6", + "state": { + "depositToken": 0, + "blockNumber": 38277629, + "lastRebalancePrice": "478038934222150217", + "state": "1", + "currentTick": "7707", + "currentPrice": "462706901453493072", + "twapSlow": "469746438448898782", + "twapFast": "464607798883189185", + "depositTokenBalance": "1715102645053683187798", + "pairedTokenBalance": "0", + "usedToken0": "230072620944278227484633", + "usedToken1": "154962803121059766668058", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6300", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0xa527fc1ddba65f9d46de729bc4d38b62ea06fbdf835460249292fd3ad483b761", + "state": { + "depositToken": 0, + "blockNumber": 38285485, + "lastRebalancePrice": "462706901453493072", + "state": "2", + "currentTick": "7853", + "currentPrice": "456000789724411802", + "twapSlow": "458744881303344541", + "twapFast": "456959349591245548", + "depositTokenBalance": "2882100648220308959440", + "pairedTokenBalance": "0", + "usedToken0": "231252776553931417027748", + "usedToken1": "158247267443620821282506", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6420", + "topTick": "7800" + } + } + }, + { + "transactionHash": "0xa3555e2a176f664c993175584cd12d455df4a3cd98652b4b812c559946c756c5", + "state": { + "depositToken": 0, + "blockNumber": 38308256, + "lastRebalancePrice": "456000789724411802", + "state": "2", + "currentTick": "7957", + "currentPrice": "451283191417541364", + "twapSlow": "454907754646640167", + "twapFast": "451418589913913652", + "depositTokenBalance": "97955986884451641713", + "pairedTokenBalance": "0", + "usedToken0": "229284279507924395436322", + "usedToken1": "160339564082577917474799", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6540", + "topTick": "7920" + } + } + }, + { + "transactionHash": "0x4136e60d7a53688c07094f8e7c754ea64c63d6d4b14d72dfa128732ace93ff8e", + "state": { + "depositToken": 0, + "blockNumber": 38310712, + "lastRebalancePrice": "451283191417541364", + "state": "2", + "currentTick": "8313", + "currentPrice": "435500890563042465", + "twapSlow": "437421220093635074", + "twapFast": "435500890563042465", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "225203297962303636607960", + "usedToken1": "169383558025652694818370", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6900", + "topTick": "8280" + } + } + }, + { + "transactionHash": "0xa5771b7f12ee684be41f33951824cd6763873aed461927b28a0f90f507340100", + "state": { + "depositToken": 0, + "blockNumber": 38313174, + "lastRebalancePrice": "435500890563042465", + "state": "2", + "currentTick": "8620", + "currentPrice": "422334804937810245", + "twapSlow": "422461518049758071", + "twapFast": "422334804937810245", + "depositTokenBalance": "299029094991649767424", + "pairedTokenBalance": "0", + "usedToken0": "221718980788698836401866", + "usedToken1": "177181061591493771559540", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7200", + "topTick": "8580" + } + } + }, + { + "transactionHash": "0x602d5f7b4af15345de830e1ab9e6af7e58688023ee0f7cbd4d670e550b519e87", + "state": { + "depositToken": 0, + "blockNumber": 38315633, + "lastRebalancePrice": "422334804937810245", + "state": "2", + "currentTick": "8759", + "currentPrice": "416505251871448902", + "twapSlow": "416297061706726190", + "twapFast": "416505251871448902", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "219658577855274024748164", + "usedToken1": "180335814135921711398485", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7320", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0x737dc9d8adf59ee65e9408428ae79ee65f4d44d4a37aff1be61b49d11c163bba", + "state": { + "depositToken": 0, + "blockNumber": 38323121, + "lastRebalancePrice": "416505251871448902", + "state": "2", + "currentTick": "8923", + "currentPrice": "409730608378003481", + "twapSlow": "414262297085241095", + "twapFast": "410961584195913657", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "215470730093215315352567", + "usedToken1": "182628863653465361010721", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7500", + "topTick": "8880" + } + } + }, + { + "transactionHash": "0x4c1493033164ea6bce1fbabefb84e0ea833d42722a9c1fb4088724a3c1a67bcb", + "state": { + "depositToken": 0, + "blockNumber": 38325584, + "lastRebalancePrice": "409730608378003481", + "state": "2", + "currentTick": "9217", + "currentPrice": "397860468003471830", + "twapSlow": "397860468003471830", + "twapFast": "397860468003471830", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "204188205502869509356548", + "usedToken1": "183198170400011306170769", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7800", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0x1a3f672f79a66b02732d3e76c823d4e14f5dedcf36487d9cb49dec1d474f52c0", + "state": { + "depositToken": 0, + "blockNumber": 38329176, + "lastRebalancePrice": "397860468003471830", + "state": "2", + "currentTick": "9379", + "currentPrice": "391467371958662123", + "twapSlow": "396272284024763076", + "twapFast": "393311506723790561", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "202535457371904314363278", + "usedToken1": "187304216012993469116981", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7980", + "topTick": "9360" + } + } + }, + { + "transactionHash": "0xeb5077befe0f1c505fe2eb4f71f4b08e5b46e60cbb86f011af00ced674ce9e79", + "state": { + "depositToken": 0, + "blockNumber": 38334990, + "lastRebalancePrice": "391467371958662123", + "state": "2", + "currentTick": "9517", + "currentPrice": "386102493264186621", + "twapSlow": "392957703293040240", + "twapFast": "386952811241007647", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "201150830471718164027359", + "usedToken1": "190865910156896707745549", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8100", + "topTick": "9480" + } + } + }, + { + "transactionHash": "0x257f944b3b1bdca4d6205a33de97df245aae1129b98096df75fa729b75ffdb59", + "state": { + "depositToken": 0, + "blockNumber": 38337449, + "lastRebalancePrice": "386102493264186621", + "state": "2", + "currentTick": "9871", + "currentPrice": "372674219073606723", + "twapSlow": "366942590124781816", + "twapFast": "372487937852161792", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "197619920448443380917477", + "usedToken1": "200174434807431968412939", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8460", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xaef5d81cd396ac17d5bd9980e0f61725a8814e5b418dca5e63aaea3e510842ab", + "state": { + "depositToken": 0, + "blockNumber": 38346450, + "lastRebalancePrice": "372674219073606723", + "state": "2", + "currentTick": "9919", + "currentPrice": "370889758175758474", + "twapSlow": "370889758175758474", + "twapFast": "370889758175758474", + "depositTokenBalance": "22405533983986456000159", + "pairedTokenBalance": "0", + "usedToken0": "219202608013840688960621", + "usedToken1": "201132428070162529210685", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8520", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0x8f4c1597f868d33099e99a70e489fc58a4c0decb0278956acca7d064a3ea8b33", + "state": { + "depositToken": 0, + "blockNumber": 38348913, + "lastRebalancePrice": "370889758175758474", + "state": "2", + "currentTick": "9663", + "currentPrice": "380506625879081861", + "twapSlow": "376796057949008463", + "twapFast": "380468579021179743", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "232679703228306873570168", + "usedToken1": "165107976449115848286532", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8220", + "topTick": "9660" + } + } + }, + { + "transactionHash": "0x6f75404933f12921aad22979aaf018d4bf09b0069c161e71c534207003136a18", + "state": { + "depositToken": 0, + "blockNumber": 38353911, + "lastRebalancePrice": "380506625879081861", + "state": "2", + "currentTick": "9848", + "currentPrice": "373532313303586445", + "twapSlow": "377701409208241787", + "twapFast": "375029359802759986", + "depositTokenBalance": "589911827369390372769", + "pairedTokenBalance": "0", + "usedToken0": "231132391207150244946379", + "usedToken1": "170783080325348911467433", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8400", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x04b7297f184563fda2b833b72dff59a5438a2f251bcd0de0a70710b2f0907736", + "state": { + "depositToken": 0, + "blockNumber": 38356374, + "lastRebalancePrice": "373532313303586445", + "state": "2", + "currentTick": "9699", + "currentPrice": "379139332993218828", + "twapSlow": "378987715166373380", + "twapFast": "379139332993218828", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "219642472372511936977998", + "usedToken1": "141696705919153041671292", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "13260" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0xa45fe3f2c5d1caa2eff4e04672cd9df8f8b2a30314738dab9a79b5b285b3af77", + "state": { + "depositToken": 0, + "blockNumber": 38359172, + "lastRebalancePrice": "379139332993218828", + "state": "1", + "currentTick": "9691", + "currentPrice": "379442750639861098", + "twapSlow": "377928086716532708", + "twapFast": "379291011476292690", + "depositTokenBalance": "32897224463287741271029", + "pairedTokenBalance": "0", + "usedToken0": "251029676609708691565356", + "usedToken1": "139109970570480494502176", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "13200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0xf6449f96b04f0fe91f28c68f620b9aea96e133a9250dd7831d7aa5caa68de3b9", + "state": { + "depositToken": 0, + "blockNumber": 38401860, + "lastRebalancePrice": "379442750639861098", + "state": "1", + "currentTick": "9561", + "currentPrice": "384407458854351779", + "twapSlow": "383524381780010431", + "twapFast": "384407458854351779", + "depositTokenBalance": "3728000828452930612733", + "pairedTokenBalance": "1", + "usedToken0": "263631356641875813084825", + "usedToken1": "112358196395461474525608", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "13080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0xefd75fe86a0a8deb9792885155122dcfbadca0f6e7e1b2bb0ab5983b0c517c1e", + "state": { + "depositToken": 0, + "blockNumber": 38429610, + "lastRebalancePrice": "384407458854351779", + "state": "1", + "currentTick": "9484", + "currentPrice": "387378672221278923", + "twapSlow": "387339938227456177", + "twapFast": "387378672221278923", + "depositTokenBalance": "6203329939129998713503", + "pairedTokenBalance": "1", + "usedToken0": "275608299582242538894655", + "usedToken1": "95435211730611010842903", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "13020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0x0bbb7b148e6193f6e810cb5335a7c3e8c9cdc6b8aff527051cbb8f411546b044", + "state": { + "depositToken": 0, + "blockNumber": 38451717, + "lastRebalancePrice": "387378672221278923", + "state": "1", + "currentTick": "9643", + "currentPrice": "381268362527391163", + "twapSlow": "381573483993908281", + "twapFast": "381268362527391163", + "depositTokenBalance": "3532984441941162011487", + "pairedTokenBalance": "0", + "usedToken0": "263760871029246409115161", + "usedToken1": "129661749441386366676505", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "13200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0xa7a3d0fd458508b12d817590850b70e9037b2c9d40dcc09c249fb0b7b2608739", + "state": { + "depositToken": 0, + "blockNumber": 38475382, + "lastRebalancePrice": "381268362527391163", + "state": "1", + "currentTick": "9945", + "currentPrice": "369926745413398224", + "twapSlow": "371372204261499332", + "twapFast": "370482024122968180", + "depositTokenBalance": "723796182003290642689", + "pairedTokenBalance": "0", + "usedToken0": "240231713724787704691215", + "usedToken1": "194395709452231565227055", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8520", + "topTick": "9900" + } + } + }, + { + "transactionHash": "0x86bd8729872158ee7177d1284b3de149a6b95c579c5851cec5e5e40dcdc36838", + "state": { + "depositToken": 0, + "blockNumber": 38482428, + "lastRebalancePrice": "369926745413398224", + "state": "2", + "currentTick": "9779", + "currentPrice": "376118468936637247", + "twapSlow": "372860593454292363", + "twapFast": "375179394049942833", + "depositTokenBalance": "11103999991720992250", + "pairedTokenBalance": "0", + "usedToken0": "247075929510111857813005", + "usedToken1": "175001803003559085887797", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8340", + "topTick": "9720" + } + } + }, + { + "transactionHash": "0x6142d93e66c0946523b280ac702b01f9a3ae9fee913ebf9de834f30db6a752a6", + "state": { + "depositToken": 0, + "blockNumber": 38485390, + "lastRebalancePrice": "376118468936637247", + "state": "2", + "currentTick": "9890", + "currentPrice": "371966845642998885", + "twapSlow": "374392383322793968", + "twapFast": "372376213816358093", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "245695548636587410116340", + "usedToken1": "178634230369472192044363", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8460", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xfbf5638f12b211af736fea470191c0046265141fa5764d5b8d184b2d86cc4419", + "state": { + "depositToken": 0, + "blockNumber": 38489262, + "lastRebalancePrice": "371966845642998885", + "state": "2", + "currentTick": "9992", + "currentPrice": "368192255676623888", + "twapSlow": "368671192904292243", + "twapFast": "368339554671902684", + "depositTokenBalance": "175822623946953499112", + "pairedTokenBalance": "0", + "usedToken0": "242362967942268097216003", + "usedToken1": "180402015170074992270261", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8580", + "topTick": "9960" + } + } + }, + { + "transactionHash": "0x872dba6963065f36ff37eefdfc2a56f95f3bb61e4a31853b31de9db97a1a5afe", + "state": { + "depositToken": 0, + "blockNumber": 38491726, + "lastRebalancePrice": "368192255676623888", + "state": "2", + "currentTick": "10121", + "currentPrice": "363473314130978517", + "twapSlow": "365697166009220339", + "twapFast": "363473314130978517", + "depositTokenBalance": "205165900874904009843", + "pairedTokenBalance": "0", + "usedToken0": "240997120626309018298102", + "usedToken1": "184604416479243481062102", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8700", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0x9183683fd7160d4a9597e58f17239a35f40c56a0d3f55c518a8fdef44968aeb4", + "state": { + "depositToken": 0, + "blockNumber": 38509959, + "lastRebalancePrice": "363473314130978517", + "state": "2", + "currentTick": "10118", + "currentPrice": "363582367029780708", + "twapSlow": "363509661462391615", + "twapFast": "363582367029780708", + "depositTokenBalance": "6544102870479923716330", + "pairedTokenBalance": "0", + "usedToken0": "241438208178137661161686", + "usedToken1": "179819632201695012567638", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8700", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0xa4cf094014acbbc4b99e0afee8be63a08d2ca836e474623c8c4c5b3e4bd320fd", + "state": { + "depositToken": 0, + "blockNumber": 38517428, + "lastRebalancePrice": "363582367029780708", + "state": "2", + "currentTick": "10208", + "currentPrice": "360324968871726057", + "twapSlow": "360613329757995443", + "twapFast": "360324968871726057", + "depositTokenBalance": "1903058293932774505391", + "pairedTokenBalance": "0", + "usedToken0": "242242667527776684564417", + "usedToken1": "182778867073987234085943", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9600", + "topTick": "13740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9600" + } + } + }, + { + "transactionHash": "0xdaf5426b3e6e96c33b281da069a84cdbd6978f9af403ff4d1d9b2eb7c99d018d", + "state": { + "depositToken": 0, + "blockNumber": 38533446, + "lastRebalancePrice": "360324968871726057", + "state": "1", + "currentTick": "10445", + "currentPrice": "351886084802478165", + "twapSlow": "351886084802478165", + "twapFast": "351886084802478165", + "depositTokenBalance": "13532149299713436915129", + "pairedTokenBalance": "0", + "usedToken0": "238112097458496554444514", + "usedToken1": "232902402655735765339185", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9600", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9600" + } + } + }, + { + "transactionHash": "0x6132b95e3ad516fd4f61f7ff0f18caa6a4b40cdc21a2bd33ee787416fcc95116", + "state": { + "depositToken": 0, + "blockNumber": 38558236, + "lastRebalancePrice": "351886084802478165", + "state": "1", + "currentTick": "10443", + "currentPrice": "351956465538299509", + "twapSlow": "351956465538299509", + "twapFast": "351956465538299509", + "depositTokenBalance": "13450461793301267608182", + "pairedTokenBalance": "0", + "usedToken0": "227273681773638237833547", + "usedToken1": "208387315728733278193721", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9660", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9660" + } + } + }, + { + "transactionHash": "0x0f244e213024602616529549390f11717517f1767aba26dd16a3fdd5d7842bb6", + "state": { + "depositToken": 0, + "blockNumber": 38560701, + "lastRebalancePrice": "351956465538299509", + "state": "1", + "currentTick": "10302", + "currentPrice": "356953951315562942", + "twapSlow": "357990568312578379", + "twapFast": "356953951315562942", + "depositTokenBalance": "36467437582111720479626", + "pairedTokenBalance": "0", + "usedToken0": "273683563402309566558441", + "usedToken1": "180039641861222752270204", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xbcfa397775b5f4ba71c4c04f4be1332c47a600f372d0e1fc9e3ccc2a09c11997", + "state": { + "depositToken": 0, + "blockNumber": 38576028, + "lastRebalancePrice": "356953951315562942", + "state": "1", + "currentTick": "10306", + "currentPrice": "356811205423294019", + "twapSlow": "355422421049928379", + "twapFast": "356811205423294019", + "depositTokenBalance": "4068322538506762955931", + "pairedTokenBalance": "0", + "usedToken0": "277278868462806005033894", + "usedToken1": "181024451436659685616704", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xc3da0e51c36ab79fa3cc27432ffd149b537ecdeeee2a658d19dd3a6013dc1498", + "state": { + "depositToken": 0, + "blockNumber": 38589957, + "lastRebalancePrice": "356811205423294019", + "state": "1", + "currentTick": "10304", + "currentPrice": "356882571232490732", + "twapSlow": "357061048209933104", + "twapFast": "356882571232490732", + "depositTokenBalance": "4060227737143581935322", + "pairedTokenBalance": "1", + "usedToken0": "262118436689474568761296", + "usedToken1": "168020649390235511382895", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xc0155490392f2f7ac6ba1abeed6516731a72eaf8ecae6538ca4f6654fb2d1979", + "state": { + "depositToken": 0, + "blockNumber": 38648968, + "lastRebalancePrice": "356882571232490732", + "state": "1", + "currentTick": "10459", + "currentPrice": "351393813567171249", + "twapSlow": "351393813567171249", + "twapFast": "351393813567171249", + "depositTokenBalance": "7417353861424163232905", + "pairedTokenBalance": "1", + "usedToken0": "256007225684944495611587", + "usedToken1": "202714416184758789843503", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xd1bb7f02cf0bed7e00da98dec3bf64e97961c58e95b8722f3927bebcb2e67f4e", + "state": { + "depositToken": 0, + "blockNumber": 38691924, + "lastRebalancePrice": "351393813567171249", + "state": "1", + "currentTick": "10451", + "currentPrice": "351675027027973299", + "twapSlow": "351886084802478165", + "twapFast": "351675027027973299", + "depositTokenBalance": "11210629496105567019413", + "pairedTokenBalance": "0", + "usedToken0": "260071539184622001526663", + "usedToken1": "194579339071087313770646", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xece988a129d6264433afb6ced14f8bea6537d06c6227cc96d3939c799b876cf3", + "state": { + "depositToken": 0, + "blockNumber": 38754648, + "lastRebalancePrice": "343095476445711702", + "state": "2", + "currentTick": "10639", + "currentPrice": "345125621289666590", + "twapSlow": "344746210790486617", + "twapFast": "344987605546811548", + "depositTokenBalance": "269162068553278993389", + "pairedTokenBalance": "0", + "usedToken0": "233612385058704193639672", + "usedToken1": "249685639610889063928256", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9720", + "topTick": "14160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9720" + } + } + }, + { + "transactionHash": "0x7a0f97d69c56b09e9f66e4c06acdbdc4c5bbc98740b95d47b564ab18d8dfa453", + "state": { + "depositToken": 0, + "blockNumber": 38761842, + "lastRebalancePrice": "345125621289666590", + "state": "1", + "currentTick": "10602", + "currentPrice": "346404887308983111", + "twapSlow": "345954876026377684", + "twapFast": "346439527797714009", + "depositTokenBalance": "20873333340469132697031", + "pairedTokenBalance": "0", + "usedToken0": "218870579510510403100399", + "usedToken1": "202721491060802333540670", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "14160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x17dd0925228b2a152597fcdb681de8e59d650700fcd8c1b497bd6240393cc785", + "state": { + "depositToken": 0, + "blockNumber": 38776815, + "lastRebalancePrice": "346404887308983111", + "state": "1", + "currentTick": "10873", + "currentPrice": "337143831957010721", + "twapSlow": "339613863075944945", + "twapFast": "337447382805875865", + "depositTokenBalance": "418325878287555606069", + "pairedTokenBalance": "0", + "usedToken0": "194063597511327107071323", + "usedToken1": "246771522819802982350247", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9420", + "topTick": "10860" + } + } + }, + { + "transactionHash": "0xa087af3ebe67e631dd911c542c1036d44f18af86efc56660aca864d4f4f5d851", + "state": { + "depositToken": 0, + "blockNumber": 38781798, + "lastRebalancePrice": "337143831957010721", + "state": "2", + "currentTick": "10995", + "currentPrice": "333055868878370271", + "twapSlow": "335261196926025314", + "twapFast": "333622517038002454", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "192884101071412683894449", + "usedToken1": "250073418202150127298490", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9540", + "topTick": "10980" + } + } + }, + { + "transactionHash": "0x336bab1d5624b9bf95d34a6054a6ed4355ecbd720d50df17ad461e3d71ef43e1", + "state": { + "depositToken": 0, + "blockNumber": 38796287, + "lastRebalancePrice": "333055868878370271", + "state": "2", + "currentTick": "10885", + "currentPrice": "336739522208176885", + "twapSlow": "335395321521808618", + "twapFast": "336638520552518874", + "depositTokenBalance": "244981850070095243453", + "pairedTokenBalance": "0", + "usedToken0": "198963577862292187834361", + "usedToken1": "232696277395026494209334", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9480", + "topTick": "10860" + } + } + }, + { + "transactionHash": "0x2e73fe6a4401a88a33c258eb3f4e407c1750db53057c3536d6ac9de93a8658e6", + "state": { + "depositToken": 0, + "blockNumber": 38828673, + "lastRebalancePrice": "336739522208176885", + "state": "2", + "currentTick": "10906", + "currentPrice": "336033146483827961", + "twapSlow": "336033146483827961", + "twapFast": "336033146483827961", + "depositTokenBalance": "6584269368344404812781", + "pairedTokenBalance": "0", + "usedToken0": "205306012209443325154645", + "usedToken1": "233384294046568641945826", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9480", + "topTick": "10860" + } + } + }, + { + "transactionHash": "0x5bf737cf06060ee4064bba095f773e211745c9c271354ba4cb7aa405f74b6e97", + "state": { + "depositToken": 0, + "blockNumber": 38831134, + "lastRebalancePrice": "336033146483827961", + "state": "2", + "currentTick": "11063", + "currentPrice": "330798884261517308", + "twapSlow": "330798884261517308", + "twapFast": "330798884261517308", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "203746340089971651830522", + "usedToken1": "238061417333342743394487", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9660", + "topTick": "11040" + } + } + }, + { + "transactionHash": "0x913c60fa5e4780bec1af28b3adde1d8d9149cbaf030c391a7deb799601441e5f", + "state": { + "depositToken": 0, + "blockNumber": 38833609, + "lastRebalancePrice": "330798884261517308", + "state": "2", + "currentTick": "11190", + "currentPrice": "326624510523943748", + "twapSlow": "329247854829874538", + "twapFast": "326657172974996143", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "202453881338173026197382", + "usedToken1": "241944935824511861556440", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9780", + "topTick": "11160" + } + } + }, + { + "transactionHash": "0xc7f434814b945409b2a1bb569717d6b91faace6cc43c60e0e8171c4baf89928a", + "state": { + "depositToken": 0, + "blockNumber": 38836066, + "lastRebalancePrice": "326624510523943748", + "state": "2", + "currentTick": "10990", + "currentPrice": "333222430121727069", + "twapSlow": "332922679829745859", + "twapFast": "333222430121727069", + "depositTokenBalance": "99243049749613935294", + "pairedTokenBalance": "0", + "usedToken0": "211468977017411653617468", + "usedToken1": "208911894434013032971201", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10200", + "topTick": "14520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "10200" + } + } + }, + { + "transactionHash": "0x2d8daa5495c904ebe63751744f84b35db2ad347b26649e4bad77a51f00bd01bf", + "state": { + "depositToken": 0, + "blockNumber": 38870742, + "lastRebalancePrice": "333222430121727069", + "state": "1", + "currentTick": "10918", + "currentPrice": "335630168691631414", + "twapSlow": "335697298081671427", + "twapFast": "335630168691631414", + "depositTokenBalance": "33073243026900174315713", + "pairedTokenBalance": "0", + "usedToken0": "248899579788443597695474", + "usedToken1": "195181410528147603851947", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10320", + "topTick": "14460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "10320" + } + } + }, + { + "transactionHash": "0xc726de24c9a7df72be648733a5ac0709c4c976b3bc1359aebc1874f02c5bac61", + "state": { + "depositToken": 0, + "blockNumber": 38909546, + "lastRebalancePrice": "335630168691631414", + "state": "1", + "currentTick": "10420", + "currentPrice": "352766856482522086", + "twapSlow": "352731583324189667", + "twapFast": "352766856482522086", + "depositTokenBalance": "6945426913515679844342", + "pairedTokenBalance": "0", + "usedToken0": "292518994598102505413900", + "usedToken1": "81830111372010531202165", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10260", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "10260" + } + } + }, + { + "transactionHash": "0x8b742bbf83a51a779b66d87c7b06d5f0dcad7eb287ddcd220cdae1958e7ce376", + "state": { + "depositToken": 0, + "blockNumber": 38914746, + "lastRebalancePrice": "352766856482522086", + "state": "1", + "currentTick": "10304", + "currentPrice": "356882571232490732", + "twapSlow": "356597193610416248", + "twapFast": "356811205423294019", + "depositTokenBalance": "1319621605853610285366", + "pairedTokenBalance": "0", + "usedToken0": "303493542486767358438329", + "usedToken1": "52193052143489735955981", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10320" + }, + "limitPosition": { + "bottomTick": "10320", + "topTick": "13920" + } + } + }, + { + "transactionHash": "0xf5805e286bea1ed51c64d33eda3b9294173a03460b5bedf116a9a32db3635749", + "state": { + "depositToken": 0, + "blockNumber": 38919891, + "lastRebalancePrice": "356882571232490732", + "state": "0", + "currentTick": "10187", + "currentPrice": "361082408468239249", + "twapSlow": "359676999672898816", + "twapFast": "360721524575683347", + "depositTokenBalance": "1400000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "304853982838477585328230", + "usedToken1": "51863829138396104176813", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10200" + }, + "limitPosition": { + "bottomTick": "10200", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0x1dadebd708f34e14f68bb15369d6e31eabcf0030e513656268c4a2cb5f1590bb", + "state": { + "depositToken": 0, + "blockNumber": 38924485, + "lastRebalancePrice": "361082408468239249", + "state": "0", + "currentTick": "10290", + "currentPrice": "357382531725297027", + "twapSlow": "357954772835294850", + "twapFast": "357525506182368615", + "depositTokenBalance": "1674631429918560173987", + "pairedTokenBalance": "0", + "usedToken0": "298124987728934750834555", + "usedToken1": "75470257228338048698154", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10320" + }, + "limitPosition": { + "bottomTick": "10320", + "topTick": "13860" + } + } + }, + { + "transactionHash": "0xee87b71e1c12574fbbd267db426281c7f8aae9d3526238e7c08bee857b11132e", + "state": { + "depositToken": 0, + "blockNumber": 38947673, + "lastRebalancePrice": "357382531725297027", + "state": "0", + "currentTick": "10307", + "currentPrice": "356775527870506968", + "twapSlow": "356989646710694498", + "twapFast": "356775527870506968", + "depositTokenBalance": "8054892124978522611002", + "pairedTokenBalance": "0", + "usedToken0": "276417468333597726525256", + "usedToken1": "67818991258026969054393", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10320" + }, + "limitPosition": { + "bottomTick": "10320", + "topTick": "13920" + } + } + }, + { + "transactionHash": "0x1f7fb5e8089a41ad281ad2663b98cd192c9b87cfe791f03a676d1b987b9a8242", + "state": { + "depositToken": 0, + "blockNumber": 38950128, + "lastRebalancePrice": "356775527870506968", + "state": "0", + "currentTick": "10215", + "currentPrice": "360072842254247401", + "twapSlow": "360000838486541707", + "twapFast": "360072842254247401", + "depositTokenBalance": "3747860444082428852552", + "pairedTokenBalance": "0", + "usedToken0": "280276089982298511543321", + "usedToken1": "67504162657744365614583", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10260" + }, + "limitPosition": { + "bottomTick": "10260", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0x792b5cf564a1f3d041600f3efee48590c9757ec5f04bbd6d5c1a4a72e809fd15", + "state": { + "depositToken": 0, + "blockNumber": 38954576, + "lastRebalancePrice": "360072842254247401", + "state": "0", + "currentTick": "10253", + "currentPrice": "358707230039566080", + "twapSlow": "358492081009977562", + "twapFast": "358707230039566080", + "depositTokenBalance": "3856800000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "284087093173150980259971", + "usedToken1": "67633026257718236545539", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10260" + }, + "limitPosition": { + "bottomTick": "10260", + "topTick": "13860" + } + } + }, + { + "transactionHash": "0xe86538e657684340e31e20925f159b9edc0e136206087598543c352c4fadd211", + "state": { + "depositToken": 0, + "blockNumber": 38959376, + "lastRebalancePrice": "358707230039566080", + "state": "0", + "currentTick": "10116", + "currentPrice": "363655087139010334", + "twapSlow": "359209746715806154", + "twapFast": "361841440279536119", + "depositTokenBalance": "1756722571194932103300", + "pairedTokenBalance": "0", + "usedToken0": "267680647480030199172054", + "usedToken1": "62853369408245782143179", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10140" + }, + "limitPosition": { + "bottomTick": "10140", + "topTick": "13740" + } + } + }, + { + "transactionHash": "0xe08a94754cd10743668dbcae7a1d3d2f2cb3fd0972251235417e9226557dba0c", + "state": { + "depositToken": 0, + "blockNumber": 38961829, + "lastRebalancePrice": "363655087139010334", + "state": "0", + "currentTick": "10195", + "currentPrice": "360793672487813730", + "twapSlow": "360793672487813730", + "twapFast": "360793672487813730", + "depositTokenBalance": "14147185036584638247414", + "pairedTokenBalance": "0", + "usedToken0": "277232089533118029224619", + "usedToken1": "75384561317083131670432", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10200" + }, + "limitPosition": { + "bottomTick": "10200", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0x8897595f51e837fe1d73b18712702a27d65ba75f0f7cd7b68adcbde66c520a22", + "state": { + "depositToken": 0, + "blockNumber": 38971626, + "lastRebalancePrice": "360793672487813730", + "state": "0", + "currentTick": "10212", + "currentPrice": "360180874909469015", + "twapSlow": "360577272030792363", + "twapFast": "360361001368613230", + "depositTokenBalance": "996322735369503625182", + "pairedTokenBalance": "1", + "usedToken0": "276327402871849080588291", + "usedToken1": "78017488339274669045030", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10020", + "topTick": "13740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "10020" + } + } + }, + { + "transactionHash": "0xca433a34771cff09055f6dcc60bf9d9cc313bec98e66997ff92486b0a223f2f6", + "state": { + "depositToken": 0, + "blockNumber": 38984138, + "lastRebalancePrice": "360180874909469015", + "state": "1", + "currentTick": "10353", + "currentPrice": "355138211022521050", + "twapSlow": "352766856482522086", + "twapFast": "355138211022521050", + "depositTokenBalance": "6878817671434965307422", + "pairedTokenBalance": "0", + "usedToken0": "268156755815143502134550", + "usedToken1": "110874282168105446059955", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10080", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0x54a8cb9ec6fe10ddf95bfd1556c64d3e4ee21616d2afe95bf50d5440119ccd6c", + "state": { + "depositToken": 0, + "blockNumber": 38987044, + "lastRebalancePrice": "355138211022521050", + "state": "1", + "currentTick": "10315", + "currentPrice": "356490235844599303", + "twapSlow": "356597193610416248", + "twapFast": "356490235844599303", + "depositTokenBalance": "3988441779728245037651", + "pairedTokenBalance": "1", + "usedToken0": "275202076801221938718829", + "usedToken1": "101172329294585968673892", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10080", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0x4d82116bf259aa3b10224d012f9c1b0e06999932fdacc488f1b6b1c0a3e08f67", + "state": { + "depositToken": 0, + "blockNumber": 39009325, + "lastRebalancePrice": "356490235844599303", + "state": "1", + "currentTick": "10093", + "currentPrice": "364492414531155818", + "twapSlow": "361805259753560763", + "twapFast": "364164535319541106", + "depositTokenBalance": "2810740659789243728984", + "pairedTokenBalance": "1", + "usedToken0": "292639402672842816281349", + "usedToken1": "48686091827198191191884", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10140" + }, + "limitPosition": { + "bottomTick": "10140", + "topTick": "13680" + } + } + }, + { + "transactionHash": "0x046fbbb7b989881c72a44b2510c1743296400226ee6a5dc587bb04a64233aa53", + "state": { + "depositToken": 0, + "blockNumber": 39011781, + "lastRebalancePrice": "364492414531155818", + "state": "0", + "currentTick": "9960", + "currentPrice": "369372298955935590", + "twapSlow": "366649168107993431", + "twapFast": "369372298955935590", + "depositTokenBalance": "82000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "292614235765470797626073", + "usedToken1": "47805816345976897738259", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "9960" + }, + "limitPosition": { + "bottomTick": "10020", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0x9d8ac4f226ff0e69a5ab39b2537c91e68006efac9b00f14812a2d2cddc4ee6af", + "state": { + "depositToken": 0, + "blockNumber": 39020102, + "lastRebalancePrice": "369372298955935590", + "state": "0", + "currentTick": "9981", + "currentPrice": "368597469724372671", + "twapSlow": "368597469724372671", + "twapFast": "368597469724372671", + "depositTokenBalance": "6455072517696733782691", + "pairedTokenBalance": "1", + "usedToken0": "299070360369567170411983", + "usedToken1": "47808647952628096557886", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10020" + }, + "limitPosition": { + "bottomTick": "10020", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0x3b9788e5e2dd818e63acf177abf058de8dc702e6f83cfa01d135d2f2a3dd0ff2", + "state": { + "depositToken": 0, + "blockNumber": 39025137, + "lastRebalancePrice": "368597469724372671", + "state": "0", + "currentTick": "9842", + "currentPrice": "373756488728886799", + "twapSlow": "370333868354113061", + "twapFast": "372487937852161792", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "299192832547924312790128", + "usedToken1": "47473005053430920791238", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "9900" + }, + "limitPosition": { + "bottomTick": "9900", + "topTick": "13440" + } + } + }, + { + "transactionHash": "0x5d2d9908434f035fd135c1fd57286821e76942c32cb8dbc7f85fadc61f2b83ab", + "state": { + "depositToken": 0, + "blockNumber": 39033789, + "lastRebalancePrice": "373756488728886799", + "state": "0", + "currentTick": "9945", + "currentPrice": "369926745413398224", + "twapSlow": "370111745782478916", + "twapFast": "369963738087939563", + "depositTokenBalance": "394391462806521026231", + "pairedTokenBalance": "1", + "usedToken0": "295341090437504564657130", + "usedToken1": "58982327613227032888291", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "9960" + }, + "limitPosition": { + "bottomTick": "9960", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0xd07f838e49d2693a71d0486c6c6be6997b79ed1c5c95892ea47279b92430a915", + "state": { + "depositToken": 0, + "blockNumber": 39049750, + "lastRebalancePrice": "369926745413398224", + "state": "0", + "currentTick": "9998", + "currentPrice": "367971417622977478", + "twapSlow": "368008214764739776", + "twapFast": "367971417622977478", + "depositTokenBalance": "5407975532944843492546", + "pairedTokenBalance": "1", + "usedToken0": "297274809094611889842348", + "usedToken1": "68444213851221969176352", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10020" + }, + "limitPosition": { + "bottomTick": "10020", + "topTick": "13620" + } + } + }, + { + "transactionHash": "0x1778f7649b7a6ba6caa463cce6c80748bda67a1f452108bf69652de0de550a4d", + "state": { + "depositToken": 0, + "blockNumber": 39054620, + "lastRebalancePrice": "367971417622977478", + "state": "0", + "currentTick": "10001", + "currentPrice": "367861048272296480", + "twapSlow": "367861048272296480", + "twapFast": "367861048272296480", + "depositTokenBalance": "4136403355680123201491", + "pairedTokenBalance": "0", + "usedToken0": "301407230612624129526617", + "usedToken1": "68359955640382867488316", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10020" + }, + "limitPosition": { + "bottomTick": "10020", + "topTick": "13620" + } + } + }, + { + "transactionHash": "0xa483ef9cd003af2d47a0957668c5e0e387e382908f91669ffdc9b6ba69555679", + "state": { + "depositToken": 0, + "blockNumber": 39070981, + "lastRebalancePrice": "367861048272296480", + "state": "0", + "currentTick": "9971", + "currentPrice": "368966233107197857", + "twapSlow": "368966233107197857", + "twapFast": "368966233107197857", + "depositTokenBalance": "3930321680687543215392", + "pairedTokenBalance": "0", + "usedToken0": "304723111798157107733719", + "usedToken1": "68110087640206642548117", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "10020" + }, + "limitPosition": { + "bottomTick": "10020", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0x25e7ee496b67b05ecf9f5b24029f6c0d346ec6d8a66322adb2cc33bb2ef9f9ee", + "state": { + "depositToken": 0, + "blockNumber": 39092304, + "lastRebalancePrice": "368966233107197857", + "state": "0", + "currentTick": "9867", + "currentPrice": "372823311123180045", + "twapSlow": "369963738087939563", + "twapFast": "371743743627825213", + "depositTokenBalance": "744318848359242312729", + "pairedTokenBalance": "0", + "usedToken0": "305601536891319939634665", + "usedToken1": "67763682338646856819492", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "9900" + }, + "limitPosition": { + "bottomTick": "9900", + "topTick": "13440" + } + } + }, + { + "transactionHash": "0xe210ff6fb7749d2f1e082162e1dcd4d0ef7810cca31685aaeb5db19ad0959720", + "state": { + "depositToken": 0, + "blockNumber": 39100020, + "lastRebalancePrice": "372823311123180045", + "state": "0", + "currentTick": "9980", + "currentPrice": "368634329471345108", + "twapSlow": "370482024122968180", + "twapFast": "369335365419393651", + "depositTokenBalance": "12225000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "298008221075346105308328", + "usedToken1": "88384468298312844654624", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9780", + "topTick": "13500" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9780" + } + } + }, + { + "transactionHash": "0xdc20b1d1950a1f92e45a2ad3528ac82a17c421ee1673951fe984c43b1fe82caa", + "state": { + "depositToken": 0, + "blockNumber": 39147694, + "lastRebalancePrice": "368634329471345108", + "state": "1", + "currentTick": "10285", + "currentPrice": "357561258732986852", + "twapSlow": "357668537837802072", + "twapFast": "357561258732986852", + "depositTokenBalance": "11046890723735741111439", + "pairedTokenBalance": "1", + "usedToken0": "280889607999045109594201", + "usedToken1": "166228201395206324373188", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "13800" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xef3e82b0145154ab7b2d9b9a32f356916bfb1caef0e6bc6f7e1e7aae17fc7977", + "state": { + "depositToken": 0, + "blockNumber": 39210611, + "lastRebalancePrice": "357561258732986852", + "state": "1", + "currentTick": "10464", + "currentPrice": "351218169357163375", + "twapSlow": "351253291174099091", + "twapFast": "351218169357163375", + "depositTokenBalance": "4245267579212007097734", + "pairedTokenBalance": "0", + "usedToken0": "256920307177770698171116", + "usedToken1": "200016611956817506412530", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x421153dc96c147e0da42d0d4b0762d0c0dbb7cd8e9a5c9ba28dd42c4b39e39a4", + "state": { + "depositToken": 0, + "blockNumber": 39245074, + "lastRebalancePrice": "351218169357163375", + "state": "1", + "currentTick": "10523", + "currentPrice": "349152186098779687", + "twapSlow": "349152186098779687", + "twapFast": "349152186098779687", + "depositTokenBalance": "5150409112360492789267", + "pairedTokenBalance": "0", + "usedToken0": "256985877601142366926847", + "usedToken1": "212407004085601276705224", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "14040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xa40ac9cfdf830f599cfd83b0022f5b514258891f4b42553e6dc2312286b44aee", + "state": { + "depositToken": 0, + "blockNumber": 39295149, + "lastRebalancePrice": "349152186098779687", + "state": "1", + "currentTick": "10232", + "currentPrice": "359461268985127627", + "twapSlow": "360180874909469015", + "twapFast": "359461268985127627", + "depositTokenBalance": "4291138312890507893787", + "pairedTokenBalance": "0", + "usedToken0": "283965233580061405905566", + "usedToken1": "146554242571190504274630", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "13740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xe8e4d318851d20866f9781f879a7e45404af1a8b1fe44fb5b76d06fbc80c9749", + "state": { + "depositToken": 0, + "blockNumber": 39309442, + "lastRebalancePrice": "359461268985127627", + "state": "1", + "currentTick": "10325", + "currentPrice": "356133941599982048", + "twapSlow": "356169554994142047", + "twapFast": "356133941599982048", + "depositTokenBalance": "7093998664146780457519", + "pairedTokenBalance": "0", + "usedToken0": "282336789950966174988504", + "usedToken1": "168448738392447423223078", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x649912d77e06bdd21069caf1c14af3cbd293d36de0fd8b85d5730e571de619da", + "state": { + "depositToken": 0, + "blockNumber": 39322174, + "lastRebalancePrice": "356133941599982048", + "state": "1", + "currentTick": "10086", + "currentPrice": "364747635777493189", + "twapSlow": "361552097346821956", + "twapFast": "364747635777493189", + "depositTokenBalance": "6375341545907823836926", + "pairedTokenBalance": "1", + "usedToken0": "309895879534020820241869", + "usedToken1": "110189090702511512194586", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "13620" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0xce3f50f57ab426c6f166585650a27ad683d4ed68f96f80f3842c99579a7ed4cb", + "state": { + "depositToken": 0, + "blockNumber": 39355906, + "lastRebalancePrice": "364747635777493189", + "state": "1", + "currentTick": "8269", + "currentPrice": "437421220093635074", + "twapSlow": "433979377721052588", + "twapFast": "437421220093635074", + "depositTokenBalance": "9169621132851399508653", + "pairedTokenBalance": "0", + "usedToken0": "328073533220179622008485", + "usedToken1": "40583296159062628024148", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8280" + }, + "limitPosition": { + "bottomTick": "8280", + "topTick": "11880" + } + } + }, + { + "transactionHash": "0xcc130f66859d3cb6aa865640d7ec3dc1c978388d090d39df5c069722adca6340", + "state": { + "depositToken": 0, + "blockNumber": 39358365, + "lastRebalancePrice": "437421220093635074", + "state": "0", + "currentTick": "8157", + "currentPrice": "442347627831031602", + "twapSlow": "441110848609933295", + "twapFast": "442347627831031602", + "depositTokenBalance": "1316148777370875902131", + "pairedTokenBalance": "0", + "usedToken0": "329190459697109532112573", + "usedToken1": "40232463311365365657594", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "8160" + }, + "limitPosition": { + "bottomTick": "8160", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x1be8c55f7045579bb686ab0dd531762a20c8aa29b4ea9e12363b971f04080626", + "state": { + "depositToken": 0, + "blockNumber": 39377600, + "lastRebalancePrice": "513211803231335188", + "state": "0", + "currentTick": "6472", + "currentPrice": "523526493180632877", + "twapSlow": "513930766965460477", + "twapFast": "523526493180632877", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "352474226904558858831719", + "usedToken1": "48636233879521328922603", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6480" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0x57c39d67a5de677318bc518eb6b45de9333275436b008a32dd9d2af995a4965f", + "state": { + "depositToken": 0, + "blockNumber": 39424430, + "lastRebalancePrice": "514908114742504535", + "state": "1", + "currentTick": "7209", + "currentPrice": "486331904354183257", + "twapSlow": "486283276026580599", + "twapFast": "486331904354183257", + "depositTokenBalance": "7636311060474426931631", + "pairedTokenBalance": "1", + "usedToken0": "292059215988165275130687", + "usedToken1": "192154542538474289201403", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6420", + "topTick": "10740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6420" + } + } + }, + { + "transactionHash": "0x62a5157244fdb8e223abcac9093c57e27f15f29ca33ea2fa9ba73c743838dd2f", + "state": { + "depositToken": 0, + "blockNumber": 39468594, + "lastRebalancePrice": "486331904354183257", + "state": "1", + "currentTick": "7339", + "currentPrice": "480050819154348624", + "twapSlow": "481252387459416362", + "twapFast": "480050819154348624", + "depositTokenBalance": "7210044650680346740377", + "pairedTokenBalance": "0", + "usedToken0": "268933209233944683926710", + "usedToken1": "202501424684919363684497", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6480", + "topTick": "10860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6480" + } + } + }, + { + "transactionHash": "0x6f5e1ccf620b3918abdc66c1c49e2977ff736c2bd143d022e6ad08759e840324", + "state": { + "depositToken": 0, + "blockNumber": 39480682, + "lastRebalancePrice": "480050819154348624", + "state": "1", + "currentTick": "7417", + "currentPrice": "476321173769444721", + "twapSlow": "476702364105066252", + "twapFast": "476321173769444721", + "depositTokenBalance": "20170211479464909938877", + "pairedTokenBalance": "1", + "usedToken0": "281134249888225207674767", + "usedToken1": "214438393148331037956815", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6540", + "topTick": "10980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6540" + } + } + }, + { + "transactionHash": "0xce6283ccd399d70f6391e9d49de9616f9536b7452f691e57b72c2497d9d8772e", + "state": { + "depositToken": 0, + "blockNumber": 39483433, + "lastRebalancePrice": "476321173769444721", + "state": "1", + "currentTick": "7615", + "currentPrice": "466983232094008093", + "twapSlow": "473803475225652186", + "twapFast": "467170053407707602", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "264187298452389770496630", + "usedToken1": "250330309853133990407778", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6180", + "topTick": "7560" + } + } + }, + { + "transactionHash": "0x53753e079a801cbb83d7fbb9dfcc0e46108d99429feba809c3f9f7e8366b248c", + "state": { + "depositToken": 0, + "blockNumber": 39485893, + "lastRebalancePrice": "466983232094008093", + "state": "2", + "currentTick": "7715", + "currentPrice": "462336902451305239", + "twapSlow": "457599508680060373", + "twapFast": "462336902451305239", + "depositTokenBalance": "20090356161893783567013", + "pairedTokenBalance": "0", + "usedToken0": "282526534704552371837579", + "usedToken1": "252803624163701824776926", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6300", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0x1ed3589e093c4a1b72f2bebdeae7009efc9c1298b2939078bc180f070b0b4215", + "state": { + "depositToken": 0, + "blockNumber": 39494413, + "lastRebalancePrice": "462336902451305239", + "state": "2", + "currentTick": "7604", + "currentPrice": "467497170567156800", + "twapSlow": "464422002215125267", + "twapFast": "467123341073600242", + "depositTokenBalance": "102378589975100912645", + "pairedTokenBalance": "0", + "usedToken0": "274583358656444890367134", + "usedToken1": "225102895835540221023447", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6180", + "topTick": "7560" + } + } + }, + { + "transactionHash": "0x323dae22a4df467f786cb043aed1d5144b665cac1be98599d2ba0ee20a1daeda", + "state": { + "depositToken": 0, + "blockNumber": 39499643, + "lastRebalancePrice": "467497170567156800", + "state": "2", + "currentTick": "7781", + "currentPrice": "459295678033476800", + "twapSlow": "464700725089043811", + "twapFast": "459295678033476800", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "272087652800833979113803", + "usedToken1": "230223958993530396667699", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6360", + "topTick": "7740" + } + } + }, + { + "transactionHash": "0xf5c48d48c0d9fed36654da51eda62da1433aed19c53ecaea47daed0baf163e29", + "state": { + "depositToken": 0, + "blockNumber": 39502121, + "lastRebalancePrice": "459295678033476800", + "state": "2", + "currentTick": "7911", + "currentPrice": "453363771736942526", + "twapSlow": "453862721310747604", + "twapFast": "453363771736942526", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "270311255941887351738368", + "usedToken1": "234079597892012722779366", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0xfadcc2be1adad3e5e55a4c5f416fa0564732275dae793237f3021febbbac73bd", + "state": { + "depositToken": 0, + "blockNumber": 39504593, + "lastRebalancePrice": "453363771736942526", + "state": "2", + "currentTick": "8027", + "currentPrice": "448135396599442175", + "twapSlow": "447777049557143934", + "twapFast": "448135396599442175", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "268753970976189106394810", + "usedToken1": "237534753552410267164111", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6600", + "topTick": "7980" + } + } + }, + { + "transactionHash": "0x89636803dab116ffd58ccf3024fc7bfcf7d4085718c0e6c3ba72674663ee8129", + "state": { + "depositToken": 0, + "blockNumber": 39510988, + "lastRebalancePrice": "448135396599442175", + "state": "2", + "currentTick": "8288", + "currentPrice": "436590950294324949", + "twapSlow": "436590950294324949", + "twapFast": "436590950294324949", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "265259674467613587322243", + "usedToken1": "245388726610444264372346", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6840", + "topTick": "8280" + } + } + }, + { + "transactionHash": "0x2a69f61ec5c666a775a7b2ae6686fdcd31014800a1b1c498622ba31f9017a202", + "state": { + "depositToken": 0, + "blockNumber": 39521113, + "lastRebalancePrice": "436590950294324949", + "state": "2", + "currentTick": "8707", + "currentPrice": "418676611256872990", + "twapSlow": "418885991434349528", + "twapFast": "418676611256872990", + "depositTokenBalance": "150640058924535312472", + "pairedTokenBalance": "0", + "usedToken0": "256722981239835573646467", + "usedToken1": "255391108486804626325034", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7260", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0x55c12c390c15230690d985900ab433ca9904049a87aca81cada87a88652cf2cc", + "state": { + "depositToken": 0, + "blockNumber": 39523567, + "lastRebalancePrice": "418676611256872990", + "state": "2", + "currentTick": "9001", + "currentPrice": "406547299837289274", + "twapSlow": "414801161314552277", + "twapFast": "406019158120638595", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "252879097455837937560461", + "usedToken1": "264084077939186462802121", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7560", + "topTick": "9000" + } + } + }, + { + "transactionHash": "0xe60579584a43ddf157b6c7fe99412a573d58c08574c69bd8b837b496bd22afa0", + "state": { + "depositToken": 0, + "blockNumber": 39531868, + "lastRebalancePrice": "406547299837289274", + "state": "2", + "currentTick": "8875", + "currentPrice": "411701944154160563", + "twapSlow": "408871119852917282", + "twapFast": "411043780622368681", + "depositTokenBalance": "980137699644713436317", + "pairedTokenBalance": "0", + "usedToken0": "258614731647583509602472", + "usedToken1": "236071470592725459257482", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7440", + "topTick": "8820" + } + } + }, + { + "transactionHash": "0x52063d782f8266aebf93a109f5a40823a195ef6aaa6561f2acd156d949f7b0e5", + "state": { + "depositToken": 0, + "blockNumber": 39536764, + "lastRebalancePrice": "411701944154160563", + "state": "2", + "currentTick": "8782", + "currentPrice": "415548438389299995", + "twapSlow": "411907836300549284", + "twapFast": "414345153687281115", + "depositTokenBalance": "66318893656941576824", + "pairedTokenBalance": "2995527070026687089", + "usedToken0": "262088354418697235521256", + "usedToken1": "227583518581186672379455", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7920", + "topTick": "12300" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7920" + } + } + }, + { + "transactionHash": "0x76ea0f447b381b9bf738edf296352a5c4688fc3b6f7be43da1f6238c70d80d93", + "state": { + "depositToken": 0, + "blockNumber": 39548749, + "lastRebalancePrice": "415548438389299995", + "state": "1", + "currentTick": "8254", + "currentPrice": "438077811415143001", + "twapSlow": "434674265743766992", + "twapFast": "438077811415143001", + "depositTokenBalance": "3970460812618855307166", + "pairedTokenBalance": "1", + "usedToken0": "307111090995959546765693", + "usedToken1": "124752130697073780118057", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "11820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0x595901d7a3dadae03b10cf4d346b1821e15ff771e07523489246ad703db1d0b1", + "state": { + "depositToken": 0, + "blockNumber": 39554003, + "lastRebalancePrice": "438077811415143001", + "state": "1", + "currentTick": "7892", + "currentPrice": "454225938594777658", + "twapSlow": "453137157839775256", + "twapFast": "453862721310747604", + "depositTokenBalance": "2136602846559646126750", + "pairedTokenBalance": "0", + "usedToken0": "341976711134241030715354", + "usedToken1": "47550955908127258622429", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7920" + }, + "limitPosition": { + "bottomTick": "7920", + "topTick": "11460" + } + } + }, + { + "transactionHash": "0x3ee962df0f278f37f0fd5dd9b6af9b34793122abab293fe89398bc5b1e4bca57", + "state": { + "depositToken": 0, + "blockNumber": 39556726, + "lastRebalancePrice": "454225938594777658", + "state": "0", + "currentTick": "8028", + "currentPrice": "448090587540688106", + "twapSlow": "452186615753121695", + "twapFast": "448494030419731496", + "depositTokenBalance": "813086816610280772327", + "pairedTokenBalance": "0", + "usedToken0": "330990060711041776889720", + "usedToken1": "73049964558793826928344", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "11580" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0x13e85f69a7b18e4e5e5f234835174e89249dbb0f57c333523eff6f92a23751cb", + "state": { + "depositToken": 0, + "blockNumber": 39563740, + "lastRebalancePrice": "448090587540688106", + "state": "1", + "currentTick": "8058", + "currentPrice": "446748397178601132", + "twapSlow": "446793072018318992", + "twapFast": "446748397178601132", + "depositTokenBalance": "5429178440998588541783", + "pairedTokenBalance": "0", + "usedToken0": "333412880490941137075276", + "usedToken1": "79680716668743385482569", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "11580" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0x75c4db94f0b5572dd765ec28ccde75b068b169299da719b346eee5a4263279c8", + "state": { + "depositToken": 0, + "blockNumber": 39579953, + "lastRebalancePrice": "446748397178601132", + "state": "1", + "currentTick": "8175", + "currentPrice": "441552158011367669", + "twapSlow": "441552158011367669", + "twapFast": "441552158011367669", + "depositTokenBalance": "8350035104114482529004", + "pairedTokenBalance": "0", + "usedToken0": "329756920016243209744886", + "usedToken1": "107355724462620444596986", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "11700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0x625d501dbc2c5fe2962487ea6eff1fb4245d7e1b337294314d035546a1f132ea", + "state": { + "depositToken": 0, + "blockNumber": 39695266, + "lastRebalancePrice": "441552158011367669", + "state": "1", + "currentTick": "8561", + "currentPrice": "424833820184380703", + "twapSlow": "424833820184380703", + "twapFast": "424833820184380703", + "depositTokenBalance": "4599075851469478531424", + "pairedTokenBalance": "173856672279123342361", + "usedToken0": "287909230578866249066632", + "usedToken1": "193911465913311671977783", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "12120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0x434016fa8f139e8aff56d76bda3f49775acf40b1384eba5346a0a95419bc6d5a", + "state": { + "depositToken": 0, + "blockNumber": 39719047, + "lastRebalancePrice": "424833820184380703", + "state": "1", + "currentTick": "8942", + "currentPrice": "408952898165599064", + "twapSlow": "415506887700529942", + "twapFast": "409894525206830149", + "depositTokenBalance": "39248479558997228189", + "pairedTokenBalance": "713790724513864723", + "usedToken0": "254130675663035319444985", + "usedToken1": "272178273305066991888366", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7500", + "topTick": "8940" + } + } + }, + { + "transactionHash": "0x3dd4e5f8a72d92283f2ad79ce32f49ef077ab04ab71ecaa7a37eb7976c7c1104", + "state": { + "depositToken": 0, + "blockNumber": 39736505, + "lastRebalancePrice": "408952898165599064", + "state": "2", + "currentTick": "8810", + "currentPrice": "414386588202649843", + "twapSlow": "411372730762146480", + "twapFast": "413434641804297208", + "depositTokenBalance": "205353919661998559321", + "pairedTokenBalance": "0", + "usedToken0": "264068558170358981026088", + "usedToken1": "245759758260920444281838", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7380", + "topTick": "8760" + } + } + }, + { + "transactionHash": "0x2889a5b47a6fb8bd6b08de023ef0df4df3c09b06a117e4aaf689fd4ed77ade60", + "state": { + "depositToken": 0, + "blockNumber": 39739255, + "lastRebalancePrice": "414386588202649843", + "state": "2", + "currentTick": "8716", + "currentPrice": "418299990642155948", + "twapSlow": "415797829792910926", + "twapFast": "417547765475372319", + "depositTokenBalance": "11388567676020416512", + "pairedTokenBalance": "0", + "usedToken0": "268043585626099195451307", + "usedToken1": "236170060329527643928189", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7800", + "topTick": "12240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7800" + } + } + }, + { + "transactionHash": "0xe48156c331901b70a19248d5ff5eba8ec046973c1ef08702b49d9cc29bfe3bcd", + "state": { + "depositToken": 0, + "blockNumber": 39753253, + "lastRebalancePrice": "418299990642155948", + "state": "1", + "currentTick": "8899", + "currentPrice": "410715093524320118", + "twapSlow": "412361161537768242", + "twapFast": "411290468555530688", + "depositTokenBalance": "14423881230195095251", + "pairedTokenBalance": "0", + "usedToken0": "252926806642650702172375", + "usedToken1": "272818647070081053990101", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7500", + "topTick": "8880" + } + } + }, + { + "transactionHash": "0xbdde2fb59fdb1e9f74b4f405083cbe61dd0fcd1f7f8232567662caad996af5b4", + "state": { + "depositToken": 0, + "blockNumber": 39755714, + "lastRebalancePrice": "410715093524320118", + "state": "2", + "currentTick": "8745", + "currentPrice": "417088738395497746", + "twapSlow": "415964173874361110", + "twapFast": "417088738395497746", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "264466343749022314238631", + "usedToken1": "244513389767681762768510", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7320", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0x4492313d2ec12f76d863488d647e0ef85fd60a0e092decfeef94d68847de8b31", + "state": { + "depositToken": 0, + "blockNumber": 39771391, + "lastRebalancePrice": "417088738395497746", + "state": "2", + "currentTick": "8718", + "currentPrice": "418216343191354246", + "twapSlow": "418216343191354246", + "twapFast": "418216343191354246", + "depositTokenBalance": "20425270070237987745506", + "pairedTokenBalance": "937327897001144721", + "usedToken0": "284134188202625894327595", + "usedToken1": "242634130216096601619315", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7860", + "topTick": "12240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7860" + } + } + }, + { + "transactionHash": "0xc934e10f63b546176d10f31139b399a36d8cf968cf43719b9bfec45dd279c084", + "state": { + "depositToken": 0, + "blockNumber": 39792044, + "lastRebalancePrice": "418216343191354246", + "state": "1", + "currentTick": "9169", + "currentPrice": "399774693005110615", + "twapSlow": "413186667817342277", + "twapFast": "412897552807438121", + "depositTokenBalance": "3099976556752933113418", + "pairedTokenBalance": "1", + "usedToken0": "247979936534592012876454", + "usedToken1": "338939551773452485641950", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x0f115a535763e37480dcf2a93a474c83e9c1a892f859fd4be98e4ef1d09e68d3", + "state": { + "depositToken": 0, + "blockNumber": 39794489, + "lastRebalancePrice": "399774693005110615", + "state": "3", + "currentTick": "9169", + "currentPrice": "399774693005110615", + "twapSlow": "399774693005110615", + "twapFast": "399774693005110615", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "247963679918756612934929", + "usedToken1": "338743418739401158405634", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7740", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x691e8a3dd4ee09583a09d9f63ea66b4934a4755d91df5ae4f7e4e8a4e3af82ab", + "state": { + "depositToken": 0, + "blockNumber": 39802280, + "lastRebalancePrice": "399774693005110615", + "state": "2", + "currentTick": "9277", + "currentPrice": "395480571018601416", + "twapSlow": "399974620333080417", + "twapFast": "397105288520290918", + "depositTokenBalance": "12000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "246649970164477312352683", + "usedToken1": "342131930613628939033842", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7860", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0x639161fc0afc17af32dc70b5b879cd8067b040f29c8727e8cd1d620b9d987764", + "state": { + "depositToken": 0, + "blockNumber": 39806924, + "lastRebalancePrice": "395480571018601416", + "state": "2", + "currentTick": "9167", + "currentPrice": "399854651941458567", + "twapSlow": "395836645938749075", + "twapFast": "398856313670467101", + "depositTokenBalance": "1039138958498185305372", + "pairedTokenBalance": "0", + "usedToken0": "250136339287512914760063", + "usedToken1": "315533904575103524653368", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7740", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x33ea08ad6539ca76e0480447afd273632cfead14f37ab42a974d3817fce08761", + "state": { + "depositToken": 0, + "blockNumber": 39843248, + "lastRebalancePrice": "399854651941458567", + "state": "2", + "currentTick": "9055", + "currentPrice": "404357970392119759", + "twapSlow": "402945261812081822", + "twapFast": "404034629536165789", + "depositTokenBalance": "60947856938896702888", + "pairedTokenBalance": "13067933821451106352", + "usedToken0": "256973153690852323907317", + "usedToken1": "298829463639289752016933", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7620", + "topTick": "9000" + } + } + }, + { + "transactionHash": "0xdf15477bc0fe4a04a0f7dd1e5c78b36218194f76dd7d44d7d22403f6a604b190", + "state": { + "depositToken": 0, + "blockNumber": 39866456, + "lastRebalancePrice": "404357970392119759", + "state": "2", + "currentTick": "9076", + "currentPrice": "403509752005519404", + "twapSlow": "404115440502419317", + "twapFast": "404196267631674206", + "depositTokenBalance": "10273000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "266894730046189251651416", + "usedToken1": "299445000446752208239156", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7620", + "topTick": "9060" + } + } + }, + { + "transactionHash": "0xbfb17c549d1de8a2c935e65aed1f2175ab6e23c9bfd9f17f672bba369d08065a", + "state": { + "depositToken": 0, + "blockNumber": 39876051, + "lastRebalancePrice": "403509752005519404", + "state": "2", + "currentTick": "9181", + "currentPrice": "399295275052301589", + "twapSlow": "399734719533157299", + "twapFast": "399455017121636234", + "depositTokenBalance": "36998674037127135677", + "pairedTokenBalance": "0", + "usedToken0": "265535203198423468277463", + "usedToken1": "302901763776346426851551", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7740", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0x606d09bd50bd90cfa284c152162ba6340280358b943b2d99086ca7b3fbd4bed7", + "state": { + "depositToken": 0, + "blockNumber": 39881158, + "lastRebalancePrice": "399295275052301589", + "state": "2", + "currentTick": "9284", + "currentPrice": "395203845320236215", + "twapSlow": "395836645938749075", + "twapFast": "395322418330342850", + "depositTokenBalance": "5495468811794792654", + "pairedTokenBalance": "979658246318634818", + "usedToken0": "263408937839113352185338", + "usedToken1": "305438019288119309772785", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7860", + "topTick": "9240" + } + } + }, + { + "transactionHash": "0xbf707a85275bf2d201c5be69be010b61e95ae4f73cafb8c27dfd6bfaeb55ec5e", + "state": { + "depositToken": 0, + "blockNumber": 39883621, + "lastRebalancePrice": "395203845320236215", + "state": "2", + "currentTick": "9387", + "currentPrice": "391154338942385929", + "twapSlow": "391154338942385929", + "twapFast": "391154338942385929", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "262047006689127325245317", + "usedToken1": "308890787568758807866531", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "7980", + "topTick": "9360" + } + } + }, + { + "transactionHash": "0x2ce49f6831ad36adc006f5914fb2cf27a03211cbdc833280c35f90d1446296bf", + "state": { + "depositToken": 0, + "blockNumber": 39886075, + "lastRebalancePrice": "391154338942385929", + "state": "2", + "currentTick": "9855", + "currentPrice": "373270945241952788", + "twapSlow": "377248461986859306", + "twapFast": "373270945241952788", + "depositTokenBalance": "10000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "256023305331388983923817", + "usedToken1": "325011197454662546090970", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8400", + "topTick": "9840" + } + } + }, + { + "transactionHash": "0x04770897d7109c9a563abbdbf0e072cebfaa12a8c14d1e3b7bbda5cd871f506c", + "state": { + "depositToken": 0, + "blockNumber": 39888616, + "lastRebalancePrice": "373270945241952788", + "state": "2", + "currentTick": "9981", + "currentPrice": "368597469724372671", + "twapSlow": "372264523291062811", + "twapFast": "369298435575836067", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "246423682975053111676634", + "usedToken1": "318780854441194652806339", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8580", + "topTick": "9960" + } + } + }, + { + "transactionHash": "0xd53f7e3d29126ef9cf070cb3fc486b2e3bdca4e34e33fc622639e12088d58015", + "state": { + "depositToken": 0, + "blockNumber": 39897174, + "lastRebalancePrice": "368597469724372671", + "state": "2", + "currentTick": "10104", + "currentPrice": "364091713335956781", + "twapSlow": "365770309099393843", + "twapFast": "364638233367971158", + "depositTokenBalance": "1735560665121341468619", + "pairedTokenBalance": "0", + "usedToken0": "246650482632571539148369", + "usedToken1": "322935376350252470329104", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8700", + "topTick": "10080" + } + } + }, + { + "transactionHash": "0xe336517e4c12d9c611b8dc8f59ab0db65ec8c973cdfaa708ef42092b4bdcdc6f", + "state": { + "depositToken": 0, + "blockNumber": 39945743, + "lastRebalancePrice": "364091713335956781", + "state": "2", + "currentTick": "10157", + "currentPrice": "362167227869105443", + "twapSlow": "361877624423564073", + "twapFast": "362167227869105443", + "depositTokenBalance": "5638279901356380780678", + "pairedTokenBalance": "18846946784313173140", + "usedToken0": "250712847682705065948703", + "usedToken1": "323561178938459998853143", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8700", + "topTick": "10140" + } + } + }, + { + "transactionHash": "0x8b680c98e8d7609e98e1d6cc6af931cb3e0bd226e36cd8fb8df69ff2d5f3556e", + "state": { + "depositToken": 0, + "blockNumber": 39949695, + "lastRebalancePrice": "362167227869105443", + "state": "2", + "currentTick": "10381", + "currentPrice": "354145264452050334", + "twapSlow": "361371375518311354", + "twapFast": "356846886543836348", + "depositTokenBalance": "179470277970372658713", + "pairedTokenBalance": "0", + "usedToken0": "248084899331735690184012", + "usedToken1": "331311648331158644045441", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "10380" + } + } + }, + { + "transactionHash": "0x8a40a6d81d19e303aa79323061a0742235c8a6a6f89779f7a1fd56d9650efa90", + "state": { + "depositToken": 0, + "blockNumber": 39966265, + "lastRebalancePrice": "354145264452050334", + "state": "2", + "currentTick": "10268", + "currentPrice": "358169599399371584", + "twapSlow": "354712322047876775", + "twapFast": "357561258732986852", + "depositTokenBalance": "179754283281048643152", + "pairedTokenBalance": "0", + "usedToken0": "253187331615787832924489", + "usedToken1": "299478861868917715721853", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8820", + "topTick": "10260" + } + } + }, + { + "transactionHash": "0x9e7dc15626bc646a66cb8203baf2378fe6554bed986b9f3be6e3d933e2075e33", + "state": { + "depositToken": 0, + "blockNumber": 39969891, + "lastRebalancePrice": "358169599399371584", + "state": "2", + "currentTick": "10386", + "currentPrice": "353968244929221371", + "twapSlow": "357096754314754098", + "twapFast": "354251518656098028", + "depositTokenBalance": "191860001000000000000", + "pairedTokenBalance": "0", + "usedToken0": "251842433296768317345691", + "usedToken1": "303537577801030164618007", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "10380" + } + } + }, + { + "transactionHash": "0x0d4e64e074bbddd0508ba618dd37582163138cee8d21b8302b4fe8aec060ff44", + "state": { + "depositToken": 0, + "blockNumber": 39974129, + "lastRebalancePrice": "353968244929221371", + "state": "2", + "currentTick": "10381", + "currentPrice": "354145264452050334", + "twapSlow": "353897461897867178", + "twapFast": "354145264452050334", + "depositTokenBalance": "30010047807000000000000", + "pairedTokenBalance": "0", + "usedToken0": "281916706323803245574889", + "usedToken1": "303332887750869529781922", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "8940", + "topTick": "10380" + } + } + }, + { + "transactionHash": "0x8b43dc1bbe7dd280b81bec541bedc4c433a68b6bcaa0cd56577bf25e6dc1a89a", + "state": { + "depositToken": 0, + "blockNumber": 39976589, + "lastRebalancePrice": "354145264452050334", + "state": "2", + "currentTick": "10296", + "currentPrice": "357168177236584592", + "twapSlow": "357061048209933104", + "twapFast": "357168177236584592", + "depositTokenBalance": "9722876522990000000000", + "pairedTokenBalance": "0", + "usedToken0": "298125250770249644904161", + "usedToken1": "285066011516433467943781", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9480", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9480" + } + } + }, + { + "transactionHash": "0xbef4f8f2f54aa9cad1fbece8f6255894ae5ddc3f57935dba1c7ce312d3ea9987", + "state": { + "depositToken": 0, + "blockNumber": 40123351, + "lastRebalancePrice": "357168177236584592", + "state": "1", + "currentTick": "10176", + "currentPrice": "361479797772469484", + "twapSlow": "360685456030080339", + "twapFast": "361479797772469484", + "depositTokenBalance": "4735282331284747316771", + "pairedTokenBalance": "146837729029519804672", + "usedToken0": "255465771275029678059670", + "usedToken1": "206805358785774414521944", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "9480", + "topTick": "13740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "9480" + } + } + }, + { + "transactionHash": "0x1c2e9972f8fc0ea3c38f1d600c15a1ff5848c15b191a61985b2cc7b8f11b76f2", + "state": { + "depositToken": 0, + "blockNumber": 40150625, + "lastRebalancePrice": "361479797772469484", + "state": "1", + "currentTick": "10534", + "currentPrice": "348768349034691269", + "twapSlow": "351428952948527966", + "twapFast": "349606356379295752", + "depositTokenBalance": "5454908000000000000", + "pairedTokenBalance": "0", + "usedToken0": "227676282757910251057583", + "usedToken1": "284999396646103198247049", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9120", + "topTick": "10500" + } + } + }, + { + "transactionHash": "0x1e3993ea56cac6a0395c0431ce06fba1e8c0e01e89f70c9d73a37140bd28770d", + "state": { + "depositToken": 0, + "blockNumber": 40153098, + "lastRebalancePrice": "348768349034691269", + "state": "2", + "currentTick": "10664", + "currentPrice": "344263927885925408", + "twapSlow": "345885695428435043", + "twapFast": "344711739616524965", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "226172757579320698239252", + "usedToken1": "289102395923843156845371", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9240", + "topTick": "10620" + } + } + }, + { + "transactionHash": "0xb8a3514357471337e5ceb784a4effdbcd2c27f518a62938fc795538c60ce2818", + "state": { + "depositToken": 0, + "blockNumber": 40158989, + "lastRebalancePrice": "344263927885925408", + "state": "2", + "currentTick": "10853", + "currentPrice": "337818760578712827", + "twapSlow": "343129785993356273", + "twapFast": "339342294205732438", + "depositTokenBalance": "4908000000000000", + "pairedTokenBalance": "0", + "usedToken0": "224048761076496293279170", + "usedToken1": "295340072900209101604642", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9420", + "topTick": "10800" + } + } + }, + { + "transactionHash": "0xf1bdb35412b5d08c7c58d1eea62347a8581f40186bf88c1197ab23d1f987d404", + "state": { + "depositToken": 0, + "blockNumber": 40166154, + "lastRebalancePrice": "337818760578712827", + "state": "2", + "currentTick": "10980", + "currentPrice": "333555802541936041", + "twapSlow": "337009008131869415", + "twapFast": "334424132552647308", + "depositTokenBalance": "104611515158724117731", + "pairedTokenBalance": "0", + "usedToken0": "222687731041628931153749", + "usedToken1": "299486028438570408065754", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "10980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9540", + "topTick": "10920" + } + } + }, + { + "transactionHash": "0x3d0a04cc1a538cdb1647ba6f83f3b384041cf552ffe8c7d298da5cd549dddb92", + "state": { + "depositToken": 0, + "blockNumber": 40168604, + "lastRebalancePrice": "333555802541936041", + "state": "2", + "currentTick": "11121", + "currentPrice": "328885899399013925", + "twapSlow": "329379573727994802", + "twapFast": "328885899399013925", + "depositTokenBalance": "3419271877450315826268", + "pairedTokenBalance": "0", + "usedToken0": "224535633867268080043038", + "usedToken1": "304274780679877161980978", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9720", + "topTick": "11100" + } + } + }, + { + "transactionHash": "0xd46727ef97073095b968a11c6093768aeed2fae927f86309ce98f1c707aaed6f", + "state": { + "depositToken": 0, + "blockNumber": 40173213, + "lastRebalancePrice": "328885899399013925", + "state": "2", + "currentTick": "11315", + "currentPrice": "322567317281698005", + "twapSlow": "326755179926930488", + "twapFast": "324346236124975097", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "222372469167885139962162", + "usedToken1": "310885252158218453149006", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "9900", + "topTick": "11280" + } + } + }, + { + "transactionHash": "0x9991b5279363300b9c8d7755b61e5713638e3d3a841c9bd9fd6d57ed369d0265", + "state": { + "depositToken": 0, + "blockNumber": 40175672, + "lastRebalancePrice": "322567317281698005", + "state": "2", + "currentTick": "11451", + "currentPrice": "318210314385250341", + "twapSlow": "318242135416688866", + "twapFast": "318210314385250341", + "depositTokenBalance": "614761125184069319531", + "pairedTokenBalance": "0", + "usedToken0": "221476328961138916868480", + "usedToken1": "315626793156325862661548", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10020", + "topTick": "11400" + } + } + }, + { + "transactionHash": "0x00c006410e063957e3b40d75ae067ce73389acd20e1bee07ce9c369f794b2023", + "state": { + "depositToken": 0, + "blockNumber": 40178642, + "lastRebalancePrice": "318210314385250341", + "state": "2", + "currentTick": "11617", + "currentPrice": "312971884338231403", + "twapSlow": "316528344972034005", + "twapFast": "314163380333606170", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "219652432939550319376292", + "usedToken1": "321404627349770871231343", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10200", + "topTick": "11580" + } + } + }, + { + "transactionHash": "0x7393eb3790dc35f71cc80607ff8b46fb6a1515635463d43e0902f35c66e68ebc", + "state": { + "depositToken": 0, + "blockNumber": 40192752, + "lastRebalancePrice": "312971884338231403", + "state": "2", + "currentTick": "11772", + "currentPrice": "308158461191064393", + "twapSlow": "314477685125167130", + "twapFast": "309548229412553714", + "depositTokenBalance": "123983814501089143029", + "pairedTokenBalance": "0", + "usedToken0": "218115040792000700618577", + "usedToken1": "326890352003955998357518", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10320", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x9acaa4794a7ccd559eab1ad8fb76bae0fd88bb2f5f5932776b71bf067cb64414", + "state": { + "depositToken": 0, + "blockNumber": 40195209, + "lastRebalancePrice": "308158461191064393", + "state": "2", + "currentTick": "11948", + "currentPrice": "302782587513235672", + "twapSlow": "302994598919436765", + "twapFast": "302782587513235672", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "216142563761926330964365", + "usedToken1": "333095138625528797968729", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10500", + "topTick": "11940" + } + } + }, + { + "transactionHash": "0xf1d7f3e0ccd192ea5263ce1129164d65c15bdff7db23819303675421d5a53e98", + "state": { + "depositToken": 0, + "blockNumber": 40197668, + "lastRebalancePrice": "302782587513235672", + "state": "2", + "currentTick": "12990", + "currentPrice": "272822179182321555", + "twapSlow": "278528166227828123", + "twapFast": "273696564707893355", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "204546606034612253299698", + "usedToken1": "370432105558467344166123", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11580", + "topTick": "12960" + } + } + }, + { + "transactionHash": "0xc72354be0c40f58b2094be4b0f5b446349a58c898392a4fa94c1516e364a399b", + "state": { + "depositToken": 0, + "blockNumber": 40206381, + "lastRebalancePrice": "272822179182321555", + "state": "2", + "currentTick": "12877", + "currentPrice": "275922398048120935", + "twapSlow": "274793488506554825", + "twapFast": "275674192009443207", + "depositTokenBalance": "999200607210", + "pairedTokenBalance": "0", + "usedToken0": "208716722995064976564199", + "usedToken1": "342340556274465660008947", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11460", + "topTick": "12840" + } + } + }, + { + "transactionHash": "0x6c6b6475e488665fc871e5e5f23105bdcfb7fc3431f87f4f9337a1d04f49684e", + "state": { + "depositToken": 0, + "blockNumber": 40208900, + "lastRebalancePrice": "275922398048120935", + "state": "2", + "currentTick": "12624", + "currentPrice": "282991933803089267", + "twapSlow": "277888319543044300", + "twapFast": "280204274718568407", + "depositTokenBalance": "1871487690190000000000", + "pairedTokenBalance": "0", + "usedToken0": "226286609596598932120693", + "usedToken1": "286035306750018508626130", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "16140" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0xff786ba946d259c3e1e3fab8ac3c31473ef5db033c32e12768a5e0c1ea2c4142", + "state": { + "depositToken": 0, + "blockNumber": 40266969, + "lastRebalancePrice": "282991933803089267", + "state": "1", + "currentTick": "12913", + "currentPrice": "274930912732905025", + "twapSlow": "280204274718568407", + "twapFast": "276281312463987507", + "depositTokenBalance": "617413367362059683287", + "pairedTokenBalance": "5216155115605429741", + "usedToken0": "201833061492644962056023", + "usedToken1": "349850335475756713855154", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11460", + "topTick": "12900" + } + } + }, + { + "transactionHash": "0xf9df47f446d4ab9e5950b99e4d64dce34731b396a316f664328984892f85752a", + "state": { + "depositToken": 0, + "blockNumber": 40269416, + "lastRebalancePrice": "274930912732905025", + "state": "2", + "currentTick": "13496", + "currentPrice": "259361477447525274", + "twapSlow": "259076350926756684", + "twapFast": "259361477447525274", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "195970529240927742392352", + "usedToken1": "371245930505661557213303", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12060", + "topTick": "13440" + } + } + }, + { + "transactionHash": "0xd59097790f4f48621aaad53417c27533656047977ed752743a4a7f00c72689e9", + "state": { + "depositToken": 0, + "blockNumber": 40278390, + "lastRebalancePrice": "259361477447525274", + "state": "2", + "currentTick": "13685", + "currentPrice": "254505818809513539", + "twapSlow": "259309612931842777", + "twapFast": "255934977848715253", + "depositTokenBalance": "5640313420851375218", + "pairedTokenBalance": "0", + "usedToken0": "193135871295935455591405", + "usedToken1": "376485165676069890085429", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12240", + "topTick": "13680" + } + } + }, + { + "transactionHash": "0x06af7d12a7af1a9414fff6da79fe008b957901f5bae76c89d996feb0ed6dd97f", + "state": { + "depositToken": 0, + "blockNumber": 40280842, + "lastRebalancePrice": "254505818809513539", + "state": "2", + "currentTick": "13973", + "currentPrice": "247280949928181669", + "twapSlow": "245212592626910375", + "twapFast": "246269224074114647", + "depositTokenBalance": "14751384430321627541", + "pairedTokenBalance": "0", + "usedToken0": "190267583427270336549255", + "usedToken1": "387361151751342389611395", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12540", + "topTick": "13920" + } + } + }, + { + "transactionHash": "0xaedeed40f2f9587c737b7e9f1b70c023471989e1257b5f2d9a7dbf71118140f0", + "state": { + "depositToken": 0, + "blockNumber": 40284042, + "lastRebalancePrice": "247280949928181669", + "state": "2", + "currentTick": "13845", + "currentPrice": "250466329763109002", + "twapSlow": "249416629575614027", + "twapFast": "249915937010817287", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "196149079817023013550198", + "usedToken1": "363688652997881929234460", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12420", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0x35b0ecba30173d8d5c113729a81fa624c6f3d84b84528124fa16dcd7fb01a8c8", + "state": { + "depositToken": 0, + "blockNumber": 40286504, + "lastRebalancePrice": "250466329763109002", + "state": "2", + "currentTick": "13663", + "currentPrice": "255066319911461118", + "twapSlow": "254633097172045362", + "twapFast": "255040815829878130", + "depositTokenBalance": "5406126976578536945", + "pairedTokenBalance": "0", + "usedToken0": "205949346407888858475177", + "usedToken1": "325029715584211771218770", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12240", + "topTick": "13620" + } + } + }, + { + "transactionHash": "0x5aab2bee1af47ce60e21769966ebc91f77f2d33c73216d57a8296716483b3624", + "state": { + "depositToken": 0, + "blockNumber": 40289079, + "lastRebalancePrice": "255066319911461118", + "state": "2", + "currentTick": "13513", + "currentPrice": "258920959507729312", + "twapSlow": "256396052598280329", + "twapFast": "258016365341591038", + "depositTokenBalance": "5000002000000000000", + "pairedTokenBalance": "0", + "usedToken0": "213052045907587634622790", + "usedToken1": "297523098974460834501346", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12660", + "topTick": "17040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "12660" + } + } + }, + { + "transactionHash": "0xbefb5d95810cb6c80261b17e9e21b50f399e8164c365cb93081e90b791a79534", + "state": { + "depositToken": 0, + "blockNumber": 40294559, + "lastRebalancePrice": "258920959507729312", + "state": "1", + "currentTick": "13457", + "currentPrice": "260374911450557820", + "twapSlow": "259880693485025260", + "twapFast": "260114679688044691", + "depositTokenBalance": "11385927263410266895307", + "pairedTokenBalance": "0", + "usedToken0": "228196040011481344068116", + "usedToken1": "283562874248959358584782", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12660", + "topTick": "16980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "12660" + } + } + }, + { + "transactionHash": "0x1a8d5fde7b9d1660edb00c341454bafae9235d3bd4d126d2a07f083e27eabcf4", + "state": { + "depositToken": 0, + "blockNumber": 40301576, + "lastRebalancePrice": "260374911450557820", + "state": "1", + "currentTick": "13623", + "currentPrice": "256088577230790243", + "twapSlow": "256037367196977175", + "twapFast": "256037367196977175", + "depositTokenBalance": "13000000000962286334089", + "pairedTokenBalance": "1", + "usedToken0": "221334881651258223945094", + "usedToken1": "316538534517892698291568", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12720", + "topTick": "17160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "12720" + } + } + }, + { + "transactionHash": "0x8b74e7dda526c87533c6129876094496a3ab537b60ef6abfb6d0d36a64506fba", + "state": { + "depositToken": 0, + "blockNumber": 40317576, + "lastRebalancePrice": "256088577230790243", + "state": "1", + "currentTick": "13427", + "currentPrice": "261157169873610372", + "twapSlow": "261157169873610372", + "twapFast": "261157169873610372", + "depositTokenBalance": "5617533831616368795222", + "pairedTokenBalance": "1", + "usedToken0": "239758638461367879383852", + "usedToken1": "263504697058431179133249", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12780", + "topTick": "16980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "12780" + } + } + }, + { + "transactionHash": "0x01e92fe9cc65fb8f2d46a5ffa6debe5d7c7ccbe195bccb3e647434308403b6a3", + "state": { + "depositToken": 0, + "blockNumber": 40342671, + "lastRebalancePrice": "261157169873610372", + "state": "1", + "currentTick": "13439", + "currentPrice": "260843984877328968", + "twapSlow": "260713602002360321", + "twapFast": "260843984877328968", + "depositTokenBalance": "14741300573711355081585", + "pairedTokenBalance": "24860975374973701945", + "usedToken0": "237522487466840340995629", + "usedToken1": "248855571923576870664946", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12780", + "topTick": "16980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "12780" + } + } + }, + { + "transactionHash": "0x5ac4a2ec7c9d27bd8f296bfdaa0118bd7b8339dae244fb0ecd8157da4bc0be7e", + "state": { + "depositToken": 0, + "blockNumber": 40384597, + "lastRebalancePrice": "260843984877328968", + "state": "1", + "currentTick": "13326", + "currentPrice": "263808089355090518", + "twapSlow": "263860853611042430", + "twapFast": "263808089355090518", + "depositTokenBalance": "121368464459546387358811", + "pairedTokenBalance": "0", + "usedToken0": "356193049630305189208685", + "usedToken1": "207892354280359883029892", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13020", + "topTick": "16860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13020" + } + } + }, + { + "transactionHash": "0x6c7dc3dbed9c370210395c155d341ab571a64e156ef34d5f595ca62132babe25", + "state": { + "depositToken": 0, + "blockNumber": 40431075, + "lastRebalancePrice": "263808089355090518", + "state": "1", + "currentTick": "13614", + "currentPrice": "256319149163700424", + "twapSlow": "256242268795537457", + "twapFast": "256293519811719253", + "depositTokenBalance": "6060442086063939775230", + "pairedTokenBalance": "150062873043192724336", + "usedToken0": "330831042466477188763792", + "usedToken1": "329053518840508720180363", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13020", + "topTick": "17160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13020" + } + } + }, + { + "transactionHash": "0x53c3424e18f4cf8a5eb29f4e3f3a71180863e64d61de24f5330f9556af6dd35a", + "state": { + "depositToken": 0, + "blockNumber": 40483919, + "lastRebalancePrice": "256319149163700424", + "state": "1", + "currentTick": "13025", + "currentPrice": "271869018217096213", + "twapSlow": "271814652568436000", + "twapFast": "271869018217096213", + "depositTokenBalance": "4621907005404887910892", + "pairedTokenBalance": "19587995586183715469", + "usedToken0": "386948168554256710810314", + "usedToken1": "96405159094835957981681", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12960", + "topTick": "16560" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "12960" + } + } + }, + { + "transactionHash": "0x89363e795430132d7bd3b42bcf1f8eb9ef0c37fbcf008d5c73163b4a591fa0ac", + "state": { + "depositToken": 0, + "blockNumber": 40486365, + "lastRebalancePrice": "271869018217096213", + "state": "1", + "currentTick": "13010", + "currentPrice": "272277107330628507", + "twapSlow": "271977782137611648", + "twapFast": "272277107330628507", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "388516130816521003845693", + "usedToken1": "89119449087126033176326", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13020" + }, + "limitPosition": { + "bottomTick": "13020", + "topTick": "16620" + } + } + }, + { + "transactionHash": "0x9d29dbd59cd8ebc448349bf9500b12c75e1ab4bbe9211345035ab60196985715", + "state": { + "depositToken": 0, + "blockNumber": 40489186, + "lastRebalancePrice": "272277107330628507", + "state": "0", + "currentTick": "12830", + "currentPrice": "277222220519077413", + "twapSlow": "272576761946035939", + "twapFast": "275261011343085327", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "388735451794168120536279", + "usedToken1": "88320785907422464928712", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12840" + }, + "limitPosition": { + "bottomTick": "12840", + "topTick": "16440" + } + } + }, + { + "transactionHash": "0xf0ec05fa71815e9e6ae7715094dfb6b35066fdf80e4f9ca815591404b0e85aac", + "state": { + "depositToken": 0, + "blockNumber": 40497932, + "lastRebalancePrice": "277222220519077413", + "state": "0", + "currentTick": "12678", + "currentPrice": "281467971957398666", + "twapSlow": "279700385854119508", + "twapFast": "280793292497293754", + "depositTokenBalance": "5000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "388929675727036526898105", + "usedToken1": "87660421839763639720524", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12720" + }, + "limitPosition": { + "bottomTick": "12720", + "topTick": "16260" + } + } + }, + { + "transactionHash": "0x9653f6831de417dfd19b0f467c1070a156a88442a73864982dd9fd20d467861d", + "state": { + "depositToken": 0, + "blockNumber": 40502696, + "lastRebalancePrice": "281467971957398666", + "state": "0", + "currentTick": "12553", + "currentPrice": "285008225084583557", + "twapSlow": "283586811523685441", + "twapFast": "284495697318757327", + "depositTokenBalance": "2635263356958787611", + "pairedTokenBalance": "0", + "usedToken0": "389085878480913044683083", + "usedToken1": "87107096239053582065617", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12600" + }, + "limitPosition": { + "bottomTick": "12600", + "topTick": "16140" + } + } + }, + { + "transactionHash": "0x05e3f1d78b5f491ebba942ade6b4fad4a1e30195b97414809f79c63b9113c8b3", + "state": { + "depositToken": 0, + "blockNumber": 40527582, + "lastRebalancePrice": "285008225084583557", + "state": "0", + "currentTick": "12017", + "currentPrice": "300700682584448548", + "twapSlow": "293364714664984498", + "twapFast": "298812317296964702", + "depositTokenBalance": "282448792904996999", + "pairedTokenBalance": "688922053270422980", + "usedToken0": "389748507849444862459574", + "usedToken1": "85501423802717131399428", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12060" + }, + "limitPosition": { + "bottomTick": "12060", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0x166567a81412b44599b9e4b8e8a242b436e77a099a21b3d788b7364175dce233", + "state": { + "depositToken": 0, + "blockNumber": 40614179, + "lastRebalancePrice": "300700682584448548", + "state": "0", + "currentTick": "12013", + "currentPrice": "300820980900726116", + "twapSlow": "299111264115668204", + "twapFast": "300820980900726116", + "depositTokenBalance": "31758709724587604737732", + "pairedTokenBalance": "120515914235596081328", + "usedToken0": "395234192041452442584954", + "usedToken1": "79961190254377315511934", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12060" + }, + "limitPosition": { + "bottomTick": "12060", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0x350464d867139fd6105a6a5de4929860666592d69e6646f66f35e3e1f0ae8454", + "state": { + "depositToken": 0, + "blockNumber": 40618332, + "lastRebalancePrice": "300820980900726116", + "state": "0", + "currentTick": "11886", + "currentPrice": "304665576642695255", + "twapSlow": "303419067193329363", + "twapFast": "304239364563710718", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "395003188869638506575887", + "usedToken1": "78735898388453860684206", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11940" + }, + "limitPosition": { + "bottomTick": "11940", + "topTick": "15480" + } + } + }, + { + "transactionHash": "0x592e5329b819b25afe40167f1d4b9eb3e201dd7280f86a5f31a4c6c53fdaa6e6", + "state": { + "depositToken": 0, + "blockNumber": 40634248, + "lastRebalancePrice": "304665576642695255", + "state": "0", + "currentTick": "11751", + "currentPrice": "308806241502369379", + "twapSlow": "304939885366877020", + "twapFast": "307327597059664790", + "depositTokenBalance": "1515409114671386179137", + "pairedTokenBalance": "466520591571221836", + "usedToken0": "396681102184367177539724", + "usedToken1": "78207856477153980100242", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11760" + }, + "limitPosition": { + "bottomTick": "11760", + "topTick": "15360" + } + } + }, + { + "transactionHash": "0xdbc72853307c1df515cb5f93a076a1de7027a2b2e0f4db3dccb8f7efbe0462e8", + "state": { + "depositToken": 0, + "blockNumber": 40640893, + "lastRebalancePrice": "308806241502369379", + "state": "0", + "currentTick": "11874", + "currentPrice": "305031376480988584", + "twapSlow": "305917207015481456", + "twapFast": "305367078812714981", + "depositTokenBalance": "999459919759", + "pairedTokenBalance": "0", + "usedToken0": "382741826843280348135300", + "usedToken1": "123241851410197634097288", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11880" + }, + "limitPosition": { + "bottomTick": "11880", + "topTick": "15480" + } + } + }, + { + "transactionHash": "0x288fdba9f19eb4633faf784263a42c7b4b1e9427d903717f1ed780bb90234b22", + "state": { + "depositToken": 0, + "blockNumber": 40653581, + "lastRebalancePrice": "305031376480988584", + "state": "0", + "currentTick": "11942", + "currentPrice": "302964302489187847", + "twapSlow": "305183922675417193", + "twapFast": "304756985455960029", + "depositTokenBalance": "477125438052707172371", + "pairedTokenBalance": "1", + "usedToken0": "375917757409654086378777", + "usedToken1": "146997575821205708024887", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11700", + "topTick": "15480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11700" + } + } + }, + { + "transactionHash": "0x7c19566b1053f08d879a0eae8fecd7510848dd68e9b9eb45cb32915b26067288", + "state": { + "depositToken": 0, + "blockNumber": 40663050, + "lastRebalancePrice": "302964302489187847", + "state": "1", + "currentTick": "12007", + "currentPrice": "301001518618430557", + "twapSlow": "301091828104362647", + "twapFast": "301001518618430557", + "depositTokenBalance": "14005507075106036335749", + "pairedTokenBalance": "1", + "usedToken0": "382418785818293959812856", + "usedToken1": "172122499863132109784303", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "15540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0xe38b1b8c697b4aa882994bf19f8cecbe70bb5587b03216abd0d7d702eb1f80f7", + "state": { + "depositToken": 0, + "blockNumber": 40696384, + "lastRebalancePrice": "301001518618430557", + "state": "1", + "currentTick": "11977", + "currentPrice": "301905833753783329", + "twapSlow": "301905833753783329", + "twapFast": "301905833753783329", + "depositTokenBalance": "6106229234654594657725", + "pairedTokenBalance": "30813125421267631125", + "usedToken0": "391632336017594741728078", + "usedToken1": "160346982864716846685646", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "15540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x411d1070e21f3cf437dd0c4c4c5981237eddcd46db9e7e4644a40d4ab00224b6", + "state": { + "depositToken": 0, + "blockNumber": 40710303, + "lastRebalancePrice": "301905833753783329", + "state": "1", + "currentTick": "12058", + "currentPrice": "299470395111860608", + "twapSlow": "299680087287704396", + "twapFast": "299530292185586932", + "depositTokenBalance": "6136558170431649700816", + "pairedTokenBalance": "1", + "usedToken0": "388007499206600852601621", + "usedToken1": "192424300204468019465050", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "15600" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x42ad9e0145ba29c5939a7e6a9d3f438a51265b9e445d9a7955981707faa590de", + "state": { + "depositToken": 0, + "blockNumber": 40747472, + "lastRebalancePrice": "299470395111860608", + "state": "1", + "currentTick": "12218", + "currentPrice": "294717233135307874", + "twapSlow": "294746704858621405", + "twapFast": "294717233135307874", + "depositTokenBalance": "4587034266291159166459", + "pairedTokenBalance": "75461458936751132265", + "usedToken0": "371636207625310351669587", + "usedToken1": "254902499985989991519777", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "15780" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x5985e9c249186da9e8a4a9b96f8f230ad667bf2af83320f3640fd46ebac8a67c", + "state": { + "depositToken": 0, + "blockNumber": 40780465, + "lastRebalancePrice": "294717233135307874", + "state": "1", + "currentTick": "12730", + "currentPrice": "280008210159931054", + "twapSlow": "280036210980947047", + "twapFast": "280008210159931054", + "depositTokenBalance": "5684004017923754168138", + "pairedTokenBalance": "1", + "usedToken0": "315512223535695712338601", + "usedToken1": "451705065346685347990296", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11760", + "topTick": "16260" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11760" + } + } + }, + { + "transactionHash": "0x026dba3409dac9bba85562bb55c50d41338309914fde5c80f5054d4a897ef0c1", + "state": { + "depositToken": 0, + "blockNumber": 40783477, + "lastRebalancePrice": "280008210159931054", + "state": "1", + "currentTick": "12816", + "currentPrice": "277610584000961437", + "twapSlow": "278444624486864885", + "twapFast": "277888319543044300", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "307069970565408573259321", + "usedToken1": "479575006981914946359417", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11400", + "topTick": "12780" + } + } + }, + { + "transactionHash": "0xae284f211fa2c6eac3645606382cbde134ffe3f69a5c804747211436391b7d39", + "state": { + "depositToken": 0, + "blockNumber": 40795850, + "lastRebalancePrice": "277610584000961437", + "state": "2", + "currentTick": "12706", + "currentPrice": "280681003254009203", + "twapSlow": "278639594207123369", + "twapFast": "280260318375554868", + "depositTokenBalance": "109020027511219553581", + "pairedTokenBalance": "0", + "usedToken0": "315097803760086394132184", + "usedToken1": "451285383053763385441504", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11280", + "topTick": "12660" + } + } + }, + { + "transactionHash": "0xff6afc5f1811f7e28368ea635ebcce9450f3ebe62ef7e64e4d81d289cb06b0a9", + "state": { + "depositToken": 0, + "blockNumber": 40802316, + "lastRebalancePrice": "280681003254009203", + "state": "2", + "currentTick": "12584", + "currentPrice": "284126111673933721", + "twapSlow": "283218406603722733", + "twapFast": "283813760393094463", + "depositTokenBalance": "758522643608609868984", + "pairedTokenBalance": "0", + "usedToken0": "323793956692217093287845", + "usedToken1": "423246770408885981864144", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11160", + "topTick": "12540" + } + } + }, + { + "transactionHash": "0x2032f3dda23d0b29d158f28de93d81f5f0423f031ae1fd48f00c40185affa5e1", + "state": { + "depositToken": 0, + "blockNumber": 40804779, + "lastRebalancePrice": "284126111673933721", + "state": "2", + "currentTick": "12533", + "currentPrice": "285578783375427892", + "twapSlow": "285521676184974135", + "twapFast": "285578783375427892", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "325122116619960884654660", + "usedToken1": "418599307490997122334124", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11640", + "topTick": "16080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11640" + } + } + }, + { + "transactionHash": "0x1861bbe9dd0343abd4a9dbbcc5e852714f5e0ab4aa3da3c787518e30049ee43d", + "state": { + "depositToken": 0, + "blockNumber": 40814191, + "lastRebalancePrice": "285578783375427892", + "state": "1", + "currentTick": "12559", + "currentPrice": "284837279985303204", + "twapSlow": "284837279985303204", + "twapFast": "284837279985303204", + "depositTokenBalance": "5201588090490989876642", + "pairedTokenBalance": "0", + "usedToken0": "327737605053629633220929", + "usedToken1": "427763238579916729125739", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11640", + "topTick": "16080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11640" + } + } + }, + { + "transactionHash": "0x3e8aead9e45dc053974cfb674b4e3421214f6a83feac7695d533464231b13ce8", + "state": { + "depositToken": 0, + "blockNumber": 40845436, + "lastRebalancePrice": "284837279985303204", + "state": "1", + "currentTick": "12461", + "currentPrice": "287642267070772751", + "twapSlow": "287671031297479828", + "twapFast": "287642267070772751", + "depositTokenBalance": "4847929121227499780187", + "pairedTokenBalance": "0", + "usedToken0": "330202115233009749399872", + "usedToken1": "378679952699358434752754", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11700", + "topTick": "16020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11700" + } + } + }, + { + "transactionHash": "0x0710c2b95bc36ed0b23e51da536cc17d3a519712c2c95270d91d237dde844b57", + "state": { + "depositToken": 0, + "blockNumber": 40872528, + "lastRebalancePrice": "287642267070772751", + "state": "1", + "currentTick": "12619", + "currentPrice": "283133458072014253", + "twapSlow": "283133458072014253", + "twapFast": "283133458072014253", + "depositTokenBalance": "5120728541741528091581", + "pairedTokenBalance": "43310461509101197701", + "usedToken0": "319246230267377472614160", + "usedToken1": "434592616680231508129001", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11700", + "topTick": "16140" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11700" + } + } + }, + { + "transactionHash": "0x75187f5f93fa39bd84bd0db23546f899e3280d6ccf105b7918595ac085c10406", + "state": { + "depositToken": 0, + "blockNumber": 41018252, + "lastRebalancePrice": "287412256773824696", + "state": "1", + "currentTick": "13262", + "currentPrice": "265501790506126598", + "twapSlow": "265501790506126598", + "twapFast": "265501790506126598", + "depositTokenBalance": "14910570899135216964769", + "pairedTokenBalance": "130939569354330516602", + "usedToken0": "260667519051651294600147", + "usedToken1": "644325038706299322312894", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13260" + } + } + }, + { + "transactionHash": "0x07371d6bd44e0e3952fcbda8f8d9a4d3ef55da592fa1f21d3253a4ede2293956", + "state": { + "depositToken": 0, + "blockNumber": 41020715, + "lastRebalancePrice": "265501790506126598", + "state": "3", + "currentTick": "13272", + "currentPrice": "265236434683213834", + "twapSlow": "265448698112017213", + "twapFast": "265236434683213834", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "259591521585482019418631", + "usedToken1": "641680966385765486388100", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11820", + "topTick": "13260" + } + } + }, + { + "transactionHash": "0xb1b1d61cde5cc5d2f7f3137c3855a40b61f26ddfeeabd3880bc3bd3c26fc5eab", + "state": { + "depositToken": 0, + "blockNumber": 41025938, + "lastRebalancePrice": "265236434683213834", + "state": "2", + "currentTick": "13379", + "currentPrice": "262413674663940358", + "twapSlow": "262623679094197419", + "twapFast": "262518655879676095", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "258203014990457299707545", + "usedToken1": "646939869774993232702557", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11940", + "topTick": "13320" + } + } + }, + { + "transactionHash": "0xf45cf70c65c90af0e58fa09ce6b3e5e93ae43376327549659a7e3e42a0fefde8", + "state": { + "depositToken": 0, + "blockNumber": 41028397, + "lastRebalancePrice": "262413674663940358", + "state": "2", + "currentTick": "13566", + "currentPrice": "257552376797976607", + "twapSlow": "257397899443477260", + "twapFast": "257552376797976607", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "255804775210993385245743", + "usedToken1": "656175195706020680470080", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "7300", + "underTrigger": "7000", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12120", + "topTick": "13560" + } + } + }, + { + "transactionHash": "0x9ccb9422aa8c78b35a6a57b5fdcefbddf904c51167dc364e2d93e677d358cdd4", + "state": { + "depositToken": 0, + "blockNumber": 41047209, + "lastRebalancePrice": "257552376797976607", + "state": "2", + "currentTick": "13787", + "currentPrice": "251923182423193112", + "twapSlow": "256678229316281177", + "twapFast": "253363172638230880", + "depositTokenBalance": "774279921118539120028", + "pairedTokenBalance": "0", + "usedToken0": "252905587329619260037713", + "usedToken1": "664962967545257136191752", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12360", + "topTick": "13740" + } + } + }, + { + "transactionHash": "0x540dee55c2c514f837bdccab9137018c87342430fa74bc415aa4c1aede926fc7", + "state": { + "depositToken": 0, + "blockNumber": 41053147, + "lastRebalancePrice": "251923182423193112", + "state": "2", + "currentTick": "13906", + "currentPrice": "248943211539474801", + "twapSlow": "250090930657819564", + "twapFast": "249267031961396680", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "251287993096229817254744", + "usedToken1": "670661380922563772906544", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12480", + "topTick": "13860" + } + } + }, + { + "transactionHash": "0x72d922d2c0d5fddeb27cc6c1fe8ff840f391da93a6ab734bf633c97a0edc6031", + "state": { + "depositToken": 0, + "blockNumber": 41059887, + "lastRebalancePrice": "248943211539474801", + "state": "2", + "currentTick": "14031", + "currentPrice": "245850942946585875", + "twapSlow": "246786906937726354", + "twapFast": "246096904551964063", + "depositTokenBalance": "72271755283849016113", + "pairedTokenBalance": "0", + "usedToken0": "249796236272168594193839", + "usedToken1": "676998747499731396578372", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12600", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0xd2d1597591aaf1965abc94e2d8a1702ec391259b6537391d2596f979220b9fbf", + "state": { + "depositToken": 0, + "blockNumber": 41071700, + "lastRebalancePrice": "245850942946585875", + "state": "2", + "currentTick": "14354", + "currentPrice": "238037219095181286", + "twapSlow": "240285205541703966", + "twapFast": "238037219095181286", + "depositTokenBalance": "763357086085962920223", + "pairedTokenBalance": "0", + "usedToken0": "246560667039550807782877", + "usedToken1": "693541153746923657871970", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12900", + "topTick": "14340" + } + } + }, + { + "transactionHash": "0xea9bda90aaa87fe779666f96b9698c1526d40be5323619001d5877380cdaec38", + "state": { + "depositToken": 0, + "blockNumber": 41099286, + "lastRebalancePrice": "238037219095181286", + "state": "2", + "currentTick": "16343", + "currentPrice": "195104827010436253", + "twapSlow": "189888744130032298", + "twapFast": "194423187761784430", + "depositTokenBalance": "105171261589622104144", + "pairedTokenBalance": "139176323210025715133", + "usedToken0": "184355788770665229221599", + "usedToken1": "662603610684675238769984", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14940", + "topTick": "16320" + } + } + }, + { + "transactionHash": "0x0e8dee7b44958b633264d6106bb92796653ddeaef70101a4d8e5e98d420c37dd", + "state": { + "depositToken": 0, + "blockNumber": 41102351, + "lastRebalancePrice": "195104827010436253", + "state": "2", + "currentTick": "15833", + "currentPrice": "205312752539855409", + "twapSlow": "203391950616293973", + "twapFast": "205251171030805785", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "229323383143904615975199", + "usedToken1": "416964786463054408008470", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14400", + "topTick": "15780" + } + } + }, + { + "transactionHash": "0xca4484d017faf6e1acd881f1bd01a09b5822f5e1497218df9fded583e17dc45b", + "state": { + "depositToken": 0, + "blockNumber": 41105411, + "lastRebalancePrice": "205312752539855409", + "state": "2", + "currentTick": "15989", + "currentPrice": "202134884306898548", + "twapSlow": "204411405911941154", + "twapFast": "202215750389522926", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "227432965665189331170042", + "usedToken1": "425697297092736585346681", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14580", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0x12c66ad70c059680c9aa562eec458b92d1e5139d25bbecd9ceb47b2c0c0ad11a", + "state": { + "depositToken": 0, + "blockNumber": 41111757, + "lastRebalancePrice": "202134884306898548", + "state": "2", + "currentTick": "15866", + "currentPrice": "204636370918452169", + "twapSlow": "203473319600871116", + "twapFast": "204268375145830184", + "depositTokenBalance": "1526806881934478897140", + "pairedTokenBalance": "0", + "usedToken0": "235282754884662489249015", + "usedToken1": "394191358600015870102290", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "15840" + } + } + }, + { + "transactionHash": "0x769bad466310e39eca2c1ee3a27826ea05b221c979a19c11d025aa87ae284c26", + "state": { + "depositToken": 0, + "blockNumber": 41114818, + "lastRebalancePrice": "204636370918452169", + "state": "2", + "currentTick": "15691", + "currentPrice": "208248843737826997", + "twapSlow": "207999107483665558", + "twapFast": "208248843737826997", + "depositTokenBalance": "4250000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "244677528685320902003790", + "usedToken1": "348979619913458914290462", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0x3668312f70305812ab313c91b7370404e4682e49298a108fefbbe05a02144fe1", + "state": { + "depositToken": 0, + "blockNumber": 41119475, + "lastRebalancePrice": "208248843737826997", + "state": "2", + "currentTick": "15272", + "currentPrice": "217159397350261551", + "twapSlow": "208603150132267576", + "twapFast": "215256873161626398", + "depositTokenBalance": "719097355595250643890", + "pairedTokenBalance": "0", + "usedToken0": "267011811404641512139983", + "usedToken1": "247132970477724169031136", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14820", + "topTick": "18780" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14820" + } + } + }, + { + "transactionHash": "0x2040f7780865b067e0e8c17b587c8c1bc565046e9f585e27c2939072cb9d20d0", + "state": { + "depositToken": 0, + "blockNumber": 41127851, + "lastRebalancePrice": "217159397350261551", + "state": "1", + "currentTick": "15551", + "currentPrice": "211184683690777489", + "twapSlow": "211840339168938066", + "twapFast": "211353690581269365", + "depositTokenBalance": "1000000000000", + "pairedTokenBalance": "0", + "usedToken0": "242999122182691931877187", + "usedToken1": "353503175714839587595544", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14100", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0xa790c05579ef74f18574b22b6df27866a9cfbe07e4bb09afbfac74793f35f3d6", + "state": { + "depositToken": 0, + "blockNumber": 41130910, + "lastRebalancePrice": "211184683690777489", + "state": "2", + "currentTick": "15343", + "currentPrice": "215623102741774581", + "twapSlow": "215644665052048758", + "twapFast": "215623102741774581", + "depositTokenBalance": "404260335745407815688", + "pairedTokenBalance": "0", + "usedToken0": "254244729375128924493018", + "usedToken1": "303135476662612710258021", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13920", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0x94569bd20c129101c9b7a270bb503e78bc104fd02024476f51b78532dd6300bb", + "state": { + "depositToken": 0, + "blockNumber": 41140448, + "lastRebalancePrice": "215623102741774581", + "state": "2", + "currentTick": "15450", + "currentPrice": "213328349102900930", + "twapSlow": "214161912378832755", + "twapFast": "213477723753693511", + "depositTokenBalance": "1159334368527096483220", + "pairedTokenBalance": "0", + "usedToken0": "253943339127371100305673", + "usedToken1": "309424545255892937690095", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "15420" + } + } + }, + { + "transactionHash": "0x362fad35803171c88b573a3d2b6ef321a210efbaa2a073f9d1f37d66330d19c7", + "state": { + "depositToken": 0, + "blockNumber": 41147148, + "lastRebalancePrice": "213328349102900930", + "state": "2", + "currentTick": "15370", + "currentPrice": "215041734632403885", + "twapSlow": "214547731663662266", + "twapFast": "214848293804544061", + "depositTokenBalance": "2290700571984854961264", + "pairedTokenBalance": "1523036501329211727", + "usedToken0": "259064157263135767695762", + "usedToken1": "296231151034023807792998", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14820", + "topTick": "18900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14820" + } + } + }, + { + "transactionHash": "0x33fcedee48c2c7362aabf410f95d9ef23043346f57583025bde63d773e889a91", + "state": { + "depositToken": 0, + "blockNumber": 41157200, + "lastRebalancePrice": "215041734632403885", + "state": "1", + "currentTick": "15542", + "currentPrice": "211374825950327492", + "twapSlow": "212774443479381439", + "twapFast": "211861523202854960", + "depositTokenBalance": "1342233334564725699", + "pairedTokenBalance": "1", + "usedToken0": "245335975111683651500582", + "usedToken1": "361121479928918615441035", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14100", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x023aed376de0b799ffab3b06d254056b44f3975f4dd7257fec579563366a038f", + "state": { + "depositToken": 0, + "blockNumber": 41173457, + "lastRebalancePrice": "211374825950327492", + "state": "2", + "currentTick": "15319", + "currentPrice": "216141193744768780", + "twapSlow": "216141193744768780", + "twapFast": "216141193744768780", + "depositTokenBalance": "991844258659597132307", + "pairedTokenBalance": "0", + "usedToken0": "258275982076696845017300", + "usedToken1": "303401340689202395996422", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13920", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0x56b984dee83421dca6087e5ed16b5f9e752f72e6b2cd8af8d074d4600479bcb7", + "state": { + "depositToken": 0, + "blockNumber": 41417240, + "lastRebalancePrice": "216141193744768780", + "state": "2", + "currentTick": "15880", + "currentPrice": "204350094752808119", + "twapSlow": "203676884507886879", + "twapFast": "204350094752808119", + "depositTokenBalance": "17369361150950791237306", + "pairedTokenBalance": "205605355244978272036", + "usedToken0": "265872518906638591831506", + "usedToken1": "334888137253647484175018", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "15840" + } + } + }, + { + "transactionHash": "0x04c4741694fd1fab182a95581302ab5c9b386eef9bbc85676ac3bca280dd46c3", + "state": { + "depositToken": 0, + "blockNumber": 41454635, + "lastRebalancePrice": "204350094752808119", + "state": "2", + "currentTick": "15809", + "currentPrice": "205806070224919335", + "twapSlow": "205312752539855409", + "twapFast": "205620937340500692", + "depositTokenBalance": "678973770406231474177", + "pairedTokenBalance": "1", + "usedToken0": "265781755495386395060444", + "usedToken1": "320824644506770236043389", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15240", + "topTick": "19320" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15240" + } + } + }, + { + "transactionHash": "0xa909ddc41db820803f155a1d0ae3731626e0fb94a5f3e77c8e802dbe3b630abb", + "state": { + "depositToken": 0, + "blockNumber": 41476184, + "lastRebalancePrice": "205806070224919335", + "state": "1", + "currentTick": "15956", + "currentPrice": "202802997800975999", + "twapSlow": "204677300238999569", + "twapFast": "203229310252502836", + "depositTokenBalance": "726264975930170642737", + "pairedTokenBalance": "1", + "usedToken0": "254423820124638440423058", + "usedToken1": "380136958533084851867666", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15900" + } + } + }, + { + "transactionHash": "0x7f16352fa911cd6d75d249f49f7feba66b208f89e8152645ce95caa48c24bdf2", + "state": { + "depositToken": 0, + "blockNumber": 41487399, + "lastRebalancePrice": "202802997800975999", + "state": "2", + "currentTick": "16087", + "currentPrice": "200163735401079962", + "twapSlow": "201509267652662161", + "twapFast": "200664745691418770", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "252751825938096902527140", + "usedToken1": "388271371521938762932109", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14640", + "topTick": "16080" + } + } + }, + { + "transactionHash": "0x81743dfb6839bc12fbcb5eee82eee15899a2e5249350142746bc0843f9349f87", + "state": { + "depositToken": 0, + "blockNumber": 41514149, + "lastRebalancePrice": "200163735401079962", + "state": "2", + "currentTick": "15966", + "currentPrice": "202600306300221650", + "twapSlow": "201953053838378025", + "twapFast": "202337110176163816", + "depositTokenBalance": "785521490910099734528", + "pairedTokenBalance": "1", + "usedToken0": "260102391898713950520185", + "usedToken1": "356647853011811573440312", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0x90ed03635303ef2215cab72a01c70f3739841f9f898bde06daa8a0a0b4c4d0c6", + "state": { + "depositToken": 0, + "blockNumber": 41523555, + "lastRebalancePrice": "202600306300221650", + "state": "2", + "currentTick": "15815", + "currentPrice": "205682629790536584", + "twapSlow": "204718237745820371", + "twapFast": "205394889960457775", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "267611083821217739870125", + "usedToken1": "318910240551849758816251", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15240", + "topTick": "19380" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15240" + } + } + }, + { + "transactionHash": "0x1f96fae66840928b9de29f60eb2c0b1293b036425f15536c568beb637c7a4e81", + "state": { + "depositToken": 0, + "blockNumber": 41548669, + "lastRebalancePrice": "205682629790536584", + "state": "1", + "currentTick": "15965", + "currentPrice": "202620566330851672", + "twapSlow": "202701626715428495", + "twapFast": "202661092470323506", + "depositTokenBalance": "873411203292583910042", + "pairedTokenBalance": "2", + "usedToken0": "256241219928455918682502", + "usedToken1": "378884988415122177056613", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0xc5d6a00be01b49f73d2ad681349004d76933bf7ac40dc19f397fb783ad67dfd5", + "state": { + "depositToken": 0, + "blockNumber": 41565051, + "lastRebalancePrice": "202620566330851672", + "state": "2", + "currentTick": "15834", + "currentPrice": "205292223317523656", + "twapSlow": "203005892084466604", + "twapFast": "204841099400298197", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "263241916986206227709290", + "usedToken1": "344564728065320480511961", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14400", + "topTick": "15780" + } + } + }, + { + "transactionHash": "0x55c6bfd33f8114436559ef9df80f2254aeedeb505d36e2994d27ecfaee79f3ee", + "state": { + "depositToken": 0, + "blockNumber": 41568670, + "lastRebalancePrice": "205292223317523656", + "state": "2", + "currentTick": "15727", + "currentPrice": "207500533082594366", + "twapSlow": "207106676044926302", + "twapFast": "207355340792160125", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "266725506561237070953039", + "usedToken1": "327712433239319735398637", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0xd195240f88dd78e41c3f008b44384877a00d91feeaff2ef1fb9be93395803d97", + "state": { + "depositToken": 0, + "blockNumber": 41571726, + "lastRebalancePrice": "207500533082594366", + "state": "2", + "currentTick": "15662", + "currentPrice": "208853611636408405", + "twapSlow": "207812001852219067", + "twapFast": "208853611636408405", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "269635477121635455421774", + "usedToken1": "313736797293968214364988", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15120", + "topTick": "19200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15120" + } + } + }, + { + "transactionHash": "0x442d7e95c6f65f5f9ab42b9a1a1c4dc1808125619b03b878eec56f7b9c8d283f", + "state": { + "depositToken": 0, + "blockNumber": 41583802, + "lastRebalancePrice": "208853611636408405", + "state": "1", + "currentTick": "15508", + "currentPrice": "212094687437180006", + "twapSlow": "212306877592682349", + "twapFast": "212094687437180006", + "depositTokenBalance": "4952924933332363886733", + "pairedTokenBalance": "0", + "usedToken0": "287664500402438606669597", + "usedToken1": "253265500925941453367085", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15120", + "topTick": "19020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15120" + } + } + }, + { + "transactionHash": "0x34149d41a370a745058c7fb94adfce9c5df1bcde453d42b73953a489b8b7e4a7", + "state": { + "depositToken": 0, + "blockNumber": 41824556, + "lastRebalancePrice": "212094687437180006", + "state": "1", + "currentTick": "17842", + "currentPrice": "167946333183807400", + "twapSlow": "167946333183807400", + "twapFast": "167946333183807400", + "depositTokenBalance": "20160882717799604671291", + "pairedTokenBalance": "6", + "usedToken0": "192354276711486397806420", + "usedToken1": "794591823656152913112095", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17820" + } + } + }, + { + "transactionHash": "0x6a539451449557cf05ceeb8079896a0371ebc5e53cf75b1174c62d844fdd1323", + "state": { + "depositToken": 0, + "blockNumber": 41827613, + "lastRebalancePrice": "167946333183807400", + "state": "3", + "currentTick": "17960", + "currentPrice": "165976310940572972", + "twapSlow": "168383539912579803", + "twapFast": "165976310940572972", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "188545645183494875036039", + "usedToken1": "789661243213999487579133", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0x1bfbe68077ed84292005186d6ef597a2ac1f4d38b3cc40ffbc211622c846c631", + "state": { + "depositToken": 0, + "blockNumber": 41831265, + "lastRebalancePrice": "165976310940572972", + "state": "2", + "currentTick": "18083", + "currentPrice": "163947407096210149", + "twapSlow": "164999982522487061", + "twapFast": "164160666651313440", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "187389372244642593801844", + "usedToken1": "796671106669685767320844", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16680", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0xe711c14a2a731611fb27697368306a493d26c11dd4ccca6bc208b0ac93f7887c", + "state": { + "depositToken": 0, + "blockNumber": 41861577, + "lastRebalancePrice": "163947407096210149", + "state": "2", + "currentTick": "18206", + "currentPrice": "161943304687584407", + "twapSlow": "163097135713613409", + "twapFast": "162299954296442114", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "186188047534223876062886", + "usedToken1": "803462894214911195660312", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16800", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0x3f67915053f5c400dd532698b5f15fdfaa2920c7848c810b9110393805e9b341", + "state": { + "depositToken": 0, + "blockNumber": 41867855, + "lastRebalancePrice": "161943304687584407", + "state": "2", + "currentTick": "18345", + "currentPrice": "159707976039837245", + "twapSlow": "161200113295601555", + "twapFast": "160283932055086021", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "184897292944063743292570", + "usedToken1": "811489143122891177812736", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16920", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x4b3349ae3d87eb415251a3aa3142cf78770d3d10257f72f539c2382d157df75a", + "state": { + "depositToken": 0, + "blockNumber": 41890733, + "lastRebalancePrice": "159707976039837245", + "state": "2", + "currentTick": "18471", + "currentPrice": "157708379431800572", + "twapSlow": "158419630692433658", + "twapFast": "157897733609352809", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "183131644952696867598296", + "usedToken1": "816171970434107239971665", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17040", + "topTick": "18420" + } + } + }, + { + "transactionHash": "0xe464d44b9b5089b173c55bae4052b8de60bf0ce9a40a6c7e34ac7fba1cc51ce7", + "state": { + "depositToken": 0, + "blockNumber": 41897273, + "lastRebalancePrice": "157708379431800572", + "state": "2", + "currentTick": "18278", + "currentPrice": "160781558285721724", + "twapSlow": "158689159623071600", + "twapFast": "159452660350761089", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "197294389779545998173461", + "usedToken1": "727366392010570358920567", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16860", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0xe5ab7efdf8b8e928f1eabb9fa4c7115bcdb2ae4cb92af4ffe7a59eece4fa566a", + "state": { + "depositToken": 0, + "blockNumber": 41900326, + "lastRebalancePrice": "160781558285721724", + "state": "2", + "currentTick": "18013", + "currentPrice": "165099007265298178", + "twapSlow": "164950492426079513", + "twapFast": "165099007265298178", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "217701980477442475232439", + "usedToken1": "602315314499967229397491", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "18000" + } + } + }, + { + "transactionHash": "0x3a1b27aefdf26d956c4a75bcab344fdb5840da933ac4ae5cf6ebcc718a7a0d01", + "state": { + "depositToken": 0, + "blockNumber": 41913142, + "lastRebalancePrice": "165099007265298178", + "state": "2", + "currentTick": "17887", + "currentPrice": "167192310209043626", + "twapSlow": "166358476669894044", + "twapFast": "166874962262792313", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "225919319971657582415966", + "usedToken1": "552881230019736428070252", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16440", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0x68fe026c31a13f83eae6a7e331043ea5f9577c425a012783c3703caa32c0789e", + "state": { + "depositToken": 0, + "blockNumber": 41936050, + "lastRebalancePrice": "167192310209043626", + "state": "2", + "currentTick": "18002", + "currentPrice": "165280707004990787", + "twapSlow": "165926528004209942", + "twapFast": "165412977858449618", + "depositTokenBalance": "151907190376013471211", + "pairedTokenBalance": "0", + "usedToken0": "224824793581315169902297", + "usedToken1": "560726479202938503883242", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "18000" + } + } + }, + { + "transactionHash": "0xc7c569aa09de487075c60a0ae0472db8e6f5470ab1bfa5fa0a7dd6a22c0f6fe6", + "state": { + "depositToken": 0, + "blockNumber": 41945526, + "lastRebalancePrice": "165280707004990787", + "state": "2", + "currentTick": "18353", + "currentPrice": "159580267134717062", + "twapSlow": "164538651801972049", + "twapFast": "161151762932007913", + "depositTokenBalance": "919707186384093247313", + "pairedTokenBalance": "0", + "usedToken0": "221792958227247890943935", + "usedToken1": "584811728186846935088498", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16920", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x83bcbd59afb6ff74c6c81425961c07ff3f4d09fd6015e7c6621fde01b80b309b", + "state": { + "depositToken": 0, + "blockNumber": 41963725, + "lastRebalancePrice": "159580267134717062", + "state": "2", + "currentTick": "18230", + "currentPrice": "161555126165479726", + "twapSlow": "160717261737348196", + "twapFast": "161280729473872767", + "depositTokenBalance": "4940000000000000001", + "pairedTokenBalance": "1", + "usedToken0": "227267467534192565891703", + "usedToken1": "550707164706705859903220", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16800", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0xce77fa621417846eea5b2aaa148c2879444d32a498c94f7d63c56728135f4ec1", + "state": { + "depositToken": 0, + "blockNumber": 41967193, + "lastRebalancePrice": "161555126165479726", + "state": "2", + "currentTick": "18398", + "currentPrice": "158863805003883720", + "twapSlow": "160733333463521931", + "twapFast": "159548355868059891", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "225362243309335971079217", + "usedToken1": "562600208632577675110237", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16980", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0xe8d14fdf89d3b14075d004de68f9d046b7a4838b680ffc1fa8bb95b01442f214", + "state": { + "depositToken": 0, + "blockNumber": 41970251, + "lastRebalancePrice": "158863805003883720", + "state": "2", + "currentTick": "18295", + "currentPrice": "160508475476700711", + "twapSlow": "160524526324248381", + "twapFast": "160524526324248381", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "230142159977941109167786", + "usedToken1": "532708974973491780209144", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16860", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0x3b217d93bf7cbcb740e9db125c24870391e163a83ab77d9dc695ec2a60754928", + "state": { + "depositToken": 0, + "blockNumber": 41978465, + "lastRebalancePrice": "163260306262613175", + "state": "2", + "currentTick": "18331", + "currentPrice": "159931712598700907", + "twapSlow": "161006798837080360", + "twapFast": "159931712598700907", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "235677032505231264859315", + "usedToken1": "498645723276656251525116", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16920", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xe559c17bf947ca3f82a727e8bd452bf35c633fc782cbf38b7d1e307d11b60208", + "state": { + "depositToken": 0, + "blockNumber": 41986468, + "lastRebalancePrice": "159931712598700907", + "state": "2", + "currentTick": "18312", + "currentPrice": "160235856490902820", + "twapSlow": "160396164472760812", + "twapFast": "160283932055086021", + "depositTokenBalance": "10123999997000000000000", + "pairedTokenBalance": "0", + "usedToken0": "245807007809515846315470", + "usedToken1": "496870975815069579814483", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16860", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xf877636e1b0e55fefadb00ab3d5bd9927a40fd12e21d3787bded7ed53c6e4d45", + "state": { + "depositToken": 0, + "blockNumber": 41999334, + "lastRebalancePrice": "160235856490902820", + "state": "2", + "currentTick": "18469", + "currentPrice": "157739922684770727", + "twapSlow": "159102267590689520", + "twapFast": "158261298157697110", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "243872647015661977318846", + "usedToken1": "508839997497596987753916", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17040", + "topTick": "18420" + } + } + }, + { + "transactionHash": "0x04342bde98984d052c64fde522a8244c5c7a931121d609c476f6138333d848aa", + "state": { + "depositToken": 0, + "blockNumber": 42016691, + "lastRebalancePrice": "157739922684770727", + "state": "2", + "currentTick": "18319", + "currentPrice": "160123736243942558", + "twapSlow": "158784396925393407", + "twapFast": "159707976039837245", + "depositTokenBalance": "13555187171291573422", + "pairedTokenBalance": "1", + "usedToken0": "250515709484970714089545", + "usedToken1": "467197709221184649653864", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16920", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x4574419a31c8adf6862601de167702245367c61cdc1ef874b6bc4df4ccb66d56", + "state": { + "depositToken": 0, + "blockNumber": 42019748, + "lastRebalancePrice": "160123736243942558", + "state": "2", + "currentTick": "18386", + "currentPrice": "159054546454957585", + "twapSlow": "159532402627797111", + "twapFast": "159054546454957585", + "depositTokenBalance": "22999680865840000000000", + "pairedTokenBalance": "0", + "usedToken0": "272686793607578615703150", + "usedToken1": "472390066526051536733116", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16980", + "topTick": "18360" + } + } + }, + { + "transactionHash": "0x9ad3023c786b2f601bd0dd3dfc9a04f3151e264d82644a462835f34e50a28ccc", + "state": { + "depositToken": 0, + "blockNumber": 42022815, + "lastRebalancePrice": "159054546454957585", + "state": "2", + "currentTick": "18696", + "currentPrice": "154199736568241091", + "twapSlow": "155003623298895601", + "twapFast": "154199736568241091", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "268489209822187032833531", + "usedToken1": "499193894869571542419920", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17280", + "topTick": "18660" + } + } + }, + { + "transactionHash": "0x76e4185ccb4d94d2a25d03525c08148ea1843b16dd0c022ecbf64303a1e82e65", + "state": { + "depositToken": 0, + "blockNumber": 42026612, + "lastRebalancePrice": "154199736568241091", + "state": "2", + "currentTick": "18814", + "currentPrice": "152390962865466300", + "twapSlow": "153338674320277117", + "twapFast": "152589190025737154", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "266885185520587874800904", + "usedToken1": "509521982806545753653904", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17400", + "topTick": "18780" + } + } + }, + { + "transactionHash": "0xa17b2b9a1f44c8ad9fc1fab4d7b400ab3438d349ed951be8cd4daf2f731ca719", + "state": { + "depositToken": 0, + "blockNumber": 42041895, + "lastRebalancePrice": "152390962865466300", + "state": "2", + "currentTick": "18711", + "currentPrice": "153968621898263958", + "twapSlow": "153737853623111274", + "twapFast": "153907049843288009", + "depositTokenBalance": "65160874739044612500", + "pairedTokenBalance": "0", + "usedToken0": "271433883688809375012110", + "usedToken1": "480852627849211694222562", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17280", + "topTick": "18660" + } + } + }, + { + "transactionHash": "0x73795ff42c1c3cedd1ab8a22e355795d7fd7f910256715fcb400a1dd6f06f248", + "state": { + "depositToken": 0, + "blockNumber": 42048550, + "lastRebalancePrice": "153968621898263958", + "state": "2", + "currentTick": "18572", + "currentPrice": "156123620539643592", + "twapSlow": "154261425715469396", + "twapFast": "155407136884489704", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "258664900444815664512343", + "usedToken1": "415400993592996386185446", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17160", + "topTick": "18540" + } + } + }, + { + "transactionHash": "0xad87e01d473fb1d3e6f2b248154cdc1b6d31398269a64b4c6238e5d0fa5b9813", + "state": { + "depositToken": 0, + "blockNumber": 42052204, + "lastRebalancePrice": "156123620539643592", + "state": "2", + "currentTick": "18733", + "currentPrice": "153630280159263358", + "twapSlow": "154061026169775804", + "twapFast": "153630280159263358", + "depositTokenBalance": "23192432034560000573440", + "pairedTokenBalance": "0", + "usedToken0": "279782952226875203755388", + "usedToken1": "428945287149953755935898", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18180", + "topTick": "22260" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0xd4ccca860160942570dde214d2570990760eea72d0d51c504a13952bc1603304", + "state": { + "depositToken": 0, + "blockNumber": 42057317, + "lastRebalancePrice": "153630280159263358", + "state": "1", + "currentTick": "18744", + "currentPrice": "153461388203150187", + "twapSlow": "153553488058349766", + "twapFast": "153476734341970502", + "depositTokenBalance": "5359872412211716311649", + "pairedTokenBalance": "1", + "usedToken0": "284220291412731655858098", + "usedToken1": "435066493925147533096633", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18180", + "topTick": "22260" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0xffd7c88726dd3551a1f8b53578f255b98199d6ef136beb0e410a1180f920ddf5", + "state": { + "depositToken": 0, + "blockNumber": 42105524, + "lastRebalancePrice": "153461388203150187", + "state": "1", + "currentTick": "18748", + "currentPrice": "153400018990939057", + "twapSlow": "153415358992838151", + "twapFast": "153400018990939057", + "depositTokenBalance": "23907174875040922658299", + "pairedTokenBalance": "3", + "usedToken0": "289125514109638740041119", + "usedToken1": "409607670140811185414530", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "22260" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0x716ac5832685e34bf612fcd82aa79c2ccc2f72afc80e2bc6848674bb1119c303", + "state": { + "depositToken": 0, + "blockNumber": 42194367, + "lastRebalancePrice": "153400018990939057", + "state": "1", + "currentTick": "17668", + "currentPrice": "170894022530401231", + "twapSlow": "170894022530401231", + "twapFast": "170894022530401231", + "depositTokenBalance": "11197875141608640152221", + "pairedTokenBalance": "2", + "usedToken0": "288226664488957346473508", + "usedToken1": "337135176663764480848816", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17220", + "topTick": "21180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0xc47ac83516300ce0551ccc94e149470213a17b56e065329b26b5876aac23ed7f", + "state": { + "depositToken": 0, + "blockNumber": 42264895, + "lastRebalancePrice": "170894022530401231", + "state": "1", + "currentTick": "17794", + "currentPrice": "168754372925798545", + "twapSlow": "168754372925798545", + "twapFast": "168754372925798545", + "depositTokenBalance": "3645259947952781636537", + "pairedTokenBalance": "2", + "usedToken0": "280594069457713023323774", + "usedToken1": "404601643674547981212901", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17220", + "topTick": "21360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0xd947fdd76d504d37e705e94567b55cd6696f8cfd56ba25b4825e507f1889f407", + "state": { + "depositToken": 0, + "blockNumber": 42270116, + "lastRebalancePrice": "168754372925798545", + "state": "1", + "currentTick": "17960", + "currentPrice": "165976310940572972", + "twapSlow": "168619430158787202", + "twapFast": "166975112274732077", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "266375994099441808347596", + "usedToken1": "488055644992773447611219", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0xf19be6249d6f7c576e1802c567efc85f9300a81fc8e48434cb721bac0aec03be", + "state": { + "depositToken": 0, + "blockNumber": 42275925, + "lastRebalancePrice": "165976310940572972", + "state": "2", + "currentTick": "18048", + "currentPrice": "164522199582013848", + "twapSlow": "164423520802715381", + "twapFast": "164456407151111132", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "265212392342590595703007", + "usedToken1": "495097463224657619903471", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16620", + "topTick": "18000" + } + } + }, + { + "transactionHash": "0x29b2693e71d96ae32c99e0d3507b53c1fd66108a96b396a341b6ba71b1cd74f1", + "state": { + "depositToken": 0, + "blockNumber": 42281646, + "lastRebalancePrice": "164522199582013848", + "state": "2", + "currentTick": "18151", + "currentPrice": "162836401975552126", + "twapSlow": "163146069747404661", + "twapFast": "162885257781399687", + "depositTokenBalance": "1041344194581341310773", + "pairedTokenBalance": "0", + "usedToken0": "264890775358337723816994", + "usedToken1": "503457376580455654864654", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16740", + "topTick": "18120" + } + } + }, + { + "transactionHash": "0xef4bf760412eb6f0b2827ba3ac110db23486b1c66e54c432ac2b8ee48e01a578", + "state": { + "depositToken": 0, + "blockNumber": 42287212, + "lastRebalancePrice": "162836401975552126", + "state": "2", + "currentTick": "18253", + "currentPrice": "161183994896111944", + "twapSlow": "162706191455541400", + "twapFast": "161635919885690715", + "depositTokenBalance": "13361640571414000719", + "pairedTokenBalance": "0", + "usedToken0": "263555352943837535196078", + "usedToken1": "511774851727302149657219", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16800", + "topTick": "18240" + } + } + }, + { + "transactionHash": "0x4c38cedb5d0b405f441324d85e1e5e25ebf5a2a9962e9a936d33f5c345902fbd", + "state": { + "depositToken": 0, + "blockNumber": 42292048, + "lastRebalancePrice": "161183994896111944", + "state": "2", + "currentTick": "18356", + "currentPrice": "159532402627797111", + "twapSlow": "159915721026598247", + "twapFast": "159596225161430533", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "262200818277062694616706", + "usedToken1": "520197674806384497270292", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16920", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0xdef6e185619428b0ca03cdbb1d9b572af8231c35d3d6b1f3465f442797dc7982", + "state": { + "depositToken": 0, + "blockNumber": 42295704, + "lastRebalancePrice": "159532402627797111", + "state": "2", + "currentTick": "18758", + "currentPrice": "153246703308221524", + "twapSlow": "153937832792327165", + "twapFast": "153246703308221524", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "256985109784751005505442", + "usedToken1": "553556137507734066569708", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17340", + "topTick": "18720" + } + } + }, + { + "transactionHash": "0xf82b9221e3374804194dfb16ea43a0add6ee57e21a416bfc774e040a34bd04d0", + "state": { + "depositToken": 0, + "blockNumber": 42306714, + "lastRebalancePrice": "153246703308221524", + "state": "2", + "currentTick": "18867", + "currentPrice": "151585467484571816", + "twapSlow": "152116919547220429", + "twapFast": "151721948988811314", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "255581788478519951518781", + "usedToken1": "562763897162983265504884", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17460", + "topTick": "18840" + } + } + }, + { + "transactionHash": "0x9ee7e4702d1749d853b0427c248e427c82910f5f8f67dac4132d2e64f8d8a4da", + "state": { + "depositToken": 0, + "blockNumber": 42310377, + "lastRebalancePrice": "151585467484571816", + "state": "2", + "currentTick": "19268", + "currentPrice": "145627444807970066", + "twapSlow": "148480055470167054", + "twapFast": "146635698239610488", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "250616973977623490520149", + "usedToken1": "597090521248076287798338", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17820", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x239072a58a6ab117658136d8f0e5a7b24203db7f90ccdd81ca8ddee1b695ae80", + "state": { + "depositToken": 0, + "blockNumber": 42335435, + "lastRebalancePrice": "145627444807970066", + "state": "2", + "currentTick": "19157", + "currentPrice": "147252832390599053", + "twapSlow": "146885178450914615", + "twapFast": "147105660514881171", + "depositTokenBalance": "10000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "256728414130173679458594", + "usedToken1": "551376072558009339886307", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17700", + "topTick": "19140" + } + } + }, + { + "transactionHash": "0xb22814e213c31295e6a48ea35091cb17df8f982090cce3262dc9d77abacee9fe", + "state": { + "depositToken": 0, + "blockNumber": 42339088, + "lastRebalancePrice": "147252832390599053", + "state": "2", + "currentTick": "19277", + "currentPrice": "145496445615971734", + "twapSlow": "143559893942631778", + "twapFast": "145496445615971734", + "depositTokenBalance": "51363523120868046136", + "pairedTokenBalance": "0", + "usedToken0": "255214562657393517783618", + "usedToken1": "562157419023240288001903", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17820", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0x6186f9d4f8b325844b198f6ebe33eafc27836f23c9e98c921352c17424b64c9e", + "state": { + "depositToken": 0, + "blockNumber": 42342751, + "lastRebalancePrice": "145496445615971734", + "state": "2", + "currentTick": "19390", + "currentPrice": "143861671386709193", + "twapSlow": "143861671386709193", + "twapFast": "143861671386709193", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "253755906785715003090692", + "usedToken1": "571765411476537120909581", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17940", + "topTick": "19380" + } + } + }, + { + "transactionHash": "0xc64b1450e0e36d95ffa04da6f2b9eeafb28bcd8bb03f734cd5d44daafed02ffd", + "state": { + "depositToken": 0, + "blockNumber": 42359109, + "lastRebalancePrice": "143861671386709193", + "state": "2", + "currentTick": "19556", + "currentPrice": "141493397110426233", + "twapSlow": "142786798405950542", + "twapFast": "141904302942591839", + "depositTokenBalance": "134465197111923187450", + "pairedTokenBalance": "1", + "usedToken0": "251456523675702065404529", + "usedToken1": "585742487878850031412968", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "18120", + "topTick": "19500" + } + } + }, + { + "transactionHash": "0x2dbaf829be0583b2502ba015ab2c516119928e3a2ddb59940edec55a9dc36dab", + "state": { + "depositToken": 0, + "blockNumber": 42369613, + "lastRebalancePrice": "141493397110426233", + "state": "2", + "currentTick": "19388", + "currentPrice": "143890445159603249", + "twapSlow": "142501524441650001", + "twapFast": "143273075409568619", + "depositTokenBalance": "579202431677768958757", + "pairedTokenBalance": "0", + "usedToken0": "259696404527673649708677", + "usedToken1": "532188369559968494018581", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17940", + "topTick": "19380" + } + } + }, + { + "transactionHash": "0xeded60f5fe4d01219b3ac36d61a1dee448af7e81a5d7e21edc7d859b03196fdf", + "state": { + "depositToken": 0, + "blockNumber": 42374502, + "lastRebalancePrice": "143890445159603249", + "state": "2", + "currentTick": "19250", + "currentPrice": "145889797137491537", + "twapSlow": "143473788145806381", + "twapFast": "145118665073593325", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "266928694301852781070733", + "usedToken1": "482127472738072386223301", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "19200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "17820", + "topTick": "19200" + } + } + }, + { + "transactionHash": "0x33a1bdea77be2257f9caf18059a8f0d6083aa3a28bdcda8f953f4cdb740b00ad", + "state": { + "depositToken": 0, + "blockNumber": 42378158, + "lastRebalancePrice": "145889797137491537", + "state": "2", + "currentTick": "18939", + "currentPrice": "150498025976788535", + "twapSlow": "150904899335468014", + "twapFast": "150498025976788535", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "229329803735753953845293", + "usedToken1": "313598041348917114362822", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18480", + "topTick": "22500" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18480" + } + } + }, + { + "transactionHash": "0x3906b595b6356083238234f37da837589aed151275eb33ce3627e5c78d68d7ba", + "state": { + "depositToken": 0, + "blockNumber": 42384035, + "lastRebalancePrice": "150498025976788535", + "state": "1", + "currentTick": "18896", + "currentPrice": "151146528344818181", + "twapSlow": "151146528344818181", + "twapFast": "151146528344818181", + "depositTokenBalance": "4117959047118376877572", + "pairedTokenBalance": "1", + "usedToken0": "236369888686142000245542", + "usedToken1": "293495400687311269920540", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18480", + "topTick": "22440" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18480" + } + } + }, + { + "transactionHash": "0x650e2bf73ef67d32ca6899b2c0799c2a457208ab0bffef7e5e0c2f110e69f188", + "state": { + "depositToken": 0, + "blockNumber": 42391193, + "lastRebalancePrice": "151146528344818181", + "state": "1", + "currentTick": "18883", + "currentPrice": "151343136769197269", + "twapSlow": "151252362660721163", + "twapFast": "151343136769197269", + "depositTokenBalance": "10000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "246194075658006422855487", + "usedToken1": "285762710566630103598535", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18480", + "topTick": "22440" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18480" + } + } + }, + { + "transactionHash": "0xe02b275c72f4801af8ad8921cd24716f2c9c6fe70117b8bf4cd26ad0e83ab37b", + "state": { + "depositToken": 0, + "blockNumber": 42394848, + "lastRebalancePrice": "151343136769197269", + "state": "1", + "currentTick": "18859", + "currentPrice": "151706778310980216", + "twapSlow": "151706778310980216", + "twapFast": "151706778310980216", + "depositTokenBalance": "30136700147071497928372", + "pairedTokenBalance": "2", + "usedToken0": "278147458150461586761382", + "usedToken1": "273827403071930324663138", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18540", + "topTick": "22380" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18540" + } + } + }, + { + "transactionHash": "0x4043029842820682f137e72773d083b269a9902b7210a9929475084f9f90de95", + "state": { + "depositToken": 0, + "blockNumber": 42413418, + "lastRebalancePrice": "151706778310980216", + "state": "1", + "currentTick": "18646", + "currentPrice": "154972627223724584", + "twapSlow": "154972627223724584", + "twapFast": "154972627223724584", + "depositTokenBalance": "7031000000000000000001", + "pairedTokenBalance": "3", + "usedToken0": "303045707461592049552940", + "usedToken1": "152830565358590638959402", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "18540", + "topTick": "22200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "18540" + } + } + }, + { + "transactionHash": "0x2622e8cd28e9ed8b47a1b7f484eedaf96c396ce6cf9d01a53bcb5d6963830f35", + "state": { + "depositToken": 0, + "blockNumber": 42455478, + "lastRebalancePrice": "154972627223724584", + "state": "1", + "currentTick": "18547", + "currentPrice": "156514398321136227", + "twapSlow": "154477532145535058", + "twapFast": "156029979144539163", + "depositTokenBalance": "805739092183955926221", + "pairedTokenBalance": "1", + "usedToken0": "313144321633589626664538", + "usedToken1": "94859120788269376096588", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18600" + }, + "limitPosition": { + "bottomTick": "18600", + "topTick": "22140" + } + } + }, + { + "transactionHash": "0x44f78c66d98665dc55c5b0fdea2ce4357a3fe35e5cbd2601a4862996a81eb468", + "state": { + "depositToken": 0, + "blockNumber": 42459835, + "lastRebalancePrice": "156514398321136227", + "state": "0", + "currentTick": "18540", + "currentPrice": "156623991273463221", + "twapSlow": "156623991273463221", + "twapFast": "156623991273463221", + "depositTokenBalance": "4346000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "317387986784595883672104", + "usedToken1": "93676607212435681397336", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18540" + }, + "limitPosition": { + "bottomTick": "18600", + "topTick": "22140" + } + } + }, + { + "transactionHash": "0x326f1464d57642f2a587980e58348e1c3381066c3c58897c06a432f3d67657e4", + "state": { + "depositToken": 0, + "blockNumber": 42486141, + "lastRebalancePrice": "156623991273463221", + "state": "0", + "currentTick": "18402", + "currentPrice": "158800275365085947", + "twapSlow": "158150559548859580", + "twapFast": "158546410763356807", + "depositTokenBalance": "16621002931676592578", + "pairedTokenBalance": "1", + "usedToken0": "317505845584003254350833", + "usedToken1": "93034337566752501233473", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "18420", + "topTick": "22020" + } + } + }, + { + "transactionHash": "0x41487a358f3dc865364da62e71cffd89aed705cdcd4f89521f5c7a9ee59d3eb2", + "state": { + "depositToken": 0, + "blockNumber": 42493894, + "lastRebalancePrice": "158800275365085947", + "state": "0", + "currentTick": "18294", + "currentPrice": "160524526324248381", + "twapSlow": "159787846000251927", + "twapFast": "160428245309617009", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "317585455466722587288548", + "usedToken1": "92535684033732012560573", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18300" + }, + "limitPosition": { + "bottomTick": "18300", + "topTick": "21900" + } + } + }, + { + "transactionHash": "0xb7fdba6092d5fffc6b08cb9ae9446c208fc6bc86a56eb21c5c1e24a96971191d", + "state": { + "depositToken": 0, + "blockNumber": 42497551, + "lastRebalancePrice": "160524526324248381", + "state": "0", + "currentTick": "18161", + "currentPrice": "162673655097785292", + "twapSlow": "162673655097785292", + "twapFast": "162673655097785292", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "317684569788779915002242", + "usedToken1": "91922281092044146747984", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "18180", + "topTick": "21780" + } + } + }, + { + "transactionHash": "0x1b4248489c5a7128147a8a066e3822de878f4896d1dc9f5c71547030724d55c6", + "state": { + "depositToken": 0, + "blockNumber": 42507478, + "lastRebalancePrice": "162673655097785292", + "state": "0", + "currentTick": "18045", + "currentPrice": "164571561177718962", + "twapSlow": "163439982419613833", + "twapFast": "164226340768270624", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "317771569236971517684058", + "usedToken1": "91390518431093569838266", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18060" + }, + "limitPosition": { + "bottomTick": "18060", + "topTick": "21660" + } + } + }, + { + "transactionHash": "0x068d91e49cfac80be57724abd460a9d78e9176f75ff8002f29a929a68f5dbe7a", + "state": { + "depositToken": 0, + "blockNumber": 42511138, + "lastRebalancePrice": "164571561177718962", + "state": "0", + "currentTick": "17908", + "currentPrice": "166841592275921206", + "twapSlow": "166858276435148798", + "twapFast": "166841592275921206", + "depositTokenBalance": "72492751499592696971", + "pairedTokenBalance": "0", + "usedToken0": "316347164080292878882123", + "usedToken1": "90309413895792474088518", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17940" + }, + "limitPosition": { + "bottomTick": "17940", + "topTick": "21480" + } + } + }, + { + "transactionHash": "0xf2ff9ef6bca267b5d087092d0918cf381829dfb539add4979f8b50ca9ae3ebd8", + "state": { + "depositToken": 0, + "blockNumber": 42545887, + "lastRebalancePrice": "166841592275921206", + "state": "0", + "currentTick": "17769", + "currentPrice": "169176765509580440", + "twapSlow": "168349868255430034", + "twapFast": "168568854445219434", + "depositTokenBalance": "639447102170599664200", + "pairedTokenBalance": "1", + "usedToken0": "227604918862465145923942", + "usedToken1": "64577391527945929178984", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17820" + }, + "limitPosition": { + "bottomTick": "17820", + "topTick": "21360" + } + } + }, + { + "transactionHash": "0x1c3684c627ef77028d7ca586fdd1e9a8f73a7647a84f4519ebe9b466d2ac9ca2", + "state": { + "depositToken": 0, + "blockNumber": 42553528, + "lastRebalancePrice": "169176765509580440", + "state": "0", + "currentTick": "17881", + "currentPrice": "167292650677359681", + "twapSlow": "167946333183807400", + "twapFast": "167409790670146303", + "depositTokenBalance": "890000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "223192164337277354774297", + "usedToken1": "90109729043926767569496", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17940" + }, + "limitPosition": { + "bottomTick": "17940", + "topTick": "21480" + } + } + }, + { + "transactionHash": "0x1b57b599b2f460e380dd4ccaca3b3e4de1b323b72288436832c71b79fa0823d3", + "state": { + "depositToken": 0, + "blockNumber": 42557183, + "lastRebalancePrice": "167292650677359681", + "state": "0", + "currentTick": "17901", + "currentPrice": "166958416433088768", + "twapSlow": "166958416433088768", + "twapFast": "166958416433088768", + "depositTokenBalance": "4135940767235637542391", + "pairedTokenBalance": "0", + "usedToken0": "227312741920140463288273", + "usedToken1": "90201827837880449277904", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17940" + }, + "limitPosition": { + "bottomTick": "17940", + "topTick": "21480" + } + } + }, + { + "transactionHash": "0xa673d73f5da96147258aaea2882b0569ad0c80b0ea358a0219258c17a0416a2d", + "state": { + "depositToken": 0, + "blockNumber": 42564138, + "lastRebalancePrice": "166958416433088768", + "state": "0", + "currentTick": "18008", + "currentPrice": "165181573280482627", + "twapSlow": "165578465292001135", + "twapFast": "165313764799198856", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "222471979558900819274921", + "usedToken1": "119407397414384383388665", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18060" + }, + "limitPosition": { + "bottomTick": "18060", + "topTick": "21600" + } + } + }, + { + "transactionHash": "0x1cfb53700f126df12df11d2ef94edabcede4b925145b9c94fa9ef80ffe8a17b9", + "state": { + "depositToken": 0, + "blockNumber": 42568448, + "lastRebalancePrice": "165181573280482627", + "state": "0", + "currentTick": "18129", + "currentPrice": "163195018462874121", + "twapSlow": "164604477135670117", + "twapFast": "163799928179113545", + "depositTokenBalance": "496608140559496883803", + "pairedTokenBalance": "1", + "usedToken0": "218181267737324741048512", + "usedToken1": "148690579598345185510490", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17940", + "topTick": "21660" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0xdc668bc5d9c51a0248a561d40253a21f587f0ff2fec9d92895d57d5d5ad886b1", + "state": { + "depositToken": 0, + "blockNumber": 42588633, + "lastRebalancePrice": "163195018462874121", + "state": "1", + "currentTick": "17992", + "currentPrice": "165446062108151087", + "twapSlow": "165446062108151087", + "twapFast": "165446062108151087", + "depositTokenBalance": "3054913773393578036378", + "pairedTokenBalance": "2", + "usedToken0": "230573403670397691591538", + "usedToken1": "92312224374704929415974", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17940", + "topTick": "21540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17940" + } + } + }, + { + "transactionHash": "0x6a55dcf53f689b133d00b0e619f6a92a4dd43179fc129b3ae287f3c8207093a2", + "state": { + "depositToken": 0, + "blockNumber": 42592297, + "lastRebalancePrice": "165446062108151087", + "state": "1", + "currentTick": "17956", + "currentPrice": "166042711424191779", + "twapSlow": "166042711424191779", + "twapFast": "166042711424191779", + "depositTokenBalance": "1999193183240490148519", + "pairedTokenBalance": "0", + "usedToken0": "235079870977620573666221", + "usedToken1": "76846005833467391331691", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "18000", + "topTick": "21540" + } + } + }, + { + "transactionHash": "0x091f62b05061a68d13e64f7fff97c14c14ec0e10651e1b51033a09102698879b", + "state": { + "depositToken": 0, + "blockNumber": 42595957, + "lastRebalancePrice": "166042711424191779", + "state": "0", + "currentTick": "17832", + "currentPrice": "168114355112998227", + "twapSlow": "166841592275921206", + "twapFast": "168114355112998227", + "depositTokenBalance": "14309057387294131030871", + "pairedTokenBalance": "0", + "usedToken0": "249442718021070801066548", + "usedToken1": "76371498681012859951248", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17880" + }, + "limitPosition": { + "bottomTick": "17880", + "topTick": "21420" + } + } + }, + { + "transactionHash": "0xa85d139e6fcb48ff6544b9b84b4fcf060c5ef9d0bef0b897ca6583ed0f0cc0c1", + "state": { + "depositToken": 0, + "blockNumber": 42609578, + "lastRebalancePrice": "168114355112998227", + "state": "0", + "currentTick": "17723", + "currentPrice": "169956732181313867", + "twapSlow": "168973885287288784", + "twapFast": "169617175364505877", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "249458572256460594491318", + "usedToken1": "75952375743117733705810", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17760" + }, + "limitPosition": { + "bottomTick": "17760", + "topTick": "21300" + } + } + }, + { + "transactionHash": "0x869f15b7564b46db86ccda3412a7e6020f82167ac861d2a59b526326a0c3063c", + "state": { + "depositToken": 0, + "blockNumber": 42613244, + "lastRebalancePrice": "169956732181313867", + "state": "0", + "currentTick": "17588", + "currentPrice": "172266589029478684", + "twapSlow": "171716244482232498", + "twapFast": "172266589029478684", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "249544090518315244234620", + "usedToken1": "75428862162992995023393", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17640" + }, + "limitPosition": { + "bottomTick": "17640", + "topTick": "21180" + } + } + }, + { + "transactionHash": "0xb9e75796069ce62fadd0ec2de1662acf87feda2d9f385481cef8d9b7a8c23f4e", + "state": { + "depositToken": 0, + "blockNumber": 42616909, + "lastRebalancePrice": "172266589029478684", + "state": "0", + "currentTick": "17042", + "currentPrice": "181933363115052494", + "twapSlow": "181388408114200306", + "twapFast": "181933363115052494", + "depositTokenBalance": "5004381298677854817359", + "pairedTokenBalance": "0", + "usedToken0": "254908241601463046517041", + "usedToken1": "73397519028018071852467", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "17100" + }, + "limitPosition": { + "bottomTick": "17100", + "topTick": "20640" + } + } + }, + { + "transactionHash": "0x0b4bb85cc5251d20a721533bc3c3a75628279ac56f8f2ba8b82755c5db215d08", + "state": { + "depositToken": 0, + "blockNumber": 42620573, + "lastRebalancePrice": "181933363115052494", + "state": "0", + "currentTick": "16667", + "currentPrice": "188885046119306906", + "twapSlow": "187661335870593848", + "twapFast": "188885046119306906", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "255160481013263717600223", + "usedToken1": "72035836131048998188259", + "priceChangeTrigger": "100", + "simulateTrigger": "9400", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16680" + }, + "limitPosition": { + "bottomTick": "16680", + "topTick": "20280" + } + } + }, + { + "transactionHash": "0x2b1d6588ff30a811ffadcec09aea4e6d4c45db14ab2c12b68f65533c50546f38", + "state": { + "depositToken": 0, + "blockNumber": 42624246, + "lastRebalancePrice": "188885046119306906", + "state": "0", + "currentTick": "16252", + "currentPrice": "196888294233443154", + "twapSlow": "195280491608874633", + "twapFast": "196888294233443154", + "depositTokenBalance": "405425337796283352248", + "pairedTokenBalance": "0", + "usedToken0": "253656684702233531404331", + "usedToken1": "70158945226489168044707", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16260" + }, + "limitPosition": { + "bottomTick": "16260", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x6a24220e476462f046661c8f8532510838a77923cbbb31602d5414381294bf8e", + "state": { + "depositToken": 0, + "blockNumber": 42628546, + "lastRebalancePrice": "196888294233443154", + "state": "0", + "currentTick": "16145", + "currentPrice": "199006203698096091", + "twapSlow": "197756467901597239", + "twapFast": "198529185310764685", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "253716027849848468112310", + "usedToken1": "69571429360456707595648", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16200" + }, + "limitPosition": { + "bottomTick": "16200", + "topTick": "19740" + } + } + }, + { + "transactionHash": "0x02350010928837393c7aa022b92b609dd02794e60efff68c6f12275200f3132d", + "state": { + "depositToken": 0, + "blockNumber": 42632221, + "lastRebalancePrice": "199006203698096091", + "state": "0", + "currentTick": "15411", + "currentPrice": "214161912378832755", + "twapSlow": "212115896905923724", + "twapFast": "214161912378832755", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "254233700827163959302232", + "usedToken1": "67063803640717641346299", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15420" + }, + "limitPosition": { + "bottomTick": "15420", + "topTick": "19020" + } + } + }, + { + "transactionHash": "0x59155e2e642d90bb78d27894365b150e79d4c3a7e4e30e67b997dcc16775e37f", + "state": { + "depositToken": 0, + "blockNumber": 42635885, + "lastRebalancePrice": "214161912378832755", + "state": "0", + "currentTick": "15283", + "currentPrice": "216920665276292658", + "twapSlow": "219451468738252476", + "twapFast": "217354919003503958", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "255325343738280781635567", + "usedToken1": "66638596049483120709118", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15300" + }, + "limitPosition": { + "bottomTick": "15300", + "topTick": "18900" + } + } + }, + { + "transactionHash": "0xdf54b5971bfcdda3f91d5ef20ad376a4c282c83853035f71172e6069092863ff", + "state": { + "depositToken": 0, + "blockNumber": 42639550, + "lastRebalancePrice": "216920665276292658", + "state": "0", + "currentTick": "15261", + "currentPrice": "217398392160853849", + "twapSlow": "217833602250060193", + "twapFast": "217398392160853849", + "depositTokenBalance": "3639755330097993496499", + "pairedTokenBalance": "0", + "usedToken0": "258981275002012102264859", + "usedToken1": "66564101691231865947155", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15300" + }, + "limitPosition": { + "bottomTick": "15300", + "topTick": "18840" + } + } + }, + { + "transactionHash": "0xaa41831cdc3f75b111e4e553539e3dbaee961547b4b1c4a4167f4ca03dd5c677", + "state": { + "depositToken": 0, + "blockNumber": 42643224, + "lastRebalancePrice": "217398392160853849", + "state": "0", + "currentTick": "14837", + "currentPrice": "226813809633570380", + "twapSlow": "225209214865293250", + "twapFast": "226292763356194898", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "259291004772948498749256", + "usedToken1": "65169168779445309836990", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14880" + }, + "limitPosition": { + "bottomTick": "14880", + "topTick": "18420" + } + } + }, + { + "transactionHash": "0x2810e4fcf0b5d8cafd8831fdafa4f4f2f60dbc1c430d8a7ecf0d0f93cbe25863", + "state": { + "depositToken": 0, + "blockNumber": 42646894, + "lastRebalancePrice": "226813809633570380", + "state": "0", + "currentTick": "14260", + "currentPrice": "240285205541703966", + "twapSlow": "234399708510570967", + "twapFast": "237918236182886923", + "depositTokenBalance": "7656227192808760629", + "pairedTokenBalance": "0", + "usedToken0": "259734361279208621175815", + "usedToken1": "63318000787113389364564", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14280" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "17880" + } + } + }, + { + "transactionHash": "0x65aa8461397ba11647264241cc9920ceb3b12e1398d9530791ca6c9d972a6dd8", + "state": { + "depositToken": 0, + "blockNumber": 42650558, + "lastRebalancePrice": "240285205541703966", + "state": "0", + "currentTick": "13698", + "currentPrice": "254175192729602445", + "twapSlow": "248843659144202172", + "twapFast": "253743483543834331", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "261168542707434914451007", + "usedToken1": "61564834802359904731997", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13740" + }, + "limitPosition": { + "bottomTick": "13740", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0x5f9241cfb7014880bafd04a5ddf42677d5aa0c3c44d9677da27a88c916341519", + "state": { + "depositToken": 0, + "blockNumber": 42657457, + "lastRebalancePrice": "254175192729602445", + "state": "0", + "currentTick": "13808", + "currentPrice": "251394725236767408", + "twapSlow": "252150004000884380", + "twapFast": "251621071012701908", + "depositTokenBalance": "2046676166149171433768", + "pairedTokenBalance": "0", + "usedToken0": "253183405974752430779364", + "usedToken1": "82365321966934526084105", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13860" + }, + "limitPosition": { + "bottomTick": "13860", + "topTick": "17400" + } + } + }, + { + "transactionHash": "0x1b9f87dffdba463a1c51d3fd638f3301b91c5ca646c5f837789bc1b352c61955", + "state": { + "depositToken": 0, + "blockNumber": 42664485, + "lastRebalancePrice": "251394725236767408", + "state": "0", + "currentTick": "13913", + "currentPrice": "248769020974590396", + "twapSlow": "249291958664592820", + "twapFast": "248818777266475524", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "248947855598010997615715", + "usedToken1": "99125623732341926587401", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13740", + "topTick": "17460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13740" + } + } + }, + { + "transactionHash": "0x78e864e6fd9c91eedfd11015a358b0bcdfb726bb7a56ec0b3feac8244267201b", + "state": { + "depositToken": 0, + "blockNumber": 42668161, + "lastRebalancePrice": "248769020974590396", + "state": "1", + "currentTick": "13893", + "currentPrice": "249267031961396680", + "twapSlow": "248023869454737084", + "twapFast": "249267031961396680", + "depositTokenBalance": "18679062813181130987473", + "pairedTokenBalance": "1", + "usedToken0": "269192792659397597874891", + "usedToken1": "92892874325107944167816", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13740", + "topTick": "17400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13740" + } + } + }, + { + "transactionHash": "0xdf8ef4670f836ec251518c6f1b5e41f50b0d6ff9f026c4d65edf7a33da905d9f", + "state": { + "depositToken": 0, + "blockNumber": 42671825, + "lastRebalancePrice": "249267031961396680", + "state": "1", + "currentTick": "13950", + "currentPrice": "247850322171973418", + "twapSlow": "247850322171973418", + "twapFast": "247850322171973418", + "depositTokenBalance": "3800427510624439122580", + "pairedTokenBalance": "1", + "usedToken0": "268203307003075665061376", + "usedToken1": "112422584375098747601928", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13800", + "topTick": "17460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0xe5f1b7500fc1c16760ab3f8ccba7b513c200914c8e351ca101bd9d37258544f4", + "state": { + "depositToken": 0, + "blockNumber": 42691736, + "lastRebalancePrice": "247850322171973418", + "state": "1", + "currentTick": "14246", + "currentPrice": "240621823576487266", + "twapSlow": "240814388422935564", + "twapFast": "240621823576487266", + "depositTokenBalance": "7463055936946236979461", + "pairedTokenBalance": "1", + "usedToken0": "246563353619629201122747", + "usedToken1": "209797387959590357306907", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13800", + "topTick": "17760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0x1a2098ccaccae2424b9b97d8b9d5cf9fe95ee1a345c108e064a0066620fb262c", + "state": { + "depositToken": 0, + "blockNumber": 42698404, + "lastRebalancePrice": "240621823576487266", + "state": "1", + "currentTick": "14555", + "currentPrice": "233300669596095777", + "twapSlow": "235315606419710504", + "twapFast": "234095202086632748", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "222959847813684086114224", + "usedToken1": "307130117661783481362243", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13140", + "topTick": "14520" + } + } + }, + { + "transactionHash": "0x1eae4790238f51009e755757ab50187a9233304b66ccfa4a172e59f2c7ce7842", + "state": { + "depositToken": 0, + "blockNumber": 42702522, + "lastRebalancePrice": "233300669596095777", + "state": "2", + "currentTick": "14667", + "currentPrice": "230702409423494555", + "twapSlow": "231997902136924324", + "twapFast": "230956308998259094", + "depositTokenBalance": "2623963104855778425957", + "pairedTokenBalance": "0", + "usedToken0": "224346106740183699454644", + "usedToken1": "312559210794492402363021", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14640" + } + } + }, + { + "transactionHash": "0xda5daee54cc279c396d486aabe98870c4dd63b9ca54998b238bc6e609a40f997", + "state": { + "depositToken": 0, + "blockNumber": 42706186, + "lastRebalancePrice": "230702409423494555", + "state": "2", + "currentTick": "14801", + "currentPrice": "227631769896039428", + "twapSlow": "225840652695994987", + "twapFast": "227631769896039428", + "depositTokenBalance": "104924946277301342970", + "pairedTokenBalance": "0", + "usedToken0": "222942166836659722937990", + "usedToken1": "319049485098143080382656", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13380", + "topTick": "14760" + } + } + }, + { + "transactionHash": "0x6146ca8594ca45d841b72d112a25b1c8d5b1c6054fa40743c78a2f30f21e1631", + "state": { + "depositToken": 0, + "blockNumber": 42709851, + "lastRebalancePrice": "227631769896039428", + "state": "2", + "currentTick": "14865", + "currentPrice": "226179650910512641", + "twapSlow": "225660061449379734", + "twapFast": "226179650910512641", + "depositTokenBalance": "7747856332001277548793", + "pairedTokenBalance": "0", + "usedToken0": "229912046941183564475945", + "usedToken1": "322171245280459903205840", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13440", + "topTick": "14820" + } + } + }, + { + "transactionHash": "0x337db62ca8af29254368596c2218035660f16fa5eabd40d91f593cdcaed5f18e", + "state": { + "depositToken": 0, + "blockNumber": 42713516, + "lastRebalancePrice": "226179650910512641", + "state": "2", + "currentTick": "15135", + "currentPrice": "220154803006768700", + "twapSlow": "224377521934941653", + "twapFast": "220154803006768700", + "depositTokenBalance": "81924608772886567068", + "pairedTokenBalance": "0", + "usedToken0": "226908714254404018861740", + "usedToken1": "335931561808943708144483", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15120" + } + } + }, + { + "transactionHash": "0x4ffe61458b4b27f0973be8c7b5de73f898b86eace8f5b1d437d9198d14f20630", + "state": { + "depositToken": 0, + "blockNumber": 42725056, + "lastRebalancePrice": "220154803006768700", + "state": "2", + "currentTick": "15027", + "currentPrice": "222545240487912373", + "twapSlow": "220088769772953632", + "twapFast": "221856452853617186", + "depositTokenBalance": "948818391292836272988", + "pairedTokenBalance": "0", + "usedToken0": "228930761215550613081394", + "usedToken1": "307316379076434431623593", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13620", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0x168eb0618d4c3a37e6da295b6d58f25e9cd7cbd646b36016843db406b8781aae", + "state": { + "depositToken": 0, + "blockNumber": 42728720, + "lastRebalancePrice": "222545240487912373", + "state": "2", + "currentTick": "15114", + "currentPrice": "220617590711106924", + "twapSlow": "221590398077500596", + "twapFast": "220617590711106924", + "depositTokenBalance": "8624822116985475694970", + "pairedTokenBalance": "0", + "usedToken0": "236550861038194443834977", + "usedToken1": "311904656623106662967032", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13680", + "topTick": "15060" + } + } + }, + { + "transactionHash": "0x899b462f15dc99ec7e4930f0692321dc7e48a0fafa64a244f5483cc28ed40f43", + "state": { + "depositToken": 0, + "blockNumber": 42732384, + "lastRebalancePrice": "220617590711106924", + "state": "2", + "currentTick": "15227", + "currentPrice": "218138767601101565", + "twapSlow": "218750381429995638", + "twapFast": "218138767601101565", + "depositTokenBalance": "27196640750418862296", + "pairedTokenBalance": "0", + "usedToken0": "235239711961689902399446", + "usedToken1": "317945808968404894095759", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13800", + "topTick": "15180" + } + } + }, + { + "transactionHash": "0x441ca80c746b8600d9ca11cfdd74727a1713947943940fbdeac4438d5985dd21", + "state": { + "depositToken": 0, + "blockNumber": 42736899, + "lastRebalancePrice": "218138767601101565", + "state": "2", + "currentTick": "15471", + "currentPrice": "212880851980693329", + "twapSlow": "218662903148087541", + "twapFast": "214955739438424304", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "232375440873811768348822", + "usedToken1": "331080455611435372928082", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "15420" + } + } + }, + { + "transactionHash": "0x8b962a9af02d727037a3a6fe7de5dd7963e9f90fb0c7d54853ff5f3c15003895", + "state": { + "depositToken": 0, + "blockNumber": 42740562, + "lastRebalancePrice": "212880851980693329", + "state": "2", + "currentTick": "15970", + "currentPrice": "202519286433680894", + "twapSlow": "204390966815259628", + "twapFast": "202519286433680894", + "depositTokenBalance": "10000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "226659096715495554512586", + "usedToken1": "358797224169264699318284", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0x54d22a50306ee4c4e7896519a993642658063a6c48e7782d44f22e2eb7b0fb7f", + "state": { + "depositToken": 0, + "blockNumber": 42744227, + "lastRebalancePrice": "202519286433680894", + "state": "2", + "currentTick": "16385", + "currentPrice": "194287145952516288", + "twapSlow": "194968308244495801", + "twapFast": "194287145952516288", + "depositTokenBalance": "1977655463431974466", + "pairedTokenBalance": "0", + "usedToken0": "219528978078134282459342", + "usedToken1": "378226496898258440792766", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14940", + "topTick": "16380" + } + } + }, + { + "transactionHash": "0xb31eb2446442b70f7899760bb8edf729ec99b72db81b59dbb0b294483401a531", + "state": { + "depositToken": 0, + "blockNumber": 42747892, + "lastRebalancePrice": "194287145952516288", + "state": "2", + "currentTick": "16548", + "currentPrice": "191146091657863681", + "twapSlow": "191146091657863681", + "twapFast": "191146091657863681", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "217750286428207142653496", + "usedToken1": "387075578848877607211591", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15120", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0x0347ad49af948ade740bd78f2de1a5943ff0a42ba37568b5e5c7ca769404186f", + "state": { + "depositToken": 0, + "blockNumber": 42751557, + "lastRebalancePrice": "191146091657863681", + "state": "2", + "currentTick": "16436", + "currentPrice": "193298853210480702", + "twapSlow": "191931360071167024", + "twapFast": "193298853210480702", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "221800645147934826674682", + "usedToken1": "366038752503767796712662", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15000", + "topTick": "16380" + } + } + }, + { + "transactionHash": "0x1121feadef234f36934758902b2a80aaf8d96cb32985853e066ac301487beab0", + "state": { + "depositToken": 0, + "blockNumber": 42755221, + "lastRebalancePrice": "193298853210480702", + "state": "2", + "currentTick": "16281", + "currentPrice": "196318173759940745", + "twapSlow": "195163364311879299", + "twapFast": "196318173759940745", + "depositTokenBalance": "420000000000000001", + "pairedTokenBalance": "1", + "usedToken0": "227639666331362441211211", + "usedToken1": "336124710046850200034257", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14880", + "topTick": "16260" + } + } + }, + { + "transactionHash": "0xe565966f6d374ffb1479a52a3c8074b950edd77cf4339373c3dbeedff7aa7d93", + "state": { + "depositToken": 0, + "blockNumber": 42761346, + "lastRebalancePrice": "196318173759940745", + "state": "2", + "currentTick": "16387", + "currentPrice": "194248294351163112", + "twapSlow": "196612857244014677", + "twapFast": "194423187761784430", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "226441703441444284679590", + "usedToken1": "342259570325338236622793", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14940", + "topTick": "16380" + } + } + }, + { + "transactionHash": "0xa2c951d5ad5be8f882305b38a82cda98d9ed912d0209daad78ce16c612d3e588", + "state": { + "depositToken": 0, + "blockNumber": 42765012, + "lastRebalancePrice": "194248294351163112", + "state": "2", + "currentTick": "16506", + "currentPrice": "191950553207174140", + "twapSlow": "192835515357097211", + "twapFast": "191950553207174140", + "depositTokenBalance": "457346724243143618681", + "pairedTokenBalance": "0", + "usedToken0": "225556546864635104539379", + "usedToken1": "349256696938371792650860", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15060", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0xd2f022af952ad10c86d470d63ea4d23aff3b850bc20459b28140bfd9a912cc8e", + "state": { + "depositToken": 0, + "blockNumber": 42768678, + "lastRebalancePrice": "191950553207174140", + "state": "2", + "currentTick": "16295", + "currentPrice": "196043534340867806", + "twapSlow": "195632295432331423", + "twapFast": "196004331514521586", + "depositTokenBalance": "13049557614182787942", + "pairedTokenBalance": "0", + "usedToken0": "235650571908546169924752", + "usedToken1": "297825973519382294312082", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "19860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0xd895da9a60f49e586f23c27fdbdc0ae1b6d4a86cd6b5c5071b3209c188c656e5", + "state": { + "depositToken": 0, + "blockNumber": 42772344, + "lastRebalancePrice": "196043534340867806", + "state": "1", + "currentTick": "16488", + "currentPrice": "192296358043983865", + "twapSlow": "192450248984169247", + "twapFast": "192296358043983865", + "depositTokenBalance": "1100000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "221703727644195706706699", + "usedToken1": "369585710533715835138027", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15060", + "topTick": "16440" + } + } + }, + { + "transactionHash": "0x5b6d07d6fdfad128e5cbf916ff655ad1b7b01932689457790ff7553f25736148", + "state": { + "depositToken": 0, + "blockNumber": 42781460, + "lastRebalancePrice": "192296358043983865", + "state": "2", + "currentTick": "16487", + "currentPrice": "192315587679788264", + "twapSlow": "192296358043983865", + "twapFast": "192315587679788264", + "depositTokenBalance": "59420363764028613636953", + "pairedTokenBalance": "0", + "usedToken0": "216819584397516845785885", + "usedToken1": "262148466720178425224396", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "20040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0x62b9a73b6a813956a99952dd4eebcbd339623c655b3c500049ba71dba591c0d9", + "state": { + "depositToken": 0, + "blockNumber": 42787784, + "lastRebalancePrice": "192315587679788264", + "state": "1", + "currentTick": "16789", + "currentPrice": "186594762206470907", + "twapSlow": "189736901471895775", + "twapFast": "187511274337465117", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "196778831498778999987822", + "usedToken1": "367392063194125749684201", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15360", + "topTick": "16740" + } + } + }, + { + "transactionHash": "0x1d9f175e135e99739177b219c7a1dda4efcc60ab13a6634abf7ec6c4d6f98dde", + "state": { + "depositToken": 0, + "blockNumber": 42791449, + "lastRebalancePrice": "186594762206470907", + "state": "2", + "currentTick": "16917", + "currentPrice": "184221687975704187", + "twapSlow": "184000765576018407", + "twapFast": "184221687975704187", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "195527550110570279354261", + "usedToken1": "374141408896263362658955", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15480", + "topTick": "16860" + } + } + }, + { + "transactionHash": "0x2226ea0ab41e7020bd9697bb4db6b115df239a2bdd7a3ce0960bacd5ac934b5c", + "state": { + "depositToken": 0, + "blockNumber": 42795113, + "lastRebalancePrice": "184221687975704187", + "state": "2", + "currentTick": "16757", + "currentPrice": "187192791881733549", + "twapSlow": "186725417731446970", + "twapFast": "187192791881733549", + "depositTokenBalance": "1986089515865444712448", + "pairedTokenBalance": "0", + "usedToken0": "203385177219864544030406", + "usedToken1": "342588489512060737717035", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15300", + "topTick": "16740" + } + } + }, + { + "transactionHash": "0xa0323cad027063b5ee521bd1fb7879370dd95b0e8c79c4f9e8af0e8d90ce3e0b", + "state": { + "depositToken": 0, + "blockNumber": 42798779, + "lastRebalancePrice": "187192791881733549", + "state": "2", + "currentTick": "17078", + "currentPrice": "181279613150742024", + "twapSlow": "181279613150742024", + "twapFast": "181279613150742024", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "200142355539916066694755", + "usedToken1": "360193116301275125368235", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15660", + "topTick": "17040" + } + } + }, + { + "transactionHash": "0x28199ab707312889e5f7fb9dc858693e1a3c963d73c58af2e45ef4a1a888140a", + "state": { + "depositToken": 0, + "blockNumber": 42802444, + "lastRebalancePrice": "181279613150742024", + "state": "2", + "currentTick": "17249", + "currentPrice": "178206237678730237", + "twapSlow": "178170601776668886", + "twapFast": "178206237678730237", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "198439014069934003553531", + "usedToken1": "369670701831504672579392", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15840", + "topTick": "17220" + } + } + }, + { + "transactionHash": "0x13507cab399fdbfdc94fc4d4821ee0a8a7452c8a0dca48ea249e3e341249585b", + "state": { + "depositToken": 0, + "blockNumber": 42806109, + "lastRebalancePrice": "178206237678730237", + "state": "2", + "currentTick": "17574", + "currentPrice": "172507919079438256", + "twapSlow": "172507919079438256", + "twapFast": "172507919079438256", + "depositTokenBalance": "1000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "195267791261653992671955", + "usedToken1": "388216706843062037392553", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16140", + "topTick": "17520" + } + } + }, + { + "transactionHash": "0xc7d6b887e41a8e12414159e2b96478929e95959c53cc6f4017b688e716c6c4a4", + "state": { + "depositToken": 0, + "blockNumber": 42817731, + "lastRebalancePrice": "172507919079438256", + "state": "2", + "currentTick": "17472", + "currentPrice": "174276415430022466", + "twapSlow": "174050014602237416", + "twapFast": "174258989531069359", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "197648419011199827699811", + "usedToken1": "370266434729195661044635", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16020", + "topTick": "17460" + } + } + }, + { + "transactionHash": "0xf755eab54b6ee4cdbc60f5654aba19875ceeeddce09576af4b30ba4e2754decb", + "state": { + "depositToken": 0, + "blockNumber": 42825133, + "lastRebalancePrice": "174276415430022466", + "state": "2", + "currentTick": "17310", + "currentPrice": "177122542443404676", + "twapSlow": "175132422570839536", + "twapFast": "176556684455635335", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "204750091733881633245059", + "usedToken1": "329863577417140960945696", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15900", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0x758689491da09607869c418fb33f0e61384458c67ee82f47d2a5ea4915ac7dce", + "state": { + "depositToken": 0, + "blockNumber": 42828798, + "lastRebalancePrice": "177122542443404676", + "state": "2", + "currentTick": "16964", + "currentPrice": "183357920672996666", + "twapSlow": "183394594090710472", + "twapFast": "183357920672996666", + "depositTokenBalance": "73168922286292513993", + "pairedTokenBalance": "0", + "usedToken0": "219129423469206698299132", + "usedToken1": "251018733810946854325968", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "20520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0xfa642efac6b1b7fa03f383a30c734603c7613636513a5e3e41d29b829d358c4e", + "state": { + "depositToken": 0, + "blockNumber": 42912003, + "lastRebalancePrice": "183357920672996666", + "state": "1", + "currentTick": "16715", + "currentPrice": "187980615488645025", + "twapSlow": "187980615488645025", + "twapFast": "187980615488645025", + "depositTokenBalance": "4372236223527515944964", + "pairedTokenBalance": "1", + "usedToken0": "222124636092916283526826", + "usedToken1": "148630795645281850672425", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "20280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0xccf8b676594504d981e4add4d6c7e0165861195fa49aa4229fb815c0b2abef9d", + "state": { + "depositToken": 0, + "blockNumber": 42915667, + "lastRebalancePrice": "187980615488645025", + "state": "1", + "currentTick": "16751", + "currentPrice": "187305135639525508", + "twapSlow": "187698870014381325", + "twapFast": "187305135639525508", + "depositTokenBalance": "19037244840366239449057", + "pairedTokenBalance": "0", + "usedToken0": "238579167542592049811637", + "usedToken1": "161079196420683152604282", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "20280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0x897ee888abb2f9a8afe5be6d2b1df441648b6b03d24e9ff6a762baeba8318798", + "state": { + "depositToken": 0, + "blockNumber": 42943020, + "lastRebalancePrice": "187305135639525508", + "state": "1", + "currentTick": "16778", + "currentPrice": "186800119102811533", + "twapSlow": "186837480994633286", + "twapFast": "186800119102811533", + "depositTokenBalance": "7902233513270480066271", + "pairedTokenBalance": "1", + "usedToken0": "222221955316450290730019", + "usedToken1": "155833738807518232786577", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "20340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0xd6bb4d77d2c9baf4f1ea2ce56385858e18f1f0181dfef3900439e6b81dd1ff36", + "state": { + "depositToken": 0, + "blockNumber": 42948182, + "lastRebalancePrice": "186800119102811533", + "state": "1", + "currentTick": "16560", + "currentPrice": "190916865372274644", + "twapSlow": "186893537844242943", + "twapFast": "189414638853089635", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "236928071166108974318862", + "usedToken1": "76561079469473746938170", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16560" + }, + "limitPosition": { + "bottomTick": "16620", + "topTick": "20160" + } + } + }, + { + "transactionHash": "0xfb1fac710817cbaf3589cb3178c2731e66676f32fb2acaab155590c7cdbb53f2", + "state": { + "depositToken": 0, + "blockNumber": 42966988, + "lastRebalancePrice": "190916865372274644", + "state": "0", + "currentTick": "16699", + "currentPrice": "188281610155468808", + "twapSlow": "189319959939230732", + "twapFast": "188545375814505063", + "depositTokenBalance": "185226927700472477381", + "pairedTokenBalance": "2", + "usedToken0": "224223459412420752714599", + "usedToken1": "104077761727793888336673", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16740" + }, + "limitPosition": { + "bottomTick": "16740", + "topTick": "20280" + } + } + }, + { + "transactionHash": "0x7fdd5ebab22a79894c9530a409d073a687cd6f47071e8e0985e1f90a91a6965f", + "state": { + "depositToken": 0, + "blockNumber": 42974248, + "lastRebalancePrice": "188281610155468808", + "state": "0", + "currentTick": "16796", + "currentPrice": "186464198103789753", + "twapSlow": "187436288575107996", + "twapFast": "186818799114721814", + "depositTokenBalance": "2244906878602408275880", + "pairedTokenBalance": "0", + "usedToken0": "222533101120679606418435", + "usedToken1": "125015370296588694701745", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16620", + "topTick": "20340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16620" + } + } + }, + { + "transactionHash": "0xf7e199639bb9babe0fce0887675f1172dd1548ef38130eb222c1928bbebacb8b", + "state": { + "depositToken": 0, + "blockNumber": 42984673, + "lastRebalancePrice": "186464198103789753", + "state": "1", + "currentTick": "16826", + "currentPrice": "185905671643899636", + "twapSlow": "185627036096880768", + "twapFast": "185905671643899636", + "depositTokenBalance": "11599617634742535794519", + "pairedTokenBalance": "0", + "usedToken0": "232181341225365475025291", + "usedToken1": "136644632041369810116723", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16620", + "topTick": "20340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16620" + } + } + }, + { + "transactionHash": "0xc5984038c24b74f9850eed753c881e04a5d6986d7443919bc8a5211a29983714", + "state": { + "depositToken": 0, + "blockNumber": 43026191, + "lastRebalancePrice": "185905671643899636", + "state": "1", + "currentTick": "16914", + "currentPrice": "184276960008931759", + "twapSlow": "184240110144501758", + "twapFast": "184276960008931759", + "depositTokenBalance": "13798177124587800677606", + "pairedTokenBalance": "0", + "usedToken0": "239241119506012659508617", + "usedToken1": "171266321272272314424600", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "20460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0x5cbf7605ca1c408f96b6b358ca5d19f76e3752f6af5905efe11cf49f9dbc144a", + "state": { + "depositToken": 0, + "blockNumber": 43042306, + "lastRebalancePrice": "184276960008931759", + "state": "1", + "currentTick": "16860", + "currentPrice": "185274697172917045", + "twapSlow": "184997007330864155", + "twapFast": "185274697172917045", + "depositTokenBalance": "21571400191725064164074", + "pairedTokenBalance": "0", + "usedToken0": "264641734152481943725512", + "usedToken1": "148399152221500962363469", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "20400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0x147b0d91b065e5e77801a6f745cc95381c4e94154158fe5bc322cfabeeae5de1", + "state": { + "depositToken": 0, + "blockNumber": 43045970, + "lastRebalancePrice": "185274697172917045", + "state": "1", + "currentTick": "16725", + "currentPrice": "187792738221152600", + "twapSlow": "187792738221152600", + "twapFast": "187792738221152600", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "275662066125362929146207", + "usedToken1": "89099734882220359345432", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16740" + }, + "limitPosition": { + "bottomTick": "16740", + "topTick": "20340" + } + } + }, + { + "transactionHash": "0xab84771b737fe6adec04be21754f24d2bc4b8ad16e2fc4072ac3296028ebb8f4", + "state": { + "depositToken": 0, + "blockNumber": 43050207, + "lastRebalancePrice": "187792738221152600", + "state": "0", + "currentTick": "16611", + "currentPrice": "189945716450123521", + "twapSlow": "188771754746919824", + "twapFast": "189490416074266880", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "265043108847893869808973", + "usedToken1": "85176652726653770350372", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16620" + }, + "limitPosition": { + "bottomTick": "16620", + "topTick": "20220" + } + } + }, + { + "transactionHash": "0x52ed93c165dbde6ad096674a01b0d20a0f48b5bd35a479ba84549e8c2c4c74f6", + "state": { + "depositToken": 0, + "blockNumber": 43070717, + "lastRebalancePrice": "189945716450123521", + "state": "0", + "currentTick": "16599", + "currentPrice": "190173776715833987", + "twapSlow": "190897775594715172", + "twapFast": "190173776715833987", + "depositTokenBalance": "6949230776973790323602", + "pairedTokenBalance": "1", + "usedToken0": "271455509875011236130156", + "usedToken1": "85012823126747601388890", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16620" + }, + "limitPosition": { + "bottomTick": "16620", + "topTick": "20220" + } + } + }, + { + "transactionHash": "0xfe4d875fc0edd3c3ef070b915b5abdecc156207813087762566bf063b1acca0e", + "state": { + "depositToken": 0, + "blockNumber": 43099424, + "lastRebalancePrice": "188243959481132987", + "state": "0", + "currentTick": "16543", + "currentPrice": "191241683820213335", + "twapSlow": "188771754746919824", + "twapFast": "190459237149928323", + "depositTokenBalance": "599004219265780882736", + "pairedTokenBalance": "0", + "usedToken0": "265549466141231922711696", + "usedToken1": "119380574600982353081933", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16560" + }, + "limitPosition": { + "bottomTick": "16560", + "topTick": "20160" + } + } + }, + { + "transactionHash": "0xfede5e73bbbc20500b9151c994845776a530ae6b3aabb330011acbb8f0af968b", + "state": { + "depositToken": 0, + "blockNumber": 43118940, + "lastRebalancePrice": "191241683820213335", + "state": "0", + "currentTick": "16268", + "currentPrice": "196573540570165238", + "twapSlow": "196573540570165238", + "twapFast": "196573540570165238", + "depositTokenBalance": "464429540370099009501", + "pairedTokenBalance": "0", + "usedToken0": "266323872327666047788628", + "usedToken1": "117699252724437503905134", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16320" + }, + "limitPosition": { + "bottomTick": "16320", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x8c90fdcc219786363b1ec7579268c000629f6a7065139914fcffda5c5772e5b2", + "state": { + "depositToken": 0, + "blockNumber": 43137208, + "lastRebalancePrice": "196573540570165238", + "state": "0", + "currentTick": "16418", + "currentPrice": "193647087051296010", + "twapSlow": "195397689199819602", + "twapFast": "194326005324578251", + "depositTokenBalance": "310732131600638551582", + "pairedTokenBalance": "0", + "usedToken0": "258531060894312581902890", + "usedToken1": "159400651439230762029928", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16200", + "topTick": "19980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16200" + } + } + }, + { + "transactionHash": "0x094e95eac77e858612890f61da88d6e7aaa95d091791b4f29bf4ac3cef402557", + "state": { + "depositToken": 0, + "blockNumber": 43140873, + "lastRebalancePrice": "193647087051296010", + "state": "1", + "currentTick": "16220", + "currentPrice": "197519314318203916", + "twapSlow": "195514957126901121", + "twapFast": "197519314318203916", + "depositTokenBalance": "205708932037012267538", + "pairedTokenBalance": "1", + "usedToken0": "274632025446295071440176", + "usedToken1": "78849593248205646275289", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16260" + }, + "limitPosition": { + "bottomTick": "16260", + "topTick": "19800" + } + } + }, + { + "transactionHash": "0xc61fe9ffe3572700893ee9a4c448b3331941bee275e457aa2ba7341e04451084", + "state": { + "depositToken": 0, + "blockNumber": 43144537, + "lastRebalancePrice": "197519314318203916", + "state": "0", + "currentTick": "16419", + "currentPrice": "193627724278868123", + "twapSlow": "194034749375715531", + "twapFast": "193627724278868123", + "depositTokenBalance": "3818452337063014432255", + "pairedTokenBalance": "0", + "usedToken0": "247877792127996958363440", + "usedToken1": "138540161245832064664492", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16260", + "topTick": "19980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16260" + } + } + }, + { + "transactionHash": "0x92d87bb8637470b8907bfc44f841f21d979acbf924040b3b91f5226fd03c7e90", + "state": { + "depositToken": 0, + "blockNumber": 43166187, + "lastRebalancePrice": "193627724278868123", + "state": "1", + "currentTick": "16251", + "currentPrice": "196907983062866498", + "twapSlow": "193976550591047722", + "twapFast": "196004331514521586", + "depositTokenBalance": "750318863541189743396", + "pairedTokenBalance": "2", + "usedToken0": "257430756732140221447585", + "usedToken1": "75022832533841213913485", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16260" + }, + "limitPosition": { + "bottomTick": "16260", + "topTick": "19860" + } + } + }, + { + "transactionHash": "0x00c5a2599a788d6f2b64af776c45faa87977a4ad57e5c5a44528db983f521018", + "state": { + "depositToken": 0, + "blockNumber": 43169852, + "lastRebalancePrice": "196907983062866498", + "state": "0", + "currentTick": "16137", + "currentPrice": "199165464393937344", + "twapSlow": "199344785028191478", + "twapFast": "199265067044672506", + "depositTokenBalance": "439548227549124468053", + "pairedTokenBalance": "0", + "usedToken0": "257952753635204711000549", + "usedToken1": "74451703702668035746530", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16140" + }, + "limitPosition": { + "bottomTick": "16140", + "topTick": "19740" + } + } + }, + { + "transactionHash": "0x168a1541ecd4a36738fd7fbb972cc49ab60515db09845c72b9767208db5e362e", + "state": { + "depositToken": 0, + "blockNumber": 43184836, + "lastRebalancePrice": "199165464393937344", + "state": "0", + "currentTick": "16020", + "currentPrice": "201509267652662161", + "twapSlow": "199006203698096091", + "twapFast": "201106671976672986", + "depositTokenBalance": "32604709773955355765", + "pairedTokenBalance": "0", + "usedToken0": "254795295087968043064622", + "usedToken1": "73149626429003736343840", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16020" + }, + "limitPosition": { + "bottomTick": "16080", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0x17251d09eba34dc33a61fe20569d2c3af1c9d0f09ebfd770eff60fa31d68297c", + "state": { + "depositToken": 0, + "blockNumber": 43188500, + "lastRebalancePrice": "201509267652662161", + "state": "0", + "currentTick": "16129", + "currentPrice": "199324852542937184", + "twapSlow": "199863729858410710", + "twapFast": "199324852542937184", + "depositTokenBalance": "300000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "251161443042778713200210", + "usedToken1": "92690534271941849162869", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16140" + }, + "limitPosition": { + "bottomTick": "16140", + "topTick": "19740" + } + } + }, + { + "transactionHash": "0xf5338de49b8f43f5973e2b3a64fcf4cd9bb8799ddea59469f577d44d46a8ef03", + "state": { + "depositToken": 0, + "blockNumber": 43194062, + "lastRebalancePrice": "199324852542937184", + "state": "0", + "currentTick": "16026", + "currentPrice": "201388404397734790", + "twapSlow": "200283863670884495", + "twapFast": "200704880647204511", + "depositTokenBalance": "348212636490325439763", + "pairedTokenBalance": "0", + "usedToken0": "251619568924524477821859", + "usedToken1": "92278480386053085709525", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16080" + }, + "limitPosition": { + "bottomTick": "16080", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xc49a7ea5f2e6ec35f13eb84cf65a6b18d30d22ce8156928acdd213f1f3333e85", + "state": { + "depositToken": 0, + "blockNumber": 43197726, + "lastRebalancePrice": "201388404397734790", + "state": "0", + "currentTick": "15543", + "currentPrice": "211353690581269365", + "twapSlow": "211100230931546592", + "twapFast": "211353690581269365", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "252059330993290822720565", + "usedToken1": "90012271396231445316370", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15600" + }, + "limitPosition": { + "bottomTick": "15600", + "topTick": "19140" + } + } + }, + { + "transactionHash": "0x805d25a92830e35aaf8f5be840a2822c618b134f594dc2ed9a0e278792422d4c", + "state": { + "depositToken": 0, + "blockNumber": 43201393, + "lastRebalancePrice": "211353690581269365", + "state": "0", + "currentTick": "14469", + "currentPrice": "235315606419710504", + "twapSlow": "236329591334177425", + "twapFast": "235315606419710504", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "246130955969681448143872", + "usedToken1": "82999282136934692057528", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14520" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0x7f87bd7878935ccc8d721253dd30d83bfb5e5e4f2d34bd7b0bd18b8652d13e21", + "state": { + "depositToken": 0, + "blockNumber": 43205058, + "lastRebalancePrice": "235315606419710504", + "state": "0", + "currentTick": "14649", + "currentPrice": "231118026923467044", + "twapSlow": "231233609051042766", + "twapFast": "231141138726159391", + "depositTokenBalance": "92195364645577180416", + "pairedTokenBalance": "0", + "usedToken0": "236361542587507515114180", + "usedToken1": "125729854706923327189024", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0x58865b3477679a95f576aca9acec779831572561e095ebe0777b524ca6f99635", + "state": { + "depositToken": 0, + "blockNumber": 43211243, + "lastRebalancePrice": "231118026923467044", + "state": "1", + "currentTick": "14451", + "currentPrice": "235739534736233367", + "twapSlow": "232415853506942357", + "twapFast": "235056914493672344", + "depositTokenBalance": "403649369570898576699", + "pairedTokenBalance": "1", + "usedToken0": "251357832936635019107620", + "usedToken1": "63176239514768769518075", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14460" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "18060" + } + } + }, + { + "transactionHash": "0x9d2b66c09fed434fb0e66cb52d9bdcf2411e30c8940e362f9dfe66e08dd59073", + "state": { + "depositToken": 0, + "blockNumber": 43214908, + "lastRebalancePrice": "235739534736233367", + "state": "0", + "currentTick": "12103", + "currentPrice": "298125873002355576", + "twapSlow": "295336758623231973", + "twapFast": "296490763128757488", + "depositTokenBalance": "20787046385205714172", + "pairedTokenBalance": "1", + "usedToken0": "253147527699554477177772", + "usedToken1": "55941833945473935269933", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "12120" + }, + "limitPosition": { + "bottomTick": "12120", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0xb0d0d2afe6d56d1f051a5285cff9953ac2cd462a68ffb7893524f9363a19e8eb", + "state": { + "depositToken": 0, + "blockNumber": 43218574, + "lastRebalancePrice": "298125873002355576", + "state": "0", + "currentTick": "11162", + "currentPrice": "327540294864751553", + "twapSlow": "319613454256820126", + "twapFast": "326820534230467673", + "depositTokenBalance": "385929366829162050951", + "pairedTokenBalance": "2", + "usedToken0": "254339673052551356422847", + "usedToken1": "53376725332799023440737", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "11220" + }, + "limitPosition": { + "bottomTick": "11220", + "topTick": "14760" + } + } + }, + { + "transactionHash": "0x02ce1726c2ada5bb054df1a869736c14bf28e13a7b53d39e30dc11f95782bf0a", + "state": { + "depositToken": 0, + "blockNumber": 43224520, + "lastRebalancePrice": "327540294864751553", + "state": "0", + "currentTick": "11968", + "currentPrice": "302177657715625779", + "twapSlow": "302843147058564195", + "twapFast": "302177657715625779", + "depositTokenBalance": "1001516701602129430450", + "pairedTokenBalance": "0", + "usedToken0": "197031751346184144357702", + "usedToken1": "238276345049807017876732", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "11940" + } + } + }, + { + "transactionHash": "0xc80c0984c77757712fe8b315b545352d521570802efc27d8b98342924fb11e79", + "state": { + "depositToken": 0, + "blockNumber": 43233579, + "lastRebalancePrice": "302177657715625779", + "state": "3", + "currentTick": "12018", + "currentPrice": "300670615522896259", + "twapSlow": "300400147221106865", + "twapFast": "300670615522896259", + "depositTokenBalance": "310347368015957201428", + "pairedTokenBalance": "0", + "usedToken0": "196800236028244944562620", + "usedToken1": "238058099038787838703646", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10620", + "topTick": "12000" + } + } + }, + { + "transactionHash": "0xecc390bbb08f0bf6a5ebf3b95828190e5df8ed43822f23feb28b64f0628d7c93", + "state": { + "depositToken": 0, + "blockNumber": 43237243, + "lastRebalancePrice": "300670615522896259", + "state": "2", + "currentTick": "12193", + "currentPrice": "295454911048068160", + "twapSlow": "295454911048068160", + "twapFast": "295454911048068160", + "depositTokenBalance": "609296741499942636946", + "pairedTokenBalance": "0", + "usedToken0": "195682948722515698453448", + "usedToken1": "243766742298970327928164", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10740", + "topTick": "12180" + } + } + }, + { + "transactionHash": "0x4fd6abb16458478dd615567b9a1fb35069f28ef6da9f74db5af8b3dd31b59225", + "state": { + "depositToken": 0, + "blockNumber": 43240907, + "lastRebalancePrice": "295454911048068160", + "state": "2", + "currentTick": "12146", + "currentPrice": "296846747793658309", + "twapSlow": "296164818888452832", + "twapFast": "296846747793658309", + "depositTokenBalance": "4177113148636777769943", + "pairedTokenBalance": "0", + "usedToken0": "198847119137070095530928", + "usedToken1": "233882996029964406414514", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10740", + "topTick": "12120" + } + } + }, + { + "transactionHash": "0x5b07d5a374872c18786c1cbde2be61cd7ac33d55952d7f7b1e986a33aadc8fbf", + "state": { + "depositToken": 0, + "blockNumber": 43248452, + "lastRebalancePrice": "296846747793658309", + "state": "2", + "currentTick": "12027", + "currentPrice": "300400147221106865", + "twapSlow": "298603232317211708", + "twapFast": "299799977304623466", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "203901349055665111024831", + "usedToken1": "216886993264980442278359", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10620", + "topTick": "12000" + } + } + }, + { + "transactionHash": "0x140f25ef0c327f0f835e96071cf4cac4ae92173e2bb8c691363e19c0c6674edd", + "state": { + "depositToken": 0, + "blockNumber": 43252117, + "lastRebalancePrice": "300400147221106865", + "state": "2", + "currentTick": "11901", + "currentPrice": "304208943669343784", + "twapSlow": "304208943669343784", + "twapFast": "304208943669343784", + "depositTokenBalance": "288671766018040055241", + "pairedTokenBalance": "0", + "usedToken0": "209333870399818562457091", + "usedToken1": "200092525792045969136787", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "11880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10500", + "topTick": "11880" + } + } + }, + { + "transactionHash": "0x486f66f734ea235a47bebda20fa40c2b3d083efac36240050e04d3e1a6984918", + "state": { + "depositToken": 0, + "blockNumber": 43272283, + "lastRebalancePrice": "304208943669343784", + "state": "2", + "currentTick": "12004", + "currentPrice": "301091828104362647", + "twapSlow": "301423194765472992", + "twapFast": "301121937287173083", + "depositTokenBalance": "780276955295575211707", + "pairedTokenBalance": "0", + "usedToken0": "199317546087777570482540", + "usedToken1": "194203621396056994911581", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "12000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "10560", + "topTick": "12000" + } + } + }, + { + "transactionHash": "0xe0953f4b9fda4cad379f5108b5840fa4e50aa30ee45e89756437921c1fdc186d", + "state": { + "depositToken": 0, + "blockNumber": 43279709, + "lastRebalancePrice": "301091828104362647", + "state": "2", + "currentTick": "13770", + "currentPrice": "252351794620208373", + "twapSlow": "298842198528694398", + "twapFast": "292106017464063270", + "depositTokenBalance": "1000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "182478244361885719198694", + "usedToken1": "255280432346197842208116", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13740" + } + } + }, + { + "transactionHash": "0xee16812d1328718c2a3cfc3b5ecd65dc75c22e7a9a86752c6ca3d252fe091336", + "state": { + "depositToken": 0, + "blockNumber": 43283381, + "lastRebalancePrice": "252351794620208373", + "state": "3", + "currentTick": "13516", + "currentPrice": "258843298752545743", + "twapSlow": "255653618216995254", + "twapFast": "258843298752545743", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "183474443001427157672079", + "usedToken1": "251333476700392741372220", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12060", + "topTick": "13500" + } + } + }, + { + "transactionHash": "0x04b70a62eb883b7371d02e1a2008e7631bd9b4f101bc7ee5fe77b6c70862a006", + "state": { + "depositToken": 0, + "blockNumber": 43301782, + "lastRebalancePrice": "258843298752545743", + "state": "2", + "currentTick": "13362", + "currentPrice": "262860134971970369", + "twapSlow": "260870069275816701", + "twapFast": "261915586919242413", + "depositTokenBalance": "343906817824775341157", + "pairedTokenBalance": "0", + "usedToken0": "190434609974808396115713", + "usedToken1": "226129917084023785853516", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11940", + "topTick": "13320" + } + } + }, + { + "transactionHash": "0xcd2301b415f61c76596ee59566cf8842fa8bfad6b0f4c46aa3b7cfab70148df4", + "state": { + "depositToken": 0, + "blockNumber": 43305448, + "lastRebalancePrice": "262860134971970369", + "state": "2", + "currentTick": "13168", + "currentPrice": "268009148090179968", + "twapSlow": "267553942332852171", + "twapFast": "267553942332852171", + "depositTokenBalance": "380378988799939696491", + "pairedTokenBalance": "0", + "usedToken0": "198041312508155449185348", + "usedToken1": "199091956235142621446172", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11760", + "topTick": "13140" + } + } + }, + { + "transactionHash": "0xcf0441446b8285d5422ac00794ad4eff21cded26c118ad5b0935794486b9022f", + "state": { + "depositToken": 0, + "blockNumber": 43320359, + "lastRebalancePrice": "268009148090179968", + "state": "2", + "currentTick": "13297", + "currentPrice": "264574204839644705", + "twapSlow": "264574204839644705", + "twapFast": "264574204839644705", + "depositTokenBalance": "1037000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "197751148013832989901866", + "usedToken1": "203967448385677791141883", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11880", + "topTick": "13260" + } + } + }, + { + "transactionHash": "0xdc7349f5ceb99bd5046050bea699174d1d940aad6c7c243f1b1c7f3d1c6169df", + "state": { + "depositToken": 0, + "blockNumber": 43324023, + "lastRebalancePrice": "264574204839644705", + "state": "2", + "currentTick": "13174", + "currentPrice": "267848398868241823", + "twapSlow": "267179647595459075", + "twapFast": "267848398868241823", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "201575105457309372143336", + "usedToken1": "189438526651514166670845", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11760", + "topTick": "13140" + } + } + }, + { + "transactionHash": "0x696fca7a1143fee8c09cb334df638dc9713be1807b2f4faa0c9bf5c5a275d906", + "state": { + "depositToken": 0, + "blockNumber": 43327689, + "lastRebalancePrice": "267848398868241823", + "state": "2", + "currentTick": "13361", + "currentPrice": "262886420985467566", + "twapSlow": "262939000898528869", + "twapFast": "262886420985467566", + "depositTokenBalance": "1938138186365920346112", + "pairedTokenBalance": "0", + "usedToken0": "201629820165901392970673", + "usedToken1": "196536587548583150999268", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "11940", + "topTick": "13320" + } + } + }, + { + "transactionHash": "0x778319d90eb8c46bcdfde7d27f8918bd3b6c29e154ff29bdd7ed547bd5c2c16f", + "state": { + "depositToken": 0, + "blockNumber": 43335514, + "lastRebalancePrice": "262886420985467566", + "state": "2", + "currentTick": "13550", + "currentPrice": "257964769807981744", + "twapSlow": "261941778477934337", + "twapFast": "259698849744355397", + "depositTokenBalance": "1062479653322508992512", + "pairedTokenBalance": "1", + "usedToken0": "200801061865648577929361", + "usedToken1": "203822009472856776246065", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12120", + "topTick": "13500" + } + } + }, + { + "transactionHash": "0x00be412ed830190990914116f62e56608101f2042bce8104d4a05cb121452f3f", + "state": { + "depositToken": 0, + "blockNumber": 43339178, + "lastRebalancePrice": "257964769807981744", + "state": "2", + "currentTick": "13668", + "currentPrice": "254938825002527838", + "twapSlow": "254938825002527838", + "twapFast": "254938825002527838", + "depositTokenBalance": "167917381413347509203", + "pairedTokenBalance": "0", + "usedToken0": "199788253231336766183214", + "usedToken1": "208407225690631168454318", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12240", + "topTick": "13620" + } + } + }, + { + "transactionHash": "0x233c63195f87767715997d815ff84d581f5984bcd8cb27911682c54ada10e63f", + "state": { + "depositToken": 0, + "blockNumber": 43342840, + "lastRebalancePrice": "254938825002527838", + "state": "2", + "currentTick": "13810", + "currentPrice": "251344453832556358", + "twapSlow": "251445006695762013", + "twapFast": "251344453832556358", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "198370466938301353315927", + "usedToken1": "214004950962515873644917", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12360", + "topTick": "13800" + } + } + }, + { + "transactionHash": "0x0a9b95713abf4e731f4cb4f38142b9415050a5362778026a4722de9614aee52f", + "state": { + "depositToken": 0, + "blockNumber": 43346879, + "lastRebalancePrice": "251344453832556358", + "state": "2", + "currentTick": "14171", + "currentPrice": "242433180786191763", + "twapSlow": "250040919973415681", + "twapFast": "244771628994319668", + "depositTokenBalance": "99970334567614160286", + "pairedTokenBalance": "0", + "usedToken0": "194885565696441158643628", + "usedToken1": "228435836886493428947929", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12720", + "topTick": "14160" + } + } + }, + { + "transactionHash": "0xa6c5548a8127f37f3ad55ada0d5a53aa0bbcd48a77aa7834a418d31642e24570", + "state": { + "depositToken": 0, + "blockNumber": 43351165, + "lastRebalancePrice": "242433180786191763", + "state": "2", + "currentTick": "14364", + "currentPrice": "237799312744205434", + "twapSlow": "242287771775114809", + "twapFast": "239613381549319333", + "depositTokenBalance": "83656036184789554393", + "pairedTokenBalance": "0", + "usedToken0": "193058145386652946826160", + "usedToken1": "236080206292902289829100", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "12960", + "topTick": "14340" + } + } + }, + { + "transactionHash": "0x2cddb977395a89b86838f42584d1fd5056bc1bf843338f87353f8f7418db860d", + "state": { + "depositToken": 0, + "blockNumber": 43354826, + "lastRebalancePrice": "237799312744205434", + "state": "2", + "currentTick": "14659", + "currentPrice": "230887035960628939", + "twapSlow": "231719685528308103", + "twapFast": "230887035960628939", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "190228462600477836032518", + "usedToken1": "248157467792161333544129", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14640" + } + } + }, + { + "transactionHash": "0x055a55615516bbd953e94e064369d8c1e8d084c25f5266e2021611c1461fbb41", + "state": { + "depositToken": 0, + "blockNumber": 43360890, + "lastRebalancePrice": "230887035960628939", + "state": "2", + "currentTick": "14456", + "currentPrice": "235621700321546227", + "twapSlow": "235904601924102734", + "twapFast": "235904601924102734", + "depositTokenBalance": "1000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "196264106275414971857330", + "usedToken1": "211097039631595133483583", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13020", + "topTick": "14400" + } + } + }, + { + "transactionHash": "0xfa2fa8f760821192a5524af25a323019bcddeb1fe3122281dd5b8d88b085e93e", + "state": { + "depositToken": 0, + "blockNumber": 43366954, + "lastRebalancePrice": "235621700321546227", + "state": "2", + "currentTick": "14585", + "currentPrice": "232601851279203807", + "twapSlow": "232694905976756996", + "twapFast": "232694905976756996", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "194911304350268151156332", + "usedToken1": "216478229782599366022094", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13140", + "topTick": "14580" + } + } + }, + { + "transactionHash": "0xbdb718bb46d372d6670b2a0771c2bbbaf4ce18d1b70be49bc87c979a19cf074c", + "state": { + "depositToken": 0, + "blockNumber": 43374536, + "lastRebalancePrice": "232601851279203807", + "state": "2", + "currentTick": "14693", + "currentPrice": "230103392169217065", + "twapSlow": "230587092816071251", + "twapFast": "230195447333208718", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "193350178233893248121305", + "usedToken1": "220428360665155158735343", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14640" + } + } + }, + { + "transactionHash": "0xbda6b004c24a875e84409e746db0443a0d16dca14990ba29c7ef6f786af88011", + "state": { + "depositToken": 0, + "blockNumber": 43383601, + "lastRebalancePrice": "230103392169217065", + "state": "2", + "currentTick": "14625", + "currentPrice": "231673348541866244", + "twapSlow": "231650183523513893", + "twapFast": "231673348541866244", + "depositTokenBalance": "1215295393738463727570", + "pairedTokenBalance": "0", + "usedToken0": "195695293932761286613906", + "usedToken1": "215840580981567872732596", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13200", + "topTick": "14580" + } + } + }, + { + "transactionHash": "0x3aa170e16024301488c004868a3be25c14e40894e3c5993a50ac24c95443ffcb", + "state": { + "depositToken": 0, + "blockNumber": 43413321, + "lastRebalancePrice": "231673348541866244", + "state": "2", + "currentTick": "14507", + "currentPrice": "234423148481422024", + "twapSlow": "233767714472636034", + "twapFast": "234423148481422024", + "depositTokenBalance": "231774055109226520842", + "pairedTokenBalance": "1", + "usedToken0": "193652294608495166263841", + "usedToken1": "197085272531155669328535", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "18060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0x63cd456acab376bbe9868cabc984cda0c7f91956f8a63a20eef7f851cab70c4b", + "state": { + "depositToken": 0, + "blockNumber": 43517029, + "lastRebalancePrice": "234423148481422024", + "state": "1", + "currentTick": "14136", + "currentPrice": "243283140984364448", + "twapSlow": "243307469298462885", + "twapFast": "243283140984364448", + "depositTokenBalance": "38043285681845399793718", + "pairedTokenBalance": "3", + "usedToken0": "250483851453827557948739", + "usedToken1": "101707753707675042232885", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "17700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0xe265faadf6feb91f77d27d036a682b7dea50032e59aadbb20e744cd9044dd10b", + "state": { + "depositToken": 0, + "blockNumber": 43529475, + "lastRebalancePrice": "243283140984364448", + "state": "1", + "currentTick": "14033", + "currentPrice": "245801780132541565", + "twapSlow": "243843308146045129", + "twapFast": "245335223446935342", + "depositTokenBalance": "325427871575282532605", + "pairedTokenBalance": "1", + "usedToken0": "258310884850589110428130", + "usedToken1": "69389880471201012055689", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14040" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "17640" + } + } + }, + { + "transactionHash": "0xd9beb1b5f73837bf5b9ef4bf11947391a9f6e75ad48c614fa858a8c273bcabb9", + "state": { + "depositToken": 0, + "blockNumber": 43535538, + "lastRebalancePrice": "245801780132541565", + "state": "0", + "currentTick": "13954", + "currentPrice": "247751206823180706", + "twapSlow": "247751206823180706", + "twapFast": "247751206823180706", + "depositTokenBalance": "3850000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "258571425793217519932093", + "usedToken1": "67909053886412251801142", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "13980" + }, + "limitPosition": { + "bottomTick": "13980", + "topTick": "17580" + } + } + }, + { + "transactionHash": "0xea0c4cb13d1283a6876a5d9dc45fc08923e34018a1ff9ee513def9a182240c3c", + "state": { + "depositToken": 0, + "blockNumber": 43541602, + "lastRebalancePrice": "247751206823180706", + "state": "0", + "currentTick": "13999", + "currentPrice": "246638886604997217", + "twapSlow": "246540255709311964", + "twapFast": "246638886604997217", + "depositTokenBalance": "2954704197343304113125", + "pairedTokenBalance": "0", + "usedToken0": "257735440291562948388549", + "usedToken1": "73482919338030300976385", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14040" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "17580" + } + } + }, + { + "transactionHash": "0x7986b300c26640e67686503a5c74b97e2442626736187b4beafbaa828de998cb", + "state": { + "depositToken": 0, + "blockNumber": 43579055, + "lastRebalancePrice": "246638886604997217", + "state": "0", + "currentTick": "14132", + "currentPrice": "243380468838719810", + "twapSlow": "245065516552249865", + "twapFast": "243965254186887521", + "depositTokenBalance": "1220932332904193402691", + "pairedTokenBalance": "2", + "usedToken0": "215268853760674417722095", + "usedToken1": "88769479528732963831487", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "17640" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0x8ba03ac65aa6c3862cbd286475f4051907ff5b74aedf10a07596156364f1e9c1", + "state": { + "depositToken": 0, + "blockNumber": 43592261, + "lastRebalancePrice": "243380468838719810", + "state": "1", + "currentTick": "14199", + "currentPrice": "241755351175188032", + "twapSlow": "241900440654031291", + "twapFast": "241852067821946224", + "depositTokenBalance": "3563547614156723209542", + "pairedTokenBalance": "1", + "usedToken0": "214480224927517637397046", + "usedToken1": "107383689640429184985565", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "17760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0xd43d356cad6c96f698be4a09b5ee8901331f267acd35adfb3d0f819a00a5c4a5", + "state": { + "depositToken": 0, + "blockNumber": 43633034, + "lastRebalancePrice": "241755351175188032", + "state": "1", + "currentTick": "14641", + "currentPrice": "231302986070997583", + "twapSlow": "231974704666457678", + "twapFast": "231395521144530382", + "depositTokenBalance": "2354642796768254650332", + "pairedTokenBalance": "2", + "usedToken0": "178538007531320184022100", + "usedToken1": "217329646007308029768181", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "13980", + "topTick": "18180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "13980" + } + } + }, + { + "transactionHash": "0x47c7034fd247718b16d5930a80f15f47f351511366289b3c748720878bf65b94", + "state": { + "depositToken": 0, + "blockNumber": 43640588, + "lastRebalancePrice": "231302986070997583", + "state": "1", + "currentTick": "14695", + "currentPrice": "230057378392964688", + "twapSlow": "230287539324789647", + "twapFast": "230149415148684830", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "175536167285492597462811", + "usedToken1": "229641907655784308941664", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13260", + "topTick": "14640" + } + } + }, + { + "transactionHash": "0xfc090b037316302cc7b7baa43292b36ab416694c423eb7d5f5924672b1b5e6a9", + "state": { + "depositToken": 0, + "blockNumber": 43648885, + "lastRebalancePrice": "230057378392964688", + "state": "2", + "currentTick": "14911", + "currentPrice": "225141665611134799", + "twapSlow": "229345340350416438", + "twapFast": "226723106786562432", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "173650440715827279338339", + "usedToken1": "237928007787452203008965", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13500", + "topTick": "14880" + } + } + }, + { + "transactionHash": "0x5b17688209d24dd977734ad62707b513875c20d2645b1ca2b4060cdaaaf8ca89", + "state": { + "depositToken": 0, + "blockNumber": 43655689, + "lastRebalancePrice": "225141665611134799", + "state": "2", + "currentTick": "15023", + "currentPrice": "222634271937712170", + "twapSlow": "223079963740615247", + "twapFast": "222812441705327560", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "172684143916166676989980", + "usedToken1": "242244153994305316866969", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13620", + "topTick": "15000" + } + } + }, + { + "transactionHash": "0xd9f6fbc31fdea103496c18b6df71a3bfd3ba26c6914455d7e71f7a9315096487", + "state": { + "depositToken": 0, + "blockNumber": 43661753, + "lastRebalancePrice": "222634271937712170", + "state": "2", + "currentTick": "15604", + "currentPrice": "210068421387357575", + "twapSlow": "209313572355638777", + "twapFast": "210068421387357575", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "167733135174399862667778", + "usedToken1": "265138926099620019441206", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "3000", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0x331a6a5066d3b9facde6d297a591d535f0677b7259baf224bec932a36423d81d", + "state": { + "depositToken": 0, + "blockNumber": 43670146, + "lastRebalancePrice": "210068421387357575", + "state": "2", + "currentTick": "15728", + "currentPrice": "207479785104083958", + "twapSlow": "208394661667990099", + "twapFast": "207791222729946072", + "depositTokenBalance": "23901311933700995162", + "pairedTokenBalance": "0", + "usedToken0": "166724157554132496115630", + "usedToken1": "270109209652344339932458", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0xaf8808dcf49034981e0e2939255c22e61eeae07c5aceea9305c4747ee3497018", + "state": { + "depositToken": 0, + "blockNumber": 43676210, + "lastRebalancePrice": "207479785104083958", + "state": "2", + "currentTick": "15885", + "currentPrice": "204247950350795105", + "twapSlow": "204309230863543102", + "twapFast": "204247950350795105", + "depositTokenBalance": "283495113523208751220", + "pairedTokenBalance": "0", + "usedToken0": "165701657269646213055264", + "usedToken1": "276495236881683310599824", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "15840" + } + } + }, + { + "transactionHash": "0x23169058b3a362ba80767b5c3457c07a7d2e93c3931bf58008a46801964e8980", + "state": { + "depositToken": 0, + "blockNumber": 43682274, + "lastRebalancePrice": "204247950350795105", + "state": "2", + "currentTick": "16040", + "currentPrice": "201106671976672986", + "twapSlow": "201106671976672986", + "twapFast": "201106671976672986", + "depositTokenBalance": "2549325942100086840125", + "pairedTokenBalance": "1", + "usedToken0": "166975166637678832910875", + "usedToken1": "282811594199180199140294", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14640", + "topTick": "16020" + } + } + }, + { + "transactionHash": "0x16693d4dddc5e7a8c1ad1478903cef3ea4f62d7d1d0e05392a5672b722797457", + "state": { + "depositToken": 0, + "blockNumber": 43688962, + "lastRebalancePrice": "201106671976672986", + "state": "2", + "currentTick": "16161", + "currentPrice": "198688064258304208", + "twapSlow": "199464421804913342", + "twapFast": "198966408426746657", + "depositTokenBalance": "227420628660446730293", + "pairedTokenBalance": "0", + "usedToken0": "166183039322264218445709", + "usedToken1": "287790203813311071285599", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14760", + "topTick": "16140" + } + } + }, + { + "transactionHash": "0x464c50880daec2bfaf6befe3d16455cc7982cf1e57f0a40698b29df6c5fd43d9", + "state": { + "depositToken": 0, + "blockNumber": 43695025, + "lastRebalancePrice": "198688064258304208", + "state": "2", + "currentTick": "16565", + "currentPrice": "190821435570437558", + "twapSlow": "190554485816331690", + "twapFast": "190821435570437558", + "depositTokenBalance": "427174857495697319497", + "pairedTokenBalance": "0", + "usedToken0": "163298903960009099478365", + "usedToken1": "305034913100438952696867", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15120", + "topTick": "16560" + } + } + }, + { + "transactionHash": "0xb4942e8f2966921b916c28a1407f47ca763205b009ed3bc58fc2ac70a08d3068", + "state": { + "depositToken": 0, + "blockNumber": 43726768, + "lastRebalancePrice": "190821435570437558", + "state": "2", + "currentTick": "16685", + "currentPrice": "188545375814505063", + "twapSlow": "189490416074266880", + "twapFast": "188866159503356570", + "depositTokenBalance": "1267801869011807002042", + "pairedTokenBalance": "0", + "usedToken0": "163626265562572506291765", + "usedToken1": "310178462541032358685524", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15240", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0x1d64d50c39e925697aa75850c4557d8a478894438c3ee63fd5b39764fa2d5514", + "state": { + "depositToken": 0, + "blockNumber": 43734537, + "lastRebalancePrice": "188545375814505063", + "state": "2", + "currentTick": "16541", + "currentPrice": "191279934069394216", + "twapSlow": "189357825824418177", + "twapFast": "190554485816331690", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "169442072174642964760878", + "usedToken1": "279041569576453857387983", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15120", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0xaa4107d1a20beef8734ad4ac259eeaed098a4e2cf9e2e8e03e1742d8c69546f5", + "state": { + "depositToken": 0, + "blockNumber": 43740602, + "lastRebalancePrice": "191279934069394216", + "state": "2", + "currentTick": "16662", + "currentPrice": "188979507532760116", + "twapSlow": "188979507532760116", + "twapFast": "188979507532760116", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "168422968086660961707150", + "usedToken1": "284402110337648912192356", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15240", + "topTick": "16620" + } + } + }, + { + "transactionHash": "0x188f4813ff108cf76dddf3db0f7dbc84b867ac9ddbe4f0b61eb3f329571608f5", + "state": { + "depositToken": 0, + "blockNumber": 43746666, + "lastRebalancePrice": "188979507532760116", + "state": "2", + "currentTick": "16495", + "currentPrice": "192161804420184472", + "twapSlow": "191988945237321107", + "twapFast": "192161804420184472", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "173798554003266810392058", + "usedToken1": "256235853249191022057206", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15060", + "topTick": "16440" + } + } + }, + { + "transactionHash": "0xaada64b10a3ac1121b8a3a8f7d5e1e77b05fb23ddcb6a1cd05333ee160f0eee5", + "state": { + "depositToken": 0, + "blockNumber": 43752730, + "lastRebalancePrice": "192161804420184472", + "state": "2", + "currentTick": "16530", + "currentPrice": "191490447232401790", + "twapSlow": "191758708184555829", + "twapFast": "191490447232401790", + "depositTokenBalance": "5868566288283688680245", + "pairedTokenBalance": "0", + "usedToken0": "178745266736484850735333", + "usedToken1": "256919275984552018283912", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15120", + "topTick": "16500" + } + } + }, + { + "transactionHash": "0x652a3077d2017c88d85950893cb70c57c0e6ea7c944a0d82f8fb1fa33819324f", + "state": { + "depositToken": 0, + "blockNumber": 43760451, + "lastRebalancePrice": "191490447232401790", + "state": "2", + "currentTick": "16445", + "currentPrice": "193124971195190469", + "twapSlow": "192739126517998073", + "twapFast": "193124971195190469", + "depositTokenBalance": "3664925223124619833221", + "pairedTokenBalance": "0", + "usedToken0": "184704725747882696033427", + "usedToken1": "245114711214042773921304", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15000", + "topTick": "16440" + } + } + }, + { + "transactionHash": "0x13c3a50b2181daefa82fe3a9ac5d5ac3113f8f9a7e108a7037f22d654b86cb73", + "state": { + "depositToken": 0, + "blockNumber": 43766513, + "lastRebalancePrice": "193124971195190469", + "state": "2", + "currentTick": "15938", + "currentPrice": "203168353651153712", + "twapSlow": "202377579621570151", + "twapFast": "203168353651153712", + "depositTokenBalance": "6192981841157816913339", + "pairedTokenBalance": "0", + "usedToken0": "208390982651026675800031", + "usedToken1": "157739822131964638884795", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "18780" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0x68a79b4b8f8fd15c521f2c020227413301f688c3d81f3b06d2892cf027cb0bc8", + "state": { + "depositToken": 0, + "blockNumber": 43773441, + "lastRebalancePrice": "203168353651153712", + "state": "1", + "currentTick": "16263", + "currentPrice": "196671846999770211", + "twapSlow": "199703910801489677", + "twapFast": "196947366628558902", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "182846614372188750840220", + "usedToken1": "284479742077928216185526", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14820", + "topTick": "16260" + } + } + }, + { + "transactionHash": "0x6dedb57d999e2f425c45c94509bf874a1ffd09b1f81e445d5f321a52fcaa4040", + "state": { + "depositToken": 0, + "blockNumber": 43779515, + "lastRebalancePrice": "196671846999770211", + "state": "2", + "currentTick": "16327", + "currentPrice": "195417228968739584", + "twapSlow": "195847598587355261", + "twapFast": "195417228968739584", + "depositTokenBalance": "11317791306279999766528", + "pairedTokenBalance": "0", + "usedToken0": "193586444867191952185564", + "usedToken1": "287713017186502689097344", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14880", + "topTick": "16320" + } + } + }, + { + "transactionHash": "0xebaa350b5e4ffe92cf9c18208460509b8df73b982004ab8835c108fb03eaffbe", + "state": { + "depositToken": 0, + "blockNumber": 43785579, + "lastRebalancePrice": "195417228968739584", + "state": "2", + "currentTick": "15932", + "currentPrice": "203290285142661124", + "twapSlow": "202823278100756096", + "twapFast": "203290285142661124", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "209455531008235373885189", + "usedToken1": "207827742362246503253857", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "18780" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x08c128d3a615c4c6ab94cc9afc8cf6ba22bf0ad4041fc86e9640bb02fb3ca37d", + "state": { + "depositToken": 0, + "blockNumber": 43791422, + "lastRebalancePrice": "203290285142661124", + "state": "1", + "currentTick": "15680", + "currentPrice": "208478032037170595", + "twapSlow": "208728343316991832", + "twapFast": "208478032037170595", + "depositTokenBalance": "5259279866116672456656", + "pairedTokenBalance": "1", + "usedToken0": "234711446613988368789529", + "usedToken1": "110729735204403899730343", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "18540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0xe880b581178893ba5b08ffed0d84322d7326a009fadbfb72e6eb66ecd5866423", + "state": { + "depositToken": 0, + "blockNumber": 43797487, + "lastRebalancePrice": "208478032037170595", + "state": "1", + "currentTick": "15857", + "currentPrice": "204820617338564341", + "twapSlow": "206548270126639880", + "twapFast": "205148576225783682", + "depositTokenBalance": "4127656664857060949626", + "pairedTokenBalance": "2", + "usedToken0": "223430101232687039158105", + "usedToken1": "185979476208421132225517", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "18720" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x31ab5436f345384ee6ae587c33efc63d1bca13c571b2ae2af0dd1f5820e74c70", + "state": { + "depositToken": 0, + "blockNumber": 43833866, + "lastRebalancePrice": "204820617338564341", + "state": "1", + "currentTick": "15995", + "currentPrice": "202013645813323106", + "twapSlow": "202054050562622229", + "twapFast": "202013645813323106", + "depositTokenBalance": "19251624610040763243389", + "pairedTokenBalance": "1", + "usedToken0": "216257857412228361382122", + "usedToken1": "227480002460880450439178", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15600", + "topTick": "18840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15600" + } + } + }, + { + "transactionHash": "0xca38d099c53331fe6674b80c82f07798819d2fb2f82eec6eec3f4e879631aa07", + "state": { + "depositToken": 0, + "blockNumber": 43844363, + "lastRebalancePrice": "202013645813323106", + "state": "1", + "currentTick": "15632", + "currentPrice": "209481081833046573", + "twapSlow": "208895384447271803", + "twapFast": "209104373859713910", + "depositTokenBalance": "1500000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "247240871070789912570298", + "usedToken1": "79693680334103452259406", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15660" + }, + "limitPosition": { + "bottomTick": "15660", + "topTick": "18540" + } + } + }, + { + "transactionHash": "0x59e7997af85c426aa2a03fb3767d468c178f0bc3069ef3568a09bc656080fb24", + "state": { + "depositToken": 0, + "blockNumber": 43850429, + "lastRebalancePrice": "209481081833046573", + "state": "0", + "currentTick": "15287", + "currentPrice": "216833918697911014", + "twapSlow": "216162807864143257", + "twapFast": "216833918697911014", + "depositTokenBalance": "19000000000000000000001", + "pairedTokenBalance": "1", + "usedToken0": "248926720644490183936558", + "usedToken1": "72732588527901510295586", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15300" + }, + "limitPosition": { + "bottomTick": "15300", + "topTick": "18180" + } + } + }, + { + "transactionHash": "0x312f913294da04de0884ce5f8cd442945b2501f1f0ae4ea8a35c079861c3bf4e", + "state": { + "depositToken": 0, + "blockNumber": 43856492, + "lastRebalancePrice": "216833918697911014", + "state": "0", + "currentTick": "15385", + "currentPrice": "214719429934374236", + "twapSlow": "217094262558449045", + "twapFast": "214526279035758690", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "240180439837759665237449", + "usedToken1": "108991532239347638918178", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15420" + }, + "limitPosition": { + "bottomTick": "15420", + "topTick": "18300" + } + } + }, + { + "transactionHash": "0x667e781d2906d98d5ae38904fec0b02d109e34540b4f5c176a09298ffe8b80a2", + "state": { + "depositToken": 0, + "blockNumber": 43864028, + "lastRebalancePrice": "214719429934374236", + "state": "0", + "currentTick": "15425", + "currentPrice": "213862310451630668", + "twapSlow": "214461934021479763", + "twapFast": "213905085052344098", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "239327800783878200040600", + "usedToken1": "111289941165150309783360", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "18300" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0x933e5ec34c05157a8da183086cd7d4d0d4ef91a4594f92559dae7ed41308c7e6", + "state": { + "depositToken": 0, + "blockNumber": 43909891, + "lastRebalancePrice": "213862310451630668", + "state": "1", + "currentTick": "15765", + "currentPrice": "206713566587824977", + "twapSlow": "206734237944483759", + "twapFast": "206713566587824977", + "depositTokenBalance": "2826458212782405063998", + "pairedTokenBalance": "1", + "usedToken0": "195041745728264880683094", + "usedToken1": "234061402478197426405407", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "18600" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0xba3ac3a7ab3a89a41e9ad6a2a935a6362798ec17b829fe18086203528ff595fc", + "state": { + "depositToken": 0, + "blockNumber": 43910909, + "lastRebalancePrice": "206713566587824977", + "state": "1", + "currentTick": "16019", + "currentPrice": "201529418579427427", + "twapSlow": "205620937340500692", + "twapFast": "203005892084466604", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "176392321589855822941121", + "usedToken1": "325215620335423190275123", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0x5e05434283686ac788e4eea5340ef6d6975a50c1f7d5f25223166849c1561979", + "state": { + "depositToken": 0, + "blockNumber": 43916973, + "lastRebalancePrice": "201529418579427427", + "state": "3", + "currentTick": "15715", + "currentPrice": "207749670718305704", + "twapSlow": "208082319607437490", + "twapFast": "207749670718305704", + "depositTokenBalance": "784741492330933187389", + "pairedTokenBalance": "1", + "usedToken0": "178522561468097202725208", + "usedToken1": "318712447752864875128584", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14280", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0x615cc32070f7d9540d915dba61f348cd8c8a9b714389c0c8d68c330a5bc724ef", + "state": { + "depositToken": 0, + "blockNumber": 43923898, + "lastRebalancePrice": "207749670718305704", + "state": "2", + "currentTick": "15583", + "currentPrice": "210510006495472708", + "twapSlow": "209439191900274599", + "twapFast": "210131448216036492", + "depositTokenBalance": "134859260818679875928", + "pairedTokenBalance": "0", + "usedToken0": "182985762060752271507183", + "usedToken1": "298138885942864989029816", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0xb50c4b53c6dcc9d8d183c17b4f9d5941b5df4c1edf5756e5fafdfa492b6095ac", + "state": { + "depositToken": 0, + "blockNumber": 43929963, + "lastRebalancePrice": "210510006495472708", + "state": "2", + "currentTick": "15411", + "currentPrice": "214161912378832755", + "twapSlow": "213285689832077616", + "twapFast": "214183328570070638", + "depositTokenBalance": "276500000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "189726462876884984518520", + "usedToken1": "267729748514094502670866", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13980", + "topTick": "15360" + } + } + }, + { + "transactionHash": "0x0d49bb038bcba9a750f3db69125cb056d3d5657b34aa48def7a583445c28cd4d", + "state": { + "depositToken": 0, + "blockNumber": 43939345, + "lastRebalancePrice": "214161912378832755", + "state": "2", + "currentTick": "15551", + "currentPrice": "211184683690777489", + "twapSlow": "213371016906005001", + "twapFast": "212073480089171088", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "188369066013628155758018", + "usedToken1": "273954415845897247144083", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14100", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x0077a41e28e6996815c889d1a56ab976f7520b74c42bacc33d6ea0a63d43f0ac", + "state": { + "depositToken": 0, + "blockNumber": 43957281, + "lastRebalancePrice": "211184683690777489", + "state": "2", + "currentTick": "15562", + "currentPrice": "210952519860231183", + "twapSlow": "210131448216036492", + "twapFast": "210952519860231183", + "depositTokenBalance": "2539441204428585357518", + "pairedTokenBalance": "0", + "usedToken0": "190903789916034568835422", + "usedToken1": "274896758887066948883669", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x10ab0989f4e324296315ee68a0aa9bc29a13ffdb6dbe9c1bd040e6d294971d8f", + "state": { + "depositToken": 0, + "blockNumber": 43963345, + "lastRebalancePrice": "210952519860231183", + "state": "2", + "currentTick": "15766", + "currentPrice": "206692897298095167", + "twapSlow": "207438295370626879", + "twapFast": "206692897298095167", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "188869643110272950945950", + "usedToken1": "283713910197491193411829", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "15720" + } + } + }, + { + "transactionHash": "0x310a970573a4dd8a8133531e58e9b5c5325a21470848da66c37a5ce868e6bc9f", + "state": { + "depositToken": 0, + "blockNumber": 43969410, + "lastRebalancePrice": "206692897298095167", + "state": "2", + "currentTick": "16078", + "currentPrice": "200343954838701954", + "twapSlow": "200263837287155779", + "twapFast": "200343954838701954", + "depositTokenBalance": "21878095363360000000000", + "pairedTokenBalance": "1", + "usedToken0": "207821054670015501514749", + "usedToken1": "298097276353193148026306", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14640", + "topTick": "16020" + } + } + }, + { + "transactionHash": "0x045c85433e562c27154bfe72cedb0dafe45e4b6dbd2d557cff911dca5b19b9ca", + "state": { + "depositToken": 0, + "blockNumber": 43975474, + "lastRebalancePrice": "200343954838701954", + "state": "2", + "currentTick": "15964", + "currentPrice": "202640828387484757", + "twapSlow": "202134884306898548", + "twapFast": "202640828387484757", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "210919368880807782599130", + "usedToken1": "282746985701039174814720", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15960" + } + } + }, + { + "transactionHash": "0x5506129171169330f5a6eda546b4c7147a3164a9c9633ebc94bff37a7f4c1103", + "state": { + "depositToken": 0, + "blockNumber": 43981538, + "lastRebalancePrice": "202640828387484757", + "state": "2", + "currentTick": "15598", + "currentPrice": "210194493954654881", + "twapSlow": "209690657206508574", + "twapFast": "210194493954654881", + "depositTokenBalance": "999161268837101275790", + "pairedTokenBalance": "0", + "usedToken0": "227109795335405818350934", + "usedToken1": "209609024463803077099289", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15240", + "topTick": "18420" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "15240" + } + } + }, + { + "transactionHash": "0x863941dfc4852e86c98d8bb62d6a75e191bfc609935e8a44bebda1c9d311e1fd", + "state": { + "depositToken": 0, + "blockNumber": 43987602, + "lastRebalancePrice": "210194493954654881", + "state": "1", + "currentTick": "15894", + "currentPrice": "204064219073366243", + "twapSlow": "204411405911941154", + "twapFast": "204064219073366243", + "depositTokenBalance": "1573948926215849138719", + "pairedTokenBalance": "1", + "usedToken0": "203190225642774525647738", + "usedToken1": "333606070484960327808908", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14460", + "topTick": "15840" + } + } + }, + { + "transactionHash": "0x43bb9801b8f8ca85a1d544f521918061b5304d1d3ff757b87931460e2a05ca77", + "state": { + "depositToken": 0, + "blockNumber": 43993666, + "lastRebalancePrice": "204064219073366243", + "state": "2", + "currentTick": "15665", + "currentPrice": "208790968082045958", + "twapSlow": "208999853031122942", + "twapFast": "208770091072938664", + "depositTokenBalance": "1077017934447922967145", + "pairedTokenBalance": "0", + "usedToken0": "202835085944897632994530", + "usedToken1": "271904782829699290263081", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14220", + "topTick": "15660" + } + } + }, + { + "transactionHash": "0x3c61e6497fc66ec4563a7dbf1292dcf7631ce4b0e04416e1c1126c3fda8a4d92", + "state": { + "depositToken": 0, + "blockNumber": 44005596, + "lastRebalancePrice": "208790968082045958", + "state": "2", + "currentTick": "15787", + "currentPrice": "206259319308528327", + "twapSlow": "207542035264216216", + "twapFast": "206589581846147909", + "depositTokenBalance": "2565942606423278157890", + "pairedTokenBalance": "0", + "usedToken0": "202338539899926459905969", + "usedToken1": "275541092657711562527012", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14340", + "topTick": "15780" + } + } + }, + { + "transactionHash": "0xda376994b6dd285e5a9c8cc1c51ce77db4e8c708d6c1bac67e9752a2c12f557d", + "state": { + "depositToken": 0, + "blockNumber": 44011660, + "lastRebalancePrice": "206259319308528327", + "state": "2", + "currentTick": "15821", + "currentPrice": "205559263394498882", + "twapSlow": "205394889960457775", + "twapFast": "205559263394498882", + "depositTokenBalance": "7831970235702420262332", + "pairedTokenBalance": "0", + "usedToken0": "207696238023653039569499", + "usedToken1": "274063661772787411472851", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14400", + "topTick": "15780" + } + } + }, + { + "transactionHash": "0xaf472b052367df728fe0327ab09ce93f189d25d5f9147ee5ee601bad8341aa2a", + "state": { + "depositToken": 0, + "blockNumber": 44018367, + "lastRebalancePrice": "205559263394498882", + "state": "2", + "currentTick": "15941", + "currentPrice": "203107415333128206", + "twapSlow": "203330945232592507", + "twapFast": "203107415333128206", + "depositTokenBalance": "58978245578648305664", + "pairedTokenBalance": "0", + "usedToken0": "206504047738950233052748", + "usedToken1": "280123576635525970717852", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14520", + "topTick": "15900" + } + } + }, + { + "transactionHash": "0xbed59b26fe4aa0af0bea08ecb3094555dffabfa2dd1def174b2877572b3d3237", + "state": { + "depositToken": 0, + "blockNumber": 44024432, + "lastRebalancePrice": "203107415333128206", + "state": "2", + "currentTick": "16192", + "currentPrice": "198073115668780899", + "twapSlow": "198231629632881792", + "twapFast": "198073115668780899", + "depositTokenBalance": "3600080999026897938350", + "pairedTokenBalance": "1", + "usedToken0": "207525141028052620453720", + "usedToken1": "292980143826016668281851", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14760", + "topTick": "16140" + } + } + }, + { + "transactionHash": "0x98a8b08bede8307c74f9c69b440c1b69dbe2dc007c31437c67def56438c02280", + "state": { + "depositToken": 0, + "blockNumber": 44034151, + "lastRebalancePrice": "198073115668780899", + "state": "2", + "currentTick": "16330", + "currentPrice": "195358615523128821", + "twapSlow": "197578576038276326", + "twapFast": "196200424071509926", + "depositTokenBalance": "530453138755991496938", + "pairedTokenBalance": "0", + "usedToken0": "206633053711563793620921", + "usedToken1": "300247550814047234136206", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14880", + "topTick": "16320" + } + } + }, + { + "transactionHash": "0x515081ad34b7689457af75a0cdcc1e9c1bd3f2fc71eef0b12c8552fcdb89ddec", + "state": { + "depositToken": 0, + "blockNumber": 44042707, + "lastRebalancePrice": "195358615523128821", + "state": "2", + "currentTick": "16210", + "currentPrice": "197716922539920030", + "twapSlow": "195456314368705622", + "twapFast": "197085271151039733", + "depositTokenBalance": "24948804573154783588", + "pairedTokenBalance": "0", + "usedToken0": "210989056545087240185524", + "usedToken1": "275725492708479905542347", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14760", + "topTick": "16200" + } + } + }, + { + "transactionHash": "0xd0dd1020ef31aa82276417114e98a9e6fb00fca0eec87ff61e15327eda4829a9", + "state": { + "depositToken": 0, + "blockNumber": 44061712, + "lastRebalancePrice": "197716922539920030", + "state": "2", + "currentTick": "16294", + "currentPrice": "196063138694301892", + "twapSlow": "197539066249635737", + "twapFast": "196435994115849432", + "depositTokenBalance": "1564280564827036856428", + "pairedTokenBalance": "0", + "usedToken0": "211679656964020060317904", + "usedToken1": "280214015095767809527716", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14880", + "topTick": "16260" + } + } + }, + { + "transactionHash": "0x29aa7196456aaff84221a0565f4397dd71e9a7a2f23128d2be2c8d6bf7c03fd9", + "state": { + "depositToken": 0, + "blockNumber": 44073841, + "lastRebalancePrice": "185293224642634336", + "state": "2", + "currentTick": "16932", + "currentPrice": "183945576384551804", + "twapSlow": "184166432520770814", + "twapFast": "183945576384551804", + "depositTokenBalance": "4589043112329311505630", + "pairedTokenBalance": "0", + "usedToken0": "199475962432987923540676", + "usedToken1": "298962186122710287656154", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15480", + "topTick": "16920" + } + } + }, + { + "transactionHash": "0x8e73b7f0a756674a148836b4b8e17111710564bab000ca1d152a729bc58bc06b", + "state": { + "depositToken": 0, + "blockNumber": 44079906, + "lastRebalancePrice": "183945576384551804", + "state": "2", + "currentTick": "17073", + "currentPrice": "181370271087091597", + "twapSlow": "179871202529225214", + "twapFast": "181370271087091597", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "198072255850085137472695", + "usedToken1": "306576421961492141445870", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15660", + "topTick": "17040" + } + } + }, + { + "transactionHash": "0x67896faf7a72aed50dfd9f55a3b9af3a0cf55fc52bcdf0014bdf752df9d2fe98", + "state": { + "depositToken": 0, + "blockNumber": 44086789, + "lastRebalancePrice": "181370271087091597", + "state": "2", + "currentTick": "16948", + "currentPrice": "183651513478292083", + "twapSlow": "183156347924061997", + "twapFast": "183467962932755998", + "depositTokenBalance": "1493908271065531615", + "pairedTokenBalance": "0", + "usedToken0": "202234620475141605136406", + "usedToken1": "283803794663795806666458", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15540", + "topTick": "16920" + } + } + }, + { + "transactionHash": "0xde9c611e3f849ab6481e1097287ae21274654125b30cdd42f9a1dea15dac6012", + "state": { + "depositToken": 0, + "blockNumber": 44092854, + "lastRebalancePrice": "183651513478292083", + "state": "2", + "currentTick": "17329", + "currentPrice": "176786345910149374", + "twapSlow": "176963211831133258", + "twapFast": "176980908152316371", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "198417663783831018344061", + "usedToken1": "304987784920281372502568", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15900", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0x7c8e6bb16b0be5cadaab4d1731eb922be1f3fd69e715d73767e893d6b0bb033b", + "state": { + "depositToken": 0, + "blockNumber": 44098918, + "lastRebalancePrice": "176786345910149374", + "state": "2", + "currentTick": "17433", + "currentPrice": "174957386432584495", + "twapSlow": "175764003877834529", + "twapFast": "174957386432584495", + "depositTokenBalance": "600000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "197961122244364055742324", + "usedToken1": "310828649356954596859335", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16020", + "topTick": "17400" + } + } + }, + { + "transactionHash": "0xfe19a27021ef11d0c52b73d943e4250b149e5bf5314eaad8333db326b6bb14b6", + "state": { + "depositToken": 0, + "blockNumber": 44104982, + "lastRebalancePrice": "174957386432584495", + "state": "2", + "currentTick": "17085", + "currentPrice": "181152768164604506", + "twapSlow": "179799272031736983", + "twapFast": "181152768164604506", + "depositTokenBalance": "206633641083704838051", + "pairedTokenBalance": "0", + "usedToken0": "211524301685654841792641", + "usedToken1": "236779114838273510368185", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "19920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0xb1b8e214631f0a6378449be41f897f1850189ac606873139dc382ff2e829962a", + "state": { + "depositToken": 0, + "blockNumber": 44134151, + "lastRebalancePrice": "181152768164604506", + "state": "1", + "currentTick": "17167", + "currentPrice": "179673462870011572", + "twapSlow": "179709399359320203", + "twapFast": "179673462870011572", + "depositTokenBalance": "4963438690925292613337", + "pairedTokenBalance": "1", + "usedToken0": "210040772820853470980623", + "usedToken1": "273992247667248100418285", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16740", + "topTick": "20040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16740" + } + } + }, + { + "transactionHash": "0x21c1501c60f63ba435a70ceee25b5b9f6b4212750798e97fecc3be4775c52625", + "state": { + "depositToken": 0, + "blockNumber": 44138308, + "lastRebalancePrice": "179673462870011572", + "state": "1", + "currentTick": "17487", + "currentPrice": "174015209820121294", + "twapSlow": "177175684519991094", + "twapFast": "175500568669356672", + "depositTokenBalance": "48880609118621704862", + "pairedTokenBalance": "1", + "usedToken0": "184939579329257404190125", + "usedToken1": "413579606048947212180948", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "17460" + } + } + }, + { + "transactionHash": "0x0780df3fda1cdcbec216f9ceb871b0c0283186691dc8988d7870fe0fad5100fa", + "state": { + "depositToken": 0, + "blockNumber": 44144373, + "lastRebalancePrice": "174015209820121294", + "state": "3", + "currentTick": "17707", + "currentPrice": "170228866996089296", + "twapSlow": "170109754438979142", + "twapFast": "170228866996089296", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "179727218593076610944937", + "usedToken1": "418391146050067452091862", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "16260", + "topTick": "17700" + } + } + }, + { + "transactionHash": "0x66404948564754717bfce0baf35857f242d936eaf7b5b1b59ca28e5274582922", + "state": { + "depositToken": 0, + "blockNumber": 44156502, + "lastRebalancePrice": "172870548205673957", + "state": "2", + "currentTick": "17301", + "currentPrice": "177282016510599546", + "twapSlow": "177299744712250606", + "twapFast": "177282016510599546", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "187991238337738751741386", + "usedToken1": "294814093415088318130352", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "17280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "15900", + "topTick": "17280" + } + } + }, + { + "transactionHash": "0xbbb720608c945bb168155e6241abf9eb00842d54cf40bbd96dea14de60c7ff9b", + "state": { + "depositToken": 0, + "blockNumber": 44168076, + "lastRebalancePrice": "177282016510599546", + "state": "2", + "currentTick": "17154", + "currentPrice": "179907178568443085", + "twapSlow": "178705889347977795", + "twapFast": "179422108578555177", + "depositTokenBalance": "701015952000000000000", + "pairedTokenBalance": "0", + "usedToken0": "193757605472370079022856", + "usedToken1": "266247519484781619544244", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "19980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0x1a614d0563e8b14fcf6e286f3d9db9167a73ba2cec50b67dcfa3f067f8e2e1a1", + "state": { + "depositToken": 0, + "blockNumber": 44189249, + "lastRebalancePrice": "179907178568443085", + "state": "1", + "currentTick": "17008", + "currentPrice": "182552958285344234", + "twapSlow": "182552958285344234", + "twapFast": "182552958285344234", + "depositTokenBalance": "2702295799708079278231", + "pairedTokenBalance": "1", + "usedToken0": "199636594554092019176442", + "usedToken1": "199738147758989198489979", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16680", + "topTick": "19860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16680" + } + } + }, + { + "transactionHash": "0x5890f8e02ec5905f772c3ba7c90f7066e5ed2df58ebd48b4dc0fa118a851150c", + "state": { + "depositToken": 0, + "blockNumber": 44203772, + "lastRebalancePrice": "182552958285344234", + "state": "1", + "currentTick": "16695", + "currentPrice": "188356934097180751", + "twapSlow": "185961448922748861", + "twapFast": "187924232580955836", + "depositTokenBalance": "196873618247823396156", + "pairedTokenBalance": "1", + "usedToken0": "211564591574717118577203", + "usedToken1": "67740072028699790974792", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16740" + }, + "limitPosition": { + "bottomTick": "16740", + "topTick": "19620" + } + } + }, + { + "transactionHash": "0xd76d475fa1c8afa7cdf76eacf50431f1dc01481036027bfcb8505af11918295e", + "state": { + "depositToken": 0, + "blockNumber": 44209836, + "lastRebalancePrice": "188356934097180751", + "state": "0", + "currentTick": "16357", + "currentPrice": "194831885003477718", + "twapSlow": "194364872468903220", + "twapFast": "194831885003477718", + "depositTokenBalance": "339256742888350076940", + "pairedTokenBalance": "1", + "usedToken0": "211918241752026589790846", + "usedToken1": "66399928789178046889736", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16380" + }, + "limitPosition": { + "bottomTick": "16380", + "topTick": "19260" + } + } + }, + { + "transactionHash": "0xb726aad955d89f1ecabb841f13402fdfefdc97e3ce0ec56c89f5713d44518282", + "state": { + "depositToken": 0, + "blockNumber": 44226890, + "lastRebalancePrice": "194831885003477718", + "state": "0", + "currentTick": "16179", + "currentPrice": "198330765272843612", + "twapSlow": "196337805577316739", + "twapFast": "197558820156260700", + "depositTokenBalance": "199688079442414750611", + "pairedTokenBalance": "1", + "usedToken0": "211776560376436582240562", + "usedToken1": "65673513542839947520597", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16200" + }, + "limitPosition": { + "bottomTick": "16200", + "topTick": "19080" + } + } + }, + { + "transactionHash": "0x0e8df887132fc8a755c23d2b89db7de1f5b65694dc527ee78ca41e4386a220c3", + "state": { + "depositToken": 0, + "blockNumber": 44233834, + "lastRebalancePrice": "198330765272843612", + "state": "0", + "currentTick": "16293", + "currentPrice": "196082745008171323", + "twapSlow": "196750527539667646", + "twapFast": "196377075101810258", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "204383076239214546748034", + "usedToken1": "103176870815980950596421", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "16140", + "topTick": "19140" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "16140" + } + } + }, + { + "transactionHash": "0xd98cdb15d62d73f690505a57b7fee4b12fd32de785a234b70fdb9b6f7c53feb6", + "state": { + "depositToken": 0, + "blockNumber": 44248727, + "lastRebalancePrice": "196082745008171323", + "state": "1", + "currentTick": "16190", + "currentPrice": "198112732272645812", + "twapSlow": "195906358742555273", + "twapFast": "197558820156260700", + "depositTokenBalance": "98310415743485151714", + "pairedTokenBalance": "1", + "usedToken0": "203537401845386998412747", + "usedToken1": "60378437123715775565756", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "16200" + }, + "limitPosition": { + "bottomTick": "16200", + "topTick": "19080" + } + } + }, + { + "transactionHash": "0xf2dca0c81e5b9c92c774e0fe1312d122a8c407b603041cba79c274cf770fb10f", + "state": { + "depositToken": 0, + "blockNumber": 44254791, + "lastRebalancePrice": "198112732272645812", + "state": "0", + "currentTick": "15930", + "currentPrice": "203330945232592507", + "twapSlow": "201872292808109703", + "twapFast": "203330945232592507", + "depositTokenBalance": "19780000000000000000001", + "pairedTokenBalance": "1", + "usedToken0": "223442960157401062785839", + "usedToken1": "59306239249770474706467", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "15960" + }, + "limitPosition": { + "bottomTick": "15960", + "topTick": "18840" + } + } + }, + { + "transactionHash": "0x783f39463c20f77f426dbfcb013c99b5201d8032333278529226c7d2a7b5d7fd", + "state": { + "depositToken": 0, + "blockNumber": 44260856, + "lastRebalancePrice": "203330945232592507", + "state": "0", + "currentTick": "14760", + "currentPrice": "228566929161987938", + "twapSlow": "225976190968227640", + "twapFast": "228772721701530727", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "224168890944442337229492", + "usedToken1": "55938703673996191668184", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "14760" + }, + "limitPosition": { + "bottomTick": "14820", + "topTick": "17640" + } + } + }, + { + "transactionHash": "0x78371f9b5df71080f2f559fdbb06ce047b813c663aab0200b834fa2ff7b21675", + "state": { + "depositToken": 0, + "blockNumber": 44266920, + "lastRebalancePrice": "228566929161987938", + "state": "0", + "currentTick": "15183", + "currentPrice": "219100644663281383", + "twapSlow": "220573473810610064", + "twapFast": "219473413885126301", + "depositTokenBalance": "43348012046768603762", + "pairedTokenBalance": "1", + "usedToken0": "192651998180954660696182", + "usedToken1": "193992065289427086154476", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "14760", + "topTick": "18000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "14760" + } + } + }, + { + "transactionHash": "0x30e90c688f6fbe6d1a8bc8319b784e035faf43e2032f1d4f64517ed328e4e049", + "state": { + "depositToken": 0, + "blockNumber": 44272984, + "lastRebalancePrice": "219100644663281383", + "state": "1", + "currentTick": "15385", + "currentPrice": "214719429934374236", + "twapSlow": "214740901877367674", + "twapFast": "214697960138360400", + "depositTokenBalance": "34000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "177935328480298998468087", + "usedToken1": "261397672032496372440769", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13980", + "topTick": "15360" + } + } + }, + { + "transactionHash": "0x971c5dc0800c8d475b59a0d48fae9bdd2a87cca2b3b246f525f75f9e48ab3ce3", + "state": { + "depositToken": 0, + "blockNumber": 44285193, + "lastRebalancePrice": "214719429934374236", + "state": "2", + "currentTick": "15279", + "currentPrice": "217007446558510796", + "twapSlow": "215730935857612081", + "twapFast": "216942357342820287", + "depositTokenBalance": "35569633710377436193", + "pairedTokenBalance": "0", + "usedToken0": "181585932570459462477962", + "usedToken1": "244054645524358816776499", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13860", + "topTick": "15240" + } + } + }, + { + "transactionHash": "0x964799468af5e8081df231f28a4f64d19e981b53740bfb9f597530cce262b43e", + "state": { + "depositToken": 0, + "blockNumber": 44291258, + "lastRebalancePrice": "217007446558510796", + "state": "2", + "currentTick": "15575", + "currentPrice": "210678473455260939", + "twapSlow": "211565139406378278", + "twapFast": "210678473455260939", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "177878928382862132493557", + "usedToken1": "255103825171915812564066", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0xfe5f8a08af2eae8c27f8177018c8902cb94495576b658b4a497c58564d6bba50", + "state": { + "depositToken": 0, + "blockNumber": 44314551, + "lastRebalancePrice": "210678473455260939", + "state": "2", + "currentTick": "15473", + "currentPrice": "212838282195871333", + "twapSlow": "212774443479381439", + "twapFast": "212838282195871333", + "depositTokenBalance": "1010950583678665729214", + "pairedTokenBalance": "1", + "usedToken0": "179735159079357213258676", + "usedToken1": "238174107439665691347921", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "15420" + } + } + }, + { + "transactionHash": "0xd139eeac369170b85c9319b088075c7f8b56a0705655e26e7dfc0d9fde14a40a", + "state": { + "depositToken": 0, + "blockNumber": 44320615, + "lastRebalancePrice": "212838282195871333", + "state": "2", + "currentTick": "15318", + "currentPrice": "216162807864143257", + "twapSlow": "216595544435736850", + "twapFast": "216162807864143257", + "depositTokenBalance": "1326665572708692167045", + "pairedTokenBalance": "0", + "usedToken0": "185453607275080848345231", + "usedToken1": "218048494408317516530605", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "13920", + "topTick": "15300" + } + } + }, + { + "transactionHash": "0xa776a931a944aa08cf3b60a421686005d08d656fe90753ec5d23bc71ef37a05c", + "state": { + "depositToken": 0, + "blockNumber": 44326680, + "lastRebalancePrice": "216162807864143257", + "state": "2", + "currentTick": "15459", + "currentPrice": "213136449551276795", + "twapSlow": "213136449551276795", + "twapFast": "213136449551276795", + "depositTokenBalance": "1082236703689633520649", + "pairedTokenBalance": "0", + "usedToken0": "185032411319325395233912", + "usedToken1": "223994755728778985353770", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14040", + "topTick": "15420" + } + } + }, + { + "transactionHash": "0xf1aca8040a12e3c8627faadbbd9522e5ee1470cf97e7b2b23da600c0c63dde9a", + "state": { + "depositToken": 0, + "blockNumber": 44338168, + "lastRebalancePrice": "213136449551276795", + "state": "2", + "currentTick": "15571", + "currentPrice": "210762757486194186", + "twapSlow": "211226922739362481", + "twapFast": "210952519860231183", + "depositTokenBalance": "50000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "184033980430433120554794", + "usedToken1": "228759228208302385432578", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "15540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "14160", + "topTick": "15540" + } + } + }, + { + "transactionHash": "0x31991eeba6c6894168339939958bba4d86d1a08137ed7b0162e9341dc2560cf7", + "state": { + "depositToken": 0, + "blockNumber": 44349151, + "lastRebalancePrice": "210762757486194186", + "state": "2", + "currentTick": "517", + "currentPrice": "949616162817984047", + "twapSlow": "952183462389618715", + "twapFast": "948477363777678762", + "depositTokenBalance": "81818660638796358128589", + "pairedTokenBalance": "0", + "usedToken0": "275421033294174531318774", + "usedToken1": "658759974015514072037", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "540", + "topTick": "3420" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x97c4f5788937c30acf7d3f5930b04b2ba46de5ecd9451dbc54c0114e777435f5", + "state": { + "depositToken": 0, + "blockNumber": 44355241, + "lastRebalancePrice": "949616162817984047", + "state": "0", + "currentTick": "-380", + "currentPrice": "1038729259422592677", + "twapSlow": "1064491132599625387", + "twapFast": "1047595643568196571", + "depositTokenBalance": "9181925987736538423543", + "pairedTokenBalance": "1", + "usedToken0": "275817618838324858992903", + "usedToken1": "1317004380041812133524", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-360" + }, + "limitPosition": { + "bottomTick": "-360", + "topTick": "2520" + } + } + }, + { + "transactionHash": "0xacbdef1ea5e3cc8adfeb1f056eb97ec9793f3b14b225f0e6d6f710794954d7bb", + "state": { + "depositToken": 0, + "blockNumber": 44361305, + "lastRebalancePrice": "1038729259422592677", + "state": "0", + "currentTick": "-140", + "currentPrice": "1014097749117140554", + "twapSlow": "1068757410687765948", + "twapFast": "1016941059428421799", + "depositTokenBalance": "21523704666009648605032", + "pairedTokenBalance": "0", + "usedToken0": "219214436669196039037034", + "usedToken1": "18033063808810852309833", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-120" + }, + "limitPosition": { + "bottomTick": "-120", + "topTick": "2760" + } + } + }, + { + "transactionHash": "0x21904a0a0b58337776e3a6cda70b9ef8e39e8b104af2735dc0b5b86b085eb86a", + "state": { + "depositToken": 0, + "blockNumber": 44367397, + "lastRebalancePrice": "1014097749117140554", + "state": "0", + "currentTick": "-3135", + "currentPrice": "1368184017738907327", + "twapSlow": "1375316747025167403", + "twapFast": "1378207802189083688", + "depositTokenBalance": "16128740691245923035967", + "pairedTokenBalance": "0", + "usedToken0": "236245266886762991007938", + "usedToken1": "15282331232936687139417", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-3120" + }, + "limitPosition": { + "bottomTick": "-3120", + "topTick": "-240" + } + } + }, + { + "transactionHash": "0x801e7f8b572cdf52736ad18deca00317cd30d8e7b2a11252eb5ed62c32db59f5", + "state": { + "depositToken": 0, + "blockNumber": 44370778, + "lastRebalancePrice": "1368184017738907327", + "state": "0", + "currentTick": "-2374", + "currentPrice": "1267933146178728905", + "twapSlow": "1367636880922854645", + "twapFast": "1391640790906962594", + "depositTokenBalance": "268848355867978908163", + "pairedTokenBalance": "1", + "usedToken0": "175378916748527954576727", + "usedToken1": "66350948023519224621598", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2400" + } + } + }, + { + "transactionHash": "0xf007ab7a7a04d3ba74c4fc551ec4f39c4fd6e4ba391ef49f633891fd7527ad54", + "state": { + "depositToken": 0, + "blockNumber": 44381809, + "lastRebalancePrice": "1267933146178728905", + "state": "3", + "currentTick": "-13031", + "currentPrice": "3680449344989320859", + "twapSlow": "3496062793543972621", + "twapFast": "3647475554166842175", + "depositTokenBalance": "11884633008855808434062", + "pairedTokenBalance": "0", + "usedToken0": "232902545217921582014427", + "usedToken1": "38844704657639050623665", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-13080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-14460", + "topTick": "-13080" + } + } + }, + { + "transactionHash": "0x024a965538ada0e6709602cea5cf1d3fdb1be80deb3d9e8570327518a8b079e8", + "state": { + "depositToken": 0, + "blockNumber": 44382006, + "lastRebalancePrice": "3680449344989320859", + "state": "2", + "currentTick": "-13931", + "currentPrice": "4027034905277178563", + "twapSlow": "3581337071171168403", + "twapFast": "3952432786251726690", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "305086048479519903941097", + "usedToken1": "12832496342652863509868", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2500", + "baseHighPct": "1500", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-13980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-13980" + } + } + }, + { + "transactionHash": "0x9ebf3f31ac48c21f640638f11414d308ef9fc9402daf315557e51c79aa60ee2d", + "state": { + "depositToken": 0, + "blockNumber": 44388071, + "lastRebalancePrice": "4027034905277178563", + "state": "3", + "currentTick": "-10896", + "currentPrice": "2972922642404116817", + "twapSlow": "2992607837290134112", + "twapFast": "2966686367044483575", + "depositTokenBalance": "244388384621236469851218", + "pairedTokenBalance": "0", + "usedToken0": "479519144298152677981164", + "usedToken1": "23347876182721523925149", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11340", + "topTick": "-4020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-11340" + } + } + }, + { + "transactionHash": "0xfa9ffd57960ffbc7f143e7dc5aec3b1397e33e9137855780cbe364ea54caa9f5", + "state": { + "depositToken": 0, + "blockNumber": 44394128, + "lastRebalancePrice": "2972922642404116817", + "state": "1", + "currentTick": "-11541", + "currentPrice": "3170985106769154000", + "twapSlow": "3134729460307156220", + "twapFast": "3163067940435185506", + "depositTokenBalance": "8207897961360359602516", + "pairedTokenBalance": "0", + "usedToken0": "523862710874131702301394", + "usedToken1": "11217432723779679614601", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-11520" + }, + "limitPosition": { + "bottomTick": "-11520", + "topTick": "-4560" + } + } + }, + { + "transactionHash": "0x8913ec434066ce2740ae77a9202bde7c97c2b8facd37f304a7151d0ddc4035eb", + "state": { + "depositToken": 0, + "blockNumber": 44400197, + "lastRebalancePrice": "3170985106769154000", + "state": "0", + "currentTick": "-13411", + "currentPrice": "3822990422463123563", + "twapSlow": "3446771959504081641", + "twapFast": "3786845779529521731", + "depositTokenBalance": "3530144270246148127500", + "pairedTokenBalance": "0", + "usedToken0": "526903056348382887198996", + "usedToken1": "9234050143217248935907", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-13380" + }, + "limitPosition": { + "bottomTick": "-13380", + "topTick": "-6480" + } + } + }, + { + "transactionHash": "0xc6e40cde3f73ab7010f78415ca7a67d54e56b29680b884ef636d1a617fe7aaa5", + "state": { + "depositToken": 0, + "blockNumber": 44400203, + "lastRebalancePrice": "3822990422463123563", + "state": "0", + "currentTick": "-13356", + "currentPrice": "3802022737493389366", + "twapSlow": "3448840539764518625", + "twapFast": "3790255304313721696", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "524499939691512567878590", + "usedToken1": "9790878317405041674941", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-13380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-13380" + } + } + }, + { + "transactionHash": "0x5b423f5f7535bea673dfd0a9eb6419982f41ff30606d6f40f1fc87990b1befe0", + "state": { + "depositToken": 0, + "blockNumber": 44406268, + "lastRebalancePrice": "3802022737493389366", + "state": "3", + "currentTick": "-12877", + "currentPrice": "3624207411482411622", + "twapSlow": "3542868657518431318", + "twapFast": "3648569906261006328", + "depositTokenBalance": "3955368409677672196415", + "pairedTokenBalance": "0", + "usedToken0": "517161932586261801480435", + "usedToken1": "13532554854282779505412", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-13080", + "topTick": "-6000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-13080" + } + } + }, + { + "transactionHash": "0x225ba9fb7bcfc82fa5021a72d878566f9605c944543ae69c8050bf4eeb9307ae", + "state": { + "depositToken": 0, + "blockNumber": 44409837, + "lastRebalancePrice": "3624207411482411622", + "state": "1", + "currentTick": "-11591", + "currentPrice": "3186878939094960808", + "twapSlow": "3343237517171181222", + "twapFast": "3220515770484342242", + "depositTokenBalance": "1052218915277827034762", + "pairedTokenBalance": "0", + "usedToken0": "404726266611188633003179", + "usedToken1": "45751143794727230694289", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-11640" + } + } + }, + { + "transactionHash": "0x58d590736969d19e7690ab15efbfadee0f1333ee1b2b0be40689963ac14bfb99", + "state": { + "depositToken": 0, + "blockNumber": 44415901, + "lastRebalancePrice": "3186878939094960808", + "state": "3", + "currentTick": "-11947", + "currentPrice": "3302369592027120834", + "twapSlow": "3308980609479701773", + "twapFast": "3302369592027120834", + "depositTokenBalance": "1005817179835885017010", + "pairedTokenBalance": "0", + "usedToken0": "408567425701904487774175", + "usedToken1": "44427109872884919810091", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-12000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-13800", + "topTick": "-12000" + } + } + }, + { + "transactionHash": "0xaf19d3eda64415d578de79b7a0c32fb21cf46142182ad5f3d8e96463a56b64ce", + "state": { + "depositToken": 0, + "blockNumber": 44421965, + "lastRebalancePrice": "3302369592027120834", + "state": "2", + "currentTick": "-11869", + "currentPrice": "3276712584442282587", + "twapSlow": "3228899586542013400", + "twapFast": "3263958928828004910", + "depositTokenBalance": "29889340959931930932546", + "pairedTokenBalance": "0", + "usedToken0": "437173436820086163366261", + "usedToken1": "45011803948996127336689", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-13740", + "topTick": "-11880" + } + } + }, + { + "transactionHash": "0xd077389332ac0409efb90bd515f93c385ffa3ffc2db4d9329fe05583af062ddf", + "state": { + "depositToken": 0, + "blockNumber": 44428029, + "lastRebalancePrice": "3276712584442282587", + "state": "2", + "currentTick": "-11025", + "currentPrice": "3011519831314043784", + "twapSlow": "3061925751976552963", + "twapFast": "3026917042121823826", + "depositTokenBalance": "33784042907617311317242", + "pairedTokenBalance": "1", + "usedToken0": "452418932487759218499435", + "usedToken1": "50636455826852832547750", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-12900", + "topTick": "-11040" + } + } + }, + { + "transactionHash": "0x949438d1b19d18837ab8f548f93b209303a2e29bfe2b0ffb48455b5ca98f280e", + "state": { + "depositToken": 0, + "blockNumber": 44435483, + "lastRebalancePrice": "3011519831314043784", + "state": "2", + "currentTick": "-10917", + "currentPrice": "2979172027046481525", + "twapSlow": "3002499260462493664", + "twapFast": "2981258073195821190", + "depositTokenBalance": "187000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "449729391290684990456836", + "usedToken1": "51373617008693897731020", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-10920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-12780", + "topTick": "-10920" + } + } + }, + { + "transactionHash": "0x8321c9602d1a5c8a4f384e531ebbac099e1edbcbb56dad9a8f84fb115452cb1b", + "state": { + "depositToken": 0, + "blockNumber": 44441547, + "lastRebalancePrice": "2979172027046481525", + "state": "2", + "currentTick": "-11239", + "currentPrice": "3076657587127221937", + "twapSlow": "3073582621025122885", + "twapFast": "3074197368285154120", + "depositTokenBalance": "4398068220722643145849", + "pairedTokenBalance": "0", + "usedToken0": "482549250394300622747216", + "usedToken1": "42424574146185738523603", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-13080", + "topTick": "-11280" + } + } + }, + { + "transactionHash": "0x2a1de4fbdb2a67e2b21c39003e9b85a567326d443fc809c6b6bafa641c42ad1a", + "state": { + "depositToken": 0, + "blockNumber": 44447611, + "lastRebalancePrice": "3076657587127221937", + "state": "2", + "currentTick": "-11136", + "currentPrice": "3045132224535070043", + "twapSlow": "3010315524473281440", + "twapFast": "3038440631666123430", + "depositTokenBalance": "16994894986581687722", + "pairedTokenBalance": "0", + "usedToken0": "479059564404641475851232", + "usedToken1": "42998727956677163226983", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-13020", + "topTick": "-11160" + } + } + }, + { + "transactionHash": "0x5bd53b177e7e06a5112a3cb1cae23a6f00b9d30da5ecc6cd1d3f7a50d53d297f", + "state": { + "depositToken": 0, + "blockNumber": 44453675, + "lastRebalancePrice": "3045132224535070043", + "state": "2", + "currentTick": "-9945", + "currentPrice": "2703237904257196249", + "twapSlow": "2722498223605913954", + "twapFast": "2703508228047621968", + "depositTokenBalance": "6012471970586848281", + "pairedTokenBalance": "0", + "usedToken0": "426905757115688221337139", + "usedToken1": "49804926072707117248991", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-11820", + "topTick": "-9960" + } + } + }, + { + "transactionHash": "0x7f16646e81b411729d67c989d199b5062db14716b84b8b980e757fe1c363b535", + "state": { + "depositToken": 0, + "blockNumber": 44460514, + "lastRebalancePrice": "2703237904257196249", + "state": "2", + "currentTick": "-9846", + "currentPrice": "2676609209933112862", + "twapSlow": "2689218250814358635", + "twapFast": "2681699347028406851", + "depositTokenBalance": "4929983832422848233226", + "pairedTokenBalance": "0", + "usedToken0": "428504785197015968881262", + "usedToken1": "50465043387406120711633", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-11700", + "topTick": "-9900" + } + } + }, + { + "transactionHash": "0x07121f7cd72e752b8ebbd14a2e65f0ec7900edc2ea45888e59db8a17c922d6e8", + "state": { + "depositToken": 0, + "blockNumber": 44466579, + "lastRebalancePrice": "2676609209933112862", + "state": "2", + "currentTick": "-10160", + "currentPrice": "2761983837926187650", + "twapSlow": "2691908679536148530", + "twapFast": "2763088797191436613", + "depositTokenBalance": "1164498238828346339480", + "pairedTokenBalance": "0", + "usedToken0": "448181118332251714072469", + "usedToken1": "42254661042683699701800", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-10200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-12000", + "topTick": "-10200" + } + } + }, + { + "transactionHash": "0xbcf8e7b292a33523e24ab4cb5488ac425629559ec1d4c92d00687dfa69278eba", + "state": { + "depositToken": 0, + "blockNumber": 44468124, + "lastRebalancePrice": "2761983837926187650", + "state": "2", + "currentTick": "-11757", + "currentPrice": "3240219968197515171", + "twapSlow": "2876709679181059126", + "twapFast": "3163700585653951947", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "558866842720576404640193", + "usedToken1": "5518886692919433117269", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-11760" + } + } + }, + { + "transactionHash": "0xb0455dce2031177895d14655a5897c12fe4a1abf9a3428b0061599c558223909", + "state": { + "depositToken": 0, + "blockNumber": 44474188, + "lastRebalancePrice": "3240219968197515171", + "state": "3", + "currentTick": "-11403", + "currentPrice": "3127528227196566340", + "twapSlow": "3144776158397799169", + "twapFast": "3131596454258635822", + "depositTokenBalance": "390269342877940867385", + "pairedTokenBalance": "0", + "usedToken0": "548152187570195183002985", + "usedToken1": "8561426699637407294512", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-11400" + }, + "limitPosition": { + "bottomTick": "-11400", + "topTick": "-4440" + } + } + }, + { + "transactionHash": "0x0444890fb083a1009b98afb11c8196c162b3a02d7b1b2d6d1e4115609567206f", + "state": { + "depositToken": 0, + "blockNumber": 44480253, + "lastRebalancePrice": "3127528227196566340", + "state": "0", + "currentTick": "-10613", + "currentPrice": "2889972361365907499", + "twapSlow": "2953366935549532126", + "twapFast": "2888527808579949943", + "depositTokenBalance": "11005101004848317694383", + "pairedTokenBalance": "0", + "usedToken0": "487133260370614083521457", + "usedToken1": "32493027761828491557500", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11280", + "topTick": "-3720" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-11280" + } + } + }, + { + "transactionHash": "0x59116b437889ec7b03e4ab7297feb6ec34cf1edb00a0876f3e55d76769b8e507", + "state": { + "depositToken": 0, + "blockNumber": 44486324, + "lastRebalancePrice": "2889972361365907499", + "state": "1", + "currentTick": "-10610", + "currentPrice": "2889105543026944019", + "twapSlow": "2893731580440863809", + "twapFast": "2889105543026944019", + "depositTokenBalance": "6050000000000000000001", + "pairedTokenBalance": "1", + "usedToken0": "493021467633707753137846", + "usedToken1": "32601663474842058375042", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-11280", + "topTick": "-3720" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-11280" + } + } + }, + { + "transactionHash": "0x7e56a27919a18368ce6a0fdffd74c856fdc0cf74a56071f9daa6ce96bd8f8c13", + "state": { + "depositToken": 0, + "blockNumber": 44507164, + "lastRebalancePrice": "2889105543026944019", + "state": "1", + "currentTick": "-9788", + "currentPrice": "2661130581845022767", + "twapSlow": "2828504179577597859", + "twapFast": "2741895770943640833", + "depositTokenBalance": "774500161581642660379", + "pairedTokenBalance": "0", + "usedToken0": "426511480987319070837014", + "usedToken1": "57491924742152266147405", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9840" + } + } + }, + { + "transactionHash": "0x7760aecef3f6b97c0bc70372353145d54b9dce4f9e4e616c036626c841874845", + "state": { + "depositToken": 0, + "blockNumber": 44513228, + "lastRebalancePrice": "2661130581845022767", + "state": "3", + "currentTick": "-9240", + "currentPrice": "2519231269197470239", + "twapSlow": "2556535618916635419", + "twapFast": "2519231269197470239", + "depositTokenBalance": "580000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "388076446023600808901826", + "usedToken1": "57674914692593296137000", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-11100", + "topTick": "-9300" + } + } + }, + { + "transactionHash": "0xe0a0f8da6e6ee77ffacfbbd59ecd71b7f6519a09cfbc5bf0f14e791e11a83307", + "state": { + "depositToken": 0, + "blockNumber": 44519293, + "lastRebalancePrice": "2519231269197470239", + "state": "2", + "currentTick": "-8958", + "currentPrice": "2449184747321681387", + "twapSlow": "2469843511620922159", + "twapFast": "2449184747321681387", + "depositTokenBalance": "115982031989292463165", + "pairedTokenBalance": "0", + "usedToken0": "375306136532876326301731", + "usedToken1": "58650921658095718664009", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10800", + "topTick": "-9000" + } + } + }, + { + "transactionHash": "0x72456dbe4052bae0bd50e934fb0edef76bc7bfd3bcac57308ddc18683d6cc769", + "state": { + "depositToken": 0, + "blockNumber": 44525357, + "lastRebalancePrice": "2449184747321681387", + "state": "2", + "currentTick": "-9090", + "currentPrice": "2481726663078027583", + "twapSlow": "2486694834515214664", + "twapFast": "2481974835744335386", + "depositTokenBalance": "104678210236583033999", + "pairedTokenBalance": "0", + "usedToken0": "382562082515272324110712", + "usedToken1": "55102010407681244411859", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10920", + "topTick": "-9120" + } + } + }, + { + "transactionHash": "0x921160ecf50d23856709348c6f868cb5caa33e2c0376da8b2b459d43a8297848", + "state": { + "depositToken": 0, + "blockNumber": 44531421, + "lastRebalancePrice": "2481726663078027583", + "state": "2", + "currentTick": "-8849", + "currentPrice": "2422634920453275563", + "twapSlow": "2422634920453275563", + "twapFast": "2422634920453275563", + "depositTokenBalance": "13873981318916724764314", + "pairedTokenBalance": "0", + "usedToken0": "391767781951299654349653", + "usedToken1": "57010369833604578940962", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10680", + "topTick": "-8880" + } + } + }, + { + "transactionHash": "0xf1d3bc4138e09615d85e52544f995503d4d0584940aee075b63e7f4776c682de", + "state": { + "depositToken": 0, + "blockNumber": 44537496, + "lastRebalancePrice": "2422634920453275563", + "state": "2", + "currentTick": "-9114", + "currentPrice": "2487689661660657849", + "twapSlow": "2477263796009397261", + "twapFast": "2483961110704892829", + "depositTokenBalance": "15000000000000000000001", + "pairedTokenBalance": "0", + "usedToken0": "426152528502429100000921", + "usedToken1": "49057889094807404021084", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10980", + "topTick": "-9120" + } + } + }, + { + "transactionHash": "0x647a0811b24cdb01e14ef4165c1876ce1ba19af4504b1587364336cdb159af9c", + "state": { + "depositToken": 0, + "blockNumber": 44547253, + "lastRebalancePrice": "2487689661660657849", + "state": "2", + "currentTick": "-9300", + "currentPrice": "2534391333537198136", + "twapSlow": "2486446189896225042", + "twapFast": "2517972031359406420", + "depositTokenBalance": "1264936610839160257557", + "pairedTokenBalance": "1", + "usedToken0": "440238420768006120068330", + "usedToken1": "44180090252986491866377", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-11160", + "topTick": "-9360" + } + } + }, + { + "transactionHash": "0x7d81ecbab4d75ecaee7246f96f8e793ffbebe87f3fd4ec10ad76d7a57a5bc2f8", + "state": { + "depositToken": 0, + "blockNumber": 44553318, + "lastRebalancePrice": "2534391333537198136", + "state": "2", + "currentTick": "-8365", + "currentPrice": "2308177328472271677", + "twapSlow": "2299653277770187974", + "twapFast": "2308177328472271677", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "418988094862809616801696", + "usedToken1": "52274481862569804342322", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10200", + "topTick": "-8400" + } + } + }, + { + "transactionHash": "0xe1d954b984c999fc340fab4c299890a89f14a9ce9a0e224226549745c21ea170", + "state": { + "depositToken": 0, + "blockNumber": 44559382, + "lastRebalancePrice": "2308177328472271677", + "state": "2", + "currentTick": "-8567", + "currentPrice": "2355274233077146214", + "twapSlow": "2350098583844089003", + "twapFast": "2355274233077146214", + "depositTokenBalance": "755117153363000709307", + "pairedTokenBalance": "0", + "usedToken0": "426320555209790373416891", + "usedToken1": "46341958033813669816938", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "3500", + "highVolatility": "900", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "5000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10440", + "topTick": "-8580" + } + } + }, + { + "transactionHash": "0x1861a2aa200975f34f84abe38064c8060d352d511c97a5a920915e0e009a02a8", + "state": { + "depositToken": 0, + "blockNumber": 44562031, + "lastRebalancePrice": "2355274233077146214", + "state": "2", + "currentTick": "-8710", + "currentPrice": "2389194913463366018", + "twapSlow": "2388717146146965163", + "twapFast": "2389194913463366018", + "depositTokenBalance": "330991017316997460759", + "pairedTokenBalance": "0", + "usedToken0": "434981584500670617510716", + "usedToken1": "42840179293261508173693", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9060", + "topTick": "-6480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9060" + } + } + }, + { + "transactionHash": "0x6927a3a90e52a56d340f555adf9105b20906281f67fd09d3510ff44b7a1a1f16", + "state": { + "depositToken": 0, + "blockNumber": 44564930, + "lastRebalancePrice": "2389194913463366018", + "state": "1", + "currentTick": "-9182", + "currentPrice": "2504662745806351343", + "twapSlow": "2450899691059333540", + "twapFast": "2481478515226504933", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "507866119461803093025108", + "usedToken1": "12790941323330793676136", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9180" + }, + "limitPosition": { + "bottomTick": "-9180", + "topTick": "-6900" + } + } + }, + { + "transactionHash": "0x2b5c866adac425ca92c25476c8b2cb84ad6921b42c587fd6d1a7fddca0820440", + "state": { + "depositToken": 0, + "blockNumber": 44567395, + "lastRebalancePrice": "2504662745806351343", + "state": "0", + "currentTick": "-9099", + "currentPrice": "2483961110704892829", + "twapSlow": "2495662619866585257", + "twapFast": "2483961110704892829", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "488807387070021187991728", + "usedToken1": "20432649984610734396323", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9240", + "topTick": "-6900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9240" + } + } + }, + { + "transactionHash": "0x06325480e6a8ab50cb83b791f9934857d29efb8aaa74f74872ac0de419bfbba4", + "state": { + "depositToken": 0, + "blockNumber": 44569860, + "lastRebalancePrice": "2483961110704892829", + "state": "1", + "currentTick": "-9156", + "currentPrice": "2498159405834162712", + "twapSlow": "2498908928603193295", + "twapFast": "2499908642119166174", + "depositTokenBalance": "640186195476519472737", + "pairedTokenBalance": "0", + "usedToken0": "503026662738500270899881", + "usedToken1": "15102904996062762796037", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9120" + }, + "limitPosition": { + "bottomTick": "-9120", + "topTick": "-6900" + } + } + }, + { + "transactionHash": "0xf356cc8dd467e6a0c017e673349711ac84fb147814fb7ae4b4098f95b41e3fcc", + "state": { + "depositToken": 0, + "blockNumber": 44573475, + "lastRebalancePrice": "2498159405834162712", + "state": "0", + "currentTick": "-9354", + "currentPrice": "2548113376821555155", + "twapSlow": "2510680854337564929", + "twapFast": "2526294647703582963", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "502467175896864969338074", + "usedToken1": "14936198539385868895362", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9300" + }, + "limitPosition": { + "bottomTick": "-9300", + "topTick": "-7080" + } + } + }, + { + "transactionHash": "0xb361a560fc4cbd3f2e48f011bf2389286cdfc831b1f461f699782e1ed2e94fee", + "state": { + "depositToken": 0, + "blockNumber": 44575512, + "lastRebalancePrice": "2548113376821555155", + "state": "0", + "currentTick": "-10216", + "currentPrice": "2777493558633420849", + "twapSlow": "2532617969020459826", + "twapFast": "2668591815271103272", + "depositTokenBalance": "631474140550591695874", + "pairedTokenBalance": "0", + "usedToken0": "504771555490834957494651", + "usedToken1": "14366794750539378999801", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-10260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-10260" + } + } + }, + { + "transactionHash": "0x4d19209402c63f58f62500d5bb0aa2dbbd50dd927a24a6b80ab0b7b69651d9db", + "state": { + "depositToken": 0, + "blockNumber": 44577999, + "lastRebalancePrice": "2777493558633420849", + "state": "3", + "currentTick": "-9368", + "currentPrice": "2551683055260046626", + "twapSlow": "2625711043866409777", + "twapFast": "2576295934771558833", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "483838411660667766102198", + "usedToken1": "22168956451575474034762", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9540", + "topTick": "-7140" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9540" + } + } + }, + { + "transactionHash": "0x645e380164534eab3791ed5e1cd88d5eb637c6dde162e39035296abb313bfce1", + "state": { + "depositToken": 0, + "blockNumber": 44579678, + "lastRebalancePrice": "2551683055260046626", + "state": "1", + "currentTick": "-8981", + "currentPrice": "2454824073017607743", + "twapSlow": "2538703247300414432", + "twapFast": "2482719502656785734", + "depositTokenBalance": "116843323187059051681", + "pairedTokenBalance": "0", + "usedToken0": "395821645681668528428548", + "usedToken1": "57600861385670367337198", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9000" + } + } + }, + { + "transactionHash": "0x61c56c0ddd22fc7456c6eba9ca265b4d51c32a356baa57916b199b44e4e35157", + "state": { + "depositToken": 0, + "blockNumber": 44582150, + "lastRebalancePrice": "2454824073017607743", + "state": "3", + "currentTick": "-9001", + "currentPrice": "2459738388129070878", + "twapSlow": "2460968503321572840", + "twapFast": "2460476383440120982", + "depositTokenBalance": "371391153630451403533", + "pairedTokenBalance": "0", + "usedToken0": "388825387565385149555811", + "usedToken1": "56103616074957411687593", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9960", + "topTick": "-9060" + } + } + }, + { + "transactionHash": "0xb873be29424e148f1c083e9c45e7878d240c7d36f7ed82efe5433e44a07d5189", + "state": { + "depositToken": 0, + "blockNumber": 44584614, + "lastRebalancePrice": "2459738388129070878", + "state": "2", + "currentTick": "-8666", + "currentPrice": "2378706072648365706", + "twapSlow": "2364240852627188618", + "twapFast": "2373241608442565254", + "depositTokenBalance": "138570866321190946487979", + "pairedTokenBalance": "0", + "usedToken0": "520383718283318490338771", + "usedToken1": "58718166518006901898424", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9660", + "topTick": "-8700" + } + } + }, + { + "transactionHash": "0x135ad07f935713d8a6748dbf5168594386a4d2f9922f899c872ce5f19493fce2", + "state": { + "depositToken": 0, + "blockNumber": 44587086, + "lastRebalancePrice": "2378706072648365706", + "state": "2", + "currentTick": "-8803", + "currentPrice": "2411516946652065545", + "twapSlow": "2409347666184923722", + "twapFast": "2411516946652065545", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "536588314483382576175324", + "usedToken1": "51918572614744086631638", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9180", + "topTick": "-6600" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9180" + } + } + }, + { + "transactionHash": "0xbb2d4d5e84aba2e0439938decbbf4eaea1fd52fdc53a8fc5a366415adb1208d7", + "state": { + "depositToken": 0, + "blockNumber": 44591235, + "lastRebalancePrice": "2411516946652065545", + "state": "1", + "currentTick": "-8686", + "currentPrice": "2383468007048078244", + "twapSlow": "2397811084152723201", + "twapFast": "2385613986503145399", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "506550302517986944158938", + "usedToken1": "64447873329733729751669", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9660", + "topTick": "-8700" + } + } + }, + { + "transactionHash": "0x9ed163131d73b05ec7c5131bf87c6d390342b406579bc8f96c015568e79a816d", + "state": { + "depositToken": 0, + "blockNumber": 44593700, + "lastRebalancePrice": "2383468007048078244", + "state": "2", + "currentTick": "-8280", + "currentPrice": "2288641940943642026", + "twapSlow": "2355038729204225791", + "twapFast": "2289557535047690736", + "depositTokenBalance": "20000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "496383387455122194859351", + "usedToken1": "68819010503675053117215", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9240", + "topTick": "-8340" + } + } + }, + { + "transactionHash": "0xd946481d6e3de6b40a9a2faa13168f5ab5ce6ffb631f729e7648a0663babc54a", + "state": { + "depositToken": 0, + "blockNumber": 44596164, + "lastRebalancePrice": "2288641940943642026", + "state": "2", + "currentTick": "-8641", + "currentPrice": "2372767031308633214", + "twapSlow": "2363768075374432977", + "twapFast": "2372767031308633214", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "550897262759259624264842", + "usedToken1": "45485783138263866267113", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8940", + "topTick": "-6420" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-8940" + } + } + }, + { + "transactionHash": "0x7b35228f783d17a9fa3e9caba034de5538320d27da877047df9ee486bd095b86", + "state": { + "depositToken": 0, + "blockNumber": 44598635, + "lastRebalancePrice": "2372767031308633214", + "state": "1", + "currentTick": "-8695", + "currentPrice": "2385613986503145399", + "twapSlow": "2370869671595063817", + "twapFast": "2379895663579085404", + "depositTokenBalance": "13350623036734089936967", + "pairedTokenBalance": "1", + "usedToken0": "578317250117300951965502", + "usedToken1": "39571841732526289788423", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8940", + "topTick": "-6480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-8940" + } + } + }, + { + "transactionHash": "0x4a6a59e60debbf7f6f67f8e3c24d2cd4c6035c79194133ae3f9c75fd5bbdcab3", + "state": { + "depositToken": 0, + "blockNumber": 44606830, + "lastRebalancePrice": "2385613986503145399", + "state": "1", + "currentTick": "-8768", + "currentPrice": "2403091811175847285", + "twapSlow": "2403091811175847285", + "twapFast": "2403091811175847285", + "depositTokenBalance": "9322684992537418833493", + "pairedTokenBalance": "0", + "usedToken0": "607778813150549395624678", + "usedToken1": "31229534273488575546355", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8940", + "topTick": "-6540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-8940" + } + } + }, + { + "transactionHash": "0xedc954048d0d5d611a0df8a9cd00e768fe00a208e0a6b06c024a32464be48ad4", + "state": { + "depositToken": 0, + "blockNumber": 44609286, + "lastRebalancePrice": "2403091811175847285", + "state": "1", + "currentTick": "-8963", + "currentPrice": "2450409584638310032", + "twapSlow": "2412964218595832738", + "twapFast": "2448205318292252322", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "657228213012272791663023", + "usedToken1": "10459781047140467847543", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-8940" + }, + "limitPosition": { + "bottomTick": "-8940", + "topTick": "-6720" + } + } + }, + { + "transactionHash": "0xe5404d4bcc71f4085b0ed00174e018585407467dea1d8061bb0425d48295b5ed", + "state": { + "depositToken": 0, + "blockNumber": 44612592, + "lastRebalancePrice": "2450409584638310032", + "state": "0", + "currentTick": "-9117", + "currentPrice": "2488436043192333586", + "twapSlow": "2444535946497165144", + "twapFast": "2480238148103834584", + "depositTokenBalance": "95763306679295172608", + "pairedTokenBalance": "0", + "usedToken0": "657602355216331163625212", + "usedToken1": "10473255733621827738425", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9060" + }, + "limitPosition": { + "bottomTick": "-9060", + "topTick": "-6840" + } + } + }, + { + "transactionHash": "0x5b321e32c35f69e9fd4ac97407710d8179f39f1c8af9676c14a0986ad52a2ede", + "state": { + "depositToken": 0, + "blockNumber": 44616112, + "lastRebalancePrice": "2488436043192333586", + "state": "0", + "currentTick": "-8994", + "currentPrice": "2458017259777562823", + "twapSlow": "2475035372953071074", + "twapFast": "2462691698163426150", + "depositTokenBalance": "290999399940604917587", + "pairedTokenBalance": "0", + "usedToken0": "636840586379026197266742", + "usedToken1": "18920671325316938376032", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-8940" + }, + "limitPosition": { + "bottomTick": "-8940", + "topTick": "-6720" + } + } + }, + { + "transactionHash": "0x369080e146eddd6e8728b6fdf8a82918984b6832affea4b330af269137f3af82", + "state": { + "depositToken": 0, + "blockNumber": 44618576, + "lastRebalancePrice": "2458017259777562823", + "state": "0", + "currentTick": "-9191", + "currentPrice": "2506917844166588782", + "twapSlow": "2491423809359532020", + "twapFast": "2500908755580532252", + "depositTokenBalance": "5560888252834375561365", + "pairedTokenBalance": "0", + "usedToken0": "642732691185625889577663", + "usedToken1": "18683410393369442576152", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9180" + }, + "limitPosition": { + "bottomTick": "-9180", + "topTick": "-6960" + } + } + }, + { + "transactionHash": "0x37a764375b2020914f2357c69eab5a510fda5b6e0308fb196e977b82ee12be8a", + "state": { + "depositToken": 0, + "blockNumber": 44621042, + "lastRebalancePrice": "2506917844166588782", + "state": "0", + "currentTick": "-9046", + "currentPrice": "2470831597226060847", + "twapSlow": "2489182648660861018", + "twapFast": "2477263796009397261", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "489907639170048487240930", + "usedToken1": "28885093609446269757009", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9240", + "topTick": "-6840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9240" + } + } + }, + { + "transactionHash": "0x9fdaed79d84f716369af7ef3bcabdd6c967c446eba1779dddac38a1bf46e892a", + "state": { + "depositToken": 0, + "blockNumber": 44623506, + "lastRebalancePrice": "2470831597226060847", + "state": "1", + "currentTick": "-9301", + "currentPrice": "2534644772670551855", + "twapSlow": "2555002234274631622", + "twapFast": "2534644772670551855", + "depositTokenBalance": "32000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "535616645112791819729096", + "usedToken1": "10216118660771515925869", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9300" + }, + "limitPosition": { + "bottomTick": "-9300", + "topTick": "-7020" + } + } + }, + { + "transactionHash": "0x4fda3aab5ff24fde650750bc115810715c622b9714060ddb7b28ded9dbd376ba", + "state": { + "depositToken": 0, + "blockNumber": 44625970, + "lastRebalancePrice": "2534644772670551855", + "state": "0", + "currentTick": "-9447", + "currentPrice": "2571920170920044314", + "twapSlow": "2569863560366024242", + "twapFast": "2577068900843444640", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "535340775213480774869317", + "usedToken1": "10141755093775168048172", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9420" + }, + "limitPosition": { + "bottomTick": "-9420", + "topTick": "-7200" + } + } + }, + { + "transactionHash": "0x5c2d5fda06c48409fea3e97fe1d6c29e709b5ad762a611bdb98cad59d70a0611", + "state": { + "depositToken": 0, + "blockNumber": 44630217, + "lastRebalancePrice": "2571920170920044314", + "state": "0", + "currentTick": "-9565", + "currentPrice": "2602447057051101299", + "twapSlow": "2572949093313910525", + "twapFast": "2598286678965228633", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "535496365868159599072563", + "usedToken1": "10081611965807724571572", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-9540" + }, + "limitPosition": { + "bottomTick": "-9540", + "topTick": "-7320" + } + } + }, + { + "transactionHash": "0x8e5085f591c928a1c2b966da294df4030f5f714613b780d3213c5493f51e1117", + "state": { + "depositToken": 0, + "blockNumber": 44632682, + "lastRebalancePrice": "2602447057051101299", + "state": "0", + "currentTick": "-9222", + "currentPrice": "2514700957927968570", + "twapSlow": "2533631168175276876", + "twapFast": "2517468512482224850", + "depositTokenBalance": "139781578541021954715", + "pairedTokenBalance": "0", + "usedToken0": "454999790046626820472651", + "usedToken1": "41798526686437159883882", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9600", + "topTick": "-7020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9600" + } + } + }, + { + "transactionHash": "0x80a8e245998c9ceb75a45bccba47ddee45605a6773dee700cbe19fe7438e76be", + "state": { + "depositToken": 0, + "blockNumber": 44635818, + "lastRebalancePrice": "2514700957927968570", + "state": "1", + "currentTick": "-9105", + "currentPrice": "2485451860015165319", + "twapSlow": "2500908755580532252", + "twapFast": "2487192198349066052", + "depositTokenBalance": "124957804652931149623", + "pairedTokenBalance": "0", + "usedToken0": "429885763988205164246999", + "usedToken1": "51945563479189727242942", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10080", + "topTick": "-9120" + } + } + }, + { + "transactionHash": "0x289985ab5510afce34f0dc14f58122379220fe578c6eccb20ff449aaaad6ee41", + "state": { + "depositToken": 0, + "blockNumber": 44638283, + "lastRebalancePrice": "2485451860015165319", + "state": "2", + "currentTick": "-8931", + "currentPrice": "2442581197479644488", + "twapSlow": "2441604409209929302", + "twapFast": "2442581197479644488", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "425977394989061301635769", + "usedToken1": "53324356698984112659306", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9900", + "topTick": "-8940" + } + } + }, + { + "transactionHash": "0x3c1340c97a565d17b1f8bd37eea738267ebc6388dc8b34e102091b26ddea18ec", + "state": { + "depositToken": 0, + "blockNumber": 44641620, + "lastRebalancePrice": "2442581197479644488", + "state": "2", + "currentTick": "-8984", + "currentPrice": "2455560593886690040", + "twapSlow": "2455315062380451995", + "twapFast": "2455560593886690040", + "depositTokenBalance": "18446568948011395366708", + "pairedTokenBalance": "0", + "usedToken0": "449965404839093138038207", + "usedToken1": "50710648573112800210709", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9960", + "topTick": "-9000" + } + } + }, + { + "transactionHash": "0x0ff6aee667aeab2209a8053045ce180b7a895e61f3093bde4893e9b08f123ba4", + "state": { + "depositToken": 0, + "blockNumber": 44645242, + "lastRebalancePrice": "2455560593886690040", + "state": "2", + "currentTick": "-9018", + "currentPrice": "2463923290306305828", + "twapSlow": "2457280002056088655", + "twapFast": "2463923290306305828", + "depositTokenBalance": "6081650884490705462324", + "pairedTokenBalance": "0", + "usedToken0": "458646986225408108326652", + "usedToken1": "49601360890591324701713", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10020", + "topTick": "-9060" + } + } + }, + { + "transactionHash": "0xb79286c15b4bafb156ed0c551645f08ffd6bf6ac7f6641e844e9e52de61ffb1c", + "state": { + "depositToken": 0, + "blockNumber": 44648471, + "lastRebalancePrice": "2463923290306305828", + "state": "2", + "currentTick": "-8922", + "currentPrice": "2440383973160546653", + "twapSlow": "2462445453618064344", + "twapFast": "2444047112634167185", + "depositTokenBalance": "3343347207621866061277", + "pairedTokenBalance": "0", + "usedToken0": "459779429249819611159685", + "usedToken1": "50491942461242064186544", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9900", + "topTick": "-8940" + } + } + }, + { + "transactionHash": "0x2cfb35006bc4ff08793748631bc1fb70976fb64a9f361d529dbb24b366562572", + "state": { + "depositToken": 0, + "blockNumber": 44650936, + "lastRebalancePrice": "2440383973160546653", + "state": "2", + "currentTick": "-9132", + "currentPrice": "2492171311247545584", + "twapSlow": "2474045606257935095", + "twapFast": "2492171311247545584", + "depositTokenBalance": "10118948051724938339918", + "pairedTokenBalance": "0", + "usedToken0": "495850291032974145457430", + "usedToken1": "40081314475764227692469", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9420", + "topTick": "-6960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9420" + } + } + }, + { + "transactionHash": "0x4b7bd8fe27a841ec669e072721f2605b69e2f687f5f2f955a2bb2065421135b2", + "state": { + "depositToken": 0, + "blockNumber": 44662149, + "lastRebalancePrice": "2492171311247545584", + "state": "1", + "currentTick": "-8970", + "currentPrice": "2452125386019342535", + "twapSlow": "2480734220535836832", + "twapFast": "2452861097201362044", + "depositTokenBalance": "571063089081015908625", + "pairedTokenBalance": "0", + "usedToken0": "457210626258070478721107", + "usedToken1": "55844851432691074588251", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9960", + "topTick": "-9000" + } + } + }, + { + "transactionHash": "0xce917666159de44194c0d49a1b600fd39ea40c546ab0b5f759f7026bfeca5656", + "state": { + "depositToken": 0, + "blockNumber": 44667317, + "lastRebalancePrice": "2452125386019342535", + "state": "2", + "currentTick": "-9081", + "currentPrice": "2479494225448893658", + "twapSlow": "2465648554119657146", + "twapFast": "2477263796009397261", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "468440153911263866581634", + "usedToken1": "50647986498178700633285", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10080", + "topTick": "-9120" + } + } + }, + { + "transactionHash": "0xd63b02414fc1f14c6c0ab186f0e4953e0a373a24041e9045bd33f355d725d3a2", + "state": { + "depositToken": 0, + "blockNumber": 44669781, + "lastRebalancePrice": "2479494225448893658", + "state": "2", + "currentTick": "-9215", + "currentPrice": "2512941371162505128", + "twapSlow": "2504412304575893754", + "twapFast": "2512941371162505128", + "depositTokenBalance": "22358048886968462232036", + "pairedTokenBalance": "0", + "usedToken0": "504443362561712242750137", + "usedToken1": "45248241487955475823216", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9540", + "topTick": "-7020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-9540" + } + } + }, + { + "transactionHash": "0x5cd3e4089415b4517f49f354d424ec05b2a835fa2e99396c95b9dee2ac32c14b", + "state": { + "depositToken": 0, + "blockNumber": 44690256, + "lastRebalancePrice": "2512941371162505128", + "state": "1", + "currentTick": "-9045", + "currentPrice": "2470584538772183628", + "twapSlow": "2486446189896225042", + "twapFast": "2482223033227909820", + "depositTokenBalance": "632287719413284479853", + "pairedTokenBalance": "0", + "usedToken0": "434721772064247404429893", + "usedToken1": "58172079274869370999972", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10020", + "topTick": "-9060" + } + } + }, + { + "transactionHash": "0x86c0cbc48c5f44d791e3de34bed609e06b572aa7cf862552fd53662f13ac712a", + "state": { + "depositToken": 0, + "blockNumber": 44692722, + "lastRebalancePrice": "2468608960255211204", + "state": "2", + "currentTick": "-9151", + "currentPrice": "2496910700767738410", + "twapSlow": "2484706373559421579", + "twapFast": "2496910700767738410", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "446480844670267691805246", + "usedToken1": "52640216434300453109392", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10140", + "topTick": "-9180" + } + } + }, + { + "transactionHash": "0x20dbd7e8cc661b4d0629912bc0e34bdc428ed8dbe10baa5691e3281718d6adbf", + "state": { + "depositToken": 0, + "blockNumber": 44696595, + "lastRebalancePrice": "2496910700767738410", + "state": "2", + "currentTick": "-9023", + "currentPrice": "2465155498368428476", + "twapSlow": "2492420528378670339", + "twapFast": "2469349617004025184", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "443636519244189267347467", + "usedToken1": "53786723769200341567814", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-9060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-10020", + "topTick": "-9060" + } + } + }, + { + "transactionHash": "0x3060b0fbba169b8784afe2cd5942d43b1bc5ac0a31d7ffc58745a50e3147ce62", + "state": { + "depositToken": 0, + "blockNumber": 44709351, + "lastRebalancePrice": "2465155498368428476", + "state": "2", + "currentTick": "-8844", + "currentPrice": "2421423966303511726", + "twapSlow": "2445024878131824042", + "twapFast": "2435264799784559345", + "depositTokenBalance": "240804085156994500826", + "pairedTokenBalance": "0", + "usedToken0": "440542295043263080041600", + "usedToken1": "55660152464103957578901", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9840", + "topTick": "-8880" + } + } + }, + { + "transactionHash": "0x4851dd0509e50c46677bcae1f2a435d84147cff4d50e8be74fc24bd2262134a2", + "state": { + "depositToken": 0, + "blockNumber": 44711815, + "lastRebalancePrice": "2421423966303511726", + "state": "2", + "currentTick": "-8666", + "currentPrice": "2378706072648365706", + "twapSlow": "2398770352464640824", + "twapFast": "2379657697809304474", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "436026868311931512508356", + "usedToken1": "57028782032770696544506", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9660", + "topTick": "-8700" + } + } + }, + { + "transactionHash": "0x3c4a27d480e31c2cc0ba643b1a1870a3f50c47a8621f5dd9c6ab0f886c027b22", + "state": { + "depositToken": 0, + "blockNumber": 44715797, + "lastRebalancePrice": "2378706072648365706", + "state": "2", + "currentTick": "-8478", + "currentPrice": "2334406335662182123", + "twapSlow": "2361169489902649721", + "twapFast": "2345403318266355092", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "431944908163187796447933", + "usedToken1": "58761111157707580170898", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9480", + "topTick": "-8520" + } + } + }, + { + "transactionHash": "0x95a8990deb1746b502bde3c64209a3d54c4db4fd41e499304420945e6438b211", + "state": { + "depositToken": 0, + "blockNumber": 44718502, + "lastRebalancePrice": "2334406335662182123", + "state": "2", + "currentTick": "-8310", + "currentPrice": "2295517831657077623", + "twapSlow": "2317428064395224482", + "twapFast": "2306101007175709411", + "depositTokenBalance": "29897803234713481216", + "pairedTokenBalance": "0", + "usedToken0": "428374291387881076603075", + "usedToken1": "60329354184497279249853", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9300", + "topTick": "-8340" + } + } + }, + { + "transactionHash": "0x0c9479dfe30a30a94dc0bbd2e144bfe9ad2e24b3c2393648374689296304dad6", + "state": { + "depositToken": 0, + "blockNumber": 44720967, + "lastRebalancePrice": "2295517831657077623", + "state": "2", + "currentTick": "-8106", + "currentPrice": "2249165981705294273", + "twapSlow": "2258180211369102587", + "twapFast": "2249165981705294273", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "423999076965664640982134", + "usedToken1": "62253769222986796026491", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-8160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-9120", + "topTick": "-8160" + } + } + }, + { + "transactionHash": "0xa9fa59b5bb4e06208f3c2a3ab024a2f28a474aae02e4ec7b88669e1396325d01", + "state": { + "depositToken": 0, + "blockNumber": 44723431, + "lastRebalancePrice": "2249165981705294273", + "state": "2", + "currentTick": "-7913", + "currentPrice": "2206175421048753167", + "twapSlow": "2161627602393846414", + "twapFast": "2206175421048753167", + "depositTokenBalance": "6883899546286026678780", + "pairedTokenBalance": "0", + "usedToken0": "426810107647829982329882", + "usedToken1": "64059070157118207168727", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-7920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-8880", + "topTick": "-7920" + } + } + }, + { + "transactionHash": "0x6d4675543c1ba4eef55c5a98ff259e4b87f9253d7bbafae312ac6a523b55738c", + "state": { + "depositToken": 0, + "blockNumber": 44726843, + "lastRebalancePrice": "2206175421048753167", + "state": "2", + "currentTick": "-7758", + "currentPrice": "2172245038257848311", + "twapSlow": "2192978658226357536", + "twapFast": "2177028998574900881", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "423507752527644081498183", + "usedToken1": "65565896310557507162057", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-7800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-8760", + "topTick": "-7800" + } + } + }, + { + "transactionHash": "0xb176dd0f536e79f1725bcc4db532817a692202e17cd40903d1ac8d5e96a6b4eb", + "state": { + "depositToken": 0, + "blockNumber": 44731261, + "lastRebalancePrice": "2172245038257848311", + "state": "2", + "currentTick": "-7629", + "currentPrice": "2144404427271831353", + "twapSlow": "2158387753474132954", + "twapFast": "2148912182671741221", + "depositTokenBalance": "8753341602142807639341", + "pairedTokenBalance": "0", + "usedToken0": "429543892487365071728344", + "usedToken1": "66837642979278627803633", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-8640", + "topTick": "-7680" + } + } + }, + { + "transactionHash": "0xf12af7809ae8651df7171a4a170662d85e3521c60c08756164c04c026c954628", + "state": { + "depositToken": 0, + "blockNumber": 44732240, + "lastRebalancePrice": "2144404427271831353", + "state": "2", + "currentTick": "-6772", + "currentPrice": "1968291961912946622", + "twapSlow": "2100053671947782147", + "twapFast": "1994244909666870350", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "411521203705743533487578", + "usedToken1": "75597846847045178774093", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6780" + } + } + }, + { + "transactionHash": "0x929ae5979ffb8d9b0db7ce348d2e5ed2bec829f4b2d382a1248aecf15b28d2cb", + "state": { + "depositToken": 0, + "blockNumber": 44734707, + "lastRebalancePrice": "1968291961912946622", + "state": "3", + "currentTick": "-5890", + "currentPrice": "1802132258637580924", + "twapSlow": "1762215231532327513", + "twapFast": "1784380055262785271", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "393814256346729274435965", + "usedToken1": "85136651807613939994310", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6900", + "topTick": "-5940" + } + } + }, + { + "transactionHash": "0x8d038d8e9fd819f286aff6f38e5e81cb94a477624ecd8bb4f4576866e768eeea", + "state": { + "depositToken": 0, + "blockNumber": 44737169, + "lastRebalancePrice": "1802132258637580924", + "state": "2", + "currentTick": "-6151", + "currentPrice": "1849784687256488126", + "twapSlow": "1839087522683179821", + "twapFast": "1849044958323065036", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "429058520729810575174490", + "usedToken1": "65561664991980964467080", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-7140", + "topTick": "-6180" + } + } + }, + { + "transactionHash": "0x2b8868f1e664a8570187afafbdec8038ae5db07f57258c2659845d984c260bc1", + "state": { + "depositToken": 0, + "blockNumber": 44739636, + "lastRebalancePrice": "1849784687256488126", + "state": "2", + "currentTick": "-5662", + "currentPrice": "1761510521625999597", + "twapSlow": "1799251296453790845", + "twapFast": "1762743948970006372", + "depositTokenBalance": "4029170519239340579409", + "pairedTokenBalance": "0", + "usedToken0": "421542750284533979936465", + "usedToken1": "71138091281250213776387", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6660", + "topTick": "-5700" + } + } + }, + { + "transactionHash": "0x45d392a02d66c9c1da18b8f5273df874150cdd316d70ab0ee682965b578294bf", + "state": { + "depositToken": 0, + "blockNumber": 44742100, + "lastRebalancePrice": "1761510521625999597", + "state": "2", + "currentTick": "-5905", + "currentPrice": "1804837350084625087", + "twapSlow": "1789204149808433454", + "twapFast": "1804837350084625087", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "449704460777255621692133", + "usedToken1": "55285488813905087264502", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6240", + "topTick": "-3720" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6240" + } + } + }, + { + "transactionHash": "0x8b042f0ccd8e3bc01e5480f3e3dd309d15bd079bbde79b5e91379890a4fa0270", + "state": { + "depositToken": 0, + "blockNumber": 44749117, + "lastRebalancePrice": "1804837350084625087", + "state": "1", + "currentTick": "-5758", + "currentPrice": "1778501599784263760", + "twapSlow": "1796554577387725384", + "twapFast": "1781349337542122984", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "405511982622831752879799", + "usedToken1": "71157398391533045406482", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6720", + "topTick": "-5760" + } + } + }, + { + "transactionHash": "0x1b7f4bb8a35c3c34728db56b67d6c6045e36bfdb037a2826da0cc86208cffef0", + "state": { + "depositToken": 0, + "blockNumber": 44751583, + "lastRebalancePrice": "1778501599784263760", + "state": "2", + "currentTick": "-5339", + "currentPrice": "1705525555237973175", + "twapSlow": "1743112340517995251", + "twapFast": "1708085635148910118", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "396801196541545354059739", + "usedToken1": "75750987463601302011673", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6300", + "topTick": "-5340" + } + } + }, + { + "transactionHash": "0xacf0f24d68246dd7aa43d8000fa9d55a5ada11b4fb7837d1148b21a4e9b95bc3", + "state": { + "depositToken": 0, + "blockNumber": 44754048, + "lastRebalancePrice": "1705525555237973175", + "state": "2", + "currentTick": "-5061", + "currentPrice": "1658767234539510062", + "twapSlow": "1702969312376546816", + "twapFast": "1667915130597299516", + "depositTokenBalance": "300000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "391911541926658167844491", + "usedToken1": "79189035300190502096292", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6060", + "topTick": "-5100" + } + } + }, + { + "transactionHash": "0x92c6257ecd0c844bc0fd2c163c88147aed12e7b7513629afeff7fe1316d924cd", + "state": { + "depositToken": 0, + "blockNumber": 44756515, + "lastRebalancePrice": "1658767234539510062", + "state": "2", + "currentTick": "-4798", + "currentPrice": "1615712460808843160", + "twapSlow": "1597558580268006694", + "twapFast": "1622025726614627126", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "229451064602559100472350", + "usedToken1": "48824289634027490644506", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5760", + "topTick": "-4800" + } + } + }, + { + "transactionHash": "0x8404f0c7a9c393ec9cf67cdd3b731c526fdab931e925a1f74232bffee541259e", + "state": { + "depositToken": 0, + "blockNumber": 44758981, + "lastRebalancePrice": "1615712460808843160", + "state": "2", + "currentTick": "-4675", + "currentPrice": "1595961899993609141", + "twapSlow": "1592614063850858043", + "twapFast": "1595961899993609141", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "227996161274540605787555", + "usedToken1": "49621505112761060460541", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5640", + "topTick": "-4680" + } + } + }, + { + "transactionHash": "0xec7d3321fe159d664faecfa92b41f258ce99ec5afa24fb7986128b2f335adff5", + "state": { + "depositToken": 0, + "blockNumber": 44761445, + "lastRebalancePrice": "1595961899993609141", + "state": "2", + "currentTick": "-4874", + "currentPrice": "1628038037108300138", + "twapSlow": "1606368918170888220", + "twapFast": "1627875249583341804", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "244505092395505159328595", + "usedToken1": "39368381309233531526883", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5880", + "topTick": "-4920" + } + } + }, + { + "transactionHash": "0x7aec2180c74f62632e69b14a72caed2be73d53a321ef77b92ca1e21303811d97", + "state": { + "depositToken": 0, + "blockNumber": 44763977, + "lastRebalancePrice": "1628038037108300138", + "state": "2", + "currentTick": "-4981", + "currentPrice": "1645550694125473785", + "twapSlow": "1635543887012889264", + "twapFast": "1641934642513139815", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "249199187683767832011335", + "usedToken1": "36505171541704452910045", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5340", + "topTick": "-2760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5340" + } + } + }, + { + "transactionHash": "0x20ac4d5878631a123c070f90e8000d152055504dd137c648f4bd7fad25006915", + "state": { + "depositToken": 0, + "blockNumber": 44768120, + "lastRebalancePrice": "1645550694125473785", + "state": "1", + "currentTick": "-5371", + "currentPrice": "1710991704887031929", + "twapSlow": "1665415258265888183", + "twapFast": "1704673048229506016", + "depositTokenBalance": "305324302047919921992", + "pairedTokenBalance": "0", + "usedToken0": "292843307191839110845449", + "usedToken1": "11069623391905300114893", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-5340" + }, + "limitPosition": { + "bottomTick": "-5340", + "topTick": "-3120" + } + } + }, + { + "transactionHash": "0x6db7df85a642f87b8c1b51d0729428b84c9f8032b5b2e33745164c0951803b26", + "state": { + "depositToken": 0, + "blockNumber": 44768605, + "lastRebalancePrice": "1710991704887031929", + "state": "0", + "currentTick": "-5855", + "currentPrice": "1795836135176303228", + "twapSlow": "1699397007665517676", + "twapFast": "1788846362647440339", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "292679372400641845877486", + "usedToken1": "10550697245189896045883", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5880" + } + } + }, + { + "transactionHash": "0x6a3be6a20660b0739b6f65c338c9818ae75bcc0ef2d2ac274a2502f9a33e64ed", + "state": { + "depositToken": 0, + "blockNumber": 44771071, + "lastRebalancePrice": "1795836135176303228", + "state": "3", + "currentTick": "-5813", + "currentPrice": "1788309816051542085", + "twapSlow": "1798531775824360245", + "twapFast": "1789025247283705083", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "292071155918105819085001", + "usedToken1": "10890103188749413883931", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-5760" + }, + "limitPosition": { + "bottomTick": "-5760", + "topTick": "-3540" + } + } + }, + { + "transactionHash": "0x98fafe3ce72af6be6eb625487c8eda381298c8f19e86a77a7987d83686860e0b", + "state": { + "depositToken": 0, + "blockNumber": 44773536, + "lastRebalancePrice": "1788309816051542085", + "state": "0", + "currentTick": "-5763", + "currentPrice": "1779391028452101776", + "twapSlow": "1780993121107970179", + "twapFast": "1779391028452101776", + "depositTokenBalance": "24413637824462172409415", + "pairedTokenBalance": "0", + "usedToken0": "316415767874608052767791", + "usedToken1": "10946325582127030364561", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-5760" + }, + "limitPosition": { + "bottomTick": "-5760", + "topTick": "-3480" + } + } + }, + { + "transactionHash": "0xe6d2776d3766e1b003be67bc4faa123d391f5c91005f51f4e18db22b8cd48cf1", + "state": { + "depositToken": 0, + "blockNumber": 44776002, + "lastRebalancePrice": "1779391028452101776", + "state": "0", + "currentTick": "-5670", + "currentPrice": "1762920223364903373", + "twapSlow": "1769277855164065750", + "twapFast": "1762920223364903373", + "depositTokenBalance": "34969785714274687835", + "pairedTokenBalance": "0", + "usedToken0": "303188689185170843586358", + "usedToken1": "18441779511453074546733", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5820", + "topTick": "-3480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5820" + } + } + }, + { + "transactionHash": "0x5042c7a6eca6410d309bf39043e6ab57a82991840667c2d8bd34076001d0791a", + "state": { + "depositToken": 0, + "blockNumber": 44778467, + "lastRebalancePrice": "1762920223364903373", + "state": "1", + "currentTick": "-5897", + "currentPrice": "1803394129729482481", + "twapSlow": "1796734232845464156", + "twapFast": "1803213808348647616", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "325384493123992423876125", + "usedToken1": "5945517857341319111941", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-5880" + }, + "limitPosition": { + "bottomTick": "-5880", + "topTick": "-3660" + } + } + }, + { + "transactionHash": "0xc54b5242437dab8971f8cbac57d8a2520a74641767ff792ae9976366a57bdee1", + "state": { + "depositToken": 0, + "blockNumber": 44780932, + "lastRebalancePrice": "1803394129729482481", + "state": "0", + "currentTick": "-5787", + "currentPrice": "1783666481643004327", + "twapSlow": "1790994159314851377", + "twapFast": "1783666481643004327", + "depositTokenBalance": "450392218863768031230", + "pairedTokenBalance": "0", + "usedToken0": "311245268534867110676893", + "usedToken1": "13962986002957824658909", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-5760" + }, + "limitPosition": { + "bottomTick": "-5760", + "topTick": "-3540" + } + } + }, + { + "transactionHash": "0xf43033ac545015af227a6d720072b58e4690c53f2dbab2f958577f0a6b886ecf", + "state": { + "depositToken": 0, + "blockNumber": 44783396, + "lastRebalancePrice": "1783666481643004327", + "state": "0", + "currentTick": "-6268", + "currentPrice": "1871553177045237861", + "twapSlow": "1813339625219434558", + "twapFast": "1871553177045237861", + "depositTokenBalance": "122889904184486915898268", + "pairedTokenBalance": "0", + "usedToken0": "434764621122726169234096", + "usedToken1": "13641711413512106704985", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-6240" + }, + "limitPosition": { + "bottomTick": "-6240", + "topTick": "-4020" + } + } + }, + { + "transactionHash": "0x656a17cd806af0bdd15080cc73b69db44720905a045455fcdcb74ddbb2d3449a", + "state": { + "depositToken": 0, + "blockNumber": 44785860, + "lastRebalancePrice": "1871553177045237861", + "state": "0", + "currentTick": "-6398", + "currentPrice": "1896040969778828997", + "twapSlow": "1893767198837150643", + "twapFast": "1898697153224150601", + "depositTokenBalance": "18584033920356234709484", + "pairedTokenBalance": "0", + "usedToken0": "453536475283058112512664", + "usedToken1": "13567474041859787995090", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-6360" + }, + "limitPosition": { + "bottomTick": "-6360", + "topTick": "-4140" + } + } + }, + { + "transactionHash": "0xec6083b8f2d1233aa2014296d4a79b90d7f05e99c1b3a8bdf4e725aca77d9657", + "state": { + "depositToken": 0, + "blockNumber": 44788325, + "lastRebalancePrice": "1896040969778828997", + "state": "0", + "currentTick": "-6243", + "currentPrice": "1866880371179986904", + "twapSlow": "1867813998072283753", + "twapFast": "1866880371179986904", + "depositTokenBalance": "3069142206992398423184", + "pairedTokenBalance": "0", + "usedToken0": "431235126265000393011963", + "usedToken1": "27132145597366813838589", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6420", + "topTick": "-4020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6420" + } + } + }, + { + "transactionHash": "0xdd6b40b72e5d2789ef7e6118a64759d79c724627f2913d00f18692532ae4e0a9", + "state": { + "depositToken": 0, + "blockNumber": 44790790, + "lastRebalancePrice": "1866880371179986904", + "state": "1", + "currentTick": "-6203", + "currentPrice": "1859428136705542883", + "twapSlow": "1860730126946231964", + "twapFast": "1859428136705542883", + "depositTokenBalance": "100632295443670819309256", + "pairedTokenBalance": "0", + "usedToken0": "523668319138133270290464", + "usedToken1": "31470116082938076689466", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6360", + "topTick": "-4020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6360" + } + } + }, + { + "transactionHash": "0x1ed469232cd38cffd3c0dd17b66e08a59f6a86fe1f45f09a65813c70309dad9f", + "state": { + "depositToken": 0, + "blockNumber": 44793768, + "lastRebalancePrice": "1859428136705542883", + "state": "1", + "currentTick": "-6305", + "currentPrice": "1878490402898801384", + "twapSlow": "1869495703240508027", + "twapFast": "1875112330251817221", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "549681426236804032420589", + "usedToken1": "17511362093978274475104", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-6300" + }, + "limitPosition": { + "bottomTick": "-6300", + "topTick": "-4020" + } + } + }, + { + "transactionHash": "0xeec3fe20245111440b8db3449144a9fe3e5e2c12e1c55d65e320cc976f8f030d", + "state": { + "depositToken": 0, + "blockNumber": 44796752, + "lastRebalancePrice": "1878490402898801384", + "state": "0", + "currentTick": "-6833", + "currentPrice": "1980334633565179818", + "twapSlow": "1889416756724459084", + "twapFast": "1963377623203814225", + "depositTokenBalance": "94233053323821292394", + "pairedTokenBalance": "0", + "usedToken0": "550654034451084776317451", + "usedToken1": "17055924228745358204520", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-6780" + }, + "limitPosition": { + "bottomTick": "-6780", + "topTick": "-4560" + } + } + }, + { + "transactionHash": "0x583b3691206a2fcc2f62757b335b37527d1798eae609e0d39264d5b48c05e738", + "state": { + "depositToken": 0, + "blockNumber": 44796890, + "lastRebalancePrice": "1980334633565179818", + "state": "0", + "currentTick": "-7062", + "currentPrice": "2026205216897052263", + "twapSlow": "1902878675877050693", + "twapFast": "2003639450902060311", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "551043515426095229668159", + "usedToken1": "16861472898699373089224", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-7080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-7080" + } + } + }, + { + "transactionHash": "0x9e159e87e6956508a4ffff36226ef00d1a039da253a64b984bfbb495f1511aa0", + "state": { + "depositToken": 0, + "blockNumber": 44799354, + "lastRebalancePrice": "2026205216897052263", + "state": "3", + "currentTick": "-6749", + "currentPrice": "1963770318362231220", + "twapSlow": "1980532667028536336", + "twapFast": "1964752399918082857", + "depositTokenBalance": "63679681676242014939777", + "pairedTokenBalance": "0", + "usedToken0": "492355868566220495392913", + "usedToken1": "16807040743940479331868", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-6720" + }, + "limitPosition": { + "bottomTick": "-6720", + "topTick": "-4500" + } + } + }, + { + "transactionHash": "0x843d395cebb5a9145c09278836a851bce02c88355e951fc15d71c92e8265c849", + "state": { + "depositToken": 0, + "blockNumber": 44801820, + "lastRebalancePrice": "1963770318362231220", + "state": "0", + "currentTick": "-6693", + "currentPrice": "1952804485848855993", + "twapSlow": "1952804485848855993", + "twapFast": "1952804485848855993", + "depositTokenBalance": "16501379179364915781682", + "pairedTokenBalance": "0", + "usedToken0": "502266877035599852131051", + "usedToken1": "20071326798469704792814", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-6660" + }, + "limitPosition": { + "bottomTick": "-6660", + "topTick": "-4440" + } + } + }, + { + "transactionHash": "0x4b5a1cb794ac8b0ba921c7fc0957e7fa63bf3e8e67154f57cd6cd2bb2803a6f1", + "state": { + "depositToken": 0, + "blockNumber": 44804286, + "lastRebalancePrice": "1952804485848855993", + "state": "0", + "currentTick": "-6588", + "currentPrice": "1932408325758931344", + "twapSlow": "1932601566591507237", + "twapFast": "1932408325758931344", + "depositTokenBalance": "961509756897136816078", + "pairedTokenBalance": "0", + "usedToken0": "485761996076432692119981", + "usedToken1": "29025299721562860119816", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6720", + "topTick": "-4380" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6720" + } + } + }, + { + "transactionHash": "0x6c8e43b96cf502e936da1cdb782158304bba682b34f482c353b3c32fc83c4442", + "state": { + "depositToken": 0, + "blockNumber": 44806508, + "lastRebalancePrice": "1932408325758931344", + "state": "1", + "currentTick": "-6202", + "currentPrice": "1859242212484294453", + "twapSlow": "1876612945252490562", + "twapFast": "1860916199958926587", + "depositTokenBalance": "110948565496858782208", + "pairedTokenBalance": "0", + "usedToken0": "397118962977705689065911", + "usedToken1": "76302878928538294211653", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6240" + } + } + }, + { + "transactionHash": "0x1dbe9d614acabd73ae2fea7d1f76e3622343c7183b657f162c4a80cf66323c39", + "state": { + "depositToken": 0, + "blockNumber": 44808973, + "lastRebalancePrice": "1859242212484294453", + "state": "3", + "currentTick": "-6226", + "currentPrice": "1863709529067845876", + "twapSlow": "1842216473881789408", + "twapFast": "1861660678101326007", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "379281025472480505271139", + "usedToken1": "72123307507688328018011", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-7200", + "topTick": "-6240" + } + } + }, + { + "transactionHash": "0xd54a38ccf5cf662143ff07eda84f93baf0960b9dc654a74181a8769dd4200000", + "state": { + "depositToken": 0, + "blockNumber": 44811438, + "lastRebalancePrice": "1863709529067845876", + "state": "2", + "currentTick": "-6170", + "currentPrice": "1853302443087249216", + "twapSlow": "1859242212484294453", + "twapFast": "1853302443087249216", + "depositTokenBalance": "30651568535269191994892", + "pairedTokenBalance": "0", + "usedToken0": "407734815707383874638885", + "usedToken1": "72523935485404069205382", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-7140", + "topTick": "-6180" + } + } + }, + { + "transactionHash": "0x7b76e5bff9dd0239c33616f0d743cd1b64ebe4ddc6c10652ba5d808ae7d1ec7f", + "state": { + "depositToken": 0, + "blockNumber": 44813901, + "lastRebalancePrice": "1853302443087249216", + "state": "2", + "currentTick": "-6020", + "currentPrice": "1825711733572782751", + "twapSlow": "1830098484394923417", + "twapFast": "1825711733572782751", + "depositTokenBalance": "1564552233686954024715", + "pairedTokenBalance": "0", + "usedToken0": "383272309775426219840333", + "usedToken1": "69927204307577042989774", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-7020", + "topTick": "-6060" + } + } + }, + { + "transactionHash": "0x6c6715efa03db7d4d030759cee5e058759716a931d7b52d0bcbd1fd15292ce72", + "state": { + "depositToken": 0, + "blockNumber": 44817105, + "lastRebalancePrice": "1825711733572782751", + "state": "2", + "currentTick": "-5833", + "currentPrice": "1791889835511835571", + "twapSlow": "1815153781065124181", + "twapFast": "1805198335603015513", + "depositTokenBalance": "600000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "380298976010581725270804", + "usedToken1": "71882816337445070196914", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6840", + "topTick": "-5880" + } + } + }, + { + "transactionHash": "0xd3555a778b079fe0e889b5e4be096d9224c707d0e5b7cc4cc5ca531e066044dc", + "state": { + "depositToken": 0, + "blockNumber": 44823119, + "lastRebalancePrice": "1770870842322382903", + "state": "2", + "currentTick": "-5854", + "currentPrice": "1795656569519351293", + "twapSlow": "1773529008806238926", + "twapFast": "1791889835511835571", + "depositTokenBalance": "1519537519136079051610", + "pairedTokenBalance": "0", + "usedToken0": "317658752728119591157754", + "usedToken1": "52752620140206731852876", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6840", + "topTick": "-5880" + } + } + }, + { + "transactionHash": "0xc954aba6df436744c03cf39772fc56e33393724ca1c155dd1f255b7f93278a5a", + "state": { + "depositToken": 0, + "blockNumber": 44825752, + "lastRebalancePrice": "1795656569519351293", + "state": "2", + "currentTick": "-6005", + "currentPrice": "1822975355585578341", + "twapSlow": "1785272423746266883", + "twapFast": "1818605678921701316", + "depositTokenBalance": "99999993313791619749", + "pairedTokenBalance": "0", + "usedToken0": "330687429120470759035519", + "usedToken1": "45599808617828268905764", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6960", + "topTick": "-6060" + } + } + }, + { + "transactionHash": "0x42d4ff5a8968bdbe80da3db8fd6a1115feccb6c8fa31d8df66b16e5d7beb9e01", + "state": { + "depositToken": 0, + "blockNumber": 44830472, + "lastRebalancePrice": "1822975355585578341", + "state": "2", + "currentTick": "-5889", + "currentPrice": "1801952063431237800", + "twapSlow": "1820243078883561053", + "twapFast": "1803033504998147801", + "depositTokenBalance": "757981072050450737436", + "pairedTokenBalance": "1", + "usedToken0": "329519221129124930216308", + "usedToken1": "46617644718037895277722", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6900", + "topTick": "-5940" + } + } + }, + { + "transactionHash": "0x48c78622bc4321f705657e1da384aafdda13a669a6a5d4258c07b0c7be6f8555", + "state": { + "depositToken": 0, + "blockNumber": 44835392, + "lastRebalancePrice": "1814065069877153384", + "state": "1", + "currentTick": "-5855", + "currentPrice": "1795836135176303228", + "twapSlow": "1806281725420234338", + "twapFast": "1795836135176303228", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "317370824629629884765148", + "usedToken1": "54402286820763309880325", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6840", + "topTick": "-5880" + } + } + }, + { + "transactionHash": "0x1449f4a40353c48f3e5af46b48758a524ef61d4e0cc9d5a5fa9aef8a28179516", + "state": { + "depositToken": 0, + "blockNumber": 44837857, + "lastRebalancePrice": "1795836135176303228", + "state": "2", + "currentTick": "-5952", + "currentPrice": "1813339625219434558", + "twapSlow": "1813339625219434558", + "twapFast": "1813339625219434558", + "depositTokenBalance": "25498558305045836564446", + "pairedTokenBalance": "0", + "usedToken0": "350771409345563212905923", + "usedToken1": "50071337332566166625425", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6000", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6960", + "topTick": "-6000" + } + } + }, + { + "transactionHash": "0x6cba85f9e2e6aedbe33c7ed603ae0adb64aed2d6de1f61fb6b4a706ee1e6ec0b", + "state": { + "depositToken": 0, + "blockNumber": 44840322, + "lastRebalancePrice": "1813339625219434558", + "state": "2", + "currentTick": "-5816", + "currentPrice": "1788846362647440339", + "twapSlow": "1789025247283705083", + "twapFast": "1788846362647440339", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "349325776148840445488491", + "usedToken1": "51394699976699447331136", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6780", + "topTick": "-5820" + } + } + }, + { + "transactionHash": "0x452e6332bf65b77dcc4612881988df5374b27d9feb3f801ecb89cb74c67d68cb", + "state": { + "depositToken": 0, + "blockNumber": 44843464, + "lastRebalancePrice": "1788846362647440339", + "state": "2", + "currentTick": "-5659", + "currentPrice": "1760982174142530632", + "twapSlow": "1771933630493822755", + "twapFast": "1766096178473984454", + "depositTokenBalance": "2859011934501283596402", + "pairedTokenBalance": "0", + "usedToken0": "349522569195732393568837", + "usedToken1": "52988026319812995626631", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6660", + "topTick": "-5700" + } + } + }, + { + "transactionHash": "0x51e71f8114cbb267756e675be0c4f7cb1db419838875662b0dacc1ccfc464116", + "state": { + "depositToken": 0, + "blockNumber": 44846281, + "lastRebalancePrice": "1760982174142530632", + "state": "2", + "currentTick": "-5645", + "currentPrice": "1758518647144282884", + "twapSlow": "1758518647144282884", + "twapFast": "1758518647144282884", + "depositTokenBalance": "5079458740578828403297", + "pairedTokenBalance": "0", + "usedToken0": "354282109069358759494142", + "usedToken1": "53068261817275483631120", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6600", + "topTick": "-5700" + } + } + }, + { + "transactionHash": "0x416d95d90ab21b6fcb61baa304e88d483f1863b81e27b8d2bf9bd30b6200f7ff", + "state": { + "depositToken": 0, + "blockNumber": 44848752, + "lastRebalancePrice": "1758518647144282884", + "state": "2", + "currentTick": "-5759", + "currentPrice": "1778679449944242187", + "twapSlow": "1770162671037126963", + "twapFast": "1778679449944242187", + "depositTokenBalance": "8000000000000000000001", + "pairedTokenBalance": "0", + "usedToken0": "369402444801566692726506", + "usedToken1": "49048543981223526423710", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-6120", + "topTick": "-3540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-6120" + } + } + }, + { + "transactionHash": "0x56d215d86cc1e3ff242b4409b2023003251760868c72655548dfdab2bdd90adc", + "state": { + "depositToken": 0, + "blockNumber": 44867139, + "lastRebalancePrice": "1778679449944242187", + "state": "1", + "currentTick": "-5575", + "currentPrice": "1746252611115721847", + "twapSlow": "1768039855914668157", + "twapFast": "1754478903725351829", + "depositTokenBalance": "4264725114106120100918", + "pairedTokenBalance": "0", + "usedToken0": "341536867309533710888432", + "usedToken1": "67590682918270092257634", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6540", + "topTick": "-5580" + } + } + }, + { + "transactionHash": "0x33542159e9c43815e4edd2772d5f4f7e777782f20e5be7f7fefed9319d8a0f40", + "state": { + "depositToken": 0, + "blockNumber": 44870625, + "lastRebalancePrice": "1746252611115721847", + "state": "2", + "currentTick": "-5435", + "currentPrice": "1721976616786680738", + "twapSlow": "1748349267160046077", + "twapFast": "1726459356894045357", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "338427965914421002672329", + "usedToken1": "68563822685470420412382", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6420", + "topTick": "-5460" + } + } + }, + { + "transactionHash": "0x8087daa3f07d17abfe92a5b09f3ac4d510c7790d3128d84c2b274fa9af0e9071", + "state": { + "depositToken": 0, + "blockNumber": 44873090, + "lastRebalancePrice": "1721976616786680738", + "state": "2", + "currentTick": "-5246", + "currentPrice": "1689738480591431165", + "twapSlow": "1708768971894940304", + "twapFast": "1689738480591431165", + "depositTokenBalance": "162630573307487465333", + "pairedTokenBalance": "0", + "usedToken0": "335412587999122389098258", + "usedToken1": "70427811529628044025153", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6240", + "topTick": "-5280" + } + } + }, + { + "transactionHash": "0xae776c39d0e3d69dee168e861f09190133e43d6743296d487b578f6d727baa06", + "state": { + "depositToken": 0, + "blockNumber": 44876259, + "lastRebalancePrice": "1689738480591431165", + "state": "2", + "currentTick": "-5060", + "currentPrice": "1658601374402069855", + "twapSlow": "1674599817351962921", + "twapFast": "1667414856116351512", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "332317477547616608728047", + "usedToken1": "72275960013727010533327", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6060", + "topTick": "-5100" + } + } + }, + { + "transactionHash": "0xefd58d30ba7845152c55ede1182e5c4b452e7e67a29b01a8c4e78f539059d25e", + "state": { + "depositToken": 0, + "blockNumber": 44879197, + "lastRebalancePrice": "1658601374402069855", + "state": "2", + "currentTick": "-5165", + "currentPrice": "1676107560184201421", + "twapSlow": "1669083021509277918", + "twapFast": "1675939966187582663", + "depositTokenBalance": "509999856213457948677", + "pairedTokenBalance": "0", + "usedToken0": "341811581464084169480581", + "usedToken1": "66914798971893274830333", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6120", + "topTick": "-5220" + } + } + }, + { + "transactionHash": "0xd14507081840ab0529cae77214e59d3dc7177980f35ceef70e3525afe4a8d928", + "state": { + "depositToken": 0, + "blockNumber": 44888600, + "lastRebalancePrice": "1693459811148056228", + "state": "2", + "currentTick": "-5081", + "currentPrice": "1662087922558133284", + "twapSlow": "1684003411647798468", + "twapFast": "1671922733734126743", + "depositTokenBalance": "104992489051989804255", + "pairedTokenBalance": "1", + "usedToken0": "331205792942898052014821", + "usedToken1": "61946584356091793768924", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6060", + "topTick": "-5100" + } + } + }, + { + "transactionHash": "0x0b07f4ecb2ea756eb0203cf996b193b65de9f0f99d3e2586f05e27da51f48ad1", + "state": { + "depositToken": 0, + "blockNumber": 44891064, + "lastRebalancePrice": "1662087922558133284", + "state": "2", + "currentTick": "-5141", + "currentPrice": "1672089926007500156", + "twapSlow": "1668415555175600539", + "twapFast": "1672089926007500156", + "depositTokenBalance": "12374506874607327579615", + "pairedTokenBalance": "0", + "usedToken0": "348378512595115625043233", + "usedToken1": "59068735513327394140756", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6120", + "topTick": "-5160" + } + } + }, + { + "transactionHash": "0x87b5e4f5cd2e381c1603572a5305b8b339473913713be2aceb4f07961bc1eb78", + "state": { + "depositToken": 0, + "blockNumber": 44896146, + "lastRebalancePrice": "1672089926007500156", + "state": "2", + "currentTick": "-5262", + "currentPrice": "1692444090793115320", + "twapSlow": "1676610442737159594", + "twapFast": "1689569523639067258", + "depositTokenBalance": "1038559529991130716730", + "pairedTokenBalance": "0", + "usedToken0": "360394088601554764582982", + "usedToken1": "52527814377512900084605", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5640", + "topTick": "-3060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5640" + } + } + }, + { + "transactionHash": "0x1725219e802e250b3c6a3d8bcf2084c2588a36b1c0e9cee5400a0f8881a74c6c", + "state": { + "depositToken": 0, + "blockNumber": 44905949, + "lastRebalancePrice": "1692444090793115320", + "state": "1", + "currentTick": "-5166", + "currentPrice": "1676275170940219841", + "twapSlow": "1710649557868962558", + "twapFast": "1678119995856238828", + "depositTokenBalance": "3578600385739591798025", + "pairedTokenBalance": "0", + "usedToken0": "319486040417424972451252", + "usedToken1": "57347433860217139676812", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6180", + "topTick": "-5220" + } + } + }, + { + "transactionHash": "0x58c0258de05c3d6633c4f6ac2f693b247a0494473b418b627fad043d381b5e37", + "state": { + "depositToken": 0, + "blockNumber": 44908413, + "lastRebalancePrice": "1676275170940219841", + "state": "2", + "currentTick": "-5348", + "currentPrice": "1707061142370172875", + "twapSlow": "1689062754139253795", + "twapFast": "1704843515534328967", + "depositTokenBalance": "3697628452329067031725", + "pairedTokenBalance": "0", + "usedToken0": "336771185748268599851194", + "usedToken1": "49010905952294650341106", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5760", + "topTick": "-3120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5760" + } + } + }, + { + "transactionHash": "0x779339e6c660788fd37e31c710923e175614668f2173f6300b0fb2e7b5de61d6", + "state": { + "depositToken": 0, + "blockNumber": 44919732, + "lastRebalancePrice": "1707061142370172875", + "state": "1", + "currentTick": "-5245", + "currentPrice": "1689569523639067258", + "twapSlow": "1695323548622691982", + "twapFast": "1691259853671775791", + "depositTokenBalance": "3876149891787767166638", + "pairedTokenBalance": "0", + "usedToken0": "324591054186378464683503", + "usedToken1": "58868219336590562138332", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6240", + "topTick": "-5280" + } + } + }, + { + "transactionHash": "0x33cf7bc13f6ec8489e768983cd4a7ae8503ad5f4a941cbb25533830cef3d18d9", + "state": { + "depositToken": 0, + "blockNumber": 44922198, + "lastRebalancePrice": "1689569523639067258", + "state": "2", + "currentTick": "-5092", + "currentPrice": "1663917133695604002", + "twapSlow": "1664083525408973562", + "twapFast": "1663917133695604002", + "depositTokenBalance": "634602951375682524773", + "pairedTokenBalance": "0", + "usedToken0": "322275706486686888091228", + "usedToken1": "60086865458295128915958", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-6060", + "topTick": "-5100" + } + } + }, + { + "transactionHash": "0x88a17885b9737906c84cfd620b554fe8e9a5ec3c3a8b36cbeceb35d8c6273db4", + "state": { + "depositToken": 0, + "blockNumber": 44924663, + "lastRebalancePrice": "1663917133695604002", + "state": "2", + "currentTick": "-4600", + "currentPrice": "1584037554140486689", + "twapSlow": "1591658829772334612", + "twapFast": "1584037554140486689", + "depositTokenBalance": "2000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "316452607377681859474231", + "usedToken1": "64936172814154168989757", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5580", + "topTick": "-4620" + } + } + }, + { + "transactionHash": "0xb441e951ba5bb8a3e16694aafeea3640d48ea05b90234a96854838573f3f19bd", + "state": { + "depositToken": 0, + "blockNumber": 44927130, + "lastRebalancePrice": "1584037554140486689", + "state": "2", + "currentTick": "-4779", + "currentPrice": "1612645674839265672", + "twapSlow": "1605084401136450778", + "twapFast": "1612645674839265672", + "depositTokenBalance": "10350888952507216147437", + "pairedTokenBalance": "0", + "usedToken0": "344656076697830993908228", + "usedToken1": "53812764496058039298529", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5760", + "topTick": "-4800" + } + } + }, + { + "transactionHash": "0x8a52a2f70c7d3af7b0c6a01128a79675372d3973ef224c33e5164276402af74a", + "state": { + "depositToken": 0, + "blockNumber": 44929596, + "lastRebalancePrice": "1612645674839265672", + "state": "2", + "currentTick": "-4948", + "currentPrice": "1640129597613810420", + "twapSlow": "1629178005679250771", + "twapFast": "1639309778777050100", + "depositTokenBalance": "996410198054824514480", + "pairedTokenBalance": "0", + "usedToken0": "359598273513098747028135", + "usedToken1": "45202052990454547952683", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5280", + "topTick": "-2760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5280" + } + } + }, + { + "transactionHash": "0xaef44e71a7ba3f9624e5ab48dd03c2326efcbedbd9f82c447b62b3551aa15710", + "state": { + "depositToken": 0, + "blockNumber": 44935104, + "lastRebalancePrice": "1640129597613810420", + "state": "1", + "currentTick": "-4993", + "currentPrice": "1647526441383985097", + "twapSlow": "1649669511299718939", + "twapFast": "1647526441383985097", + "depositTokenBalance": "11787363519300546641768", + "pairedTokenBalance": "0", + "usedToken0": "374793640623860524531846", + "usedToken1": "39919216988542130960071", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5280", + "topTick": "-2820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5280" + } + } + }, + { + "transactionHash": "0x2aecee4aca1ef06ab3012134a9cebb39d7d459cb4839e2efc4655a2d7045f001", + "state": { + "depositToken": 0, + "blockNumber": 44937711, + "lastRebalancePrice": "1647526441383985097", + "state": "1", + "currentTick": "-4745", + "currentPrice": "1607172263282929973", + "twapSlow": "1628526497362201780", + "twapFast": "1612484426396626010", + "depositTokenBalance": "1001674022678625303411", + "pairedTokenBalance": "0", + "usedToken0": "322087247458743676678906", + "usedToken1": "65848951363566419273667", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5700", + "topTick": "-4800" + } + } + }, + { + "transactionHash": "0x33bd54a37b10f675ac420488ade1b216875726db9a72ffee74356762c0cd3d97", + "state": { + "depositToken": 0, + "blockNumber": 44940175, + "lastRebalancePrice": "1607172263282929973", + "state": "2", + "currentTick": "-4556", + "currentPrice": "1577083446856591051", + "twapSlow": "1577083446856591051", + "twapFast": "1577083446856591051", + "depositTokenBalance": "301000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "318142151919358030613737", + "usedToken1": "67353453091959004148945", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5520", + "topTick": "-4560" + } + } + }, + { + "transactionHash": "0x6bd8b266cfcfc3528cdb093e46cedaa44cf7434b53dac95d936067958a52e2d9", + "state": { + "depositToken": 0, + "blockNumber": 44945616, + "lastRebalancePrice": "1577083446856591051", + "state": "2", + "currentTick": "-4451", + "currentPrice": "1560611523174341360", + "twapSlow": "1567806512225779352", + "twapFast": "1562485287349167662", + "depositTokenBalance": "27863971962322971691", + "pairedTokenBalance": "1", + "usedToken0": "288306050713482478724281", + "usedToken1": "62297204099575872662933", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5460", + "topTick": "-4500" + } + } + }, + { + "transactionHash": "0xfcfc39d42bb8b999b50cae0b4da0f900bd6b87051b700bd235c118ef4c01f0aa", + "state": { + "depositToken": 0, + "blockNumber": 44949407, + "lastRebalancePrice": "1560611523174341360", + "state": "2", + "currentTick": "-4579", + "currentPrice": "1580714731599893581", + "twapSlow": "1564204880790021431", + "twapFast": "1578029933518766069", + "depositTokenBalance": "797631056469172678164", + "pairedTokenBalance": "0", + "usedToken0": "298000650586008191835047", + "usedToken1": "56644795856707671004925", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5580", + "topTick": "-4620" + } + } + }, + { + "transactionHash": "0x109d3e6637ad6b0bb9738ea23b9e0db966cc0d27d4d2b66eda4d22919554b0ef", + "state": { + "depositToken": 0, + "blockNumber": 44951873, + "lastRebalancePrice": "1580714731599893581", + "state": "2", + "currentTick": "-4728", + "currentPrice": "1604442527852340240", + "twapSlow": "1600116591961655457", + "twapFast": "1604442527852340240", + "depositTokenBalance": "29664003072329806498", + "pairedTokenBalance": "0", + "usedToken0": "308943419681815251923797", + "usedToken1": "49844482354010509692130", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5700", + "topTick": "-4740" + } + } + }, + { + "transactionHash": "0xe6429207e1b1527254c0ae314375236f0b4b86c2b6216ca5c53f32e61b567088", + "state": { + "depositToken": 0, + "blockNumber": 44954339, + "lastRebalancePrice": "1604442527852340240", + "state": "2", + "currentTick": "-4880", + "currentPrice": "1629015104168833888", + "twapSlow": "1629666807957923895", + "twapFast": "1629015104168833888", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "320970289287060006010085", + "usedToken1": "42363918461914607082205", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-5220", + "topTick": "-2700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-5220" + } + } + }, + { + "transactionHash": "0x30b3af6e53dceb526e426573b062d09cc3efe07bce5ce8ee5eaaa577c900b2fb", + "state": { + "depositToken": 0, + "blockNumber": 44955638, + "lastRebalancePrice": "1629015104168833888", + "state": "1", + "currentTick": "-4635", + "currentPrice": "1589591120979250486", + "twapSlow": "1608780158966625807", + "twapFast": "1595642755486084369", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "283133092130997736353813", + "usedToken1": "65879034934505663767080", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4680" + } + } + }, + { + "transactionHash": "0xdcd60ffb1f71a09fc7cf7c760dbd221ea9deae03df0673cc1c585fb34830f959", + "state": { + "depositToken": 0, + "blockNumber": 44958104, + "lastRebalancePrice": "1589591120979250486", + "state": "3", + "currentTick": "-4143", + "currentPrice": "1513279706283764192", + "twapSlow": "1501822944182953637", + "twapFast": "1510256322429468479", + "depositTokenBalance": "632069717826777557847", + "pairedTokenBalance": "0", + "usedToken0": "273768592111252106949194", + "usedToken1": "69576094501491595913021", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5100", + "topTick": "-4200" + } + } + }, + { + "transactionHash": "0x0407b7e1b1e9cd83832c9b54a41e4f9ecd63258404f4f92ef55b490e71df7f35", + "state": { + "depositToken": 0, + "blockNumber": 44969422, + "lastRebalancePrice": "1479612769490985958", + "state": "2", + "currentTick": "-3845", + "currentPrice": "1468851460893292112", + "twapSlow": "1471203386675298664", + "twapFast": "1468851460893292112", + "depositTokenBalance": "4346544669290502402171", + "pairedTokenBalance": "0", + "usedToken0": "304254365104233054015676", + "usedToken1": "71922161254887516484107", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4800", + "topTick": "-3900" + } + } + }, + { + "transactionHash": "0x7d74e205ad5c71517228e58b57f37d8d75f3ae81bbab4a5c57e6693af46f8837", + "state": { + "depositToken": 0, + "blockNumber": 44971888, + "lastRebalancePrice": "1468851460893292112", + "state": "2", + "currentTick": "-3744", + "currentPrice": "1454091462583151343", + "twapSlow": "1464598174563347639", + "twapFast": "1456128514383433582", + "depositTokenBalance": "8640141405209685452372", + "pairedTokenBalance": "0", + "usedToken0": "311371709780581240151881", + "usedToken1": "72956559649496325438591", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4740", + "topTick": "-3780" + } + } + }, + { + "transactionHash": "0xe3eb50337c1ebd8ddd71c040737497b8dab0b430ea4ec5b92c028a0937c1ee0e", + "state": { + "depositToken": 0, + "blockNumber": 44978159, + "lastRebalancePrice": "1454091462583151343", + "state": "2", + "currentTick": "-3847", + "currentPrice": "1469145245873985379", + "twapSlow": "1459773207405873675", + "twapFast": "1467676908334889685", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "306951916128561828873202", + "usedToken1": "64835459932254909027994", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4860", + "topTick": "-3900" + } + } + }, + { + "transactionHash": "0x17ef2d730e5febfe33010c9d3122fdca05e49f0b6b4cfb6f4de29caae2504a6f", + "state": { + "depositToken": 0, + "blockNumber": 44987468, + "lastRebalancePrice": "1469145245873985379", + "state": "2", + "currentTick": "-3754", + "currentPrice": "1455546208561414172", + "twapSlow": "1465330620125093484", + "twapFast": "1455546208561414172", + "depositTokenBalance": "5849175498113364791065", + "pairedTokenBalance": "0", + "usedToken0": "311367942032190803566135", + "usedToken1": "65781632262563018799555", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4740", + "topTick": "-3780" + } + } + }, + { + "transactionHash": "0x893d653df5747a041ef5bf624c0614edb8dfd4091e1bc056639dd641aad0fa61", + "state": { + "depositToken": 0, + "blockNumber": 44991536, + "lastRebalancePrice": "1455546208561414172", + "state": "2", + "currentTick": "-2835", + "currentPrice": "1327750060578007796", + "twapSlow": "1360952185314072055", + "twapFast": "1333338058017900509", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "297280386369759636099440", + "usedToken1": "75787026871904892468897", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3840", + "topTick": "-2880" + } + } + }, + { + "transactionHash": "0x5a99e0114718398b98f8151f748d0fafad750a846437931db0dd32cba40d97fe", + "state": { + "depositToken": 0, + "blockNumber": 44994000, + "lastRebalancePrice": "1327750060578007796", + "state": "2", + "currentTick": "-3137", + "currentPrice": "1368457668224295286", + "twapSlow": "1370237730981444840", + "twapFast": "1370511792230018439", + "depositTokenBalance": "2206866474921499301441", + "pairedTokenBalance": "0", + "usedToken0": "325757372202623807731210", + "usedToken1": "54430585334793058917710", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3480", + "topTick": "-960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3480" + } + } + }, + { + "transactionHash": "0x9eaef2005a005e94260a3a745ba02a30cb2cef7cbfe8ddc397b9d525270c769a", + "state": { + "depositToken": 0, + "blockNumber": 44995925, + "lastRebalancePrice": "1368457668224295286", + "state": "1", + "currentTick": "-2928", + "currentPrice": "1340155109974148051", + "twapSlow": "1351459258659401433", + "twapFast": "1346602994657086954", + "depositTokenBalance": "13660000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "292701631154222994986010", + "usedToken1": "78916635535601704536386", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2940" + } + } + }, + { + "transactionHash": "0x097f4c9681c56d1ed76e23b7445ca7b8c98e8a59bc7bd019c3effbba21c76c3d", + "state": { + "depositToken": 0, + "blockNumber": 44998389, + "lastRebalancePrice": "1340155109974148051", + "state": "3", + "currentTick": "-2688", + "currentPrice": "1308375852672219225", + "twapSlow": "1310077762188147253", + "twapFast": "1304195950345694857", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "289081787420819308734028", + "usedToken1": "81285704950248636567617", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3660", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0xaba16694904a384aa3857673155d6b35272a4db0628b58abc813090a4071e9a1", + "state": { + "depositToken": 0, + "blockNumber": 45000853, + "lastRebalancePrice": "1308375852672219225", + "state": "2", + "currentTick": "-2913", + "currentPrice": "1338146484584423255", + "twapSlow": "1339217376528052048", + "twapFast": "1339351298265704853", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313457163687844167533166", + "usedToken1": "62872572246529456765899", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3900", + "topTick": "-2940" + } + } + }, + { + "transactionHash": "0x8fc03ae6b4edc6a737b46c27b6e9add32731bc744896952e0ba4355291984a4c", + "state": { + "depositToken": 0, + "blockNumber": 45004948, + "lastRebalancePrice": "1338146484584423255", + "state": "2", + "currentTick": "-2786", + "currentPrice": "1321260322604930072", + "twapSlow": "1325892603887538049", + "twapFast": "1323772977853844621", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "311472421676615174143758", + "usedToken1": "64365347454904861852806", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3780", + "topTick": "-2820" + } + } + }, + { + "transactionHash": "0x34ad0f7495986525f5be018f142f3f50010c53eba8178f9a2ecbd7b820139182", + "state": { + "depositToken": 0, + "blockNumber": 45007413, + "lastRebalancePrice": "1321260322604930072", + "state": "2", + "currentTick": "-2681", + "currentPrice": "1307460355810711318", + "twapSlow": "1316907567170871934", + "twapFast": "1307460355810711318", + "depositTokenBalance": "18900001104000000000001", + "pairedTokenBalance": "0", + "usedToken0": "328298735187023054812175", + "usedToken1": "65504242069039137588869", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3660", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0x097b13053f274a0ec26c7979d672a5eea33723d2677d2907e689e011f8477d08", + "state": { + "depositToken": 0, + "blockNumber": 45009887, + "lastRebalancePrice": "1307460355810711318", + "state": "2", + "currentTick": "-2795", + "currentPrice": "1322449932659993164", + "twapSlow": "1322582177653259163", + "twapFast": "1322449932659993164", + "depositTokenBalance": "220000424490000000000", + "pairedTokenBalance": "0", + "usedToken0": "337671852176103761131893", + "usedToken1": "58670757120340513263023", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3180", + "topTick": "-600" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3180" + } + } + }, + { + "transactionHash": "0xc02e43ff5c7c174bb81b500e756abfd4a740676a225394262e8ee62ba328b13a", + "state": { + "depositToken": 0, + "blockNumber": 45010840, + "lastRebalancePrice": "1322449932659993164", + "state": "1", + "currentTick": "-2599", + "currentPrice": "1296783549453197111", + "twapSlow": "1311913063702973721", + "twapFast": "1299249656954113794", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "305815012757187084085317", + "usedToken1": "82870973568901383974779", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2640" + } + } + }, + { + "transactionHash": "0x0ab60754b1ea24a0c2f91c7f4ca25ecc9e91be66fdb7d927d95ee54e5c6e1705", + "state": { + "depositToken": 0, + "blockNumber": 45013305, + "lastRebalancePrice": "1296783549453197111", + "state": "3", + "currentTick": "-2676", + "currentPrice": "1306806821706107372", + "twapSlow": "1319939788684919748", + "twapFast": "1311388429642565232", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "295661367182652625476003", + "usedToken1": "79295682427325390524734", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3660", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0x293f9b929d4a52b898ed29adce6b40e77c419fa2e016e9ec13f3d64e2f252fed", + "state": { + "depositToken": 0, + "blockNumber": 45015769, + "lastRebalancePrice": "1306806821706107372", + "state": "2", + "currentTick": "-2425", + "currentPrice": "1274415797808277427", + "twapSlow": "1274415797808277427", + "twapFast": "1274415797808277427", + "depositTokenBalance": "14896769782012537282769", + "pairedTokenBalance": "0", + "usedToken0": "306863035976593304741346", + "usedToken1": "82187593881413201902113", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3420", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0xd2d9326aa9cf162b9a17dca0da2a74fa64377b6859f5a73432430d6fb8ed4de2", + "state": { + "depositToken": 0, + "blockNumber": 45018233, + "lastRebalancePrice": "1274415797808277427", + "state": "2", + "currentTick": "-1666", + "currentPrice": "1181271818750697296", + "twapSlow": "1175027951163716277", + "twapFast": "1181271818750697296", + "depositTokenBalance": "48000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "289082477234850479331538", + "usedToken1": "89595190263851152496823", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2640", + "topTick": "-1680" + } + } + }, + { + "transactionHash": "0x3f0339ff9facae6dba0bae537ecebb7b18998e47d046ad5713f6b84a22520f53", + "state": { + "depositToken": 0, + "blockNumber": 45021311, + "lastRebalancePrice": "1181271818750697296", + "state": "2", + "currentTick": "-1768", + "currentPrice": "1193381841940685349", + "twapSlow": "1175262968504228532", + "twapFast": "1192785329985231285", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "298307355004702094712978", + "usedToken1": "80772359225744818480466", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2760", + "topTick": "-1800" + } + } + }, + { + "transactionHash": "0x230eb3c1f72a99dbf46a04823029b9a96343d0231b5b4f6962b3d5b438c01dd3", + "state": { + "depositToken": 0, + "blockNumber": 45023776, + "lastRebalancePrice": "1193381841940685349", + "state": "2", + "currentTick": "-1986", + "currentPrice": "1219681880021230603", + "twapSlow": "1220047821176913055", + "twapFast": "1219681880021230603", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "317889470752432877436206", + "usedToken1": "64523200696169502784530", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2400", + "topTick": "240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2400" + } + } + }, + { + "transactionHash": "0x0648977dd80c370109a43203929f14873aae68f3abb0f01dd3d03664a724d95a", + "state": { + "depositToken": 0, + "blockNumber": 45027820, + "lastRebalancePrice": "1219681880021230603", + "state": "1", + "currentTick": "-2373", + "currentPrice": "1267806365542174688", + "twapSlow": "1242330623675933246", + "twapFast": "1264893907132936289", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "376892621842880148277953", + "usedToken1": "17071512927864621921876", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2340" + }, + "limitPosition": { + "bottomTick": "-2340", + "topTick": "-120" + } + } + }, + { + "transactionHash": "0x71f5975e4cbb8f97563ed33fb7016b7ca1b5e77caf6b6e0aebd918ebee34918c", + "state": { + "depositToken": 0, + "blockNumber": 45031025, + "lastRebalancePrice": "1267806365542174688", + "state": "0", + "currentTick": "-2266", + "currentPrice": "1254313825857319119", + "twapSlow": "1258459691108320663", + "twapFast": "1254815626651508979", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "363593151659179471372128", + "usedToken1": "27635242886947929167100", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2220" + }, + "limitPosition": { + "bottomTick": "-2220", + "topTick": "0" + } + } + }, + { + "transactionHash": "0xd26c4f0c5bddd772885c8352d8c587fef75e65a18a868b67ac0cd3494f54fa9f", + "state": { + "depositToken": 0, + "blockNumber": 45033708, + "lastRebalancePrice": "1254313825857319119", + "state": "0", + "currentTick": "-2150", + "currentPrice": "1239848569410801495", + "twapSlow": "1251557506317267135", + "twapFast": "1244568720578526199", + "depositTokenBalance": "2494946858590724042307", + "pairedTokenBalance": "0", + "usedToken0": "353491420924399882443382", + "usedToken1": "37624791843331963033531", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2340", + "topTick": "60" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2340" + } + } + }, + { + "transactionHash": "0xad46472cb39fa561547b2d33ba7ee814b2b3e4cf92369b02dcfcd72bf961994d", + "state": { + "depositToken": 0, + "blockNumber": 45034142, + "lastRebalancePrice": "1239848569410801495", + "state": "1", + "currentTick": "-1791", + "currentPrice": "1196129641547745418", + "twapSlow": "1237618960714230098", + "twapFast": "1199963195140826995", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "293111422417545861969223", + "usedToken1": "86689773792602633287189", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1800" + } + } + }, + { + "transactionHash": "0x7a54993a84e1fd148d4b8cdc1dbd6fbc7f57a54f64cc167dc4f7894821089fad", + "state": { + "depositToken": 0, + "blockNumber": 45036607, + "lastRebalancePrice": "1196129641547745418", + "state": "3", + "currentTick": "-1196", + "currentPrice": "1127039203761158352", + "twapSlow": "1140986689810246880", + "twapFast": "1127039203761158352", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "271283559115240139906632", + "usedToken1": "89782858022711337960145", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2160", + "topTick": "-1200" + } + } + }, + { + "transactionHash": "0x7753b33ff1da12c1ec3ecf1647a9bcd4e11a6a99081dd59b57889f1790cbfa64", + "state": { + "depositToken": 0, + "blockNumber": 45039072, + "lastRebalancePrice": "1127039203761158352", + "state": "2", + "currentTick": "-1014", + "currentPrice": "1106713630255775344", + "twapSlow": "1088385891549013244", + "twapFast": "1106492320726706795", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "268652605805588700542697", + "usedToken1": "91885339571420859732750", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1980", + "topTick": "-1020" + } + } + }, + { + "transactionHash": "0x168a4a0bbbef8213febdea86b182c70edd63b848312f491c7eec56ac5916d4e3", + "state": { + "depositToken": 0, + "blockNumber": 45041536, + "lastRebalancePrice": "1106713630255775344", + "state": "2", + "currentTick": "-1319", + "currentPrice": "1140986689810246880", + "twapSlow": "1138024125544857408", + "twapFast": "1139846330412180514", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "301387987440597823744815", + "usedToken1": "62736668441761038123966", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1680", + "topTick": "900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1680" + } + } + }, + { + "transactionHash": "0xc0eb59cddf7d0bd8401be49390b0ac3d5ff2c321061647c3fc283695460c7b14", + "state": { + "depositToken": 0, + "blockNumber": 45044000, + "lastRebalancePrice": "1140986689810246880", + "state": "1", + "currentTick": "-1913", + "currentPrice": "1210811063701877511", + "twapSlow": "1170337461113428343", + "twapFast": "1204290630986273482", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "353933390734906432462025", + "usedToken1": "17513611613013124005361", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-1860" + }, + "limitPosition": { + "bottomTick": "-1860", + "topTick": "360" + } + } + }, + { + "transactionHash": "0x05ca5292be50a5a83dee40f7bcaa7a47cdc93d5f1e1df5207ced92be17b31128", + "state": { + "depositToken": 0, + "blockNumber": 45046465, + "lastRebalancePrice": "1210811063701877511", + "state": "0", + "currentTick": "-1843", + "currentPrice": "1202365402829719027", + "twapSlow": "1199363393495745539", + "twapFast": "1201524083609077566", + "depositTokenBalance": "7097000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "358072511901607856536609", + "usedToken1": "19971777680485592942761", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-1800" + }, + "limitPosition": { + "bottomTick": "-1800", + "topTick": "420" + } + } + }, + { + "transactionHash": "0x3f5f1763bf339daad91b227433195fc860c41ab4cd4ba5639cc6654812157275", + "state": { + "depositToken": 0, + "blockNumber": 45048929, + "lastRebalancePrice": "1202365402829719027", + "state": "0", + "currentTick": "-2168", + "currentPrice": "1242082194816148069", + "twapSlow": "1242082194816148069", + "twapFast": "1238237893968860093", + "depositTokenBalance": "96551316300392689239", + "pairedTokenBalance": "0", + "usedToken0": "358566386160279374705381", + "usedToken1": "19649825825719497565497", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2160" + }, + "limitPosition": { + "bottomTick": "-2160", + "topTick": "120" + } + } + }, + { + "transactionHash": "0xe9c56bf56e92879f91a8f7bba5215d15c71f110b15eecd799e2e0a24d6046773", + "state": { + "depositToken": 0, + "blockNumber": 45051394, + "lastRebalancePrice": "1242082194816148069", + "state": "0", + "currentTick": "-2440", + "currentPrice": "1276328760221610726", + "twapSlow": "1258208036918856523", + "twapFast": "1274160952876092680", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "358896076050702123475256", + "usedToken1": "19384542513091014530116", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2400" + }, + "limitPosition": { + "bottomTick": "-2400", + "topTick": "-180" + } + } + }, + { + "transactionHash": "0xf8841e4b392c8393b8761e0b9ed949e9295b71341d4cfa115e27baca042db3a9", + "state": { + "depositToken": 0, + "blockNumber": 45053858, + "lastRebalancePrice": "1276328760221610726", + "state": "0", + "currentTick": "-2919", + "currentPrice": "1338949573223911534", + "twapSlow": "1307852633142572666", + "twapFast": "1342166750411928293", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "358236732562915073816344", + "usedToken1": "18858607242392387805856", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2880" + }, + "limitPosition": { + "bottomTick": "-2880", + "topTick": "-660" + } + } + }, + { + "transactionHash": "0xe83321e35106192c162748dfa8a1f904788532fb4e62a27318132e5d3aeb4684", + "state": { + "depositToken": 0, + "blockNumber": 45056321, + "lastRebalancePrice": "1338949573223911534", + "state": "0", + "currentTick": "-2717", + "currentPrice": "1312175459434844953", + "twapSlow": "1312437907648486516", + "twapFast": "1312175459434844953", + "depositTokenBalance": "2472830347791488559235", + "pairedTokenBalance": "0", + "usedToken0": "328695216783523619982393", + "usedToken1": "39624614864863302751189", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2940", + "topTick": "-540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2940" + } + } + }, + { + "transactionHash": "0x6cb8f9287b556f0bae341c216ef4b4c65c233a110f9d0a39930189a6e9b888d5", + "state": { + "depositToken": 0, + "blockNumber": 45061639, + "lastRebalancePrice": "1312175459434844953", + "state": "1", + "currentTick": "-2891", + "currentPrice": "1335205945122226913", + "twapSlow": "1323772977853844621", + "twapFast": "1333871473246724636", + "depositTokenBalance": "188012266458290162859", + "pairedTokenBalance": "1", + "usedToken0": "353774399006545410392042", + "usedToken1": "18201179931670138699275", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2880" + }, + "limitPosition": { + "bottomTick": "-2880", + "topTick": "-660" + } + } + }, + { + "transactionHash": "0xaa936a8028fb486696af4ce225d239f4d1b70a5d622623c993e3fd68edc8a456", + "state": { + "depositToken": 0, + "blockNumber": 45064104, + "lastRebalancePrice": "1335205945122226913", + "state": "0", + "currentTick": "-2560", + "currentPrice": "1291736194712805165", + "twapSlow": "1301460149234268314", + "twapFast": "1291736194712805165", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "300200766774495899779213", + "usedToken1": "59018285405034946741461", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2940", + "topTick": "-360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2940" + } + } + }, + { + "transactionHash": "0xb4f3435c7eaaeef0591af59ac6b499c638371d0793dd274d4cdcb31c69507bbe", + "state": { + "depositToken": 0, + "blockNumber": 45068719, + "lastRebalancePrice": "1291736194712805165", + "state": "1", + "currentTick": "-2431", + "currentPrice": "1275180638474822293", + "twapSlow": "1293933903883729869", + "twapFast": "1279651366387021362", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "281693839925362732498909", + "usedToken1": "73439023718846249494401", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3420", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0x425faae4b8f3ff46fd31e19d0fe1d3fefea3c39c266441af37a29b7c0f720b5d", + "state": { + "depositToken": 0, + "blockNumber": 45071190, + "lastRebalancePrice": "1275180638474822293", + "state": "2", + "currentTick": "-2286", + "currentPrice": "1256824838135828557", + "twapSlow": "1254941108214174130", + "twapFast": "1256447866081311733", + "depositTokenBalance": "10000740636730000000000", + "pairedTokenBalance": "0", + "usedToken0": "289663706449132861852026", + "usedToken1": "75069279721982849006315", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3300", + "topTick": "-2340" + } + } + }, + { + "transactionHash": "0x58a92fc5e949c30185d8e2b9869b2d3b6d2d8a727e825ebaf2a2fb8093a8d9c4", + "state": { + "depositToken": 0, + "blockNumber": 45075029, + "lastRebalancePrice": "1256824838135828557", + "state": "2", + "currentTick": "-2166", + "currentPrice": "1241833815634682976", + "twapSlow": "1248682375474742660", + "twapFast": "1243449168580637537", + "depositTokenBalance": "411860429528037381619", + "pairedTokenBalance": "0", + "usedToken0": "288510085305075798520774", + "usedToken1": "76580571489584818638235", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3180", + "topTick": "-2220" + } + } + }, + { + "transactionHash": "0x208a5201b5577e3ee10231c152d8dd60127f77bc9ba803cdc5f12eda220a79ae", + "state": { + "depositToken": 0, + "blockNumber": 45077494, + "lastRebalancePrice": "1241833815634682976", + "state": "2", + "currentTick": "-2001", + "currentPrice": "1221512684062358250", + "twapSlow": "1213598994645801970", + "twapFast": "1221512684062358250", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "285968180781917786389167", + "usedToken1": "78358412038262425977644", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3000", + "topTick": "-2040" + } + } + }, + { + "transactionHash": "0x326d0811274cafe13a612f896c9c6c2d26cefdc0c6aa92900f2a79758dbd7a56", + "state": { + "depositToken": 0, + "blockNumber": 45079958, + "lastRebalancePrice": "1221512684062358250", + "state": "2", + "currentTick": "-1766", + "currentPrice": "1193143201368979539", + "twapSlow": "1200203199779487111", + "twapFast": "1193143201368979539", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "282624962378876792978855", + "usedToken1": "81127912240794705675912", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2760", + "topTick": "-1800" + } + } + }, + { + "transactionHash": "0x4031325c8c9f9f85eea15d21f5f952652fa938f8f9565ccc58e171b1dab387f4", + "state": { + "depositToken": 0, + "blockNumber": 45082422, + "lastRebalancePrice": "1193143201368979539", + "state": "2", + "currentTick": "-1890", + "currentPrice": "1208029537310842749", + "twapSlow": "1201403943214756090", + "twapFast": "1208029537310842749", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "292366160853604144787918", + "usedToken1": "73025082338721261193119", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2880", + "topTick": "-1920" + } + } + }, + { + "transactionHash": "0xf95e8adc1bb5a4edf0087df64f2e4a733e2f6b34ab33d7deb7fe7842562bd93b", + "state": { + "depositToken": 0, + "blockNumber": 45084886, + "lastRebalancePrice": "1208029537310842749", + "state": "2", + "currentTick": "-1705", + "currentPrice": "1185887542873367993", + "twapSlow": "1195412214883073304", + "twapFast": "1185887542873367993", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "289679369167967111975411", + "usedToken1": "75269932444656825328897", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2700", + "topTick": "-1740" + } + } + }, + { + "transactionHash": "0xdf3862344c93098b26b3386352aadf4ec6551b4368814545be0586b4497fab15", + "state": { + "depositToken": 0, + "blockNumber": 45089709, + "lastRebalancePrice": "1185887542873367993", + "state": "2", + "currentTick": "-1830", + "currentPrice": "1200803421411699465", + "twapSlow": "1185768965976770316", + "twapFast": "1199123556793151340", + "depositTokenBalance": "155019585725076481480", + "pairedTokenBalance": "0", + "usedToken0": "298919061423757676621654", + "usedToken1": "67761530422130586382412", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2820", + "topTick": "-1860" + } + } + }, + { + "transactionHash": "0xc6aa3f8756348fe351367157c8acaaf6dcf5a5b7e34488ec23cf8b45726ce32d", + "state": { + "depositToken": 0, + "blockNumber": 45092173, + "lastRebalancePrice": "1200803421411699465", + "state": "2", + "currentTick": "-2007", + "currentPrice": "1222245774924130361", + "twapSlow": "1218828444113714478", + "twapFast": "1222245774924130361", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "312079085875146090010207", + "usedToken1": "56818172066132050021470", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2340", + "topTick": "180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2340" + } + } + }, + { + "transactionHash": "0x8501b69b4d961023afb8c57741a84552ebd54d1f73b3f1394d7a08e1711b234f", + "state": { + "depositToken": 0, + "blockNumber": 45096702, + "lastRebalancePrice": "1222245774924130361", + "state": "1", + "currentTick": "-2391", + "currentPrice": "1270090357778807933", + "twapSlow": "1240096551523169349", + "twapFast": "1262114338160282867", + "depositTokenBalance": "12010000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "362682969363215672288586", + "usedToken1": "16081850167109348321489", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2340" + }, + "limitPosition": { + "bottomTick": "-2340", + "topTick": "-120" + } + } + }, + { + "transactionHash": "0x4ce0abab39ca2884c7128d553a7c33ed967acad78099c3884f65845a7672c942", + "state": { + "depositToken": 0, + "blockNumber": 45099166, + "lastRebalancePrice": "1270090357778807933", + "state": "0", + "currentTick": "-2007", + "currentPrice": "1222245774924130361", + "twapSlow": "1243200516045423292", + "twapFast": "1222245774924130361", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "305385194306423866570316", + "usedToken1": "62056779103585170480718", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2400", + "topTick": "180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2400" + } + } + }, + { + "transactionHash": "0x22abe3aca9f321dafd69b4484e82137677649409bf3d74d7f6580ad6f09a168c", + "state": { + "depositToken": 0, + "blockNumber": 45105106, + "lastRebalancePrice": "1222245774924130361", + "state": "1", + "currentTick": "-1920", + "currentPrice": "1211658885759174828", + "twapSlow": "1223346236232725098", + "twapFast": "1212749815055351574", + "depositTokenBalance": "19184671995248007185", + "pairedTokenBalance": "0", + "usedToken0": "281788730275791544308277", + "usedToken1": "69741023114376060114487", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2880", + "topTick": "-1980" + } + } + }, + { + "transactionHash": "0x5c665c08c4c7f8f4faacc9bd0e35c77b1e251a3f2555f0accf601a46434094c6", + "state": { + "depositToken": 0, + "blockNumber": 45110942, + "lastRebalancePrice": "1211658885759174828", + "state": "2", + "currentTick": "-1818", + "currentPrice": "1199363393495745539", + "twapSlow": "1208996299256619982", + "twapFast": "1200803421411699465", + "depositTokenBalance": "526819189705580662131", + "pairedTokenBalance": "0", + "usedToken0": "280589120579524246554469", + "usedToken1": "70919407059152237431147", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2820", + "topTick": "-1860" + } + } + }, + { + "transactionHash": "0x71484c91ced3166406aa070a956afbe6a01fe6833a87c57586c97ca1b2b47f52", + "state": { + "depositToken": 0, + "blockNumber": 45114314, + "lastRebalancePrice": "1199363393495745539", + "state": "2", + "currentTick": "-2042", + "currentPrice": "1226530915504727861", + "twapSlow": "1195173168297682085", + "twapFast": "1214691670738578873", + "depositTokenBalance": "1000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "298693320476424780430572", + "usedToken1": "56828497596098204850298", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2400", + "topTick": "180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2400" + } + } + }, + { + "transactionHash": "0x193cfd66838b83b706a091ba43f476bdc152bfc09f7263d8db130d4a06eb3df2", + "state": { + "depositToken": 0, + "blockNumber": 45119351, + "lastRebalancePrice": "1231816089167331659", + "state": "1", + "currentTick": "-1871", + "currentPrice": "1205736574840277021", + "twapSlow": "1208996299256619982", + "twapFast": "1205736574840277021", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "278456972564813254027444", + "usedToken1": "77856759731473354861320", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2880", + "topTick": "-1920" + } + } + }, + { + "transactionHash": "0x3e5041ccf7d92aa3fdac68473c046ada89a322797be05c1e4fc7e511e71c0637", + "state": { + "depositToken": 0, + "blockNumber": 45124279, + "lastRebalancePrice": "1234158647336369451", + "state": "2", + "currentTick": "-2273", + "currentPrice": "1255192108985228047", + "twapSlow": "1250306636892325152", + "twapFast": "1255819830571484108", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "308432373595415166717355", + "usedToken1": "53681758398981302554461", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2640", + "topTick": "-60" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2640" + } + } + }, + { + "transactionHash": "0x21f358a53e69ab38864527750f3dd6f6c099bad69d2a0319567dc6095dd06b21", + "state": { + "depositToken": 0, + "blockNumber": 45126803, + "lastRebalancePrice": "1255192108985228047", + "state": "1", + "currentTick": "-2094", + "currentPrice": "1232925167204862431", + "twapSlow": "1244319844166494458", + "twapFast": "1237124036867092430", + "depositTokenBalance": "441557926854309386972", + "pairedTokenBalance": "0", + "usedToken0": "282408932804402503026900", + "usedToken1": "75001492692275884070531", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3060", + "topTick": "-2100" + } + } + }, + { + "transactionHash": "0x2daeef941c4f122f756d3409c2f746ec838f3314d73fc419eb0407f15efabe0d", + "state": { + "depositToken": 0, + "blockNumber": 45129267, + "lastRebalancePrice": "1232925167204862431", + "state": "2", + "currentTick": "-2242", + "currentPrice": "1251307232357723266", + "twapSlow": "1234158647336369451", + "twapFast": "1251307232357723266", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "296500192078524285727216", + "usedToken1": "63523931676935413300735", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3240", + "topTick": "-2280" + } + } + }, + { + "transactionHash": "0x6be1787490715d2697f6cd8c1cc5ca27401801f8100298f9251747c11d59ad85", + "state": { + "depositToken": 0, + "blockNumber": 45131731, + "lastRebalancePrice": "1251307232357723266", + "state": "2", + "currentTick": "-2527", + "currentPrice": "1287480703463495197", + "twapSlow": "1280803513398768421", + "twapFast": "1287480703463495197", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "318036156974904088259406", + "usedToken1": "46582071685131558841133", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2820", + "topTick": "-300" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2820" + } + } + }, + { + "transactionHash": "0x2c707f70cfa5499889332e01ac715a1140e7c38b31fb928edc98fbabe9d2c286", + "state": { + "depositToken": 0, + "blockNumber": 45134195, + "lastRebalancePrice": "1287480703463495197", + "state": "1", + "currentTick": "-2434", + "currentPrice": "1275563230923059074", + "twapSlow": "1271742466277736121", + "twapFast": "1275690787246151380", + "depositTokenBalance": "7702222874932456724557", + "pairedTokenBalance": "0", + "usedToken0": "293401448995428917019053", + "usedToken1": "54163454833139073957274", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2820", + "topTick": "-240" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2820" + } + } + }, + { + "transactionHash": "0x8d514ff76e2a8e5b76d8a5bae629504f8d877ab7d1e4cc604a76f37a3a81afd9", + "state": { + "depositToken": 0, + "blockNumber": 45138222, + "lastRebalancePrice": "1275563230923059074", + "state": "1", + "currentTick": "-2760", + "currentPrice": "1317829679064577024", + "twapSlow": "1312175459434844953", + "twapFast": "1317302678949567118", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "339750237615551799692482", + "usedToken1": "18289808497771144347521", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-2760" + }, + "limitPosition": { + "bottomTick": "-2700", + "topTick": "-480" + } + } + }, + { + "transactionHash": "0xaf2c2b00d1c9035ae3dc9d23e9dc9620abd086bc7c02c9699314eb3161eecf46", + "state": { + "depositToken": 0, + "blockNumber": 45165147, + "lastRebalancePrice": "1399875327851503488", + "state": "0", + "currentTick": "-3151", + "currentPrice": "1370374754754542984", + "twapSlow": "1370922986884411723", + "twapFast": "1370374754754542984", + "depositTokenBalance": "548462481785146880168", + "pairedTokenBalance": "0", + "usedToken0": "309930580151293112377297", + "usedToken1": "41229146908755819589457", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3420", + "topTick": "-960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3420" + } + } + }, + { + "transactionHash": "0x07d4182621564555499705dd33c7f217430e67075c5ea838d1c85588e1225696", + "state": { + "depositToken": 0, + "blockNumber": 45171552, + "lastRebalancePrice": "1370374754754542984", + "state": "1", + "currentTick": "-3414", + "currentPrice": "1406891880433352423", + "twapSlow": "1393311678645202819", + "twapFast": "1401976611349509386", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "349362374358097227590401", + "usedToken1": "12452804018435986630216", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-3360" + }, + "limitPosition": { + "bottomTick": "-3360", + "topTick": "-1140" + } + } + }, + { + "transactionHash": "0xd78866edf2b1b29e989f5cd3c1250bb4d102f3bdcf9018b707505be11f8cff47", + "state": { + "depositToken": 0, + "blockNumber": 45174851, + "lastRebalancePrice": "1406891880433352423", + "state": "0", + "currentTick": "-3299", + "currentPrice": "1390806098599070154", + "twapSlow": "1399035696550236051", + "twapFast": "1392475984155460311", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "339151355265490254660550", + "usedToken1": "19772139183972437348024", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-3240" + }, + "limitPosition": { + "bottomTick": "-3240", + "topTick": "-1020" + } + } + }, + { + "transactionHash": "0xf378f368bbce804654e9da394a2957e01a71f29f024d699db755e57007c51358", + "state": { + "depositToken": 0, + "blockNumber": 45177315, + "lastRebalancePrice": "1390806098599070154", + "state": "0", + "currentTick": "-3136", + "currentPrice": "1368320836140681217", + "twapSlow": "1373118109538977483", + "twapFast": "1369826741862713943", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "322220844613307538456486", + "usedToken1": "32081119849316867063590", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3300", + "topTick": "-960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3300" + } + } + }, + { + "transactionHash": "0xf549acc37ead6c07320d613484606492af7ef6a84da6cf7b89eb247ed26f49ea", + "state": { + "depositToken": 0, + "blockNumber": 45186596, + "lastRebalancePrice": "1368320836140681217", + "state": "1", + "currentTick": "-2958", + "currentPrice": "1344181410423503235", + "twapSlow": "1344181410423503235", + "twapFast": "1344181410423503235", + "depositTokenBalance": "3766840368351906326365", + "pairedTokenBalance": "0", + "usedToken0": "298420980215513505556714", + "usedToken1": "52836656861270269635669", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3360", + "topTick": "-780" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3360" + } + } + }, + { + "transactionHash": "0x11aa0ded38e6f2550b341c225f5df96517189e3040c0524d803c4817afb8101a", + "state": { + "depositToken": 0, + "blockNumber": 45189068, + "lastRebalancePrice": "1344181410423503235", + "state": "1", + "currentTick": "-2838", + "currentPrice": "1328148425430010766", + "twapSlow": "1328148425430010766", + "twapFast": "1328148425430010766", + "depositTokenBalance": "12800000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "292581239963598531268348", + "usedToken1": "65349869897546248875686", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3300", + "topTick": "-660" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3300" + } + } + }, + { + "transactionHash": "0x2e603327e8989e306c51878bb786cc92d06c9b4cfae14cc0dee1005bd45abfd6", + "state": { + "depositToken": 0, + "blockNumber": 45193985, + "lastRebalancePrice": "1332271867413230498", + "state": "1", + "currentTick": "-2791", + "currentPrice": "1321921084905478062", + "twapSlow": "1325892603887538049", + "twapFast": "1321921084905478062", + "depositTokenBalance": "134377042895288000990", + "pairedTokenBalance": "0", + "usedToken0": "286105344195630346071583", + "usedToken1": "70208571190683772095648", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3780", + "topTick": "-2820" + } + } + }, + { + "transactionHash": "0x3f263169d62122b2b1c91bb6d96459e4fd1ed5ea3ff5a0014dd42c3462b2ca3d", + "state": { + "depositToken": 0, + "blockNumber": 45196723, + "lastRebalancePrice": "1321921084905478062", + "state": "2", + "currentTick": "-2782", + "currentPrice": "1320731950575499778", + "twapSlow": "1320731950575499778", + "twapFast": "1320731950575499778", + "depositTokenBalance": "7885029095958418051128", + "pairedTokenBalance": "0", + "usedToken0": "293859317313577354297109", + "usedToken1": "70308765543892701552793", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3780", + "topTick": "-2820" + } + } + }, + { + "transactionHash": "0xceca52be8a74c08349c02c7be46c2a28681dd86bd816d7d0ff388ac71fc5e8aa", + "state": { + "depositToken": 0, + "blockNumber": 45199187, + "lastRebalancePrice": "1320731950575499778", + "state": "2", + "currentTick": "-2715", + "currentPrice": "1311913063702973721", + "twapSlow": "1319939788684919748", + "twapFast": "1315459837629474526", + "depositTokenBalance": "10902306674928251763504", + "pairedTokenBalance": "0", + "usedToken0": "303846057573725792129162", + "usedToken1": "71097986985473121864085", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2760", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3720", + "topTick": "-2760" + } + } + }, + { + "transactionHash": "0x8d38b5868ac7def585f2056dce6ea173b71d7baa2e658cd16fcf97d60547bc8d", + "state": { + "depositToken": 0, + "blockNumber": 45201653, + "lastRebalancePrice": "1311913063702973721", + "state": "2", + "currentTick": "-2405", + "currentPrice": "1271869640524363895", + "twapSlow": "1281700344871717979", + "twapFast": "1271869640524363895", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "299210418589891564839281", + "usedToken1": "74668756128236775191996", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3360", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0x05b78f378366d2932721dcb4190f711bdbbb8b7e0d31990529a7e50919786969", + "state": { + "depositToken": 0, + "blockNumber": 45206585, + "lastRebalancePrice": "1271869640524363895", + "state": "2", + "currentTick": "-2298", + "currentPrice": "1258333857722548408", + "twapSlow": "1270852602532432597", + "twapFast": "1258963150497379422", + "depositTokenBalance": "628945521890000000000", + "pairedTokenBalance": "0", + "usedToken0": "298275108288560695847618", + "usedToken1": "75928476205506054373622", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3300", + "topTick": "-2340" + } + } + }, + { + "transactionHash": "0xa44dca43771aad9fb8ef109283c21d6fd82307276fb4893977f97a7c01e1d1b8", + "state": { + "depositToken": 0, + "blockNumber": 45209048, + "lastRebalancePrice": "1258333857722548408", + "state": "2", + "currentTick": "-2084", + "currentPrice": "1231692919875344124", + "twapSlow": "1231692919875344124", + "twapFast": "1231692919875344124", + "depositTokenBalance": "358400199823428287259", + "pairedTokenBalance": "0", + "usedToken0": "295433351109129237044954", + "usedToken1": "78510934095054936397160", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3060", + "topTick": "-2100" + } + } + }, + { + "transactionHash": "0x6c60e69ee2330cee296ebcac7943b488cc522a10fb62d9c9920c4b422de11523", + "state": { + "depositToken": 0, + "blockNumber": 45211514, + "lastRebalancePrice": "1231692919875344124", + "state": "2", + "currentTick": "-2317", + "currentPrice": "1260726845022931340", + "twapSlow": "1246187631034915991", + "twapFast": "1255066602324995547", + "depositTokenBalance": "13249167361583730984442", + "pairedTokenBalance": "0", + "usedToken0": "331476015137691138714350", + "usedToken1": "60289664225619053415461", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2700", + "topTick": "-120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0x1432341b534cfe009ad0f9e67eb86b592b049387383c45c2521c8605a84de89a", + "state": { + "depositToken": 0, + "blockNumber": 45213978, + "lastRebalancePrice": "1260726845022931340", + "state": "1", + "currentTick": "-2535", + "currentPrice": "1288511048592970896", + "twapSlow": "1281187792878174257", + "twapFast": "1287609451533841547", + "depositTokenBalance": "11685955482654975948627", + "pairedTokenBalance": "0", + "usedToken0": "378288910921220943978021", + "usedToken1": "32913574620903230829546", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2700", + "topTick": "-360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0xc4db48e0e72ec1ea28a100c3c77ec50dc3e500363a9d41bc42ff16c513aaa3ad", + "state": { + "depositToken": 0, + "blockNumber": 45216070, + "lastRebalancePrice": "1288511048592970896", + "state": "1", + "currentTick": "-3229", + "currentPrice": "1381104934643906876", + "twapSlow": "1291994554869109673", + "twapFast": "1360543981302001472", + "depositTokenBalance": "130309497326486439696", + "pairedTokenBalance": "0", + "usedToken0": "408886231604788505543012", + "usedToken1": "9234518080316253480329", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3240" + } + } + }, + { + "transactionHash": "0x58f2d7285098e62fc07a63694b79f5f3a42b577f2934ad6859e61619f680ff58", + "state": { + "depositToken": 0, + "blockNumber": 45218534, + "lastRebalancePrice": "1381104934643906876", + "state": "3", + "currentTick": "-3255", + "currentPrice": "1384700299657957117", + "twapSlow": "1392615231753875857", + "twapFast": "1384561843473609756", + "depositTokenBalance": "364135328154229062843", + "pairedTokenBalance": "0", + "usedToken0": "409423318348912754621740", + "usedToken1": "9025402679009535563097", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-3240" + }, + "limitPosition": { + "bottomTick": "-3240", + "topTick": "-1020" + } + } + }, + { + "transactionHash": "0x95ef456fa259f12e4eb5a66db8024118905ac33a521db67e128f9835b21b3bf8", + "state": { + "depositToken": 0, + "blockNumber": 45222866, + "lastRebalancePrice": "1384700299657957117", + "state": "0", + "currentTick": "-3401", + "currentPrice": "1405064200620520421", + "twapSlow": "1395821772571001314", + "twapFast": "1401415960874596091", + "depositTokenBalance": "645038404170672402860", + "pairedTokenBalance": "0", + "usedToken0": "410177609249605119453543", + "usedToken1": "8974190779016710461318", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-3360" + }, + "limitPosition": { + "bottomTick": "-3360", + "topTick": "-1140" + } + } + }, + { + "transactionHash": "0x322f3a647d8465dac4f8eae4c71c0e46c65f3a8a0a7cc06a265f458de63f7c1a", + "state": { + "depositToken": 0, + "blockNumber": 45225331, + "lastRebalancePrice": "1405064200620520421", + "state": "0", + "currentTick": "-3106", + "currentPrice": "1364222229542871244", + "twapSlow": "1374491845716468766", + "twapFast": "1364222229542871244", + "depositTokenBalance": "5537783849414793297705", + "pairedTokenBalance": "0", + "usedToken0": "366235448081954492184649", + "usedToken1": "44748671187877481964995", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3360", + "topTick": "-900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3360" + } + } + }, + { + "transactionHash": "0xcb10567837fed6caad523db1f0fbe696d90555d51f9ce2ad67997b0cf774b9c4", + "state": { + "depositToken": 0, + "blockNumber": 45227797, + "lastRebalancePrice": "1364222229542871244", + "state": "1", + "currentTick": "-4111", + "currentPrice": "1508445192292957394", + "twapSlow": "1476508997961729647", + "twapFast": "1508596036812186690", + "depositTokenBalance": "13239276445405276740683", + "pairedTokenBalance": "0", + "usedToken0": "413774360731468606058198", + "usedToken1": "11401242772460222326786", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4080" + }, + "limitPosition": { + "bottomTick": "-4080", + "topTick": "-1860" + } + } + }, + { + "transactionHash": "0xaa17c020945c0679dc508bd2ec59c560b244085680e32be2308c16bf539ccf1e", + "state": { + "depositToken": 0, + "blockNumber": 45230262, + "lastRebalancePrice": "1508445192292957394", + "state": "0", + "currentTick": "-4264", + "currentPrice": "1531700691919371025", + "twapSlow": "1540918059662706719", + "twapFast": "1531700691919371025", + "depositTokenBalance": "10000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "423451119888291283672848", + "usedToken1": "11314800792747291937138", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4260" + }, + "limitPosition": { + "bottomTick": "-4260", + "topTick": "-1980" + } + } + }, + { + "transactionHash": "0xe593a02ca8922b874abe8f1964d16b97b8b88191b0621d4e1a993d3daa353b68", + "state": { + "depositToken": 0, + "blockNumber": 45232735, + "lastRebalancePrice": "1531700691919371025", + "state": "0", + "currentTick": "-4528", + "currentPrice": "1572674009766187159", + "twapSlow": "1582454387458625945", + "twapFast": "1572674009766187159", + "depositTokenBalance": "2", + "pairedTokenBalance": "1", + "usedToken0": "423678617649727795160886", + "usedToken1": "11165649654973325028108", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4500" + }, + "limitPosition": { + "bottomTick": "-4500", + "topTick": "-2280" + } + } + }, + { + "transactionHash": "0x1a1f9aaad0c5dac168e4440644d4b3c57e57ad1721686b17c56f94fce63ce798", + "state": { + "depositToken": 0, + "blockNumber": 45235200, + "lastRebalancePrice": "1572674009766187159", + "state": "0", + "currentTick": "-4199", + "currentPrice": "1521777419150182604", + "twapSlow": "1533386405368644056", + "twapFast": "1521777419150182604", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "355053513023966180119852", + "usedToken1": "49163079874504495220278", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4500", + "topTick": "-1980" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4500" + } + } + }, + { + "transactionHash": "0xf764a9041fb6aa44f7c97b6a9cf1703dd86aecc593c25c5dcddb1aac391da34a", + "state": { + "depositToken": 0, + "blockNumber": 45236102, + "lastRebalancePrice": "1521777419150182604", + "state": "1", + "currentTick": "-3958", + "currentPrice": "1485542776180658017", + "twapSlow": "1498822449811292406", + "twapFast": "1489558960279311135", + "depositTokenBalance": "13197727525786163448", + "pairedTokenBalance": "0", + "usedToken0": "314705013528165857997374", + "usedToken1": "76248167279719974791771", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3960" + } + } + }, + { + "transactionHash": "0xea2486fba3712acbaaace02390a3fe8709df977316700855b9d9e9457c6567b0", + "state": { + "depositToken": 0, + "blockNumber": 45238566, + "lastRebalancePrice": "1484503312064554483", + "state": "3", + "currentTick": "-4037", + "currentPrice": "1497324451384194707", + "twapSlow": "1493436658517739419", + "twapFast": "1497324451384194707", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "314023705482846635261599", + "usedToken1": "76468440566238956043702", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5040", + "topTick": "-4080" + } + } + }, + { + "transactionHash": "0xb334786444ce7f8fdf931cb0f2717b9fe62a4b6919a816d5a36f666192c9e783", + "state": { + "depositToken": 0, + "blockNumber": 45241032, + "lastRebalancePrice": "1497324451384194707", + "state": "2", + "currentTick": "-4247", + "currentPrice": "1529099142761690557", + "twapSlow": "1531394397725881871", + "twapFast": "1529099142761690557", + "depositTokenBalance": "462136588159438268171", + "pairedTokenBalance": "0", + "usedToken0": "335834036886346863479137", + "usedToken1": "62597914398825439597725", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5220", + "topTick": "-4260" + } + } + }, + { + "transactionHash": "0x69760e5fb633673e332bc047581e40dd18a94261640041e7ea60a8d80c7a439e", + "state": { + "depositToken": 0, + "blockNumber": 45243504, + "lastRebalancePrice": "1529099142761690557", + "state": "2", + "currentTick": "-3913", + "currentPrice": "1478873184996379797", + "twapSlow": "1489558960279311135", + "twapFast": "1478873184996379797", + "depositTokenBalance": "4045062789281438619233", + "pairedTokenBalance": "0", + "usedToken0": "334050506258552610226664", + "usedToken1": "66287958390368561659300", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4920", + "topTick": "-3960" + } + } + }, + { + "transactionHash": "0x1e8454eaebed53ff1e0bb73dad58c830e8a0c0a6533579096a8a9bd6e2a4ce51", + "state": { + "depositToken": 0, + "blockNumber": 45245976, + "lastRebalancePrice": "1478873184996379797", + "state": "2", + "currentTick": "-3652", + "currentPrice": "1440775832709948843", + "twapSlow": "1438328716785951957", + "twapFast": "1440775832709948843", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "327601847304573110046218", + "usedToken1": "68812030477250555473321", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4620", + "topTick": "-3660" + } + } + }, + { + "transactionHash": "0x6f8337dd539eae106dbba686de46131f3024bf73333e7c54626a4117e6a50f1a", + "state": { + "depositToken": 0, + "blockNumber": 45250010, + "lastRebalancePrice": "1440775832709948843", + "state": "2", + "currentTick": "-3474", + "currentPrice": "1415358181914758236", + "twapSlow": "1440055660859551705", + "twapFast": "1425442477689676125", + "depositTokenBalance": "995603091230971411831", + "pairedTokenBalance": "0", + "usedToken0": "325747805535597130880036", + "usedToken1": "70849869969801523345284", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4440", + "topTick": "-3480" + } + } + }, + { + "transactionHash": "0x44203e3c0605dad80118c56b0c9b6a7e2cb7f675e36ad7e5f084b46e8b72e91f", + "state": { + "depositToken": 0, + "blockNumber": 45253559, + "lastRebalancePrice": "1415358181914758236", + "state": "2", + "currentTick": "-3369", + "currentPrice": "1400575405516961478", + "twapSlow": "1403940654914574880", + "twapFast": "1401556102470683551", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "323990796916017456473862", + "usedToken1": "72028245112374670847903", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4380", + "topTick": "-3420" + } + } + }, + { + "transactionHash": "0xa84363dd87a9b726b70c4772ed9c69b0a863177627b0792a61489a79adec5c3f", + "state": { + "depositToken": 0, + "blockNumber": 45256026, + "lastRebalancePrice": "1400575405516961478", + "state": "2", + "currentTick": "-3243", + "currentPrice": "1383039738860759344", + "twapSlow": "1384700299657957117", + "twapFast": "1384146557980434740", + "depositTokenBalance": "399068456150920570547", + "pairedTokenBalance": "0", + "usedToken0": "321595569018901699851478", + "usedToken1": "73339581163886747928222", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4200", + "topTick": "-3300" + } + } + }, + { + "transactionHash": "0xc41676f41c5315878144f866410557c73827c881c47bb826d2627e8e06a9c95d", + "state": { + "depositToken": 0, + "blockNumber": 45258481, + "lastRebalancePrice": "1383039738860759344", + "state": "2", + "currentTick": "-3030", + "currentPrice": "1353893954160858522", + "twapSlow": "1358233136848371250", + "twapFast": "1354029343556274608", + "depositTokenBalance": "193417426404509082591", + "pairedTokenBalance": "0", + "usedToken0": "318390559741843794902634", + "usedToken1": "75834857295654624528846", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4020", + "topTick": "-3060" + } + } + }, + { + "transactionHash": "0x4b9b1151a1e2aa6bd57e78f18449da392ffd27ed1f8d50050713359881a9ddfa", + "state": { + "depositToken": 0, + "blockNumber": 45266607, + "lastRebalancePrice": "1353893954160858522", + "state": "2", + "currentTick": "-3135", + "currentPrice": "1368184017738907327", + "twapSlow": "1361088280532603462", + "twapFast": "1366953267580067637", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313659723472187110341757", + "usedToken1": "66664896860842376461403", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4140", + "topTick": "-3180" + } + } + }, + { + "transactionHash": "0x270adc7c121aaf03abb8140d8d49359927deaea7ce02efca02d5762e35352986", + "state": { + "depositToken": 0, + "blockNumber": 45269079, + "lastRebalancePrice": "1368184017738907327", + "state": "2", + "currentTick": "-3254", + "currentPrice": "1384561843473609756", + "twapSlow": "1383593037744220276", + "twapFast": "1384561843473609756", + "depositTokenBalance": "95888634826714786545", + "pairedTokenBalance": "0", + "usedToken0": "321554694471663267595606", + "usedToken1": "60937273740676384110086", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4260", + "topTick": "-3300" + } + } + }, + { + "transactionHash": "0x49861714fdc0b29276c0fda2c3b4a78081ed43736f89c01680817eb7ffda744d", + "state": { + "depositToken": 0, + "blockNumber": 45271544, + "lastRebalancePrice": "1384561843473609756", + "state": "2", + "currentTick": "-3098", + "currentPrice": "1363131342715577924", + "twapSlow": "1350783731701668916", + "twapFast": "1358640647537778100", + "depositTokenBalance": "2470000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "319031510659522170178613", + "usedToken1": "62785608343136075678279", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4080", + "topTick": "-3120" + } + } + }, + { + "transactionHash": "0xdc2cbe62539226c4ca6151ec50fc0ed452de73af2d70c25e3889ac0d6a3c9492", + "state": { + "depositToken": 0, + "blockNumber": 45281708, + "lastRebalancePrice": "1363131342715577924", + "state": "2", + "currentTick": "-3528", + "currentPrice": "1423021405024031117", + "twapSlow": "1421883500017002080", + "twapFast": "1423021405024031117", + "depositTokenBalance": "43495602099085293510046", + "pairedTokenBalance": "0", + "usedToken0": "397375624601134608755044", + "usedToken1": "35369233109977179154295", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3720", + "topTick": "-1320" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-3720" + } + } + }, + { + "transactionHash": "0x1dfa717857931699daab3c83f12da82781b4c548c86cd510f569a08cdc4ff3a8", + "state": { + "depositToken": 0, + "blockNumber": 45396411, + "lastRebalancePrice": "1423021405024031117", + "state": "1", + "currentTick": "-4664", + "currentPrice": "1594207394782184771", + "twapSlow": "1598357519329975109", + "twapFast": "1594526252203215156", + "depositTokenBalance": "61462871187534371161776", + "pairedTokenBalance": "2", + "usedToken0": "415733847277054471314189", + "usedToken1": "7557809014589628427630", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4620" + }, + "limitPosition": { + "bottomTick": "-4620", + "topTick": "-2400" + } + } + }, + { + "transactionHash": "0x93b89f4943a43d44ba2484613710bb8ec9c9916d0c7ddddd57a9f6a7d92f94bd", + "state": { + "depositToken": 0, + "blockNumber": 45402137, + "lastRebalancePrice": "1594207394782184771", + "state": "0", + "currentTick": "-4732", + "currentPrice": "1605084401136450778", + "twapSlow": "1596919716559811937", + "twapFast": "1609101931086220722", + "depositTokenBalance": "183138433692029147241", + "pairedTokenBalance": "0", + "usedToken0": "412714131053933551594375", + "usedToken1": "7466756269456646302648", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4680" + }, + "limitPosition": { + "bottomTick": "-4680", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0xe7b3e3c9f53cf38607ddb0ce63ef326f0a26abb28e11920cb74ab3f3a2fb0619", + "state": { + "depositToken": 0, + "blockNumber": 45410612, + "lastRebalancePrice": "1605084401136450778", + "state": "0", + "currentTick": "-4841", + "currentPrice": "1622674634233304839", + "twapSlow": "1603480199178731115", + "twapFast": "1617814147725823395", + "depositTokenBalance": "1014893649212150872540", + "pairedTokenBalance": "1", + "usedToken0": "413835610930228965017374", + "usedToken1": "7430557908381318376333", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4800" + }, + "limitPosition": { + "bottomTick": "-4800", + "topTick": "-2580" + } + } + }, + { + "transactionHash": "0x5cd59c2234b19092b35a1eb380e2bee1a53b9748f145f12ec23fde4a77907acf", + "state": { + "depositToken": 0, + "blockNumber": 45413356, + "lastRebalancePrice": "1622674634233304839", + "state": "0", + "currentTick": "-4957", + "currentPrice": "1641606304836109545", + "twapSlow": "1630318772467634372", + "twapFast": "1638654218763736699", + "depositTokenBalance": "1030500000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "414878311135517900508923", + "usedToken1": "7372116854035506051162", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4920" + }, + "limitPosition": { + "bottomTick": "-4920", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0x70e27eafb154b29d32c1a892e581f48974be90cc5feb7162f315f6c9100449ee", + "state": { + "depositToken": 0, + "blockNumber": 45416640, + "lastRebalancePrice": "1641606304836109545", + "state": "0", + "currentTick": "-4859", + "currentPrice": "1625597932591714343", + "twapSlow": "1627386984664705466", + "twapFast": "1625597932591714343", + "depositTokenBalance": "5197793128232670847686", + "pairedTokenBalance": "0", + "usedToken0": "407937623320101747768644", + "usedToken1": "15009449715767575542719", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4800" + }, + "limitPosition": { + "bottomTick": "-4800", + "topTick": "-2580" + } + } + }, + { + "transactionHash": "0x2a8abd920f745dbc59e414116d0cfd4688b799a1630c991005187dee22c579b0", + "state": { + "depositToken": 0, + "blockNumber": 45424241, + "lastRebalancePrice": "1625597932591714343", + "state": "0", + "currentTick": "-4738", + "currentPrice": "1606047692571896915", + "twapSlow": "1613452158957380052", + "twapFast": "1608619297036922115", + "depositTokenBalance": "615084617818479703236", + "pairedTokenBalance": "0", + "usedToken0": "396317867467857858525241", + "usedToken1": "22595202981853172562754", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4680" + }, + "limitPosition": { + "bottomTick": "-4680", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0x597a3b034e3c8b06c49bfa082f68286e4e6a4dec234ea4279bafd7db0d63bb30", + "state": { + "depositToken": 0, + "blockNumber": 45428202, + "lastRebalancePrice": "1606047692571896915", + "state": "0", + "currentTick": "-4658", + "currentPrice": "1593251205039612833", + "twapSlow": "1606850877039013400", + "twapFast": "1598837074538098039", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "391748258879487260143532", + "usedToken1": "25255184641008442500817", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4800", + "topTick": "-2460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4800" + } + } + }, + { + "transactionHash": "0xef8dba0a1055cf07ede0f94477139ec809444cd1fba87fad5edd3aceb6cf489a", + "state": { + "depositToken": 0, + "blockNumber": 45431637, + "lastRebalancePrice": "1593251205039612833", + "state": "1", + "currentTick": "-4311", + "currentPrice": "1538916267719742127", + "twapSlow": "1562329054443723290", + "twapFast": "1542613917287570848", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "327079582085018592151855", + "usedToken1": "66557535071095659309533", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5280", + "topTick": "-4320" + } + } + }, + { + "transactionHash": "0x23bd60aa3c87d42244df8e0417a07e37fb71bfbe1cc2e8f9ec0078194746fce4", + "state": { + "depositToken": 0, + "blockNumber": 45434103, + "lastRebalancePrice": "1538916267719742127", + "state": "2", + "currentTick": "-4149", + "currentPrice": "1514187901129758258", + "twapSlow": "1522995267268410301", + "twapFast": "1514187901129758258", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "324446739480326539831011", + "usedToken1": "68282333914973833209250", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5160", + "topTick": "-4200" + } + } + }, + { + "transactionHash": "0x5da1c03b8ce9334e03ba23eea6d330c107c99210e2cb6582652a106cd726f939", + "state": { + "depositToken": 0, + "blockNumber": 45436567, + "lastRebalancePrice": "1514187901129758258", + "state": "2", + "currentTick": "-3990", + "currentPrice": "1490303888730243153", + "twapSlow": "1496725671306144918", + "twapFast": "1490303888730243153", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "321875114508461490235161", + "usedToken1": "69994268725320474444049", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4980", + "topTick": "-4020" + } + } + }, + { + "transactionHash": "0x22811c24fa0ff05c5a3c7e0f2e0913a1674ee7d99b4076280223fce63f6a5413", + "state": { + "depositToken": 0, + "blockNumber": 45439031, + "lastRebalancePrice": "1490303888730243153", + "state": "2", + "currentTick": "-4119", + "currentPrice": "1509652370895929093", + "twapSlow": "1500622026303697975", + "twapFast": "1509652370895929093", + "depositTokenBalance": "710143830591667510592", + "pairedTokenBalance": "0", + "usedToken0": "334122704999999786777783", + "usedToken1": "62347658553942936436132", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5100", + "topTick": "-4140" + } + } + }, + { + "transactionHash": "0xf97ca464083e80076544d56500d683368a4da730530b1a3754d06ba2cf45dd4a", + "state": { + "depositToken": 0, + "blockNumber": 45445652, + "lastRebalancePrice": "1509652370895929093", + "state": "2", + "currentTick": "-4221", + "currentPrice": "1525128847122802049", + "twapSlow": "1516309142653645944", + "twapFast": "1523909292908523627", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "342496450713329986344861", + "usedToken1": "56797908581151606513127", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5220", + "topTick": "-4260" + } + } + }, + { + "transactionHash": "0xa04a00ecc2e96c6ae038c8264650db61e56046fcd6d09204669349516b2f42ce", + "state": { + "depositToken": 0, + "blockNumber": 45448116, + "lastRebalancePrice": "1525128847122802049", + "state": "2", + "currentTick": "-4375", + "currentPrice": "1548796420600409582", + "twapSlow": "1549261105992031119", + "twapFast": "1548796420600409582", + "depositTokenBalance": "180455296466518758341", + "pairedTokenBalance": "0", + "usedToken0": "353743131641842027163624", + "usedToken1": "49449485089408575555931", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4740", + "topTick": "-2160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4740" + } + } + }, + { + "transactionHash": "0xe276920167ca19a07b44eeea5eda85ec577d3069eadec515d56f19ec50bd43f1", + "state": { + "depositToken": 0, + "blockNumber": 45468157, + "lastRebalancePrice": "1548796420600409582", + "state": "1", + "currentTick": "-4232", + "currentPrice": "1526807327927199645", + "twapSlow": "1529099142761690557", + "twapFast": "1527112704660858364", + "depositTokenBalance": "121127084901547697571", + "pairedTokenBalance": "1", + "usedToken0": "327819333598067938549740", + "usedToken1": "64784744673309714692831", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5220", + "topTick": "-4260" + } + } + }, + { + "transactionHash": "0x1f58e11f57f3464b2dbe93bc00c57b6fe0360be104ea1eece168532f89c65a5e", + "state": { + "depositToken": 0, + "blockNumber": 45471663, + "lastRebalancePrice": "1526807327927199645", + "state": "2", + "currentTick": "-4347", + "currentPrice": "1544466072452952776", + "twapSlow": "1532926481434886220", + "twapFast": "1543231055417491523", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "337414954486160710422417", + "usedToken1": "58542789047610602106313", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5340", + "topTick": "-4380" + } + } + }, + { + "transactionHash": "0xd3415f98ad5a34bee747d7f6591d7a5090dee4ca49576d28247139c0da48a405", + "state": { + "depositToken": 0, + "blockNumber": 45474644, + "lastRebalancePrice": "1544466072452952776", + "state": "2", + "currentTick": "-4200", + "currentPrice": "1521929596892097622", + "twapSlow": "1548331874586529054", + "twapFast": "1529099142761690557", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "334943619000397546351713", + "usedToken1": "60154811986159280978956", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5160", + "topTick": "-4260" + } + } + }, + { + "transactionHash": "0x123a094568f6779e7411ade81e4cbc87e1cfa2d5418b30a30a9e78a31b457d8e", + "state": { + "depositToken": 0, + "blockNumber": 45487875, + "lastRebalancePrice": "1521929596892097622", + "state": "2", + "currentTick": "-4303", + "currentPrice": "1537685688530803533", + "twapSlow": "1524518948066340401", + "twapFast": "1537378197517518054", + "depositTokenBalance": "3646010854588588748411", + "pairedTokenBalance": "0", + "usedToken0": "343014788931125109487079", + "usedToken1": "57273758763963083060833", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5280", + "topTick": "-4320" + } + } + }, + { + "transactionHash": "0xd878df1b78668f517f86ed76102e6068846f1ea9bb060aeef352e53160f33a73", + "state": { + "depositToken": 0, + "blockNumber": 45490339, + "lastRebalancePrice": "1537685688530803533", + "state": "2", + "currentTick": "-4399", + "currentPrice": "1552517809824381787", + "twapSlow": "1552673061605364225", + "twapFast": "1552517809824381787", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "350722797155578487868634", + "usedToken1": "52285131773552225380771", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4740", + "topTick": "-2220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4740" + } + } + }, + { + "transactionHash": "0x16c68b56bbdf5805bc69ab2caf8fd4cec44788b685422a544821b7c16c9c78c4", + "state": { + "depositToken": 0, + "blockNumber": 45492805, + "lastRebalancePrice": "1552517809824381787", + "state": "1", + "currentTick": "-4583", + "currentPrice": "1581347112341740451", + "twapSlow": "1564830656600887263", + "twapFast": "1581347112341740451", + "depositTokenBalance": "10002001600000000000000", + "pairedTokenBalance": "0", + "usedToken0": "392243790375715260014523", + "usedToken1": "32244402477082152943573", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4740", + "topTick": "-2400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4740" + } + } + }, + { + "transactionHash": "0xea2089ec47770637ed77351b55a0457b9af17bbe162bfc6df1ad9975e2e9b554", + "state": { + "depositToken": 0, + "blockNumber": 45503753, + "lastRebalancePrice": "1581347112341740451", + "state": "1", + "currentTick": "-4745", + "currentPrice": "1607172263282929973", + "twapSlow": "1585780866932114479", + "twapFast": "1600916810285297447", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "421782912855321217811682", + "usedToken1": "13731247537673398837966", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4740" + }, + "limitPosition": { + "bottomTick": "-4740", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0xc1d69d34b799ded7866bbf48448f9ac879e7c946b9336a992b7b0fd9354aa148", + "state": { + "depositToken": 0, + "blockNumber": 45506217, + "lastRebalancePrice": "1607172263282929973", + "state": "0", + "currentTick": "-4635", + "currentPrice": "1589591120979250486", + "twapSlow": "1599156857941376404", + "twapFast": "1589591120979250486", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "400944772128647202751338", + "usedToken1": "26349220873282197739816", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4740", + "topTick": "-2460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-4740" + } + } + }, + { + "transactionHash": "0xefeada2b1ec65d5647bf976b1f22e750b2d8b995812ef7ba15bebb32deb1b444", + "state": { + "depositToken": 0, + "blockNumber": 45509980, + "lastRebalancePrice": "1589591120979250486", + "state": "1", + "currentTick": "-4744", + "currentPrice": "1607011562126717302", + "twapSlow": "1592136375172622865", + "twapFast": "1600756734611836263", + "depositTokenBalance": "399144773243224598571", + "pairedTokenBalance": "0", + "usedToken0": "422011788353115256978033", + "usedToken1": "13478532541107599283091", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-4740" + }, + "limitPosition": { + "bottomTick": "-4740", + "topTick": "-2460" + } + } + }, + { + "transactionHash": "0x68ad2738aa7d836d1e1e725065e815b5bac8a9345873352ec5895f0e878d1cd0", + "state": { + "depositToken": 0, + "blockNumber": 45549250, + "lastRebalancePrice": "1587526098326922799", + "state": "1", + "currentTick": "-4307", + "currentPrice": "1538300855073508063", + "twapSlow": "1543231055417491523", + "twapFast": "1538762391480594068", + "depositTokenBalance": "1569333192157277456402", + "pairedTokenBalance": "1", + "usedToken0": "341018811181793179193148", + "usedToken1": "66285806398010849841582", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5280", + "topTick": "-4320" + } + } + }, + { + "transactionHash": "0x8192d0f1f3dba571c3fa83a140ef687f6c957c9d5ecbb0cc0bfbfc9fcc2c4153", + "state": { + "depositToken": 0, + "blockNumber": 45552143, + "lastRebalancePrice": "1538300855073508063", + "state": "2", + "currentTick": "-4187", + "currentPrice": "1519952472679869998", + "twapSlow": "1529557918379022447", + "twapFast": "1523604556761125835", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "338138869466955160603290", + "usedToken1": "67091690659363545790543", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5160", + "topTick": "-4200" + } + } + }, + { + "transactionHash": "0x150aeb9a73e2a9f7dd734d4700d4d3ee7d46c27953a3a23d0f5c4b0470ec6e56", + "state": { + "depositToken": 0, + "blockNumber": 45554635, + "lastRebalancePrice": "1519952472679869998", + "state": "2", + "currentTick": "-4065", + "currentPrice": "1501522624642798831", + "twapSlow": "1503926863510502893", + "twapFast": "1502874535679269043", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "336083767099718644032954", + "usedToken1": "68447555154143301247737", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-4080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-5040", + "topTick": "-4080" + } + } + }, + { + "transactionHash": "0x15173111a3548a786f2f846504b9569457411ee8e4429ddaceb1a85c8a7d776f", + "state": { + "depositToken": 0, + "blockNumber": 45557099, + "lastRebalancePrice": "1501522624642798831", + "state": "2", + "currentTick": "-3655", + "currentPrice": "1441208108684477585", + "twapSlow": "1449735942514355345", + "twapFast": "1441208108684477585", + "depositTokenBalance": "123498458111630532832", + "pairedTokenBalance": "0", + "usedToken0": "327435733772579912347227", + "usedToken1": "72700087900589402076614", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4620", + "topTick": "-3660" + } + } + }, + { + "transactionHash": "0x15431810f7c4dc66e2d29f190feb6f7e4a712e10bb8c1bd765c14f5408d681a3", + "state": { + "depositToken": 0, + "blockNumber": 45560328, + "lastRebalancePrice": "1441208108684477585", + "state": "2", + "currentTick": "-3511", + "currentPrice": "1420604444480021374", + "twapSlow": "1439623730550235094", + "twapFast": "1427724896983460115", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "324829901678684236939864", + "usedToken1": "74243347530268112981429", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4500", + "topTick": "-3540" + } + } + }, + { + "transactionHash": "0x4e644c5d0874683a818f612cb7f6626b8ee530ed9cfa4020b5f3310f05433ed6", + "state": { + "depositToken": 0, + "blockNumber": 45562790, + "lastRebalancePrice": "1420604444480021374", + "state": "2", + "currentTick": "-3008", + "currentPrice": "1350918810074839083", + "twapSlow": "1347680654177070323", + "twapFast": "1350918810074839083", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "316756968217024730107765", + "usedToken1": "80059511253349045196795", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-3060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-4020", + "topTick": "-3060" + } + } + }, + { + "transactionHash": "0xf7e9a79221fcbc80762764687a9eddbb75430fb35b3105e4462c9324db5277c8", + "state": { + "depositToken": 0, + "blockNumber": 45565254, + "lastRebalancePrice": "1350918810074839083", + "state": "2", + "currentTick": "-2818", + "currentPrice": "1325494915646671083", + "twapSlow": "1332671588942942761", + "twapFast": "1325494915646671083", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313761516845741675207993", + "usedToken1": "82298191376235806763740", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3780", + "topTick": "-2820" + } + } + }, + { + "transactionHash": "0x93c5cb566c567c66d2f78354cae4a13c200c32a67d22e27e9cd748b8e1493d54", + "state": { + "depositToken": 0, + "blockNumber": 45567718, + "lastRebalancePrice": "1325494915646671083", + "state": "2", + "currentTick": "-2674", + "currentPrice": "1306545499540744227", + "twapSlow": "1306545499540744227", + "twapFast": "1306545499540744227", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "311517297460455251218027", + "usedToken1": "84003641763890086750069", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3660", + "topTick": "-2700" + } + } + }, + { + "transactionHash": "0x678214f1209c3fb040e1fde48f3eab0042be2bf3966a01e2578cae2850c3636f", + "state": { + "depositToken": 0, + "blockNumber": 45573335, + "lastRebalancePrice": "1306545499540744227", + "state": "2", + "currentTick": "-2567", + "currentPrice": "1292640681358920306", + "twapSlow": "1295487478849496427", + "twapFast": "1293804523431386730", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "309848413783944316260506", + "usedToken1": "85287893750368122639774", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3540", + "topTick": "-2580" + } + } + }, + { + "transactionHash": "0xa0a8b6c33cbfa8749a15e8a0041035578e7916e509aca8895925d69669fc8889", + "state": { + "depositToken": 0, + "blockNumber": 45575799, + "lastRebalancePrice": "1292640681358920306", + "state": "2", + "currentTick": "-2465", + "currentPrice": "1279523414045616801", + "twapSlow": "1282726064095496109", + "twapFast": "1279523414045616801", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "301625834845795326808425", + "usedToken1": "84652211248962336213184", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3420", + "topTick": "-2520" + } + } + }, + { + "transactionHash": "0x4a7ce32b77c710a87c9581d9faf83b001f48124c2e0ef270c94d8ed089ef6d23", + "state": { + "depositToken": 0, + "blockNumber": 45578869, + "lastRebalancePrice": "1279523414045616801", + "state": "2", + "currentTick": "-2358", + "currentPrice": "1265906176499779549", + "twapSlow": "1267806365542174688", + "twapFast": "1266665910116925914", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "299816863656899905159966", + "usedToken1": "85858375071216526016652", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3360", + "topTick": "-2400" + } + } + }, + { + "transactionHash": "0x7614627592c8472eb2c286b4125d45ee0e96a153cfa94ad3ccefd0d0ca9f79bb", + "state": { + "depositToken": 0, + "blockNumber": 45581336, + "lastRebalancePrice": "1265906176499779549", + "state": "2", + "currentTick": "-2478", + "currentPrice": "1281187792878174257", + "twapSlow": "1275945938160508483", + "twapFast": "1281187792878174257", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "309244230306966717290555", + "usedToken1": "78226806098644493829611", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3480", + "topTick": "-2520" + } + } + }, + { + "transactionHash": "0x51fbeff8529999e6905e36eba026bf0af02589b0a05e267ef67195315fe920b2", + "state": { + "depositToken": 0, + "blockNumber": 45591313, + "lastRebalancePrice": "1281187792878174257", + "state": "2", + "currentTick": "-2251", + "currentPrice": "1252433859442574442", + "twapSlow": "1268186745487296113", + "twapFast": "1261483470264188281", + "depositTokenBalance": "116342175878780063927", + "pairedTokenBalance": "0", + "usedToken0": "305389775313936320306160", + "usedToken1": "80864550586905439463076", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3240", + "topTick": "-2280" + } + } + }, + { + "transactionHash": "0xa652eff6ddffbd729dc6f7526837ad3512ed08af072610c2de95204d30165ef9", + "state": { + "depositToken": 0, + "blockNumber": 45592082, + "lastRebalancePrice": "1252433859442574442", + "state": "2", + "currentTick": "-1541", + "currentPrice": "1166598553622484162", + "twapSlow": "1239848569410801495", + "twapFast": "1177615728781246528", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "294724045029468807523148", + "usedToken1": "89650584016768763681529", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1560" + } + } + }, + { + "transactionHash": "0x163087b867092410a5d65287275df869127355afc4d52aa662bd70e274e5a9ff", + "state": { + "depositToken": 0, + "blockNumber": 45594548, + "lastRebalancePrice": "1166598553622484162", + "state": "3", + "currentTick": "-2066", + "currentPrice": "1229477977411068407", + "twapSlow": "1230708008801132490", + "twapFast": "1229477977411068407", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "297693888444330857672885", + "usedToken1": "87166659088909128896445", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3060", + "topTick": "-2100" + } + } + }, + { + "transactionHash": "0xc49b0149c9b5bd2b13528d71c629303ec8ce0ce24d727d3eebb273f059d17404", + "state": { + "depositToken": 0, + "blockNumber": 45597013, + "lastRebalancePrice": "1229477977411068407", + "state": "2", + "currentTick": "-1951", + "currentPrice": "1215420667969068286", + "twapSlow": "1217975605372443230", + "twapFast": "1215420667969068286", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "295977072473008471098587", + "usedToken1": "88571137423159674533369", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2940", + "topTick": "-1980" + } + } + }, + { + "transactionHash": "0xabd4f831b06cea0456a2188f5516eb457331b4db972d71349888b12fbc8d7c6c", + "state": { + "depositToken": 0, + "blockNumber": 45599658, + "lastRebalancePrice": "1215420667969068286", + "state": "2", + "currentTick": "-2077", + "currentPrice": "1230831079602012603", + "twapSlow": "1229232118695008218", + "twapFast": "1229477977411068407", + "depositTokenBalance": "1299137538268335418396", + "pairedTokenBalance": "0", + "usedToken0": "308907964754717212382455", + "usedToken1": "79169512470518865826589", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2100", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3060", + "topTick": "-2100" + } + } + }, + { + "transactionHash": "0x9b6c368b82aa88c103a6fb19781d9d37c63e924378f2c2593016eaf309f835f6", + "state": { + "depositToken": 0, + "blockNumber": 45602867, + "lastRebalancePrice": "1230831079602012603", + "state": "2", + "currentTick": "-2176", + "currentPrice": "1243076208424580834", + "twapSlow": "1239476689218495793", + "twapFast": "1242579102223974670", + "depositTokenBalance": "323655900058907829514", + "pairedTokenBalance": "0", + "usedToken0": "317371637855682292475895", + "usedToken1": "72507664904014024945454", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3180", + "topTick": "-2220" + } + } + }, + { + "transactionHash": "0x8e0860b85b4522d15d0d6c15a896c8f73eeabbf6b334f562d927fef3ed259fb4", + "state": { + "depositToken": 0, + "blockNumber": 45605330, + "lastRebalancePrice": "1243076208424580834", + "state": "2", + "currentTick": "-2022", + "currentPrice": "1224080427500868927", + "twapSlow": "1225672687189528047", + "twapFast": "1224080427500868927", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "315030776677734152052226", + "usedToken1": "74481055027831507635523", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-3000", + "topTick": "-2040" + } + } + }, + { + "transactionHash": "0x60afd3fd2424f526521159f5f477ad417eb587172c3ce5740ab0b667c1d09e18", + "state": { + "depositToken": 0, + "blockNumber": 45608775, + "lastRebalancePrice": "1224080427500868927", + "state": "2", + "currentTick": "-1915", + "currentPrice": "1211053238022728524", + "twapSlow": "1221879174514178992", + "twapFast": "1212022419775880813", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313346440081829420244953", + "usedToken1": "75860793788171200600962", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2880", + "topTick": "-1920" + } + } + }, + { + "transactionHash": "0x5b3fc815a5914d9e8ede4a28518fc4b1be0f24e103bbadb8d4845ec335a05d9f", + "state": { + "depositToken": 0, + "blockNumber": 45616033, + "lastRebalancePrice": "1211053238022728524", + "state": "2", + "currentTick": "-1791", + "currentPrice": "1196129641547745418", + "twapSlow": "1202605887933938999", + "twapFast": "1197326309591192539", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "311435653101951544564952", + "usedToken1": "77492842601492067117248", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2760", + "topTick": "-1800" + } + } + }, + { + "transactionHash": "0x7cce1ff41947a692d52577516bd23780ee04bce386a8281186f1e84c8438e467", + "state": { + "depositToken": 0, + "blockNumber": 45621319, + "lastRebalancePrice": "1196129641547745418", + "state": "2", + "currentTick": "-1646", + "currentPrice": "1178911753965902191", + "twapSlow": "1199963195140826995", + "twapFast": "1183399916334610614", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "299888809766538597343184", + "usedToken1": "77010419876319150660154", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2640", + "topTick": "-1680" + } + } + }, + { + "transactionHash": "0x4b7d84c99ec6892cc08a3e01d86ed2e3553f0201690a83d9e3b9a38707a62040", + "state": { + "depositToken": 0, + "blockNumber": 45623794, + "lastRebalancePrice": "1178911753965902191", + "state": "2", + "currentTick": "-1542", + "currentPrice": "1166715213477846410", + "twapSlow": "1175733144212109503", + "twapFast": "1166715213477846410", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "298273124064200505391428", + "usedToken1": "78297829967348301068745", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2520", + "topTick": "-1560" + } + } + }, + { + "transactionHash": "0xc7ab978293f754b220d2489f06c52a9198702145d0da63438afe453b8e36bd09", + "state": { + "depositToken": 0, + "blockNumber": 45630821, + "lastRebalancePrice": "1166715213477846410", + "state": "2", + "currentTick": "-1645", + "currentPrice": "1178793874578444346", + "twapSlow": "1175850717526530714", + "twapFast": "1177733490354124653", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "306748702441290451941528", + "usedToken1": "71075592788894160849557", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2640", + "topTick": "-1680" + } + } + }, + { + "transactionHash": "0xb1f9610d73288cea08a120d347d3571f4069e3f16846c02115803fd277f22ac1", + "state": { + "depositToken": 0, + "blockNumber": 45635428, + "lastRebalancePrice": "1178793874578444346", + "state": "2", + "currentTick": "-1839", + "currentPrice": "1201884576881084322", + "twapSlow": "1189450368930754636", + "twapFast": "1194814688045632939", + "depositTokenBalance": "113786116322455880397", + "pairedTokenBalance": "1", + "usedToken0": "321611152157640005217585", + "usedToken1": "58701647905796484013667", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2160", + "topTick": "360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2160" + } + } + }, + { + "transactionHash": "0x9c408358f339f2fc0d20f97d47dc7160984c650c0e1d44527f9c44feab0c4137", + "state": { + "depositToken": 0, + "blockNumber": 45645003, + "lastRebalancePrice": "1201884576881084322", + "state": "1", + "currentTick": "-1668", + "currentPrice": "1181508084927165623", + "twapSlow": "1207184254781546488", + "twapFast": "1186243344714042177", + "depositTokenBalance": "86068072401278653754", + "pairedTokenBalance": "0", + "usedToken0": "295479770047240582651088", + "usedToken1": "80767358241685345573821", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2640", + "topTick": "-1680" + } + } + }, + { + "transactionHash": "0x938a0ee294fab95f88510b9e4117974a06d74c0024b95c087a9a061138103425", + "state": { + "depositToken": 0, + "blockNumber": 45647468, + "lastRebalancePrice": "1181508084927165623", + "state": "2", + "currentTick": "-1479", + "currentPrice": "1159388377733494116", + "twapSlow": "1163220487281019038", + "twapFast": "1155337813558310267", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "292646554811807372409820", + "usedToken1": "83123023161918179569452", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2460", + "topTick": "-1500" + } + } + }, + { + "transactionHash": "0x6a48bcf2d9dd696fd265135e4ddcc2d299e5afc4bf9f6c90b7e837987a60d8e7", + "state": { + "depositToken": 0, + "blockNumber": 45650239, + "lastRebalancePrice": "1159388377733494116", + "state": "2", + "currentTick": "-1682", + "currentPrice": "1183163271848608174", + "twapSlow": "1155915598010424734", + "twapFast": "1177262514707781490", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "311634169095175535400123", + "usedToken1": "66924655930386381751414", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2640", + "topTick": "-1740" + } + } + }, + { + "transactionHash": "0xde39e967711695067ddb97b068995f2ebc5e44b22e3031bed97ec57a05068f1d", + "state": { + "depositToken": 0, + "blockNumber": 45653974, + "lastRebalancePrice": "1183163271848608174", + "state": "2", + "currentTick": "-1746", + "currentPrice": "1190759418730579946", + "twapSlow": "1181862572799067828", + "twapFast": "1188261572497932734", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313008863070408078356423", + "usedToken1": "65767308536821174662261", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2760", + "topTick": "-1800" + } + } + }, + { + "transactionHash": "0x7023dc66a8eebf8353fdc3e671d0a62e3d83a5d58f8a6895bfb0b2c5ab83c812", + "state": { + "depositToken": 0, + "blockNumber": 45656438, + "lastRebalancePrice": "1190759418730579946", + "state": "2", + "currentTick": "-1725", + "currentPrice": "1188261572497932734", + "twapSlow": "1188261572497932734", + "twapFast": "1188261572497932734", + "depositTokenBalance": "25000591612023158291148", + "pairedTokenBalance": "0", + "usedToken0": "337684174106279768187309", + "usedToken1": "66048351265783860240338", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-2100", + "topTick": "480" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-2100" + } + } + }, + { + "transactionHash": "0x6fc5b7e88704bb4b582a5e87987103113af43867e987568bfad1a7a7facb1113", + "state": { + "depositToken": 0, + "blockNumber": 45661627, + "lastRebalancePrice": "1188261572497932734", + "state": "1", + "currentTick": "-1609", + "currentPrice": "1174558057462549460", + "twapSlow": "1178204654418986776", + "twapFast": "1175145453958832648", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "319008227927962162328136", + "usedToken1": "81850440104803737979019", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2580", + "topTick": "-1620" + } + } + }, + { + "transactionHash": "0x052a671e83ba30444af0d93fcd2d799f544fcf98893552caaafa650274d283e4", + "state": { + "depositToken": 0, + "blockNumber": 45679149, + "lastRebalancePrice": "1174558057462549460", + "state": "2", + "currentTick": "-1493", + "currentPrice": "1161012576927878192", + "twapSlow": "1163918594079726896", + "twapFast": "1161709358649143452", + "depositTokenBalance": "3000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "317194255269324323637027", + "usedToken1": "83472900293572467953882", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2460", + "topTick": "-1500" + } + } + }, + { + "transactionHash": "0x054a78ab3322009024388c11b17318878dfb338b374fe7727d2e4ebf6b61f99c", + "state": { + "depositToken": 0, + "blockNumber": 45681614, + "lastRebalancePrice": "1161012576927878192", + "state": "2", + "currentTick": "-1350", + "currentPrice": "1144529059269093488", + "twapSlow": "1144529059269093488", + "twapFast": "1144529059269093488", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "314905282521874410036222", + "usedToken1": "85391982592530273910833", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2340", + "topTick": "-1380" + } + } + }, + { + "transactionHash": "0x44c2a4d8fd79dcf3606e6c4e7aae65f3b29155dd9567d513e9e9e1599135224f", + "state": { + "depositToken": 0, + "blockNumber": 45684077, + "lastRebalancePrice": "1144529059269093488", + "state": "2", + "currentTick": "-1671", + "currentPrice": "1181862572799067828", + "twapSlow": "1180327226411837842", + "twapFast": "1181862572799067828", + "depositTokenBalance": "118020191397028972194", + "pairedTokenBalance": "0", + "usedToken0": "345951865746455725611107", + "usedToken1": "58867402909903674905661", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1980", + "topTick": "540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1980" + } + } + }, + { + "transactionHash": "0x2b6c4e5387dbfe34853956e986d56ae80b0dd2646f696228abf782a1c7606a2e", + "state": { + "depositToken": 0, + "blockNumber": 45689671, + "lastRebalancePrice": "1181862572799067828", + "state": "1", + "currentTick": "-1488", + "currentPrice": "1160432244750673478", + "twapSlow": "1164267804576672556", + "twapFast": "1161593199329210531", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "315935597808172983105812", + "usedToken1": "84463536182364856804004", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2460", + "topTick": "-1500" + } + } + }, + { + "transactionHash": "0xa112f0e99e910d69d4ab1b94fa6c40832469fa02826816a4642f58b6c72dce9b", + "state": { + "depositToken": 0, + "blockNumber": 45692135, + "lastRebalancePrice": "1160432244750673478", + "state": "2", + "currentTick": "-1297", + "currentPrice": "1138479403481075094", + "twapSlow": "1149575829548470580", + "twapFast": "1138479403481075094", + "depositTokenBalance": "246330307143220980227", + "pairedTokenBalance": "0", + "usedToken0": "313173219770619785499424", + "usedToken1": "87098018992166518303634", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2280", + "topTick": "-1320" + } + } + }, + { + "transactionHash": "0x933218059e1109ae7e413bc3a4919fc70dcdce1b0660cc510111914badd0e586", + "state": { + "depositToken": 0, + "blockNumber": 45705530, + "lastRebalancePrice": "1138479403481075094", + "state": "2", + "currentTick": "-1408", + "currentPrice": "1151186282242404025", + "twapSlow": "1143956966378767324", + "twapFast": "1149920736785759583", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "316180457612731870883971", + "usedToken1": "77030381423925016813229", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2400", + "topTick": "-1440" + } + } + }, + { + "transactionHash": "0xaf291968227cbcf02e2a8e91d8ebd13cb7f5834e79df21c163deca0047206852", + "state": { + "depositToken": 0, + "blockNumber": 45711839, + "lastRebalancePrice": "1151186282242404025", + "state": "2", + "currentTick": "-1292", + "currentPrice": "1137910334511406268", + "twapSlow": "1143042212492935112", + "twapFast": "1138820981457640001", + "depositTokenBalance": "65160456154297468806", + "pairedTokenBalance": "0", + "usedToken0": "314399758446946632833158", + "usedToken1": "78617401350446513482314", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2280", + "topTick": "-1320" + } + } + }, + { + "transactionHash": "0x8b3a0a4f5575154277b1d06dbcbac0db2e7477c4e1c953b4fec86d8da281a549", + "state": { + "depositToken": 0, + "blockNumber": 45714304, + "lastRebalancePrice": "1137910334511406268", + "state": "2", + "currentTick": "-1013", + "currentPrice": "1106602969958779466", + "twapSlow": "1106602969958779466", + "twapFast": "1106602969958779466", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "310046140489980843630994", + "usedToken1": "82497281981694240665393", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1980", + "topTick": "-1020" + } + } + }, + { + "transactionHash": "0x500208aa118208fa8210e0487fb2b2617203099e1883292d379e86ef69352aff", + "state": { + "depositToken": 0, + "blockNumber": 45716768, + "lastRebalancePrice": "1106602969958779466", + "state": "2", + "currentTick": "-1294", + "currentPrice": "1138137927957411894", + "twapSlow": "1137910334511406268", + "twapFast": "1138137927957411894", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "336922090900325113663110", + "usedToken1": "58555024465307588412861", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1620", + "topTick": "900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1620" + } + } + }, + { + "transactionHash": "0x750c88b345b802afc86bb05097b33d6609498b7dc743ced0a3689795a7ed4004", + "state": { + "depositToken": 0, + "blockNumber": 45718188, + "lastRebalancePrice": "1138137927957411894", + "state": "1", + "currentTick": "-1044", + "currentPrice": "1110038589847126148", + "twapSlow": "1123101658146196135", + "twapFast": "1111704813777635288", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "296755294567424972126093", + "usedToken1": "94292499544988215594262", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1080" + } + } + }, + { + "transactionHash": "0xb2c404b8cc602c521940d2cb9e8ccd4923b5e9a2059821e3e9a3ae05f9af2d16", + "state": { + "depositToken": 0, + "blockNumber": 45720652, + "lastRebalancePrice": "1110038589847126148", + "state": "3", + "currentTick": "-798", + "currentPrice": "1083066110771392485", + "twapSlow": "1079929925523247271", + "twapFast": "1083066110771392485", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "293129070708347803222690", + "usedToken1": "97599705721506615097178", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1800", + "topTick": "-840" + } + } + }, + { + "transactionHash": "0x6a466b627fe7461a10110c24a76cf424281169480f7fa231c605d8647faf0644", + "state": { + "depositToken": 0, + "blockNumber": 45723117, + "lastRebalancePrice": "1083066110771392485", + "state": "2", + "currentTick": "-547", + "currentPrice": "1056220811455365848", + "twapSlow": "1067368998137025404", + "twapFast": "1056220811455365848", + "depositTokenBalance": "29831463303365483336", + "pairedTokenBalance": "0", + "usedToken0": "289512328184647354029707", + "usedToken1": "101065439910057880423344", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1560", + "topTick": "-600" + } + } + }, + { + "transactionHash": "0x8cb6d4cc77b9fe6df0a04a9ef292ebc182020c2c010adcfe7498663b42b496a0", + "state": { + "depositToken": 0, + "blockNumber": 45725589, + "lastRebalancePrice": "1056220811455365848", + "state": "2", + "currentTick": "-316", + "currentPrice": "1032102950278141529", + "twapSlow": "1037794870345940160", + "twapFast": "1032102950278141529", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "284223554139481967295081", + "usedToken1": "103502654689023529388828", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1320", + "topTick": "-360" + } + } + }, + { + "transactionHash": "0xa3537646a7208be9e4e5cef1b3f0da2d8f50662ea71ec96ea14403f2b23ff9d8", + "state": { + "depositToken": 0, + "blockNumber": 45728069, + "lastRebalancePrice": "1032102950278141529", + "state": "2", + "currentTick": "76", + "currentPrice": "992429184074010024", + "twapSlow": "1008031682318398700", + "twapFast": "993521402176326245", + "depositTokenBalance": "1132009947649640497966", + "pairedTokenBalance": "0", + "usedToken0": "272336837151654925653026", + "usedToken1": "106043896492518929887490", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "60", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-900", + "topTick": "60" + } + } + }, + { + "transactionHash": "0xbe61231030827110667509a424718b12600b1dda537ae9c38daad4540fc42964", + "state": { + "depositToken": 0, + "blockNumber": 45730533, + "lastRebalancePrice": "992429184074010024", + "state": "2", + "currentTick": "256", + "currentPrice": "974726149167296094", + "twapSlow": "974628686298666228", + "twapFast": "974726149167296094", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "269896231440886562804404", + "usedToken1": "108504643181395824871137", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-720", + "topTick": "240" + } + } + }, + { + "transactionHash": "0x57707c45036128ab224188923795a8339af967f67753473e46c1c9e39e6a2288", + "state": { + "depositToken": 0, + "blockNumber": 45732998, + "lastRebalancePrice": "974726149167296094", + "state": "2", + "currentTick": "83", + "currentPrice": "991734761441986542", + "twapSlow": "985999634521917823", + "twapFast": "988467593876173156", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "287861998978379000674280", + "usedToken1": "90244069878216147441311", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "60", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-900", + "topTick": "60" + } + } + }, + { + "transactionHash": "0x273f689b395ebce1f1a3aceb2d583d5f5fdcddb89dadadf82c5382fc564a20cc", + "state": { + "depositToken": 0, + "blockNumber": 45737068, + "lastRebalancePrice": "991734761441986542", + "state": "2", + "currentTick": "267", + "currentPrice": "973654593443796381", + "twapSlow": "985901044417476075", + "twapFast": "979219992681371921", + "depositTokenBalance": "109313182148367209964", + "pairedTokenBalance": "0", + "usedToken0": "285423643859339028073731", + "usedToken1": "92915931357388771994546", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-720", + "topTick": "240" + } + } + }, + { + "transactionHash": "0x07c09d5d7d2966b8d663ee106eaa622b1b950e8babd30accb9c38f2cd16ff077", + "state": { + "depositToken": 0, + "blockNumber": 45739846, + "lastRebalancePrice": "973654593443796381", + "state": "2", + "currentTick": "139", + "currentPrice": "986196844308818551", + "twapSlow": "979611739435561009", + "twapFast": "984817203681437127", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "295428692998817707600269", + "usedToken1": "82584610761636308939728", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-840", + "topTick": "120" + } + } + }, + { + "transactionHash": "0x6d2263a60172ef84d11cefcd61249952d0e593773a85fbe3cff662faa8b0b9cb", + "state": { + "depositToken": 0, + "blockNumber": 45742310, + "lastRebalancePrice": "986196844308818551", + "state": "2", + "currentTick": "-298", + "currentPrice": "1030246928687705929", + "twapSlow": "1023981863545371035", + "twapFast": "1030246928687705929", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "332319638714254228876357", + "usedToken1": "46013575809289576509029", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-480", + "topTick": "1920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-480" + } + } + }, + { + "transactionHash": "0x80dad6f90f986368e30288d6dc350956e8f164ba8997f49ee6e1985aa4e7c52a", + "state": { + "depositToken": 0, + "blockNumber": 45746650, + "lastRebalancePrice": "1030246928687705929", + "state": "1", + "currentTick": "-462", + "currentPrice": "1047281427720390341", + "twapSlow": "1041537477402841143", + "twapFast": "1044144448105634751", + "depositTokenBalance": "43350000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "358538264920103595468112", + "usedToken1": "20884983305704729193009", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-420" + }, + "limitPosition": { + "bottomTick": "-420", + "topTick": "1800" + } + } + }, + { + "transactionHash": "0xd57675f84812f1ed2cd71bddf3c90ee3060cbab7281d270c452ea20bc271833d", + "state": { + "depositToken": 0, + "blockNumber": 45750652, + "lastRebalancePrice": "1047281427720390341", + "state": "0", + "currentTick": "-605", + "currentPrice": "1062364384127430406", + "twapSlow": "1051478732583126627", + "twapFast": "1058546938737995068", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "358620600677810778715894", + "usedToken1": "20736476432912601835412", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-600" + }, + "limitPosition": { + "bottomTick": "-600", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x842536cd1eb4f5bed591b28a623f5f1cc7b6375df610c1e242bc5945ba77ac96", + "state": { + "depositToken": 0, + "blockNumber": 45753116, + "lastRebalancePrice": "1062364384127430406", + "state": "0", + "currentTick": "-512", + "currentPrice": "1052530684607338948", + "twapSlow": "1053373003922565596", + "twapFast": "1052530684607338948", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "343886809200347857362267", + "usedToken1": "34673930472898844768515", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-660", + "topTick": "1680" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-660" + } + } + }, + { + "transactionHash": "0x59d6d2f12078175cd86eb15c43fd8d2b83b0faf93f741b982059dd602dbab9d2", + "state": { + "depositToken": 0, + "blockNumber": 45755623, + "lastRebalancePrice": "1052530684607338948", + "state": "1", + "currentTick": "-577", + "currentPrice": "1059394072741414350", + "twapSlow": "1051899387169089853", + "twapFast": "1058970421030540884", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "354638547885242219351396", + "usedToken1": "24491123252039338131035", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-540" + }, + "limitPosition": { + "bottomTick": "-540", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x555b1afcd9f40bf157574db83dcd1b995e699cccad5c6b7a71e7961edbc31e72", + "state": { + "depositToken": 0, + "blockNumber": 45758778, + "lastRebalancePrice": "1059394072741414350", + "state": "0", + "currentTick": "-466", + "currentPrice": "1047700403132553391", + "twapSlow": "1054743210759947999", + "twapFast": "1049377981604952188", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "341984280285835916879566", + "usedToken1": "36524919454707006249044", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-600", + "topTick": "1740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-600" + } + } + }, + { + "transactionHash": "0x1d7302dd39a4f56f8687e098f6d3348d416d1c866fc6ff3f6d5aaa6994021bae", + "state": { + "depositToken": 0, + "blockNumber": 45761245, + "lastRebalancePrice": "1047700403132553391", + "state": "1", + "currentTick": "-615", + "currentPrice": "1063427226703036732", + "twapSlow": "1062470620565843149", + "twapFast": "1063427226703036732", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "364157787090168052865780", + "usedToken1": "15501451794261135864695", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-600" + }, + "limitPosition": { + "bottomTick": "-600", + "topTick": "1620" + } + } + }, + { + "transactionHash": "0xfb4911210be6a2bb73b627cafda360358f050c9007dd200067c95fe884955cfd", + "state": { + "depositToken": 0, + "blockNumber": 45771291, + "lastRebalancePrice": "1063427226703036732", + "state": "0", + "currentTick": "-717", + "currentPrice": "1074329144595108561", + "twapSlow": "1067048851469052096", + "twapFast": "1072826211236908511", + "depositTokenBalance": "199917025382356373132", + "pairedTokenBalance": "0", + "usedToken0": "364445261640042256852488", + "usedToken1": "15451913854149237533797", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-660" + }, + "limitPosition": { + "bottomTick": "-660", + "topTick": "1560" + } + } + }, + { + "transactionHash": "0xf1f9c6b18937b8f03f4b819ba5bb81d14c9e159edc36ee280e91440a0e3e399c", + "state": { + "depositToken": 0, + "blockNumber": 45775441, + "lastRebalancePrice": "1074329144595108561", + "state": "0", + "currentTick": "-611", + "currentPrice": "1063001962133813364", + "twapSlow": "1067048851469052096", + "twapFast": "1063852661403605364", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "355693551484193583635571", + "usedToken1": "23467178873215724915811", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-600" + }, + "limitPosition": { + "bottomTick": "-600", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0xa36bbdf2bda9a9ac48242cb79bd824576408eae090f1ba1f304586d82e8dd21d", + "state": { + "depositToken": 0, + "blockNumber": 45782862, + "lastRebalancePrice": "1063001962133813364", + "state": "0", + "currentTick": "-551", + "currentPrice": "1056643363157421670", + "twapSlow": "1056643363157421670", + "twapFast": "1056643363157421670", + "depositTokenBalance": "13498608332502105790941", + "pairedTokenBalance": "0", + "usedToken0": "359944231177635603973708", + "usedToken1": "31165726893379763815589", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-540" + }, + "limitPosition": { + "bottomTick": "-540", + "topTick": "1740" + } + } + }, + { + "transactionHash": "0x0149a68e51277aa4f0db3278d34bc91a0052fcad7574a52136ee44998f6d6946", + "state": { + "depositToken": 0, + "blockNumber": 45785328, + "lastRebalancePrice": "1056643363157421670", + "state": "0", + "currentTick": "-335", + "currentPrice": "1034065711780222896", + "twapSlow": "1036653980636468573", + "twapFast": "1034065711780222896", + "depositTokenBalance": "1668621755736099022245", + "pairedTokenBalance": "0", + "usedToken0": "327453758053165497682750", + "usedToken1": "63802798193795309040560", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-660", + "topTick": "1860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-660" + } + } + }, + { + "transactionHash": "0x7da9482319565d2d35d20a2e8a712c17b71dfdd3ede60c2e33c07b7aed54a552", + "state": { + "depositToken": 0, + "blockNumber": 45788982, + "lastRebalancePrice": "1034065711780222896", + "state": "1", + "currentTick": "-586", + "currentPrice": "1060347908877750261", + "twapSlow": "1033238831350401189", + "twapFast": "1058335261102421973", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "365635146958630189279383", + "usedToken1": "25700232490832082298246", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-540" + }, + "limitPosition": { + "bottomTick": "-540", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x5c5785cb3dc592cca2b66e428f28d886e758e7be6593bcef9ef609e8db693ac3", + "state": { + "depositToken": 0, + "blockNumber": 45791447, + "lastRebalancePrice": "1060347908877750261", + "state": "0", + "currentTick": "-969", + "currentPrice": "1101744855481849335", + "twapSlow": "1096908068686943984", + "twapFast": "1101744855481849335", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "366161543451153443400014", + "usedToken1": "25196625702182655699145", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-960" + }, + "limitPosition": { + "bottomTick": "-960", + "topTick": "1320" + } + } + }, + { + "transactionHash": "0x69b5aceac356cb4350534f644e589a03ffce9ec27b0a8d9d87af9536fe9a0ef2", + "state": { + "depositToken": 0, + "blockNumber": 45793912, + "lastRebalancePrice": "1101744855481849335", + "state": "0", + "currentTick": "-960", + "currentPrice": "1100753780715367258", + "twapSlow": "1093731801911190746", + "twapFast": "1100753780715367258", + "depositTokenBalance": "5590000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "371637307108611300599760", + "usedToken1": "25464575391878703636302", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-960" + }, + "limitPosition": { + "bottomTick": "-900", + "topTick": "1320" + } + } + }, + { + "transactionHash": "0x5fe130826f24130f5c7a4e9704ee22f5b564fd47b654e4ddca7e46c4e266ac86", + "state": { + "depositToken": 0, + "blockNumber": 45796377, + "lastRebalancePrice": "1100753780715367258", + "state": "0", + "currentTick": "-1138", + "currentPrice": "1120521621511580684", + "twapSlow": "1117612194658373003", + "twapFast": "1120521621511580684", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "370398582441667131600330", + "usedToken1": "25135878815646474656262", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-1080" + }, + "limitPosition": { + "bottomTick": "-1080", + "topTick": "1140" + } + } + }, + { + "transactionHash": "0xcb9f895e5f9d2c5461f7489a2c3f513dec01654c18aa46a871c52d06ea3666b5", + "state": { + "depositToken": 0, + "blockNumber": 45798842, + "lastRebalancePrice": "1120521621511580684", + "state": "0", + "currentTick": "-1259", + "currentPrice": "1134161606643570001", + "twapSlow": "1134161606643570001", + "twapFast": "1134161606643570001", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "370389915022799369985036", + "usedToken1": "24822109375220386932074", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-1200" + }, + "limitPosition": { + "bottomTick": "-1200", + "topTick": "1020" + } + } + }, + { + "transactionHash": "0x4b7e4f240aca22fe1bc3e9a56e5314adef698dd3ce4ca8e183c3f807dc0b496c", + "state": { + "depositToken": 0, + "blockNumber": 45802277, + "lastRebalancePrice": "1134161606643570001", + "state": "0", + "currentTick": "-1112", + "currentPrice": "1117612194658373003", + "twapSlow": "1130764390054306449", + "twapFast": "1121530494452862787", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "354802393960946757787123", + "usedToken1": "38707632475434680708770", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1260", + "topTick": "1080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1260" + } + } + }, + { + "transactionHash": "0xb41fde921df0f2ef81697f6a3c70627d853ae52394fe892cbfe713f57fa0f5fb", + "state": { + "depositToken": 0, + "blockNumber": 45819142, + "lastRebalancePrice": "1117612194658373003", + "state": "1", + "currentTick": "-783", + "currentPrice": "1081442810548414659", + "twapSlow": "1090673788979843281", + "twapFast": "1085559904902496441", + "depositTokenBalance": "2997016488839200377854", + "pairedTokenBalance": "1", + "usedToken0": "296140710588456640845037", + "usedToken1": "88025248619554502064364", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1740", + "topTick": "-840" + } + } + }, + { + "transactionHash": "0x3dfbf1225b7225bafde4d0a3a45c2d83b449c45a0078a53b39c43a13a7614852", + "state": { + "depositToken": 0, + "blockNumber": 45822584, + "lastRebalancePrice": "1081442810548414659", + "state": "2", + "currentTick": "-1010", + "currentPrice": "1106271055452905659", + "twapSlow": "1088168247017927188", + "twapFast": "1100973942479048139", + "depositTokenBalance": "90821199971592909302", + "pairedTokenBalance": "0", + "usedToken0": "315250822710951479057786", + "usedToken1": "70277035165323607078282", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1380", + "topTick": "1200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-1380" + } + } + }, + { + "transactionHash": "0xc89c533b5a737255f17bcf12d020f3caae7d05fde2f2ffcb36dfadf25b6a884e", + "state": { + "depositToken": 0, + "blockNumber": 45823320, + "lastRebalancePrice": "1106271055452905659", + "state": "1", + "currentTick": "-839", + "currentPrice": "1087515574524124592", + "twapSlow": "1098554583042689454", + "twapFast": "1102847096254748673", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "289485005970127315916000", + "usedToken1": "93730491002305268915784", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-840" + } + } + }, + { + "transactionHash": "0x4ee63e8dac9f83747b3eb8c6877d7de00a202969b5d2ae5ffdc7504f7063eec9", + "state": { + "depositToken": 0, + "blockNumber": 45825785, + "lastRebalancePrice": "1087515574524124592", + "state": "3", + "currentTick": "-947", + "currentPrice": "1099323801985735031", + "twapSlow": "1094388205073984023", + "twapFast": "1099323801985735031", + "depositTokenBalance": "400000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "290461939540020474540851", + "usedToken1": "93208096721537989797471", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1920", + "topTick": "-960" + } + } + }, + { + "transactionHash": "0x981093b068d2dc18794578b22d8675a6cfb50cf4095d7f2b4e0db30b5ae24399", + "state": { + "depositToken": 0, + "blockNumber": 45828539, + "lastRebalancePrice": "1099323801985735031", + "state": "2", + "currentTick": "-824", + "currentPrice": "1085885605441849897", + "twapSlow": "1095702193457107739", + "twapFast": "1087189385091828302", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "288674828462386910384961", + "usedToken1": "94838447924828633830487", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1800", + "topTick": "-840" + } + } + }, + { + "transactionHash": "0x9bce898737daf246aeaf5160ce75c9aaa400ae26404ec2c50fa6106887e58edc", + "state": { + "depositToken": 0, + "blockNumber": 45832205, + "lastRebalancePrice": "1085885605441849897", + "state": "2", + "currentTick": "-971", + "currentPrice": "1101965215470394260", + "twapSlow": "1087624326081577005", + "twapFast": "1098444738568832570", + "depositTokenBalance": "150000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "303418845795117725830989", + "usedToken1": "81509675304222257412508", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1980", + "topTick": "-1020" + } + } + }, + { + "transactionHash": "0x63f026cb497e3304bbf8ad80417056a45f6015660236003b20788b302fa3568c", + "state": { + "depositToken": 0, + "blockNumber": 45837761, + "lastRebalancePrice": "1101965215470394260", + "state": "2", + "currentTick": "-1102", + "currentPrice": "1116495196904626896", + "twapSlow": "1111815984259013052", + "twapFast": "1114041729945910239", + "depositTokenBalance": "50727646581933030326", + "pairedTokenBalance": "0", + "usedToken0": "312064940387788198025483", + "usedToken1": "73834115261794807640190", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2100", + "topTick": "-1140" + } + } + }, + { + "transactionHash": "0xf35d6053c6798bf81ce182c497ebad00e187a5e260af8ab9ca0ed84f8e9922b9", + "state": { + "depositToken": 0, + "blockNumber": 45843903, + "lastRebalancePrice": "1116495196904626896", + "state": "2", + "currentTick": "-1148", + "currentPrice": "1121642647502308073", + "twapSlow": "1121642647502308073", + "twapFast": "1121642647502308073", + "depositTokenBalance": "8097404126892524367583", + "pairedTokenBalance": "0", + "usedToken0": "321066229431540261502709", + "usedToken1": "72656957028706386089734", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2160", + "topTick": "-1200" + } + } + }, + { + "transactionHash": "0xba6e9a4372f32bde60a5cdb1b4662b774097acbad034f5ddcb692d4bbbc52bcd", + "state": { + "depositToken": 0, + "blockNumber": 45863238, + "lastRebalancePrice": "1128505234139040601", + "state": "1", + "currentTick": "-1084", + "currentPrice": "1114487413484848678", + "twapSlow": "1125012459147276242", + "twapFast": "1116718507108959790", + "depositTokenBalance": "699434579041378201487", + "pairedTokenBalance": "0", + "usedToken0": "303249067677477334702113", + "usedToken1": "88091885017408057407001", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-1140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-2040", + "topTick": "-1140" + } + } + }, + { + "transactionHash": "0x275261956971fa4a492be1216cf6f334c22ec962a947ae6ff72317e5e28d3e51", + "state": { + "depositToken": 0, + "blockNumber": 45865703, + "lastRebalancePrice": "1114487413484848678", + "state": "2", + "currentTick": "-611", + "currentPrice": "1063001962133813364", + "twapSlow": "1076156965959356470", + "twapFast": "1067796009782689686", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "295907186432673215353435", + "usedToken1": "94400688479372698920457", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1620", + "topTick": "-660" + } + } + }, + { + "transactionHash": "0xb4e3034bc01187ed938b4d36b1c001a5eead079ddc5c1ae4a8b320df93edadd1", + "state": { + "depositToken": 0, + "blockNumber": 45868169, + "lastRebalancePrice": "1063001962133813364", + "state": "2", + "currentTick": "-371", + "currentPrice": "1037794870345940160", + "twapSlow": "1043518180648646537", + "twapFast": "1038417702958135730", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "292384584124016836587954", + "usedToken1": "97754700496709761526191", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1380", + "topTick": "-420" + } + } + }, + { + "transactionHash": "0xa149ded7360dd8625389937ed88da60b06e0cbba5072b7a89ed4c12d4259e213", + "state": { + "depositToken": 0, + "blockNumber": 45870635, + "lastRebalancePrice": "1037794870345940160", + "state": "2", + "currentTick": "-226", + "currentPrice": "1022856159030744724", + "twapSlow": "1023572373177663188", + "twapFast": "1024698865921887089", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "290270591322752775736664", + "usedToken1": "99806604212741690672940", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-240", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1200", + "topTick": "-240" + } + } + }, + { + "transactionHash": "0xc392cd2f2917537697fecbbe58077d4744787eb1c4543fd4fcc9c7e4bc7507d0", + "state": { + "depositToken": 0, + "blockNumber": 45878863, + "lastRebalancePrice": "1022856159030744724", + "state": "2", + "currentTick": "-123", + "currentPrice": "1012375333531027970", + "twapSlow": "1021629529095531808", + "twapFast": "1012780344411009996", + "depositTokenBalance": "1730474233076041839388", + "pairedTokenBalance": "0", + "usedToken0": "290508447963089700226413", + "usedToken1": "101292702643552136916590", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1080", + "topTick": "-180" + } + } + }, + { + "transactionHash": "0x430f75e8c872e177eb0cc4f5bbd75fe151ccb93df4e6d65c0721023e81291c76", + "state": { + "depositToken": 0, + "blockNumber": 45881328, + "lastRebalancePrice": "1012375333531027970", + "state": "2", + "currentTick": "-19", + "currentPrice": "1001901710969387716", + "twapSlow": "1008233298735179203", + "twapFast": "1001901710969387716", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "288997872946895333766456", + "usedToken1": "102773470078015055909374", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-60", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1020", + "topTick": "-60" + } + } + }, + { + "transactionHash": "0xc9203996c3d92b3edf96b482555798980dd415625fa5daa0076cb64abec98b71", + "state": { + "depositToken": 0, + "blockNumber": 45883792, + "lastRebalancePrice": "1001901710969387716", + "state": "2", + "currentTick": "122", + "currentPrice": "987874720842700433", + "twapSlow": "999500149965006998", + "twapFast": "989753373035707824", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "286974236379427704477480", + "usedToken1": "104807678034102236390195", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-840", + "topTick": "120" + } + } + }, + { + "transactionHash": "0x675ca689c7570464f4d85f5022cacd971e6f8d5a9c15e34d72900a2cb8a53bda", + "state": { + "depositToken": 0, + "blockNumber": 45887291, + "lastRebalancePrice": "987874720842700433", + "state": "2", + "currentTick": "-14", + "currentPrice": "1001400910364100120", + "twapSlow": "995012727929250903", + "twapFast": "999600099980003499", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "301610022563525828667045", + "usedToken1": "89824522254716169916681", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-60", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1020", + "topTick": "-60" + } + } + }, + { + "transactionHash": "0x45282d18b84e7572e8ef8904ee9523eb5536cb8075e09029c1018fe929119dfc", + "state": { + "depositToken": 0, + "blockNumber": 45889755, + "lastRebalancePrice": "1001400910364100120", + "state": "2", + "currentTick": "-272", + "currentPrice": "1027571899467194121", + "twapSlow": "1023879475597811254", + "twapFast": "1027571899467194121", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "320589432597296596790962", + "usedToken1": "68669739698104484841965", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-600", + "topTick": "1920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-600" + } + } + }, + { + "transactionHash": "0xdab2fc49ae2fbf4ca4c5069b38270f7eaa692ff3abd92d0feb195fb7382a6114", + "state": { + "depositToken": 0, + "blockNumber": 45892229, + "lastRebalancePrice": "1027571899467194121", + "state": "1", + "currentTick": "-575", + "currentPrice": "1059182225704451202", + "twapSlow": "1058229438158606112", + "twapFast": "1059182225704451202", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "367683928505290062542545", + "usedToken1": "23519884116482386948123", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "-540" + }, + "limitPosition": { + "bottomTick": "-540", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x198a02f1769c1515397715d98a9df06cbda99e00fa545af56d58ed246fbebfba", + "state": { + "depositToken": 0, + "blockNumber": 45894711, + "lastRebalancePrice": "1059182225704451202", + "state": "0", + "currentTick": "-432", + "currentPrice": "1044144448105634751", + "twapSlow": "1047386155863162380", + "twapFast": "1044144448105634751", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "347876400427341284188078", + "usedToken1": "41491723772035567919794", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-600", + "topTick": "1740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "-600" + } + } + }, + { + "transactionHash": "0x9400000f9d7971fb2401d87b7cc6b7e285ead99de7ead55f13d2b03ead34db34", + "state": { + "depositToken": 0, + "blockNumber": 45898435, + "lastRebalancePrice": "1044144448105634751", + "state": "1", + "currentTick": "-101", + "currentPrice": "1010150667059085856", + "twapSlow": "1034789774968464445", + "twapFast": "1012780344411009996", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "292393736577508557571731", + "usedToken1": "95437359065751060149183", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-1080", + "topTick": "-120" + } + } + }, + { + "transactionHash": "0x05ff4dfdbf45280257924cf2fdce419164353c51ded6709b43e6d4240c26205f", + "state": { + "depositToken": 0, + "blockNumber": 45898793, + "lastRebalancePrice": "1010150667059085856", + "state": "2", + "currentTick": "588", + "currentPrice": "942898101297872739", + "twapSlow": "1017246172255499050", + "twapFast": "965703666666473386", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "282481069808322588682947", + "usedToken1": "105594811887505064321293", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "540" + } + } + }, + { + "transactionHash": "0x74c53bdd4e4cf2c0bf926a7069e97da53622a4f3c5824d403a76883b838c7deb", + "state": { + "depositToken": 0, + "blockNumber": 45901257, + "lastRebalancePrice": "942898101297872739", + "state": "3", + "currentTick": "717", + "currentPrice": "930813433695758472", + "twapSlow": "930999605690631961", + "twapFast": "930813433695758472", + "depositTokenBalance": "1283169614993308772960", + "pairedTokenBalance": "0", + "usedToken0": "280772875150417188511429", + "usedToken1": "107097604255558192978573", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-240", + "topTick": "660" + } + } + }, + { + "transactionHash": "0xfc2a12bce9a677352b8daa705606b945ceddb0b8a2bacb248f392f12ed34d26a", + "state": { + "depositToken": 0, + "blockNumber": 45903721, + "lastRebalancePrice": "930813433695758472", + "state": "2", + "currentTick": "1092", + "currentPrice": "896555984204138344", + "twapSlow": "891103911027910754", + "twapFast": "896197451448127127", + "depositTokenBalance": "11898156031608074102724", + "pairedTokenBalance": "0", + "usedToken0": "285342069837339328197104", + "usedToken1": "112004325793888651486771", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "120", + "topTick": "1080" + } + } + }, + { + "transactionHash": "0x73962af6913f97d020b3fbbd59a8fe9c307128e7722b985a03bdd33f4e194ae0", + "state": { + "depositToken": 0, + "blockNumber": 45906196, + "lastRebalancePrice": "896555984204138344", + "state": "2", + "currentTick": "530", + "currentPrice": "948382525525126249", + "twapSlow": "940637972099180535", + "twapFast": "948382525525126249", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "343572568810894315170919", + "usedToken1": "46861124551044848450264", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "360", + "topTick": "2760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "360" + } + } + }, + { + "transactionHash": "0x67a2c412acacbf5833f91e871599eee5d0ffc35869bc9aa18cf87617c4c68e84", + "state": { + "depositToken": 0, + "blockNumber": 45911074, + "lastRebalancePrice": "958584190051406372", + "state": "1", + "currentTick": "275", + "currentPrice": "972876020167888556", + "twapSlow": "972876020167888556", + "twapFast": "972876020167888556", + "depositTokenBalance": "1503373567302483059789", + "pairedTokenBalance": "0", + "usedToken0": "373429517320678929163193", + "usedToken1": "17875222614720526571771", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "300" + }, + "limitPosition": { + "bottomTick": "300", + "topTick": "2520" + } + } + }, + { + "transactionHash": "0x33ef19b0a19acd3d66db3e9bf07b866ddb56e25c7c8ec3e6a1dfbc3437dc4886", + "state": { + "depositToken": 0, + "blockNumber": 45913624, + "lastRebalancePrice": "972876020167888556", + "state": "0", + "currentTick": "480", + "currentPrice": "953136074448848422", + "twapSlow": "971223618491668299", + "twapFast": "961464116357267493", + "depositTokenBalance": "347528694183167333047", + "pairedTokenBalance": "0", + "usedToken0": "341378057012213507578117", + "usedToken1": "50908516575055884478766", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "300", + "topTick": "2700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "300" + } + } + }, + { + "transactionHash": "0x397bd966730b90e25458ec0781cf3686b756a9514e6c7fd71d00547f32807b17", + "state": { + "depositToken": 0, + "blockNumber": 45914089, + "lastRebalancePrice": "953136074448848422", + "state": "1", + "currentTick": "821", + "currentPrice": "921183617305595567", + "twapSlow": "955808461436092878", + "twapFast": "925523153255272127", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "286420770420974638194038", + "usedToken1": "109562741073038587638123", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "780" + } + } + }, + { + "transactionHash": "0xe5239f24b9ec5fbf44a1c8adbdb4f1bbd0d7a91551a8df7f8971f215167fcc31", + "state": { + "depositToken": 0, + "blockNumber": 45916553, + "lastRebalancePrice": "921183617305595567", + "state": "3", + "currentTick": "1478", + "currentPrice": "862609992654153238", + "twapSlow": "867020319879525760", + "twapFast": "862609992654153238", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "277067389848753010398040", + "usedToken1": "120040968429705174898798", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "480", + "topTick": "1440" + } + } + }, + { + "transactionHash": "0x1bd09dac2aff1a2871028fda3b762148fae3d8c7904891382afdd0161b7eac50", + "state": { + "depositToken": 0, + "blockNumber": 45919017, + "lastRebalancePrice": "862609992654153238", + "state": "2", + "currentTick": "2173", + "currentPrice": "804697268937948301", + "twapSlow": "814492759335767978", + "twapFast": "804697268937948301", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "267577563316488835105790", + "usedToken1": "131233848435749554411546", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1200", + "topTick": "2160" + } + } + }, + { + "transactionHash": "0x86c92d0bc9735485cf0a56c719b2d55ca35d468ad1fe55b8a19dded44866fe94", + "state": { + "depositToken": 0, + "blockNumber": 45921481, + "lastRebalancePrice": "804697268937948301", + "state": "2", + "currentTick": "2049", + "currentPrice": "814737131599165982", + "twapSlow": "814492759335767978", + "twapFast": "814737131599165982", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "280225710952483466579600", + "usedToken1": "115621473396422873733529", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1080", + "topTick": "2040" + } + } + }, + { + "transactionHash": "0x5726dc3c2080416527b4c8dcb28fd5954cb3316fee4597485479f396ef085a34", + "state": { + "depositToken": 0, + "blockNumber": 45924765, + "lastRebalancePrice": "814737131599165982", + "state": "2", + "currentTick": "1841", + "currentPrice": "831860271133940782", + "twapSlow": "819394160325327096", + "twapFast": "825562410145041604", + "depositTokenBalance": "152152331756416087585", + "pairedTokenBalance": "1", + "usedToken0": "300657866984595383986116", + "usedToken1": "91210723786053840058826", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "840", + "topTick": "1800" + } + } + }, + { + "transactionHash": "0xb73a80ff031fb9080154f23feb7b97469438864ea8c9755ee9200167c8d40c7c", + "state": { + "depositToken": 0, + "blockNumber": 45930504, + "lastRebalancePrice": "863818431933038770", + "state": "1", + "currentTick": "1648", + "currentPrice": "848070287392280795", + "twapSlow": "852406276436422627", + "twapFast": "848070287392280795", + "depositTokenBalance": "10000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "299896747377005533681454", + "usedToken1": "89245481998029618067928", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1260", + "topTick": "3840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1260" + } + } + }, + { + "transactionHash": "0xe91509e00225c98cc34a058a06008eee9ddef09db2c215c40e3c62cd603d078b", + "state": { + "depositToken": 0, + "blockNumber": 45931374, + "lastRebalancePrice": "848070287392280795", + "state": "1", + "currentTick": "1815", + "currentPrice": "834025813548851097", + "twapSlow": "847137969560075729", + "twapFast": "837535912511969617", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "275871663494542352692636", + "usedToken1": "117438249836050957656093", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1800" + } + } + }, + { + "transactionHash": "0x2def662bfae6f79bcd24bb0f6e616db6ff477c41bbc0120376c8a42e197d49ca", + "state": { + "depositToken": 0, + "blockNumber": 45933845, + "lastRebalancePrice": "834025813548851097", + "state": "3", + "currentTick": "2032", + "currentPrice": "816123293319598746", + "twapSlow": "815633790683805961", + "twapFast": "815796925598280629", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "272899744838773196598159", + "usedToken1": "121074658442663379541622", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1020", + "topTick": "1980" + } + } + }, + { + "transactionHash": "0x97ef3072eab744ff20c89c8d8579464c08c3ef3ed95ebd1a98dcafb8fd8ec910", + "state": { + "depositToken": 0, + "blockNumber": 45936318, + "lastRebalancePrice": "816123293319598746", + "state": "2", + "currentTick": "2279", + "currentPrice": "796212948432242109", + "twapSlow": "807922342610166254", + "twapFast": "796212948432242109", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "269538966449436227104039", + "usedToken1": "125203880253514985589720", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1320", + "topTick": "2220" + } + } + }, + { + "transactionHash": "0xbb3435327b97e86471fe280310b504bf915f5a6c0761a988b1d7c803a20b62ef", + "state": { + "depositToken": 0, + "blockNumber": 45938782, + "lastRebalancePrice": "796212948432242109", + "state": "2", + "currentTick": "2378", + "currentPrice": "788369720432483308", + "twapSlow": "783967408088701153", + "twapFast": "787030697349871894", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "268207232212723889303584", + "usedToken1": "126884921031761297466909", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1380", + "topTick": "2340" + } + } + }, + { + "transactionHash": "0xbb71257a17f2e31cfa95d5e09dce8d2b71d5a7bb1ef910866bd05e1050f69db6", + "state": { + "depositToken": 0, + "blockNumber": 45941247, + "lastRebalancePrice": "788369720432483308", + "state": "2", + "currentTick": "2173", + "currentPrice": "804697268937948301", + "twapSlow": "797328371403731552", + "twapFast": "804455908031057287", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "286506615851722065756730", + "usedToken1": "103945777887249916035157", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1200", + "topTick": "2160" + } + } + }, + { + "transactionHash": "0x69d4f3e93da2f02f6265fb19fe167f8af2e34133132849eb84b76fd56958d6d5", + "state": { + "depositToken": 0, + "blockNumber": 45943711, + "lastRebalancePrice": "804697268937948301", + "state": "2", + "currentTick": "2314", + "currentPrice": "793431213073602441", + "twapSlow": "799563907358586965", + "twapFast": "793431213073602441", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "284496084405915906783291", + "usedToken1": "106462151264810427298710", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1320", + "topTick": "2280" + } + } + }, + { + "transactionHash": "0x2e41eed1261601b05109a74fffb54bc75cffbe77a43c26cdc63cbde9ff5fc1b7", + "state": { + "depositToken": 0, + "blockNumber": 45947226, + "lastRebalancePrice": "793431213073602441", + "state": "2", + "currentTick": "2463", + "currentPrice": "781697309342352893", + "twapSlow": "796372198984058042", + "twapFast": "785458287508305892", + "depositTokenBalance": "43954178097470899378", + "pairedTokenBalance": "0", + "usedToken0": "282401687840615257841677", + "usedToken1": "109100563766928502358721", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1500", + "topTick": "2460" + } + } + }, + { + "transactionHash": "0xf4ebb2f6978809dc63123c0f847b0dfa6bd91276cd75229322c6a0c55149975f", + "state": { + "depositToken": 0, + "blockNumber": 45950023, + "lastRebalancePrice": "781697309342352893", + "state": "2", + "currentTick": "2569", + "currentPrice": "773455488763463741", + "twapSlow": "774151877212306821", + "twapFast": "774151877212306821", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "280835250102258830273088", + "usedToken1": "111022729884998827846114", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1560", + "topTick": "2520" + } + } + }, + { + "transactionHash": "0x49f0c1f1291361b284bde387bb65f9514053ee4b39e03e6009798b8ecfb4e913", + "state": { + "depositToken": 0, + "blockNumber": 45954348, + "lastRebalancePrice": "773455488763463741", + "state": "2", + "currentTick": "2452", + "currentPrice": "782557606445155475", + "twapSlow": "780447656118183694", + "twapFast": "782088236174572368", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "277434072534823547133810", + "usedToken1": "98499662283788848374301", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1440", + "topTick": "2400" + } + } + }, + { + "transactionHash": "0xfc3a7d9dcd1cbaf21d8ad06bdccc93c63b732cd91bde34f6c8c2050eb593a2e3", + "state": { + "depositToken": 0, + "blockNumber": 45956812, + "lastRebalancePrice": "782557606445155475", + "state": "2", + "currentTick": "2338", + "currentPrice": "791529356394335554", + "twapSlow": "787503033838628214", + "twapFast": "791529356394335554", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "283123764129457598139351", + "usedToken1": "91181178750744746272333", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1380", + "topTick": "2280" + } + } + }, + { + "transactionHash": "0x876d7774ea5fc69b63f72b699969a894a34d1eb89d36e47cf2b0dc6db4cb657c", + "state": { + "depositToken": 0, + "blockNumber": 45959276, + "lastRebalancePrice": "791529356394335554", + "state": "2", + "currentTick": "2221", + "currentPrice": "800844169534950878", + "twapSlow": "799803800518511326", + "twapFast": "800443867548784892", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "285616650724634824210756", + "usedToken1": "83240543979482160996397", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1860", + "topTick": "4440" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1860" + } + } + }, + { + "transactionHash": "0x8fdd9088f9acb1ba336a0ca39f9c275f70d86150d4aef54fc274d4ca52112654", + "state": { + "depositToken": 0, + "blockNumber": 45965009, + "lastRebalancePrice": "800844169534950878", + "state": "1", + "currentTick": "1890", + "currentPrice": "827794328792712404", + "twapSlow": "815633790683805961", + "twapFast": "827049686267701820", + "depositTokenBalance": "1930955938945138668624", + "pairedTokenBalance": "0", + "usedToken0": "333424519312318110211860", + "usedToken1": "27665419555040909701161", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1920" + }, + "limitPosition": { + "bottomTick": "1920", + "topTick": "4140" + } + } + }, + { + "transactionHash": "0xe74f4f887842d2bedd664bd62e1f3347ee7b4a5a3ef1ee9cac6162e01fd8dabe", + "state": { + "depositToken": 0, + "blockNumber": 45967473, + "lastRebalancePrice": "827794328792712404", + "state": "0", + "currentTick": "1740", + "currentPrice": "840304207785902304", + "twapSlow": "831527610194880025", + "twapFast": "840304207785902304", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "333166451732060729088524", + "usedToken1": "27208877930230494760839", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1740" + }, + "limitPosition": { + "bottomTick": "1800", + "topTick": "4020" + } + } + }, + { + "transactionHash": "0x5a0cc51e625334e86951ba64e5295b624f4931524f3aa03adc3d7a919931f260", + "state": { + "depositToken": 0, + "blockNumber": 45973203, + "lastRebalancePrice": "840304207785902304", + "state": "0", + "currentTick": "1842", + "currentPrice": "831777093424598322", + "twapSlow": "838289996416522464", + "twapFast": "832942338575397916", + "depositTokenBalance": "27200000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "326407130070109415843450", + "usedToken1": "35352389963574599897218", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1860" + }, + "limitPosition": { + "bottomTick": "1860", + "topTick": "4080" + } + } + }, + { + "transactionHash": "0x36ef00317142225aa35113baef397e37f75d087fafbe8d8d9f62d4a84d8d85a9", + "state": { + "depositToken": 0, + "blockNumber": 45978474, + "lastRebalancePrice": "831777093424598322", + "state": "0", + "currentTick": "1716", + "currentPrice": "842323258825870940", + "twapSlow": "833275565490700242", + "twapFast": "840304207785902304", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "326692218035890923533133", + "usedToken1": "35130030403085995915523", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1740" + }, + "limitPosition": { + "bottomTick": "1740", + "topTick": "3960" + } + } + }, + { + "transactionHash": "0x96ce8d8f7129020704ed2f04a78c1510e9ff57a2fa5cff3008fa46f4fa2ad4db", + "state": { + "depositToken": 0, + "blockNumber": 45980939, + "lastRebalancePrice": "842323258825870940", + "state": "0", + "currentTick": "1776", + "currentPrice": "837284701981996674", + "twapSlow": "837452167295240093", + "twapFast": "837284701981996674", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "320943872646149483447958", + "usedToken1": "41983295282943327163396", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1620", + "topTick": "3960" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1620" + } + } + }, + { + "transactionHash": "0x27d498051dadcc0b1627243e8aa7ee694c788f36a2a087f5a56fcbadd3c073c5", + "state": { + "depositToken": 0, + "blockNumber": 45988417, + "lastRebalancePrice": "837284701981996674", + "state": "1", + "currentTick": "1702", + "currentPrice": "843503278209082690", + "twapSlow": "839800201678067948", + "twapFast": "843165961231259764", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "332430748125775095988352", + "usedToken1": "28313603386969226254366", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1740" + }, + "limitPosition": { + "bottomTick": "1740", + "topTick": "3960" + } + } + }, + { + "transactionHash": "0x4d23cfdcd4a20157fbf301864782b819b7e5160752c621822f369b2c8625de99", + "state": { + "depositToken": 0, + "blockNumber": 45994488, + "lastRebalancePrice": "843503278209082690", + "state": "0", + "currentTick": "1732", + "currentPrice": "840976686484372124", + "twapSlow": "840976686484372124", + "twapFast": "840976686484372124", + "depositTokenBalance": "10094000319984028280261", + "pairedTokenBalance": "0", + "usedToken0": "342532119911529295944008", + "usedToken1": "28406151894076331727175", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1740" + }, + "limitPosition": { + "bottomTick": "1740", + "topTick": "4020" + } + } + }, + { + "transactionHash": "0xcda5c8846a68092c12f979938685b355e81b6c5de09b66b9ee7ac907ecc86d98", + "state": { + "depositToken": 0, + "blockNumber": 46002046, + "lastRebalancePrice": "840976686484372124", + "state": "0", + "currentTick": "1811", + "currentPrice": "834359473919155637", + "twapSlow": "839128663744049780", + "twapFast": "835444792274326673", + "depositTokenBalance": "2060787717226958130538", + "pairedTokenBalance": "0", + "usedToken0": "333164810007810019374215", + "usedToken1": "41993477689586069013838", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1680", + "topTick": "4020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x30eaa6e8470f7845ae67f982f5a0170bf45a596a82cf10d014f2b55d3e63642e", + "state": { + "depositToken": 0, + "blockNumber": 46004511, + "lastRebalancePrice": "834359473919155637", + "state": "1", + "currentTick": "1806", + "currentPrice": "834776737100406619", + "twapSlow": "835194208954978717", + "twapFast": "834776737100406619", + "depositTokenBalance": "24197672589041268043274", + "pairedTokenBalance": "0", + "usedToken0": "358276912711326185404815", + "usedToken1": "40900240342098362329064", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1680", + "topTick": "4020" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x99b2c8eb76d20f72eb53aa7b430994bcc0866224f017a0533c64ee473a7e0419", + "state": { + "depositToken": 0, + "blockNumber": 46006976, + "lastRebalancePrice": "834776737100406619", + "state": "1", + "currentTick": "1849", + "currentPrice": "831195082286935450", + "twapSlow": "828871107336527764", + "twapFast": "831195082286935450", + "depositTokenBalance": "15199890231628390708977", + "pairedTokenBalance": "0", + "usedToken0": "365978351055720244957198", + "usedToken1": "49937444889489060731738", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1680", + "topTick": "4080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0x694af5cfa6e9e0e2654dee03de3b42e72b279c9f74bbf5ecfae746c17af06394", + "state": { + "depositToken": 0, + "blockNumber": 46015833, + "lastRebalancePrice": "831195082286935450", + "state": "1", + "currentTick": "1884", + "currentPrice": "828291129575694478", + "twapSlow": "830032281461298649", + "twapFast": "828539641764129365", + "depositTokenBalance": "4274432698655345269748", + "pairedTokenBalance": "0", + "usedToken0": "364333378998896873459172", + "usedToken1": "57239207055297402513775", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1680", + "topTick": "4080" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1680" + } + } + }, + { + "transactionHash": "0xdd2134b6f6cf202a5e518877763a69c762af25714111370c05cf93ae576f0601", + "state": { + "depositToken": 0, + "blockNumber": 46018381, + "lastRebalancePrice": "828291129575694478", + "state": "1", + "currentTick": "1984", + "currentPrice": "820049905129844058", + "twapSlow": "823913017735177398", + "twapFast": "821773733126574844", + "depositTokenBalance": "11370000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "357897333396737207689117", + "usedToken1": "78505608263743086616156", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1740", + "topTick": "4200" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1740" + } + } + }, + { + "transactionHash": "0xae588b2a886b714748e6d554686593a2caa19e3f6c5316599a2c7545dd12ccd2", + "state": { + "depositToken": 0, + "blockNumber": 46028927, + "lastRebalancePrice": "820049905129844058", + "state": "1", + "currentTick": "2219", + "currentPrice": "801004346377299563", + "twapSlow": "812215483145951291", + "twapFast": "802367143676925690", + "depositTokenBalance": "542663203004116324486", + "pairedTokenBalance": "0", + "usedToken0": "319477830964978276131437", + "usedToken1": "128656153554390501898098", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1260", + "topTick": "2160" + } + } + }, + { + "transactionHash": "0xc513198ca3fd1155b1aff90934355b48a59d524b1fb8a0c68ceac53b23a4327c", + "state": { + "depositToken": 0, + "blockNumber": 46031392, + "lastRebalancePrice": "801004346377299563", + "state": "2", + "currentTick": "2057", + "currentPrice": "814085635101512449", + "twapSlow": "812134269718979393", + "twapFast": "814085635101512449", + "depositTokenBalance": "355796516221951639165", + "pairedTokenBalance": "0", + "usedToken0": "331814295631210973521772", + "usedToken1": "111628655032541622318431", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1080", + "topTick": "2040" + } + } + }, + { + "transactionHash": "0xe42750e9274fd6ca21345b1118e7024f151bf44cb3e67021f364bad7781f6576", + "state": { + "depositToken": 0, + "blockNumber": 46033857, + "lastRebalancePrice": "814085635101512449", + "state": "2", + "currentTick": "2231", + "currentPrice": "800043765653580698", + "twapSlow": "803410847039612144", + "twapFast": "800043765653580698", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "328936761896971241121992", + "usedToken1": "115191162847314556987073", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2220", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1260", + "topTick": "2220" + } + } + }, + { + "transactionHash": "0xf2bfdb5311296fdae7deff99926442433c35ae6edc10ec7bbf0f46070dab4246", + "state": { + "depositToken": 0, + "blockNumber": 46036323, + "lastRebalancePrice": "800043765653580698", + "state": "2", + "currentTick": "2441", + "currentPrice": "783418850348076524", + "twapSlow": "782635862205799991", + "twapFast": "782401118397464798", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "325509100623317663292793", + "usedToken1": "119521009305573254804765", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1440", + "topTick": "2400" + } + } + }, + { + "transactionHash": "0xfb618fc1915909318c9200b8656c8302f1d51e8dedcb72c370e22a62e6a8caf2", + "state": { + "depositToken": 0, + "blockNumber": 46038796, + "lastRebalancePrice": "783418850348076524", + "state": "2", + "currentTick": "2146", + "currentPrice": "806872778406647139", + "twapSlow": "801885891842897254", + "twapFast": "806872778406647139", + "depositTokenBalance": "1", + "pairedTokenBalance": "0", + "usedToken0": "351628461138377267839246", + "usedToken1": "86723416206131937269972", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "1860", + "topTick": "4320" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "1860" + } + } + }, + { + "transactionHash": "0xc01238b000122ce1fae4f252e683c88a73e78d46c8652301f0f72791b06f0974", + "state": { + "depositToken": 0, + "blockNumber": 46056855, + "lastRebalancePrice": "806872778406647139", + "state": "1", + "currentTick": "2340", + "currentPrice": "791371074265771657", + "twapSlow": "801404928658933295", + "twapFast": "792321242033940414", + "depositTokenBalance": "4238105872802811031074", + "pairedTokenBalance": "0", + "usedToken0": "322943976454625223680637", + "usedToken1": "128333228791579267544085", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2340", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1380", + "topTick": "2280" + } + } + }, + { + "transactionHash": "0xa6ecfbabb48e3bcbcc426f2ef0d9f71f73fd3a74cb25fa7905b23a741a13896d", + "state": { + "depositToken": 0, + "blockNumber": 46059482, + "lastRebalancePrice": "791371074265771657", + "state": "2", + "currentTick": "2451", + "currentPrice": "782635862205799991", + "twapSlow": "785929680315264346", + "twapFast": "783575541952334643", + "depositTokenBalance": "9647740719702803206", + "pairedTokenBalance": "0", + "usedToken0": "320831620682480667357566", + "usedToken1": "130194024987749684812800", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1440", + "topTick": "2400" + } + } + }, + { + "transactionHash": "0xf01397f1a30dbaf3711477cc61fae6a169c4d7bb65dd6f9143d0ead6260d02c0", + "state": { + "depositToken": 0, + "blockNumber": 46061946, + "lastRebalancePrice": "782635862205799991", + "state": "2", + "currentTick": "2891", + "currentPrice": "748948133172413624", + "twapSlow": "759278809633615432", + "twapFast": "748948133172413624", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "313851872697268415176296", + "usedToken1": "139303242341515003028430", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1920", + "topTick": "2880" + } + } + }, + { + "transactionHash": "0x7e949f998a1904cc4b4c1810ea24565c21a6bec0e88178aca8f5c5daf24352c0", + "state": { + "depositToken": 0, + "blockNumber": 46064411, + "lastRebalancePrice": "748948133172413624", + "state": "2", + "currentTick": "2676", + "currentPrice": "765224043362771567", + "twapSlow": "762703091922670541", + "twapFast": "765224043362771567", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "336743428877627216700282", + "usedToken1": "109077906145242948421049", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2280", + "topTick": "4860" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2280" + } + } + }, + { + "transactionHash": "0x670b8fe0c35ca5e3a45c9dabf425d2b87bd7db97b1f4fb030afb8eb3b378659e", + "state": { + "depositToken": 0, + "blockNumber": 46102185, + "lastRebalancePrice": "765224043362771567", + "state": "1", + "currentTick": "2538", + "currentPrice": "775856800825770643", + "twapSlow": "776322431300304529", + "twapFast": "775856800825770643", + "depositTokenBalance": "4738840557972606572858", + "pairedTokenBalance": "1", + "usedToken0": "364056758134463985804835", + "usedToken1": "79895145276528376548330", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2280", + "topTick": "4740" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2280" + } + } + }, + { + "transactionHash": "0x6943b202185c40d1c95795d7b8520a082039f6c9b98dabfc442dceee7fce7c81", + "state": { + "depositToken": 0, + "blockNumber": 46113525, + "lastRebalancePrice": "775856800825770643", + "state": "1", + "currentTick": "2371", + "currentPrice": "788921744822023037", + "twapSlow": "787424291409487265", + "twapFast": "788921744822023037", + "depositTokenBalance": "10634438150156352905620", + "pairedTokenBalance": "0", + "usedToken0": "404297411762169132132676", + "usedToken1": "42468145975171354795926", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2280", + "topTick": "4560" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2280" + } + } + }, + { + "transactionHash": "0xef7549fb473e2b9d5fdf34b77956b750a62aa762f8c20247a54fb5172cc2496a", + "state": { + "depositToken": 0, + "blockNumber": 46117595, + "lastRebalancePrice": "788921744822023037", + "state": "1", + "currentTick": "2738", + "currentPrice": "760494567288935133", + "twapSlow": "773610187595771321", + "twapFast": "761483803629729065", + "depositTokenBalance": "106261301846637846528", + "pairedTokenBalance": "0", + "usedToken0": "333189629297439975983101", + "usedToken1": "134058000727772409021983", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2700", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "1740", + "topTick": "2700" + } + } + }, + { + "transactionHash": "0xb823a468eabaabb08382a9ed8f04b423d2936b3a6b00162ee7bd2f1f26d8a4e5", + "state": { + "depositToken": 0, + "blockNumber": 46120060, + "lastRebalancePrice": "760494567288935133", + "state": "2", + "currentTick": "3234", + "currentPrice": "723696024026378688", + "twapSlow": "732798541426043750", + "twapFast": "723696024026378688", + "depositTokenBalance": "689009530358141697480", + "pairedTokenBalance": "0", + "usedToken0": "325722386664948331232998", + "usedToken1": "144880027816728985610799", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2280", + "topTick": "3180" + } + } + }, + { + "transactionHash": "0x14c4a9a16886d7de2cf0015c3cfc953bf0c259e97a6e10600e6d57ebf76212c1", + "state": { + "depositToken": 0, + "blockNumber": 46120798, + "lastRebalancePrice": "723696024026378688", + "state": "2", + "currentTick": "3877", + "currentPrice": "678629051718421039", + "twapSlow": "719079389288974054", + "twapFast": "682508088116402484", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "315419641058715986401882", + "usedToken1": "159539992033092554302657", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3840" + } + } + }, + { + "transactionHash": "0xa092d1952e3a1873c77e3a45bc780e1e3c23a25910963b400d3d82b18beaf99a", + "state": { + "depositToken": 0, + "blockNumber": 46123263, + "lastRebalancePrice": "678629051718421039", + "state": "3", + "currentTick": "4047", + "currentPrice": "667190433480565960", + "twapSlow": "669730453109886193", + "twapFast": "667657606917347388", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "312749452477431233383759", + "usedToken1": "163508378769309479699077", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3060", + "topTick": "4020" + } + } + }, + { + "transactionHash": "0xa62390e8525fcb7e29a3f7039d742f0c3713d4ccabb127fe157aef350124f202", + "state": { + "depositToken": 0, + "blockNumber": 46125727, + "lastRebalancePrice": "667190433480565960", + "state": "2", + "currentTick": "4244", + "currentPrice": "654176045246070959", + "twapSlow": "656994917531583698", + "twapFast": "654176045246070959", + "depositTokenBalance": "123683526589450263346", + "pairedTokenBalance": "0", + "usedToken0": "309815729264312472005540", + "usedToken1": "168181943504949279932917", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3240", + "topTick": "4200" + } + } + }, + { + "transactionHash": "0x45d3353f13435e1f9a4df8bc6fcde5e4520ef1ab44886cd7722b01110d390d95", + "state": { + "depositToken": 0, + "blockNumber": 46128192, + "lastRebalancePrice": "654176045246070959", + "state": "2", + "currentTick": "4728", + "currentPrice": "623269442588617182", + "twapSlow": "626393437082680164", + "twapFast": "623269442588617182", + "depositTokenBalance": "121454226865283719023", + "pairedTokenBalance": "0", + "usedToken0": "302520896806036552408570", + "usedToken1": "179773354377387551952264", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3720", + "topTick": "4680" + } + } + }, + { + "transactionHash": "0xd224a470aba4eb25f2271deb6b7023e1a5a496043347bdbcd8f77c32f8454460", + "state": { + "depositToken": 0, + "blockNumber": 46130656, + "lastRebalancePrice": "623269442588617182", + "state": "2", + "currentTick": "4567", + "currentPrice": "633384784873043636", + "twapSlow": "633321452727770859", + "twapFast": "633638176792613548", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "316677306119162800954894", + "usedToken1": "157263591829325857348821", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3600", + "topTick": "4560" + } + } + }, + { + "transactionHash": "0xf44defd7163ba9cf9e707f46a0e1385200b66c06d0fa6e1cf2b670ce37b27a25", + "state": { + "depositToken": 0, + "blockNumber": 46133120, + "lastRebalancePrice": "633384784873043636", + "state": "2", + "currentTick": "4433", + "currentPrice": "641928831063995251", + "twapSlow": "639750087935787043", + "twapFast": "641928831063995251", + "depositTokenBalance": "16345711016537724475", + "pairedTokenBalance": "0", + "usedToken0": "313857945317598573910509", + "usedToken1": "129186644684003572651313", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4380", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3420", + "topTick": "4380" + } + } + }, + { + "transactionHash": "0x1295078d598d39937fe9f4c4405159ad82b88691724d7f5d6f36ce6cb762fde5", + "state": { + "depositToken": 0, + "blockNumber": 46135584, + "lastRebalancePrice": "641928831063995251", + "state": "2", + "currentTick": "4192", + "currentPrice": "657586449530728287", + "twapSlow": "658639377322085010", + "twapFast": "657586449530728287", + "depositTokenBalance": "36315884945189879146", + "pairedTokenBalance": "0", + "usedToken0": "331486018981538682738960", + "usedToken1": "102363797110762616464144", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3900", + "topTick": "6420" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0xb7b799bdc5d7771ce596f713d996e8d5d2d9e6a902dc0bc72980128522107200", + "state": { + "depositToken": 0, + "blockNumber": 46138050, + "lastRebalancePrice": "657586449530728287", + "state": "1", + "currentTick": "3909", + "currentPrice": "676461017856949665", + "twapSlow": "674502220472330863", + "twapFast": "676461017856949665", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "376087997039540275019630", + "usedToken1": "35271755696529531283218", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3960" + }, + "limitPosition": { + "bottomTick": "3960", + "topTick": "6180" + } + } + }, + { + "transactionHash": "0x51b7dd4144e755e3ced87edea376e32973b92fe6762287b5da71f003fd79fdd1", + "state": { + "depositToken": 0, + "blockNumber": 46140514, + "lastRebalancePrice": "676461017856949665", + "state": "0", + "currentTick": "4076", + "currentPrice": "665258480505234595", + "twapSlow": "666123835621817694", + "twapFast": "665325006353285119", + "depositTokenBalance": "5083485171598692969", + "pairedTokenBalance": "0", + "usedToken0": "355315498888848096687624", + "usedToken1": "66565540477630760080199", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3900", + "topTick": "6300" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0xaddb8e5236a0f685c2745c0a6c1a8126269b5d1ce785380efa2c72c1aab29694", + "state": { + "depositToken": 0, + "blockNumber": 46143086, + "lastRebalancePrice": "665258480505234595", + "state": "1", + "currentTick": "3926", + "currentPrice": "675312068456787053", + "twapSlow": "668191919984404703", + "twapFast": "673221946911057550", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "380750416567301447309965", + "usedToken1": "28375219923067918562686", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3960" + }, + "limitPosition": { + "bottomTick": "3960", + "topTick": "6180" + } + } + }, + { + "transactionHash": "0xd3b6bcd6a44b2e422722c91daf5b1b5ef56ee8841934253abbacdfd34d66f970", + "state": { + "depositToken": 0, + "blockNumber": 46145551, + "lastRebalancePrice": "675312068456787053", + "state": "0", + "currentTick": "3706", + "currentPrice": "690332805241942902", + "twapSlow": "690332805241942902", + "twapFast": "690332805241942902", + "depositTokenBalance": "218884252246522456212", + "pairedTokenBalance": "0", + "usedToken0": "381183571934566750549029", + "usedToken1": "28067815297361605815524", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3720" + }, + "limitPosition": { + "bottomTick": "3720", + "topTick": "5940" + } + } + }, + { + "transactionHash": "0x8df22ff4b54f6d5d99c0f7461530d82a11a24ffbd294eb6cd205376de22b887c", + "state": { + "depositToken": 0, + "blockNumber": 46148015, + "lastRebalancePrice": "690332805241942902", + "state": "0", + "currentTick": "3643", + "currentPrice": "694695411569628825", + "twapSlow": "698456725136661170", + "twapFast": "696225347291822021", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "381242077832252919701970", + "usedToken1": "27976961659440574884629", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3660" + }, + "limitPosition": { + "bottomTick": "3660", + "topTick": "5880" + } + } + }, + { + "transactionHash": "0xbc0afbb21426e26abcd0af58e382a9aabff81339d35c2614f22275164578e729", + "state": { + "depositToken": 0, + "blockNumber": 46169975, + "lastRebalancePrice": "680463734132213826", + "state": "1", + "currentTick": "4138", + "currentPrice": "661146842751878349", + "twapSlow": "669596527108499222", + "twapFast": "663133161954968952", + "depositTokenBalance": "21873992207923454184", + "pairedTokenBalance": "1", + "usedToken0": "305279161865805110607667", + "usedToken1": "146894314139794699942318", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "4080" + } + } + }, + { + "transactionHash": "0x4af6b884ba6db513df32dfd8fab8719f11a47f4eeaa67cf35dcbcfaddfe28461", + "state": { + "depositToken": 0, + "blockNumber": 46173168, + "lastRebalancePrice": "661146842751878349", + "state": "2", + "currentTick": "4242", + "currentPrice": "654306886996880626", + "twapSlow": "656666518599065312", + "twapFast": "655092487247802209", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "302184505538795670310295", + "usedToken1": "151287577831433496807203", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3240", + "topTick": "4200" + } + } + }, + { + "transactionHash": "0x27df33e329bb3a28dd9202359619999993df447827860f33f948423c52f4b9c3", + "state": { + "depositToken": 0, + "blockNumber": 46176558, + "lastRebalancePrice": "654306886996880626", + "state": "2", + "currentTick": "4348", + "currentPrice": "647408206520806470", + "twapSlow": "649548075452565467", + "twapFast": "648120711729336665", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "300593772271182982164750", + "usedToken1": "153731794599403892385358", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3360", + "topTick": "4320" + } + } + }, + { + "transactionHash": "0xddceee3e1761c027379c6c8a0fbceeed9adfea7aece6da3127836389460fd7b7", + "state": { + "depositToken": 0, + "blockNumber": 46179030, + "lastRebalancePrice": "647408206520806470", + "state": "2", + "currentTick": "4190", + "currentPrice": "657717973396498928", + "twapSlow": "656338283816764837", + "twapFast": "657717973396498928", + "depositTokenBalance": "978108728911001192509", + "pairedTokenBalance": "0", + "usedToken0": "315831378290148399608726", + "usedToken1": "131921526026410647013605", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "4140" + } + } + }, + { + "transactionHash": "0x413592e4fc596323bcf1b0690834414316179cd4f8961ba13f5a00c84475fa80", + "state": { + "depositToken": 0, + "blockNumber": 46184294, + "lastRebalancePrice": "657717973396498928", + "state": "2", + "currentTick": "4084", + "currentPrice": "664726513134074320", + "twapSlow": "662404152955115652", + "twapFast": "664527135057078618", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "321696410044608035953533", + "usedToken1": "123050509037721993326411", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3120", + "topTick": "4080" + } + } + }, + { + "transactionHash": "0x6d5ce35f97360958616c18c5eae94d3d3b97a0d109386253d21b2ddff57e36f8", + "state": { + "depositToken": 0, + "blockNumber": 46186758, + "lastRebalancePrice": "664726513134074320", + "state": "2", + "currentTick": "4007", + "currentPrice": "669864405897812702", + "twapSlow": "670132391854715705", + "twapFast": "669864405897812702", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "328121190070294677311785", + "usedToken1": "113423633826197697129239", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3660", + "topTick": "6180" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3660" + } + } + }, + { + "transactionHash": "0x5fd62fdaf9b2be8a54813049978633d2292357b5e55a1feaba5914ff552ac3d9", + "state": { + "depositToken": 0, + "blockNumber": 46190350, + "lastRebalancePrice": "669864405897812702", + "state": "1", + "currentTick": "4134", + "currentPrice": "661411341160434319", + "twapSlow": "663398455010393256", + "twapFast": "662139257521103136", + "depositTokenBalance": "239361286492140321047", + "pairedTokenBalance": "0", + "usedToken0": "308161173594811630329232", + "usedToken1": "144002069894648764212417", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "4080" + } + } + }, + { + "transactionHash": "0x590d3bbd0e453758193b4c33d4898a28eef4649551bf2001943c2805e6866a3e", + "state": { + "depositToken": 0, + "blockNumber": 46192814, + "lastRebalancePrice": "661411341160434319", + "state": "2", + "currentTick": "4279", + "currentPrice": "651890545318671926", + "twapSlow": "653783676959267201", + "twapFast": "651890545318671926", + "depositTokenBalance": "222056804582508429790", + "pairedTokenBalance": "0", + "usedToken0": "306152023070447506132078", + "usedToken1": "147169673855356562348132", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3300", + "topTick": "4260" + } + } + }, + { + "transactionHash": "0xc85a89a691e75390e678bed02e0dc3c9f00f443885a05a03a4a35a8bdb1d97f1", + "state": { + "depositToken": 0, + "blockNumber": 46195279, + "lastRebalancePrice": "651890545318671926", + "state": "2", + "currentTick": "4332", + "currentPrice": "648444836903754037", + "twapSlow": "648509681387444413", + "twapFast": "648444836903754037", + "depositTokenBalance": "15205181640897774812066", + "pairedTokenBalance": "0", + "usedToken0": "320557507212295987105344", + "usedToken1": "148412153170622396717741", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3360", + "topTick": "4320" + } + } + }, + { + "transactionHash": "0x5760e9245acd9049672da1d00deb4f6eecfce6a86141e086b0ce32099c7a48fa", + "state": { + "depositToken": 0, + "blockNumber": 46199518, + "lastRebalancePrice": "648444836903754037", + "state": "2", + "currentTick": "4077", + "currentPrice": "665191961309103685", + "twapSlow": "647408206520806470", + "twapFast": "658771111783943201", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "344448143192669742534893", + "usedToken1": "109579266455543866883399", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3720", + "topTick": "6300" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3720" + } + } + }, + { + "transactionHash": "0xe9d1ccd598c778c142d549615874efad00731c97c7a3f0d9748408f3c022e30e", + "state": { + "depositToken": 0, + "blockNumber": 46210953, + "lastRebalancePrice": "665191961309103685", + "state": "1", + "currentTick": "3834", + "currentPrice": "681553293044489892", + "twapSlow": "681553293044489892", + "twapFast": "681553293044489892", + "depositTokenBalance": "6514592901816459723338", + "pairedTokenBalance": "1", + "usedToken0": "386526472693345533888460", + "usedToken1": "49664313407649950006713", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3720", + "topTick": "6060" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3720" + } + } + }, + { + "transactionHash": "0x13ab78717049c23857b6740610c44db7929f4772365a4616410bd62319f6391b", + "state": { + "depositToken": 0, + "blockNumber": 46216245, + "lastRebalancePrice": "681553293044489892", + "state": "1", + "currentTick": "3806", + "currentPrice": "683464220770626911", + "twapSlow": "682712861018762557", + "twapFast": "683327548427665893", + "depositTokenBalance": "3847323841248904449190", + "pairedTokenBalance": "0", + "usedToken0": "395555681856036424913061", + "usedToken1": "42096272544319197380038", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3840" + }, + "limitPosition": { + "bottomTick": "3840", + "topTick": "6060" + } + } + }, + { + "transactionHash": "0x850248aa1d362428ffee3f9e089d098e22e73bfd12198a9788c0bca2524ae3fd", + "state": { + "depositToken": 0, + "blockNumber": 46220893, + "lastRebalancePrice": "683464220770626911", + "state": "0", + "currentTick": "3665", + "currentPrice": "693168837838381733", + "twapSlow": "685860416632291853", + "twapFast": "691783954750397926", + "depositTokenBalance": "652236644010759491650", + "pairedTokenBalance": "0", + "usedToken0": "396400793555085325287143", + "usedToken1": "41775406528314462783959", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3720" + }, + "limitPosition": { + "bottomTick": "3720", + "topTick": "5940" + } + } + }, + { + "transactionHash": "0x165dd1cfb57cc1aba05516a44a526aed89420b72252d14a646daa183a2d35a80", + "state": { + "depositToken": 0, + "blockNumber": 46224842, + "lastRebalancePrice": "693168837838381733", + "state": "0", + "currentTick": "3521", + "currentPrice": "703222176772600469", + "twapSlow": "697409877722289416", + "twapFast": "700485087927682151", + "depositTokenBalance": "97256477300826514403", + "pairedTokenBalance": "0", + "usedToken0": "396708499507766636162597", + "usedToken1": "41475936330272622141024", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3540" + }, + "limitPosition": { + "bottomTick": "3540", + "topTick": "5760" + } + } + }, + { + "transactionHash": "0xa85c056b768ccf0adedece55f4c6adea2d61574311ce1620ec108c01fd466ece", + "state": { + "depositToken": 0, + "blockNumber": 46227306, + "lastRebalancePrice": "703222176772600469", + "state": "0", + "currentTick": "3512", + "currentPrice": "703855329950758972", + "twapSlow": "706393648456836165", + "twapFast": "703855329950758972", + "depositTokenBalance": "15201675095573389103524", + "pairedTokenBalance": "0", + "usedToken0": "411923928736816577814647", + "usedToken1": "41456265050301076608259", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3540" + }, + "limitPosition": { + "bottomTick": "3540", + "topTick": "5760" + } + } + }, + { + "transactionHash": "0x64c5f66ce6eee76c320f1291ed8231c28f49b66fadff7c6ac107d75ef7a7b8a5", + "state": { + "depositToken": 0, + "blockNumber": 46233234, + "lastRebalancePrice": "703855329950758972", + "state": "0", + "currentTick": "3595", + "currentPrice": "698037797738386675", + "twapSlow": "698596423466255754", + "twapFast": "698107601518160513", + "depositTokenBalance": "527000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "401623498680583294801029", + "usedToken1": "57051099159015587117099", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3480", + "topTick": "5820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3480" + } + } + }, + { + "transactionHash": "0x86b9ce066dd3907dd6e7ed5d946e2960e046819f5ca243023c3c2654641000ad", + "state": { + "depositToken": 0, + "blockNumber": 46247143, + "lastRebalancePrice": "698037797738386675", + "state": "1", + "currentTick": "3530", + "currentPrice": "702589593147487818", + "twapSlow": "695877339027615189", + "twapFast": "701676865713375411", + "depositTokenBalance": "94560599429995870503", + "pairedTokenBalance": "0", + "usedToken0": "403493141548221298047546", + "usedToken1": "38576613933946840076074", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3540" + }, + "limitPosition": { + "bottomTick": "3540", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0xab3a0acc1e44191d7e27873fd9c33745f4a828e84ab5aadd94e2cfae2febae4e", + "state": { + "depositToken": 0, + "blockNumber": 46252071, + "lastRebalancePrice": "715063999060783155", + "state": "0", + "currentTick": "3158", + "currentPrice": "729216790114476657", + "twapSlow": "720302802687879913", + "twapFast": "729216790114476657", + "depositTokenBalance": "20000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "404280364411459943439157", + "usedToken1": "37583871923926156082031", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3180" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "5400" + } + } + }, + { + "transactionHash": "0xcb4cd32362b2249cdb563fbe770d5c0c3b2907d172fccdfff2cb0ee3bb4eea40", + "state": { + "depositToken": 0, + "blockNumber": 46255135, + "lastRebalancePrice": "729216790114476657", + "state": "0", + "currentTick": "3253", + "currentPrice": "722322375641187647", + "twapSlow": "729362640764667454", + "twapFast": "722755877429376237", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "389925991720525235332522", + "usedToken1": "57205083522444280183972", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "5460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0xf2d3ff7afd6b7040fc9d640dadc05cbb16466c9971d7b99f5fc4d82740b9ca88", + "state": { + "depositToken": 0, + "blockNumber": 46267694, + "lastRebalancePrice": "722322375641187647", + "state": "1", + "currentTick": "3493", + "currentPrice": "705193859352588341", + "twapSlow": "705334905176397452", + "twapFast": "705193859352588341", + "depositTokenBalance": "15921321298061981634396", + "pairedTokenBalance": "0", + "usedToken0": "361486559533247010932105", + "usedToken1": "120211147930900635722492", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "5700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0x46717b4ddf31145975efdc31fc6ba60adbddc284cb016342aae3f900723c1b7c", + "state": { + "depositToken": 0, + "blockNumber": 46272400, + "lastRebalancePrice": "705193859352588341", + "state": "1", + "currentTick": "3604", + "currentPrice": "697409877722289416", + "twapSlow": "701256006906804120", + "twapFast": "697968000938292845", + "depositTokenBalance": "280899980996020996460", + "pairedTokenBalance": "0", + "usedToken0": "342322310909922088366846", + "usedToken1": "146962934916445329921722", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2640", + "topTick": "3600" + } + } + }, + { + "transactionHash": "0x7a4fd8d2bb8ac1fd6d0a24c1e444de45f32dc0bdf338e1d545190a0e28056a32", + "state": { + "depositToken": 0, + "blockNumber": 46274871, + "lastRebalancePrice": "697409877722289416", + "state": "2", + "currentTick": "3862", + "currentPrice": "679647708165371847", + "twapSlow": "680804034052458324", + "twapFast": "679647708165371847", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "337939079468081093283414", + "usedToken1": "153118064088435239065743", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2880", + "topTick": "3840" + } + } + }, + { + "transactionHash": "0x3e912d6541f509539012ee9d66549ab09343189289e49bf97078d186b757f830", + "state": { + "depositToken": 0, + "blockNumber": 46277335, + "lastRebalancePrice": "679647708165371847", + "state": "2", + "currentTick": "3672", + "currentPrice": "692683813680957831", + "twapSlow": "689022483626675286", + "twapFast": "692683813680957831", + "depositTokenBalance": "919028412683848135530", + "pairedTokenBalance": "0", + "usedToken0": "358110099295318378128511", + "usedToken1": "125365078659588263223473", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "5880" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0xf05ddfad20ddc8240b1f6d250790c2af54aa2812855a1439a15a45c604ec4156", + "state": { + "depositToken": 0, + "blockNumber": 46279838, + "lastRebalancePrice": "692683813680957831", + "state": "1", + "currentTick": "3705", + "currentPrice": "690401838522467097", + "twapSlow": "690954353344467193", + "twapFast": "690401838522467097", + "depositTokenBalance": "4698453358803702346717", + "pairedTokenBalance": "0", + "usedToken0": "356995874716523811743201", + "usedToken1": "133575850665783416884827", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "5880" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0xa572c93d2416b5e3867ec2bc5ea54d429da0b4b7b86992b6fb6b5fb085166cd5", + "state": { + "depositToken": 0, + "blockNumber": 46282309, + "lastRebalancePrice": "690401838522467097", + "state": "1", + "currentTick": "3785", + "currentPrice": "684900931818525452", + "twapSlow": "684969421911707304", + "twapFast": "684900931818525452", + "depositTokenBalance": "8309408235995416419454", + "pairedTokenBalance": "0", + "usedToken0": "351443262358791113004986", + "usedToken1": "153860909057806231422627", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2820", + "topTick": "3780" + } + } + }, + { + "transactionHash": "0xa5245ad543cbf6b425a18707f53f87ea33e97dfd9caa5fbdbbaa34a94c3d8bab", + "state": { + "depositToken": 0, + "blockNumber": 46284774, + "lastRebalancePrice": "684900931818525452", + "state": "2", + "currentTick": "3904", + "currentPrice": "676799316018744874", + "twapSlow": "680395694562757550", + "twapFast": "677611922034445296", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "349349236172257684532209", + "usedToken1": "156702158301628236029760", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2940", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0x93f6d00d0fbe8c97f49062ffaaaf29f1070d0df7acb9f49891e066d313cebaa1", + "state": { + "depositToken": 0, + "blockNumber": 46287238, + "lastRebalancePrice": "676799316018744874", + "state": "2", + "currentTick": "4355", + "currentPrice": "646955201996171034", + "twapSlow": "647537694636192696", + "twapFast": "646955201996171034", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "334758399024254903967037", + "usedToken1": "165209879525055569200270", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3360", + "topTick": "4320" + } + } + }, + { + "transactionHash": "0x2107ec2414561ceb9a5eb1c0f621523b68135c77ee5dd4c698b0ed8bac63f9b1", + "state": { + "depositToken": 0, + "blockNumber": 46289702, + "lastRebalancePrice": "646955201996171034", + "state": "2", + "currentTick": "4626", + "currentPrice": "629659002792755105", + "twapSlow": "636114066737029460", + "twapFast": "630478050810535369", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "330240934317684619098402", + "usedToken1": "172193752879036963732820", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4620", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3660", + "topTick": "4620" + } + } + }, + { + "transactionHash": "0x2088157cbe11697d2e6377b6645d6cfc3f9247dd70ce71520480f8e76fd7a52e", + "state": { + "depositToken": 0, + "blockNumber": 46294934, + "lastRebalancePrice": "629659002792755105", + "state": "2", + "currentTick": "4872", + "currentPrice": "614359116434737711", + "twapSlow": "626142942334665123", + "twapFast": "619045798222840368", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "323412062923013286204891", + "usedToken1": "177237988911454596834269", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3900", + "topTick": "4860" + } + } + }, + { + "transactionHash": "0xdf75677c43d1004013fbfd651fe799f21f90340b7e75068cef278e3d4ba10148", + "state": { + "depositToken": 0, + "blockNumber": 46297398, + "lastRebalancePrice": "614359116434737711", + "state": "2", + "currentTick": "5007", + "currentPrice": "606121409864217363", + "twapSlow": "606606476740050541", + "twapFast": "606121409864217363", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "318658074165553815385489", + "usedToken1": "179276282969639575790980", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4020", + "topTick": "4980" + } + } + }, + { + "transactionHash": "0xb9eaf6ff275939ebf4b187cac0d462e2231ee7f60c39bf9736780e63fd9fa363", + "state": { + "depositToken": 0, + "blockNumber": 46301327, + "lastRebalancePrice": "606121409864217363", + "state": "2", + "currentTick": "4890", + "currentPrice": "613254319879242426", + "twapSlow": "609342219906291949", + "twapFast": "612029098129686811", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "320337282474787955602006", + "usedToken1": "157021579069654068055349", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4860", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3900", + "topTick": "4860" + } + } + }, + { + "transactionHash": "0xc59fbbea13ac01ac9ac6561c856ce0df45a6aad080568495952da8ebac6b83fb", + "state": { + "depositToken": 0, + "blockNumber": 46305026, + "lastRebalancePrice": "613254319879242426", + "state": "2", + "currentTick": "5032", + "currentPrice": "604608074462474068", + "twapSlow": "609159453794760748", + "twapFast": "605697294540405700", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "318064590701734981560011", + "usedToken1": "160754162349171514086091", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4980", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4020", + "topTick": "4980" + } + } + }, + { + "transactionHash": "0x4fcddadc6f1966f32321cbc1afacf55b85f8a12356e0b4e3c0adbd6e9e921c80", + "state": { + "depositToken": 0, + "blockNumber": 46307490, + "lastRebalancePrice": "604608074462474068", + "state": "2", + "currentTick": "5209", + "currentPrice": "594001189713865097", + "twapSlow": "591985115738668360", + "twapFast": "594001189713865097", + "depositTokenBalance": "27000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "315343945727000766877942", + "usedToken1": "165540461018953320612154", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5160", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4200", + "topTick": "5160" + } + } + }, + { + "transactionHash": "0xfa5e69f956e3407edf5c150eeb5c2a337dedff0abfbef70bbd372e453edcbbbb", + "state": { + "depositToken": 0, + "blockNumber": 46310608, + "lastRebalancePrice": "594001189713865097", + "state": "2", + "currentTick": "5312", + "currentPrice": "587914681106521376", + "twapSlow": "590507075170602763", + "twapFast": "588326344865958045", + "depositTokenBalance": "993215825891867616362", + "pairedTokenBalance": "0", + "usedToken0": "314710937047184012968319", + "usedToken1": "168255068223537547349351", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4320", + "topTick": "5280" + } + } + }, + { + "transactionHash": "0x579d5aee64286e4c2bc6ef473e59e8b86a69fb2224c356e95e6211dd1caa77c2", + "state": { + "depositToken": 0, + "blockNumber": 46335910, + "lastRebalancePrice": "587914681106521376", + "state": "2", + "currentTick": "7958", + "currentPrice": "451238067610780286", + "twapSlow": "456456995769221262", + "twapFast": "451238067610780286", + "depositTokenBalance": "7253137548851095288244", + "pairedTokenBalance": "1", + "usedToken0": "222207353986406906329797", + "usedToken1": "190080851238922643242981", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6960", + "topTick": "7920" + } + } + }, + { + "transactionHash": "0x621ef88d659188fe225f8b1c8ca52a53d574cb17a572ea5b2967e4da1c235c06", + "state": { + "depositToken": 0, + "blockNumber": 46338375, + "lastRebalancePrice": "451238067610780286", + "state": "2", + "currentTick": "7333", + "currentPrice": "480338921663065843", + "twapSlow": "458103119894857236", + "twapFast": "476130692922529563", + "depositTokenBalance": "8500000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "285377008544022647607526", + "usedToken1": "72506799907193601927886", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7200", + "topTick": "9540" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7200" + } + } + }, + { + "transactionHash": "0x89c9ebfd4453663435f1282fd0d60134dca28348202fff3ca65c3f279951f041", + "state": { + "depositToken": 0, + "blockNumber": 46341378, + "lastRebalancePrice": "480338921663065843", + "state": "1", + "currentTick": "7219", + "currentPrice": "485845839825418213", + "twapSlow": "484438998137196640", + "twapFast": "485311729920961246", + "depositTokenBalance": "137389072977731731866", + "pairedTokenBalance": "0", + "usedToken0": "301200540547986159069572", + "usedToken1": "40334585626619977245726", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7260" + }, + "limitPosition": { + "bottomTick": "7260", + "topTick": "9480" + } + } + }, + { + "transactionHash": "0x488dae1a2c0b03a9e01be901cd580af3991eb0fc73c757136a85828a6b3ae267", + "state": { + "depositToken": 0, + "blockNumber": 46343842, + "lastRebalancePrice": "485845839825418213", + "state": "0", + "currentTick": "6899", + "currentPrice": "501643531922622499", + "twapSlow": "496503377781961393", + "twapFast": "501643531922622499", + "depositTokenBalance": "15000000000000000000000", + "pairedTokenBalance": "1", + "usedToken0": "316325022942086175769701", + "usedToken1": "39544474966216252036673", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6900" + }, + "limitPosition": { + "bottomTick": "6900", + "topTick": "9180" + } + } + }, + { + "transactionHash": "0x06cfe695cc1c64ceef494833076f3b7a25c0e0d7c897b225a409528291be6ca6", + "state": { + "depositToken": 0, + "blockNumber": 46346307, + "lastRebalancePrice": "501643531922622499", + "state": "0", + "currentTick": "6161", + "currentPrice": "540063152572498127", + "twapSlow": "526676936499280171", + "twapFast": "539199785573787341", + "depositTokenBalance": "20000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "337078189951357733947275", + "usedToken1": "38124395718764846926225", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6180" + }, + "limitPosition": { + "bottomTick": "6180", + "topTick": "8400" + } + } + }, + { + "transactionHash": "0xafd298912a5bf81cb4d71eadc99c4a18ee2ba92fb694c184d72e0e570831f8aa", + "state": { + "depositToken": 0, + "blockNumber": 46350439, + "lastRebalancePrice": "540063152572498127", + "state": "0", + "currentTick": "6344", + "currentPrice": "530270363805976818", + "twapSlow": "540387271484316585", + "twapFast": "532395586613959239", + "depositTokenBalance": "2600000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "313353674239969465101396", + "usedToken1": "87431425734451997360781", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6120", + "topTick": "8520" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6120" + } + } + }, + { + "transactionHash": "0xd51f3e8fddd74a2936065ec47b8c76259aebce7f37480047f0743455348b2ad6", + "state": { + "depositToken": 0, + "blockNumber": 46354824, + "lastRebalancePrice": "530270363805976818", + "state": "1", + "currentTick": "6659", + "currentPrice": "513827996227934927", + "twapSlow": "526308410069043090", + "twapFast": "516351805504351039", + "depositTokenBalance": "8510275475455663669", + "pairedTokenBalance": "0", + "usedToken0": "265849742625037521972731", + "usedToken1": "178715446019185395269060", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5700", + "topTick": "6600" + } + } + }, + { + "transactionHash": "0x5e282b1610a939e77e6960e69a7b64bdf486861e874382f1ba2dabfddac85a4b", + "state": { + "depositToken": 0, + "blockNumber": 46357491, + "lastRebalancePrice": "513827996227934927", + "state": "2", + "currentTick": "6800", + "currentPrice": "506634216487873208", + "twapSlow": "504006687432344044", + "twapFast": "508410454037744197", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "263958941608194104830995", + "usedToken1": "182069244614507867130431", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "6780" + } + } + }, + { + "transactionHash": "0x08c09a3fe674f11adbd236693cf9a1dc3de5aaaf84f5b5ee11067d4a9dcb188a", + "state": { + "depositToken": 0, + "blockNumber": 46359962, + "lastRebalancePrice": "506634216487873208", + "state": "2", + "currentTick": "6962", + "currentPrice": "498493268929430124", + "twapSlow": "499441259047119162", + "twapFast": "498493268929430124", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "261828954921967406774169", + "usedToken1": "186307782303252468433852", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6000", + "topTick": "6960" + } + } + }, + { + "transactionHash": "0x03a706a20e6f3f139525ac23c2bceb9242fca6b80d920029102f9b951cbd978b", + "state": { + "depositToken": 0, + "blockNumber": 46362426, + "lastRebalancePrice": "498493268929430124", + "state": "2", + "currentTick": "6668", + "currentPrice": "513365782169171897", + "twapSlow": "508461295083147971", + "twapFast": "512545094676457395", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "288728513740618028085797", + "usedToken1": "127832853544326303806815", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "8880" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0x8b5ad6e34e03fc2cc89df6c3ea93f506ab0637e86968b834a4985692bbff415b", + "state": { + "depositToken": 0, + "blockNumber": 46368822, + "lastRebalancePrice": "513365782169171897", + "state": "1", + "currentTick": "6565", + "currentPrice": "518680507846726928", + "twapSlow": "520342860701676913", + "twapFast": "518680507846726928", + "depositTokenBalance": "12315343966162638270841", + "pairedTokenBalance": "1", + "usedToken0": "316020390383191726580715", + "usedToken1": "100979930468213262511013", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "8760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0x97dd2745d3f682a70ca44862477946daa2676d2b37528b479a7de52c4d5d97ec", + "state": { + "depositToken": 0, + "blockNumber": 46372066, + "lastRebalancePrice": "518680507846726928", + "state": "1", + "currentTick": "6391", + "currentPrice": "527784064788290957", + "twapSlow": "522062742393418078", + "twapFast": "527784064788290957", + "depositTokenBalance": "10000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "352151758083137515826506", + "usedToken1": "49450252579830427930385", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6420" + }, + "limitPosition": { + "bottomTick": "6420", + "topTick": "8640" + } + } + }, + { + "transactionHash": "0x79aca9f9ec2558d6af5d2b6a5ce916c0880f918ee7c73c3160d6cda12e1f4b09", + "state": { + "depositToken": 0, + "blockNumber": 46374530, + "lastRebalancePrice": "527784064788290957", + "state": "0", + "currentTick": "6797", + "currentPrice": "506786221952352699", + "twapSlow": "509479184329667230", + "twapFast": "506786221952352699", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "289280628771851781408251", + "usedToken1": "170551168595951180961495", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "6780" + } + } + }, + { + "transactionHash": "0xc872b44c8e5649d6d00eece25739ebd2fe4a939fb978b40a0166db5f518c1485", + "state": { + "depositToken": 0, + "blockNumber": 46376995, + "lastRebalancePrice": "506786221952352699", + "state": "2", + "currentTick": "6682", + "currentPrice": "512647608820843633", + "twapSlow": "507191792858440304", + "twapFast": "512647608820843633", + "depositTokenBalance": "8552434613170010418", + "pairedTokenBalance": "0", + "usedToken0": "298521184587439806309293", + "usedToken1": "152491081170386435762768", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5700", + "topTick": "6660" + } + } + }, + { + "transactionHash": "0x1370db215b27e94a20854fba5cfc09f705ee02626149320056c54f4e40cde154", + "state": { + "depositToken": 0, + "blockNumber": 46380860, + "lastRebalancePrice": "512647608820843633", + "state": "2", + "currentTick": "6617", + "currentPrice": "515990503775640824", + "twapSlow": "512903983895141669", + "twapFast": "514908114742504535", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "302440712447716500247350", + "usedToken1": "144836215238552126653597", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6240", + "topTick": "8820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6240" + } + } + }, + { + "transactionHash": "0xae3f9b2bd06b80e21ed1fbd9b9c7230d659a92e57c3cc225d151bd383a3164eb", + "state": { + "depositToken": 0, + "blockNumber": 46398585, + "lastRebalancePrice": "515990503775640824", + "state": "1", + "currentTick": "6733", + "currentPrice": "510039891730062125", + "twapSlow": "516661694050752286", + "twapFast": "511214274785699806", + "depositTokenBalance": "2028803602285749179479", + "pairedTokenBalance": "0", + "usedToken0": "242867640968756751531393", + "usedToken1": "150064252841451945249518", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5760", + "topTick": "6720" + } + } + }, + { + "transactionHash": "0xd5da5470c7f5fefc3c5b1ad81e5aab28c1ae7887793b246ba51b5de5c91ba92e", + "state": { + "depositToken": 0, + "blockNumber": 46410382, + "lastRebalancePrice": "507800757868061023", + "state": "2", + "currentTick": "6799", + "currentPrice": "506684879909521996", + "twapSlow": "506431613454568796", + "twapFast": "506887584264605389", + "depositTokenBalance": "4069371637994492746349", + "pairedTokenBalance": "0", + "usedToken0": "245911399143829619787800", + "usedToken1": "151426517560192841373910", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "6780" + } + } + }, + { + "transactionHash": "0x89bd1b64ac5a76ae790278e9e52a3cae31f5488a89ff0f0e828a9f8fb2a63134", + "state": { + "depositToken": 0, + "blockNumber": 46417029, + "lastRebalancePrice": "506684879909521996", + "state": "2", + "currentTick": "6835", + "currentPrice": "504864184592918469", + "twapSlow": "507394700009120070", + "twapFast": "505874872779844888", + "depositTokenBalance": "10726712113647390928346", + "pairedTokenBalance": "0", + "usedToken0": "256082365615575688874601", + "usedToken1": "152084258726187443231289", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5880", + "topTick": "6780" + } + } + }, + { + "transactionHash": "0xbcd83558e0d37275d79fcdc2f1800853e590df445968bb7bde467f43cda32fce", + "state": { + "depositToken": 0, + "blockNumber": 46419531, + "lastRebalancePrice": "504864184592918469", + "state": "2", + "currentTick": "6855", + "currentPrice": "503855515661476276", + "twapSlow": "503855515661476276", + "twapFast": "503855515661476276", + "depositTokenBalance": "4340273276140389238924", + "pairedTokenBalance": "0", + "usedToken0": "260088036341645353591339", + "usedToken1": "152456975007688186553864", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5880", + "topTick": "6840" + } + } + }, + { + "transactionHash": "0xaac730f66fabf84c26951329c31f7c4aebde6679505b4f91d9d662b04a9d57ab", + "state": { + "depositToken": 0, + "blockNumber": 46421995, + "lastRebalancePrice": "503855515661476276", + "state": "2", + "currentTick": "7100", + "currentPrice": "491661649976263955", + "twapSlow": "494224820868664976", + "twapFast": "491661649976263955", + "depositTokenBalance": "16913239584346945811", + "pairedTokenBalance": "0", + "usedToken0": "256577253283771363985502", + "usedToken1": "158638720814774272106243", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6120", + "topTick": "7080" + } + } + }, + { + "transactionHash": "0x568f5e23e9e7a5f0c6a04723b67475561ee066e02db0e325ef25cf73844b67d7", + "state": { + "depositToken": 0, + "blockNumber": 46424458, + "lastRebalancePrice": "491661649976263955", + "state": "2", + "currentTick": "7355", + "currentPrice": "479283390321280241", + "twapSlow": "486040207314042201", + "twapFast": "479283390321280241", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "253315173840417707151728", + "usedToken1": "165275066821238319504238", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6360", + "topTick": "7320" + } + } + }, + { + "transactionHash": "0x654f60937348ef0bf8a884476bf1341854fdd93143125a154614ca90c060ba7f", + "state": { + "depositToken": 0, + "blockNumber": 46426930, + "lastRebalancePrice": "479283390321280241", + "state": "2", + "currentTick": "7708", + "currentPrice": "462660635389954077", + "twapSlow": "463169816628586766", + "twapFast": "462660635389954077", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "248569406134435495447899", + "usedToken1": "174566453786390311433457", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6720", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0x653c55ed32239b3085d747f4b2aa8fbec933f80971850fe7974aa3a51600fd30", + "state": { + "depositToken": 0, + "blockNumber": 46431858, + "lastRebalancePrice": "455545039634834160", + "state": "2", + "currentTick": "7857", + "currentPrice": "455818434999482590", + "twapSlow": "453726589721579712", + "twapFast": "455818434999482590", + "depositTokenBalance": "8189361816685579520672", + "pairedTokenBalance": "0", + "usedToken0": "255122619178056597604859", + "usedToken1": "178051907627506120877274", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6900", + "topTick": "7800" + } + } + }, + { + "transactionHash": "0x3a3b8ad211815372949e5dbb4af8ada94522565bec45adb78fb920040c794d79", + "state": { + "depositToken": 0, + "blockNumber": 46434690, + "lastRebalancePrice": "455818434999482590", + "state": "2", + "currentTick": "7959", + "currentPrice": "451192948315948691", + "twapSlow": "452277057598138477", + "twapFast": "451599184436800332", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "253802584674789648957523", + "usedToken1": "180827873010801160419082", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7920", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6960", + "topTick": "7920" + } + } + }, + { + "transactionHash": "0x556e0486fe29b11f0797f1b76ce5a08f28293b0cc2410cdb5af5b42974b998ee", + "state": { + "depositToken": 0, + "blockNumber": 46437162, + "lastRebalancePrice": "451192948315948691", + "state": "2", + "currentTick": "7809", + "currentPrice": "458011513012139678", + "twapSlow": "457508002504479453", + "twapFast": "458011513012139678", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "263923727120271890952034", + "usedToken1": "158598186332740538749659", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6840", + "topTick": "7800" + } + } + }, + { + "transactionHash": "0x8bb456a9b6a9cee6c0f80418338009d0ea911538583a3af446caa27e8e74c973", + "state": { + "depositToken": 0, + "blockNumber": 46439626, + "lastRebalancePrice": "458011513012139678", + "state": "2", + "currentTick": "7646", + "currentPrice": "465537897765651506", + "twapSlow": "465537897765651506", + "twapFast": "465537897765651506", + "depositTokenBalance": "756885515623856736247", + "pairedTokenBalance": "0", + "usedToken0": "276839547390447413630137", + "usedToken1": "132538380578391393905211", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7320", + "topTick": "9840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7320" + } + } + }, + { + "transactionHash": "0xa8e844929e113bf5443fa3f2b59b8aaf064990b1ac6ef0bb75322948c92649c5", + "state": { + "depositToken": 0, + "blockNumber": 46442090, + "lastRebalancePrice": "465537897765651506", + "state": "1", + "currentTick": "7660", + "currentPrice": "464886633262981784", + "twapSlow": "465212151548731515", + "twapFast": "464886633262981784", + "depositTokenBalance": "101000001377000000000000", + "pairedTokenBalance": "2", + "usedToken0": "375882320549396019141204", + "usedToken1": "136522652397775208395410", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7440", + "topTick": "9840" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7440" + } + } + }, + { + "transactionHash": "0xb1a31cb33eb3d2af29b14fd6f933de55990ce07ec0efca0e906859db1844ae5e", + "state": { + "depositToken": 0, + "blockNumber": 46444561, + "lastRebalancePrice": "464886633262981784", + "state": "1", + "currentTick": "7726", + "currentPrice": "461828636868782333", + "twapSlow": "460583443575227002", + "twapFast": "461828636868782333", + "depositTokenBalance": "10406571001000000000000", + "pairedTokenBalance": "1", + "usedToken0": "374337907824576475619393", + "usedToken1": "162849276040815501542169", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7440", + "topTick": "9900" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7440" + } + } + }, + { + "transactionHash": "0x062f27c8e2507b5b4c7621162d65bac2bc33c64fb5e0153a9905d7faa5d3440e", + "state": { + "depositToken": 0, + "blockNumber": 46449964, + "lastRebalancePrice": "461828636868782333", + "state": "1", + "currentTick": "7479", + "currentPrice": "473377265231358825", + "twapSlow": "472856862533260856", + "twapFast": "473282603977737237", + "depositTokenBalance": "2361421211895873277438", + "pairedTokenBalance": "1", + "usedToken0": "421307899170763578808821", + "usedToken1": "65482928629055967583240", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "7500" + }, + "limitPosition": { + "bottomTick": "7500", + "topTick": "9720" + } + } + }, + { + "transactionHash": "0x93c62d3052f04e4837439e7434d6ff905e0f9842c7467d306655e8db336d7087", + "state": { + "depositToken": 0, + "blockNumber": 46452430, + "lastRebalancePrice": "473377265231358825", + "state": "0", + "currentTick": "6636", + "currentPrice": "515011101514534183", + "twapSlow": "492547393589892091", + "twapFast": "515011101514534183", + "depositTokenBalance": "12911360654442989259", + "pairedTokenBalance": "1", + "usedToken0": "422235453766105156656781", + "usedToken1": "62771042056602691273627", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6660" + }, + "limitPosition": { + "bottomTick": "6660", + "topTick": "8880" + } + } + }, + { + "transactionHash": "0xba2fc97060954155b99b8e9bb8da7a88aaf3d766c368703015c2ff5e97187c96", + "state": { + "depositToken": 0, + "blockNumber": 46454894, + "lastRebalancePrice": "515011101514534183", + "state": "0", + "currentTick": "7062", + "currentPrice": "493533424778862440", + "twapSlow": "494719268150020390", + "twapFast": "493533424778862440", + "depositTokenBalance": "9586668838984318914427", + "pairedTokenBalance": "0", + "usedToken0": "351758397603846174640847", + "usedToken1": "223173592386818423089261", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6060", + "topTick": "7020" + } + } + }, + { + "transactionHash": "0x7844e4d1a66b69b12954c9acd1f96708b1446fd1f371d1a18f59d4a5bb2dd312", + "state": { + "depositToken": 0, + "blockNumber": 46457365, + "lastRebalancePrice": "493533424778862440", + "state": "2", + "currentTick": "7287", + "currentPrice": "482553459509944989", + "twapSlow": "481541211089375900", + "twapFast": "482022969051805325", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "347818189159130579867049", + "usedToken1": "229842019454917867758677", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6300", + "topTick": "7260" + } + } + }, + { + "transactionHash": "0xf5f7115687eabebe3a356e830e47acd38065648101b7c6eb08dad73b0dda834d", + "state": { + "depositToken": 0, + "blockNumber": 46459829, + "lastRebalancePrice": "482553459509944989", + "state": "2", + "currentTick": "7525", + "currentPrice": "471204838842018253", + "twapSlow": "480290892573808462", + "twapFast": "472478747214977536", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "343710903914410194493239", + "usedToken1": "238455810874256382760607", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6540", + "topTick": "7500" + } + } + }, + { + "transactionHash": "0xdf76ed20e0e19acc7cfe5b0af9e49a0d9eacdfbd8e1b99f0ac27acc3a6efd47f", + "state": { + "depositToken": 0, + "blockNumber": 46463186, + "lastRebalancePrice": "471204838842018253", + "state": "2", + "currentTick": "7684", + "currentPrice": "463772298795160589", + "twapSlow": "458699011402204321", + "twapFast": "462984595009655218", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "340977575112111464511138", + "usedToken1": "244303143989426003595620", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7680", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6720", + "topTick": "7680" + } + } + }, + { + "transactionHash": "0xa99259be21f4de03cff3760f312a59d4430bbeca2193a91b8af777399d99ee8d", + "state": { + "depositToken": 0, + "blockNumber": 46510117, + "lastRebalancePrice": "463772298795160589", + "state": "2", + "currentTick": "6547", + "currentPrice": "519614926765430097", + "twapSlow": "520342860701676913", + "twapFast": "519614926765430097", + "depositTokenBalance": "2948031285363365473117", + "pairedTokenBalance": "1", + "usedToken0": "425167551670617577643857", + "usedToken1": "1", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6600", + "topTick": "8820" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7e3a1b9c0330ac510e9b5f497aa9aa0c74e9a0f256acc33081be9e7efad79693", + "state": { + "depositToken": 0, + "blockNumber": 46513835, + "lastRebalancePrice": "519614926765430097", + "state": "0", + "currentTick": "6656", + "currentPrice": "513982160042157023", + "twapSlow": "518421245376729554", + "twapFast": "514290626445786737", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "413805859559485722890070", + "usedToken1": "22043674944808904867203", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6660" + }, + "limitPosition": { + "bottomTick": "6660", + "topTick": "8940" + } + } + }, + { + "transactionHash": "0xa7099e8036266341de014c4c176db29d8589f216685a7c3aa40cad47847b15b3", + "state": { + "depositToken": 0, + "blockNumber": 46518355, + "lastRebalancePrice": "513982160042157023", + "state": "0", + "currentTick": "6804", + "currentPrice": "506431613454568796", + "twapSlow": "512852698625279142", + "twapFast": "507902323097642214", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "384435444976048600433380", + "usedToken1": "76124640410997190919889", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6660", + "topTick": "9000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6660" + } + } + }, + { + "transactionHash": "0x52eab5b08a2acf2683f4c469a38cd86b8a6169d571db0656807affe80ab95ebf", + "state": { + "depositToken": 0, + "blockNumber": 46522241, + "lastRebalancePrice": "506431613454568796", + "state": "1", + "currentTick": "6743", + "currentPrice": "509530132248100196", + "twapSlow": "505268217330840418", + "twapFast": "509326371138025362", + "depositTokenBalance": "23124648082838134221", + "pairedTokenBalance": "0", + "usedToken0": "394508468829186842923428", + "usedToken1": "55046028900117711979809", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6780" + }, + "limitPosition": { + "bottomTick": "6780", + "topTick": "9000" + } + } + }, + { + "transactionHash": "0xdef9f7c4aca2e5e3a80adb2290d603e5fbd1f96ad683a9cf98f787083470092c", + "state": { + "depositToken": 0, + "blockNumber": 46524120, + "lastRebalancePrice": "509530132248100196", + "state": "0", + "currentTick": "7241", + "currentPrice": "484778207185039347", + "twapSlow": "497397843917435659", + "twapFast": "485651550064356811", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "308154870940701561219064", + "usedToken1": "226133346719291872425306", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7200", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "7200" + } + } + }, + { + "transactionHash": "0x967c28747a7758a53a4046412eee1bff69186a2efab8a63d4482e5a4cc1a16d6", + "state": { + "depositToken": 0, + "blockNumber": 46526596, + "lastRebalancePrice": "484778207185039347", + "state": "3", + "currentTick": "7060", + "currentPrice": "493632136399152461", + "twapSlow": "489650064357239500", + "twapFast": "492055116989043454", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "309569106457552517103859", + "usedToken1": "223236200857352748476418", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6060", + "topTick": "7020" + } + } + }, + { + "transactionHash": "0xf40f5516619c69f86f9fb5ecad413df62ff4a331b4bc6a8e459362ed2424d5f9", + "state": { + "depositToken": 0, + "blockNumber": 46533665, + "lastRebalancePrice": "493632136399152461", + "state": "2", + "currentTick": "6952", + "currentPrice": "498991986580160234", + "twapSlow": "498642831865405514", + "twapFast": "498892203150608081", + "depositTokenBalance": "1004741829692290130235", + "pairedTokenBalance": "0", + "usedToken0": "319372357123440227298240", + "usedToken1": "206429458015065787953598", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5940", + "topTick": "6900" + } + } + }, + { + "transactionHash": "0x59f1a04655ebb25eaa8e7ec0f08b20dd571d853f71d7fa504357b97a03af2ff3", + "state": { + "depositToken": 0, + "blockNumber": 46536590, + "lastRebalancePrice": "498991986580160234", + "state": "2", + "currentTick": "7109", + "currentPrice": "491219375657927966", + "twapSlow": "496851034429497456", + "twapFast": "494076583070952121", + "depositTokenBalance": "1150546157987284462865", + "pairedTokenBalance": "0", + "usedToken0": "317719039777515540362327", + "usedToken1": "211020096935471439602394", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6120", + "topTick": "7080" + } + } + }, + { + "transactionHash": "0x85a5fac62b1fa3dc5b00a3af50de7bc8c84eee812ea85d2ad4b49cec2375a08c", + "state": { + "depositToken": 0, + "blockNumber": 46539055, + "lastRebalancePrice": "491219375657927966", + "state": "2", + "currentTick": "6980", + "currentPrice": "497596832900862909", + "twapSlow": "497149219587748085", + "twapFast": "497696357243411411", + "depositTokenBalance": "171892628372914473490", + "pairedTokenBalance": "0", + "usedToken0": "329331801144882597665359", + "usedToken1": "187890298541414700255998", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6000", + "topTick": "6960" + } + } + }, + { + "transactionHash": "0xac983d9fd37c46c4b077515f0f0328bd2731e6e9cd9cf4838a2b63f0d73c247a", + "state": { + "depositToken": 0, + "blockNumber": 46541519, + "lastRebalancePrice": "497596832900862909", + "state": "2", + "currentTick": "6688", + "currentPrice": "512340127882847171", + "twapSlow": "510039891730062125", + "twapFast": "512340127882847171", + "depositTokenBalance": "142280003600908463181", + "pairedTokenBalance": "0", + "usedToken0": "357408239473794998112681", + "usedToken1": "133671549701905357941755", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6420", + "topTick": "8880" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6420" + } + } + }, + { + "transactionHash": "0xa31665235e032f9dd98ffc322aa0684b4243dae7bd78e05eaee873a853f8a479", + "state": { + "depositToken": 0, + "blockNumber": 46550826, + "lastRebalancePrice": "512340127882847171", + "state": "1", + "currentTick": "6425", + "currentPrice": "525992735518301138", + "twapSlow": "512596349185925041", + "twapFast": "524679461618443414", + "depositTokenBalance": "440000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "403402048262276101780079", + "usedToken1": "46432078988847696263049", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6480" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0xfffc36ea65384eaf54d5885912d43a1cc604ae778fc6410dd248cc7830e89bf3", + "state": { + "depositToken": 0, + "blockNumber": 46551102, + "lastRebalancePrice": "525992735518301138", + "state": "0", + "currentTick": "5999", + "currentPrice": "548882982402462326", + "twapSlow": "519562970468383259", + "twapFast": "546910654600610431", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "403642187056402263884456", + "usedToken1": "44437382652721865571848", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5940" + } + } + }, + { + "transactionHash": "0xcf4b5c177520ee43863f3a3e7fd2fc875faf46ed08d3555fbeb13d2ca7c73ad5", + "state": { + "depositToken": 0, + "blockNumber": 46553581, + "lastRebalancePrice": "548882982402462326", + "state": "3", + "currentTick": "6396", + "currentPrice": "527520251905037781", + "twapSlow": "531331912652045216", + "twapFast": "527520251905037781", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "395702636904648751834059", + "usedToken1": "59193350212217755200150", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "8580" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0xda0deae7b417635f183e37550a444907a808ce8dfbe816eaadd3e4aa4c1300c1", + "state": { + "depositToken": 0, + "blockNumber": 46556044, + "lastRebalancePrice": "527520251905037781", + "state": "1", + "currentTick": "5975", + "currentPrice": "550201817588782300", + "twapSlow": "534582779843619222", + "twapFast": "548224750752587139", + "depositTokenBalance": "205964601986536250113", + "pairedTokenBalance": "0", + "usedToken0": "414888778695298959994109", + "usedToken1": "23746593465762805255367", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6000" + }, + "limitPosition": { + "bottomTick": "6000", + "topTick": "8220" + } + } + }, + { + "transactionHash": "0x4682f2020bbb3c8e4981ed6e26da1c99f22f50286c26eefaeae779f17ef860a3", + "state": { + "depositToken": 0, + "blockNumber": 46558509, + "lastRebalancePrice": "550201817588782300", + "state": "0", + "currentTick": "5791", + "currentPrice": "560418727529842409", + "twapSlow": "560979398513061657", + "twapFast": "560418727529842409", + "depositTokenBalance": "1", + "pairedTokenBalance": "1", + "usedToken0": "414821629442610079443534", + "usedToken1": "23529328664918249699537", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5820" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "8040" + } + } + }, + { + "transactionHash": "0xd9632a5175a081e98084b44640668d23e48f894a3a95c030c5ce808884455aa0", + "state": { + "depositToken": 0, + "blockNumber": 46562092, + "lastRebalancePrice": "560418727529842409", + "state": "0", + "currentTick": "5951", + "currentPrice": "551523821622205279", + "twapSlow": "558404947776373754", + "twapFast": "553236112535840544", + "depositTokenBalance": "3885685527940507701561", + "pairedTokenBalance": "0", + "usedToken0": "392870007587810325368258", + "usedToken1": "70485251626741918042406", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5820", + "topTick": "8160" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0xab39a9c4c0926c9cb61ac056645df36ef18f4585980c12aceb06845d02bed78e", + "state": { + "depositToken": 0, + "blockNumber": 46566982, + "lastRebalancePrice": "551523821622205279", + "state": "1", + "currentTick": "6302", + "currentPrice": "532502071055237897", + "twapSlow": "543476119345730127", + "twapFast": "533301383531356506", + "depositTokenBalance": "54615943393736078923", + "pairedTokenBalance": "1", + "usedToken0": "326769648411724084459534", + "usedToken1": "190913096708976049004341", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5340", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0xbdfef1b018cf559c403b1eebdb57df5193977701b7fc25b7cb9b7cc140bb41e8", + "state": { + "depositToken": 0, + "blockNumber": 46570009, + "lastRebalancePrice": "532502071055237897", + "state": "2", + "currentTick": "6431", + "currentPrice": "525677250306015649", + "twapSlow": "529263856923564824", + "twapFast": "526782277153349392", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "324435283350310289214317", + "usedToken1": "194273306908662280311217", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5460", + "topTick": "6420" + } + } + }, + { + "transactionHash": "0x328442f9cdac7a1b0024c94e4255fc4fa8ee5d0be969ba41ba488404743dcabe", + "state": { + "depositToken": 0, + "blockNumber": 46573382, + "lastRebalancePrice": "525677250306015649", + "state": "2", + "currentTick": "6586", + "currentPrice": "517592476014189623", + "twapSlow": "521071814408119397", + "twapFast": "518784249135101352", + "depositTokenBalance": "3094291303794536216418", + "pairedTokenBalance": "0", + "usedToken0": "325026080034848415795185", + "usedToken1": "199098933996435699013334", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5580", + "topTick": "6540" + } + } + }, + { + "transactionHash": "0x9f5cf37dc2cbf37e863af2c8552035a97fcff275a613a4f2ff1b2842ac42891c", + "state": { + "depositToken": 0, + "blockNumber": 46575846, + "lastRebalancePrice": "517592476014189623", + "state": "2", + "currentTick": "6807", + "currentPrice": "506279714351365676", + "twapSlow": "507648448103668831", + "twapFast": "506279714351365676", + "depositTokenBalance": "249655141179706171218", + "pairedTokenBalance": "0", + "usedToken0": "321696645056139267827783", + "usedToken1": "206112805079582340995539", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "6780" + } + } + }, + { + "transactionHash": "0x2cf70c771ea76dcbde46fae7d80462edcfb1f6bdde0e26e6f9d503446d727327", + "state": { + "depositToken": 0, + "blockNumber": 46578311, + "lastRebalancePrice": "506279714351365676", + "state": "2", + "currentTick": "6641", + "currentPrice": "514753673197420359", + "twapSlow": "513160487182616926", + "twapFast": "513982160042157023", + "depositTokenBalance": "788171544133683818021", + "pairedTokenBalance": "0", + "usedToken0": "338299546330303447115414", + "usedToken1": "174874733225813317144098", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5640", + "topTick": "6600" + } + } + }, + { + "transactionHash": "0x9481f3c42d8ab5f93c67985177dbf2ad3c90453e89d6e6b708c41ed7e4a8ed13", + "state": { + "depositToken": 0, + "blockNumber": 46580776, + "lastRebalancePrice": "514753673197420359", + "state": "2", + "currentTick": "7049", + "currentPrice": "494175403328332143", + "twapSlow": "505318744152573502", + "twapFast": "494175403328332143", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "331347304342317729870063", + "usedToken1": "188415636958120343863468", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6060", + "topTick": "7020" + } + } + }, + { + "transactionHash": "0xf39a959b0dcf7d54d5ab67ca9d9d46bcc040e419aae10591b0841461a69c9af7", + "state": { + "depositToken": 0, + "blockNumber": 46583240, + "lastRebalancePrice": "494175403328332143", + "state": "2", + "currentTick": "7349", + "currentPrice": "479571032257567944", + "twapSlow": "484196851287025787", + "twapFast": "479618989360793701", + "depositTokenBalance": "2978546595610132654206", + "pairedTokenBalance": "0", + "usedToken0": "327067781631855016943548", + "usedToken1": "197211767631701049680649", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6360", + "topTick": "7320" + } + } + }, + { + "transactionHash": "0xf21ee98dc7560154a990d71f66f242758c1f77faf4e620a264f6a00b35431553", + "state": { + "depositToken": 0, + "blockNumber": 46585706, + "lastRebalancePrice": "479571032257567944", + "state": "2", + "currentTick": "7460", + "currentPrice": "474277491969308058", + "twapSlow": "474657046787144116", + "twapFast": "474277491969308058", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "325249939477083877102648", + "usedToken1": "200921430672049138218738", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "7440", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "7440" + } + } + }, + { + "transactionHash": "0xc81f2ed0dcf861f30f0a0e085a8ca4ba096a4b0ff5bc354e479e23ed320144c2", + "state": { + "depositToken": 0, + "blockNumber": 46588170, + "lastRebalancePrice": "474277491969308058", + "state": "2", + "currentTick": "7147", + "currentPrice": "489356377117724436", + "twapSlow": "477417918405670822", + "twapFast": "489356377117724436", + "depositTokenBalance": "7252990111524329205288", + "pairedTokenBalance": "0", + "usedToken0": "362749612468660727970785", + "usedToken1": "138188489614735520725432", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6840", + "topTick": "9360" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6840" + } + } + }, + { + "transactionHash": "0xe7dc226b4cb6143844becefe00e4fdf8ff479fb89316e88b2961cc16a23d4a79", + "state": { + "depositToken": 0, + "blockNumber": 46590635, + "lastRebalancePrice": "489356377117724436", + "state": "1", + "currentTick": "6832", + "currentPrice": "505015658994726746", + "twapSlow": "503754759671994280", + "twapFast": "505015658994726746", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "416417225537750620746275", + "usedToken1": "30186163453141524202470", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6840" + }, + "limitPosition": { + "bottomTick": "6840", + "topTick": "9120" + } + } + }, + { + "transactionHash": "0x927f6abb5bc5d7616453850286e946738e36118572abaad3965d4fde1308d431", + "state": { + "depositToken": 0, + "blockNumber": 46593099, + "lastRebalancePrice": "505015658994726746", + "state": "0", + "currentTick": "6434", + "currentPrice": "525519578666302878", + "twapSlow": "513673878653608811", + "twapFast": "524207486122198397", + "depositTokenBalance": "100000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "416824217801836280942688", + "usedToken1": "29592201061984560758948", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6480" + }, + "limitPosition": { + "bottomTick": "6480", + "topTick": "8700" + } + } + }, + { + "transactionHash": "0xc4a774e19f8525d99adb17610be8cca020989194a528ca937cc2a6e0a4e875bb", + "state": { + "depositToken": 0, + "blockNumber": 46595563, + "lastRebalancePrice": "525519578666302878", + "state": "0", + "currentTick": "6719", + "currentPrice": "510754411900491273", + "twapSlow": "515784159162862941", + "twapFast": "506380975357033093", + "depositTokenBalance": "2090824157458317919749", + "pairedTokenBalance": "1", + "usedToken0": "371720723178547454849503", + "usedToken1": "121224148430945112153078", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6480", + "topTick": "8940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "6480" + } + } + }, + { + "transactionHash": "0xc91cf9d485af2e91aede8c2aa0c35bde97255d6719eb9a5d72881d5819430a15", + "state": { + "depositToken": 0, + "blockNumber": 46597573, + "lastRebalancePrice": "510754411900491273", + "state": "1", + "currentTick": "5897", + "currentPrice": "554509956262308925", + "twapSlow": "513519807305309479", + "twapFast": "541090196593907359", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "414867189104577866772346", + "usedToken1": "37466917961058481230327", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5880" + } + } + }, + { + "transactionHash": "0xa85d8171678da35a4ea3bf4b8302136a07785cb9e5d229e6e8ae25c97de0bbb0", + "state": { + "depositToken": 0, + "blockNumber": 46600037, + "lastRebalancePrice": "554509956262308925", + "state": "3", + "currentTick": "4957", + "currentPrice": "609159453794760748", + "twapSlow": "607517023668049961", + "twapFast": "610439968693129494", + "depositTokenBalance": "6010710000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "422214648557294389968013", + "usedToken1": "35178255585038457765262", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "4980" + }, + "limitPosition": { + "bottomTick": "4980", + "topTick": "7200" + } + } + }, + { + "transactionHash": "0x243a7416ffa820a69201f7a9f8f7092860ecee72d4025f045778071960afd94f", + "state": { + "depositToken": 0, + "blockNumber": 46601618, + "lastRebalancePrice": "609159453794760748", + "state": "0", + "currentTick": "3745", + "currentPrice": "687645884546152763", + "twapSlow": "635796105098511415", + "twapFast": "670132391854715705", + "depositTokenBalance": "10007004000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "433545930082295916024334", + "usedToken1": "33095911837221262282587", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3720" + } + } + }, + { + "transactionHash": "0x371222813580e24429cb5397f3871f56a5b36be0783a302d32560eff081d5a7b", + "state": { + "depositToken": 0, + "blockNumber": 46604083, + "lastRebalancePrice": "687645884546152763", + "state": "3", + "currentTick": "3197", + "currentPrice": "726378524758697218", + "twapSlow": "706817590619086467", + "twapFast": "721384013537690673", + "depositTokenBalance": "22761227471871867321", + "pairedTokenBalance": "0", + "usedToken0": "333972395872647803622540", + "usedToken1": "24281339940051380419673", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3240" + }, + "limitPosition": { + "bottomTick": "3240", + "topTick": "5460" + } + } + }, + { + "transactionHash": "0x794a0c562337e4200ef68c4fe84f328e666c383bb1686aa07270cb3505b3e4a4", + "state": { + "depositToken": 0, + "blockNumber": 46604278, + "lastRebalancePrice": "726378524758697218", + "state": "0", + "currentTick": "2461", + "currentPrice": "781853656621194457", + "twapSlow": "710999931062852148", + "twapFast": "749023027985730865", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "334541960400203730985255", + "usedToken1": "23296218357863214907494", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2460" + } + } + }, + { + "transactionHash": "0x2a4d53e0053eada27756ec7042695771a810cfdb34c8e633cd89f87e4ca8da48", + "state": { + "depositToken": 0, + "blockNumber": 46606742, + "lastRebalancePrice": "781853656621194457", + "state": "3", + "currentTick": "3200", + "currentPrice": "726160654776718399", + "twapSlow": "737503255887700197", + "twapFast": "726160654776718399", + "depositTokenBalance": "16746415826390227852", + "pairedTokenBalance": "0", + "usedToken0": "322003951955829304443388", + "usedToken1": "39600297759474569156133", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "5400" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0xf2a220284feea061ac4f6b2e03e21b50921b212a76a016462c12cad24a9e52e7", + "state": { + "depositToken": 0, + "blockNumber": 46609205, + "lastRebalancePrice": "726160654776718399", + "state": "1", + "currentTick": "3279", + "currentPrice": "720446870451445516", + "twapSlow": "718001632611553710", + "twapFast": "716280580832638958", + "depositTokenBalance": "28771326128261431802252", + "pairedTokenBalance": "0", + "usedToken0": "338914331746014721080110", + "usedToken1": "56871902998452689795833", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "5460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0xa35be3f97b5262bf471ca70f1ae1ca72dbd4a7f72afd1f9141b70b1a15830631", + "state": { + "depositToken": 0, + "blockNumber": 46611681, + "lastRebalancePrice": "720446870451445516", + "state": "1", + "currentTick": "2372", + "currentPrice": "788842860535969440", + "twapSlow": "758216616117862996", + "twapFast": "781462847043572947", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "365381210542208028848040", + "usedToken1": "19222654349037995408631", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "2400" + }, + "limitPosition": { + "bottomTick": "2400", + "topTick": "4620" + } + } + }, + { + "transactionHash": "0x46e3c3de8ab8a5f5b018068c75e84d6db140643cbb27d66f269de8fa751648d4", + "state": { + "depositToken": 0, + "blockNumber": 46611922, + "lastRebalancePrice": "788842860535969440", + "state": "0", + "currentTick": "2069", + "currentPrice": "813109367029969929", + "twapSlow": "768290915851172852", + "twapFast": "809054169393316884", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "365612464919664910589976", + "usedToken1": "18933882155957493283714", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2040", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2040" + } + } + }, + { + "transactionHash": "0x0cd05bd44e7b5d42b627be5528ceb468b1162bf8b6ab20ccbe5ec0ac66635ef2", + "state": { + "depositToken": 0, + "blockNumber": 46614385, + "lastRebalancePrice": "813109367029969929", + "state": "3", + "currentTick": "1666", + "currentPrice": "846545210108873349", + "twapSlow": "843250277827382890", + "twapFast": "838373825416164117", + "depositTokenBalance": "209840473835209862071", + "pairedTokenBalance": "1", + "usedToken0": "363975571177234972702323", + "usedToken1": "17792558451495732314139", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "1680" + }, + "limitPosition": { + "bottomTick": "1680", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0x44875a416a0ca3683694325d3ea87a5332d7266878ec06c1646c1279b20ca73c", + "state": { + "depositToken": 0, + "blockNumber": 46625399, + "lastRebalancePrice": "714135066245019260", + "state": "3", + "currentTick": "3136", + "currentPrice": "730822752667041142", + "twapSlow": "764765069590960104", + "twapFast": "736324253081190969", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "291918501152104299901608", + "usedToken1": "143869660501396917691987", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2160", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0x68c482af7bf016bd55e754781c2f331fbfb4486ee2c2d9beadba7ef60ea75841", + "state": { + "depositToken": 0, + "blockNumber": 46627187, + "lastRebalancePrice": "730822752667041142", + "state": "2", + "currentTick": "3844", + "currentPrice": "680872114455863570", + "twapSlow": "721672610429032170", + "twapFast": "685311975126455386", + "depositTokenBalance": "1209771313436365463900", + "pairedTokenBalance": "0", + "usedToken0": "283029378326455808064008", + "usedToken1": "158356415885057352632121", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3840" + } + } + }, + { + "transactionHash": "0xb8054a289d3bfa7b6fb5691f0d279129813324a3068ee3be914f9b206d820c6c", + "state": { + "depositToken": 0, + "blockNumber": 46629652, + "lastRebalancePrice": "680872114455863570", + "state": "3", + "currentTick": "3687", + "currentPrice": "691645618710199699", + "twapSlow": "691369029613446998", + "twapFast": "691922318459187553", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "269193291714881642886841", + "usedToken1": "148900708797506910974156", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2700", + "topTick": "3660" + } + } + }, + { + "transactionHash": "0xdda505194166348caa379f0cd9dfe22541a46d52d41868c2b4b8001143c353a9", + "state": { + "depositToken": 0, + "blockNumber": 46632117, + "lastRebalancePrice": "691645618710199699", + "state": "2", + "currentTick": "3475", + "currentPrice": "706464287821681848", + "twapSlow": "706393648456836165", + "twapFast": "706464287821681848", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "289868165149608988359807", + "usedToken1": "119163054528960342114810", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3420", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2520", + "topTick": "3420" + } + } + }, + { + "transactionHash": "0x35ff1a5a158ce103ae44e4f4205b2d544b279bd7ebb727c64864a085aaf72197", + "state": { + "depositToken": 0, + "blockNumber": 46634582, + "lastRebalancePrice": "706464287821681848", + "state": "2", + "currentTick": "3261", + "currentPrice": "721744777690075073", + "twapSlow": "721311882349455728", + "twapFast": "721744777690075073", + "depositTokenBalance": "41559721004769087057", + "pairedTokenBalance": "0", + "usedToken0": "305982007777389704689902", + "usedToken1": "96828490372008794810561", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2880", + "topTick": "5460" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2880" + } + } + }, + { + "transactionHash": "0x0cb3efd065de8ac3675711fa4078aa373e47c0dc2f26f9820371ac4266f10561", + "state": { + "depositToken": 0, + "blockNumber": 46635737, + "lastRebalancePrice": "721744777690075073", + "state": "1", + "currentTick": "3494", + "currentPrice": "705123347017886552", + "twapSlow": "716997183825701685", + "twapFast": "708728481112183562", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "271812322290139472843586", + "usedToken1": "144603561550067752773205", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3480" + } + } + }, + { + "transactionHash": "0x15120476ee0d23d7de471e9645b7b9244bdf20445389b9f5b2ad8e88fd5908aa", + "state": { + "depositToken": 0, + "blockNumber": 46638203, + "lastRebalancePrice": "705123347017886552", + "state": "3", + "currentTick": "3334", + "currentPrice": "716495486496022455", + "twapSlow": "701045672173080985", + "twapFast": "713778105807166958", + "depositTokenBalance": "1650301807256852426137", + "pairedTokenBalance": "0", + "usedToken0": "274405408187566478050745", + "usedToken1": "143280988347737231015016", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2340", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0xde11291fd57a6439bbfe708c8bb99a303e8b5e4fe4c775c4c3c4f7349da72684", + "state": { + "depositToken": 0, + "blockNumber": 46639292, + "lastRebalancePrice": "716495486496022455", + "state": "2", + "currentTick": "2503", + "currentPrice": "778576921058673421", + "twapSlow": "718432541305726643", + "twapFast": "720735092429320181", + "depositTokenBalance": "50351220437299105313", + "pairedTokenBalance": "0", + "usedToken0": "363923203749859328899304", + "usedToken1": "23860292306612401184511", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2460", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2460" + } + } + }, + { + "transactionHash": "0x51eca44221d23f2758bf747efe58d75d7373a68be567d069328d9cf603be017f", + "state": { + "depositToken": 0, + "blockNumber": 46641756, + "lastRebalancePrice": "778576921058673421", + "state": "3", + "currentTick": "2611", + "currentPrice": "770213949781589740", + "twapSlow": "771138715032019704", + "twapFast": "772064590611298744", + "depositTokenBalance": "11566543200000000000000", + "pairedTokenBalance": "0", + "usedToken0": "373505404050320409614817", + "usedToken1": "26481594450203783645597", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "2640" + }, + "limitPosition": { + "bottomTick": "2640", + "topTick": "4860" + } + } + }, + { + "transactionHash": "0xe9bc6d23b3f6228ee4c7c3efbf0b07efe5c6223c14c1f15dfd01a7f94fa7295d", + "state": { + "depositToken": 0, + "blockNumber": 46644220, + "lastRebalancePrice": "770213949781589740", + "state": "0", + "currentTick": "2739", + "currentPrice": "760418525436391494", + "twapSlow": "759506616055629085", + "twapFast": "759810464275486402", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "355784406459484089632953", + "usedToken1": "49418461387927079659130", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2580", + "topTick": "4920" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2580" + } + } + }, + { + "transactionHash": "0xbbc2146980ed479b160df50125bce3896a221659f513e1907fab9a31a581d0e3", + "state": { + "depositToken": 0, + "blockNumber": 46646684, + "lastRebalancePrice": "760418525436391494", + "state": "1", + "currentTick": "3020", + "currentPrice": "739349228234377932", + "twapSlow": "754887957855226691", + "twapFast": "739349228234377932", + "depositTokenBalance": "5000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "313238095686322456493811", + "usedToken1": "114399891640387911522426", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2580", + "topTick": "5220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2580" + } + } + }, + { + "transactionHash": "0xeca0ad443e25ea41e18e563074dd24b215789261dc96190ea867225949b230de", + "state": { + "depositToken": 0, + "blockNumber": 46647312, + "lastRebalancePrice": "739349228234377932", + "state": "1", + "currentTick": "3158", + "currentPrice": "729216790114476657", + "twapSlow": "738905773919380992", + "twapFast": "730676610038267388", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "292003874039981575391943", + "usedToken1": "141738300934458976612644", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0x91d995baab8f24e6332c21f19865ace815e5f131c8a1b08727279e3a3117174a", + "state": { + "depositToken": 0, + "blockNumber": 46649776, + "lastRebalancePrice": "729216790114476657", + "state": "3", + "currentTick": "3581", + "currentPrice": "699015686123772004", + "twapSlow": "714778044953259971", + "twapFast": "699784987952496180", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "285899155213375767166131", + "usedToken1": "150289382311948709088063", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2580", + "topTick": "3540" + } + } + }, + { + "transactionHash": "0xb037c98eaac018c77a25402a078d02d81b8e6b09ce9604db45bca97713a41a8c", + "state": { + "depositToken": 0, + "blockNumber": 46652241, + "lastRebalancePrice": "699015686123772004", + "state": "2", + "currentTick": "3708", + "currentPrice": "690194759388117685", + "twapSlow": "694417602860650653", + "twapFast": "690194759388117685", + "depositTokenBalance": "2795000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "286907717937365331243478", + "usedToken1": "152946799477611435351035", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3660", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2700", + "topTick": "3660" + } + } + }, + { + "transactionHash": "0x0371b5df594fbdf009b3e5d38834479cf2638e6bcb8ce432005197f7d1619f59", + "state": { + "depositToken": 0, + "blockNumber": 46654951, + "lastRebalancePrice": "690194759388117685", + "state": "2", + "currentTick": "3956", + "currentPrice": "673289269105748655", + "twapSlow": "690263778864056497", + "twapFast": "679919608030219145", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "283349772357395921744026", + "usedToken1": "158080295695855294164047", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3000", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0x50e0544db49b098a3efe760e5d435c701286b4d07b7df9cb30a4623559b5c0b2", + "state": { + "depositToken": 0, + "blockNumber": 46657415, + "lastRebalancePrice": "673289269105748655", + "state": "2", + "currentTick": "3782", + "currentPrice": "685106422645783865", + "twapSlow": "683942789276576351", + "twapFast": "685037918853898475", + "depositTokenBalance": "373724473454673517361", + "pairedTokenBalance": "0", + "usedToken0": "298395564349360094419665", + "usedToken1": "135833216044351088250641", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2820", + "topTick": "3780" + } + } + }, + { + "transactionHash": "0xb4746d1a038f490a05eeaab171e497586c9130e7d63aa705b52306d224cf2a26", + "state": { + "depositToken": 0, + "blockNumber": 46663756, + "lastRebalancePrice": "685106422645783865", + "state": "2", + "currentTick": "3930", + "currentPrice": "675042011147107306", + "twapSlow": "684763972176450440", + "twapFast": "677070076355818598", + "depositTokenBalance": "2839017315284386076044", + "pairedTokenBalance": "0", + "usedToken0": "297764685688742689576464", + "usedToken1": "138518541032569890302774", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2940", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0x263559ec174c29c7ed9873eb9e4f5f142072569bfb9ef2b319b1629bc1d39610", + "state": { + "depositToken": 0, + "blockNumber": 46666220, + "lastRebalancePrice": "675042011147107306", + "state": "2", + "currentTick": "3767", + "currentPrice": "686134801953313278", + "twapSlow": "685380506323968031", + "twapFast": "685586141037965792", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "311411381791122950896194", + "usedToken1": "118314266453764237100216", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2760", + "topTick": "3720" + } + } + }, + { + "transactionHash": "0x255a49ae0d42fb2c6addd8fc98a585643eb8db7c89d16436b56cb0009e0362e0", + "state": { + "depositToken": 0, + "blockNumber": 46668684, + "lastRebalancePrice": "686134801953313278", + "state": "2", + "currentTick": "3564", + "currentPrice": "700204963927012620", + "twapSlow": "694487044620936718", + "twapFast": "697409877722289416", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "325645587781378457779985", + "usedToken1": "97815572437964501669387", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3240", + "topTick": "5760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3240" + } + } + }, + { + "transactionHash": "0x68e9c15ff88099320764401d47ea3638fa095708bbb711374d20059955b754d2", + "state": { + "depositToken": 0, + "blockNumber": 46671148, + "lastRebalancePrice": "700204963927012620", + "state": "1", + "currentTick": "3604", + "currentPrice": "697409877722289416", + "twapSlow": "699085587692384381", + "twapFast": "697549366671932651", + "depositTokenBalance": "5199063935677920882191", + "pairedTokenBalance": "0", + "usedToken0": "324673707346079885840890", + "usedToken1": "106996521696025371171762", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3240", + "topTick": "5820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3240" + } + } + }, + { + "transactionHash": "0xec1b10becef13fe84f9cbf99043543e0e49b9e5f18304a45433f9de84c0e766c", + "state": { + "depositToken": 0, + "blockNumber": 46677754, + "lastRebalancePrice": "689849765513485548", + "state": "1", + "currentTick": "3807", + "currentPrice": "683395881182508660", + "twapSlow": "690539925794189975", + "twapFast": "684421692880996094", + "depositTokenBalance": "1105774330140821713245", + "pairedTokenBalance": "1", + "usedToken0": "294513991622520701546135", + "usedToken1": "152639140211153611638241", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3780" + } + } + }, + { + "transactionHash": "0x0225deaa9e3cafb34f3bf42eef5e3a6d1b09e1a34d8ef1c396deff393113bc79", + "state": { + "depositToken": 0, + "blockNumber": 46680219, + "lastRebalancePrice": "683395881182508660", + "state": "3", + "currentTick": "4152", + "currentPrice": "660221931006125673", + "twapSlow": "661940655465581857", + "twapFast": "660221931006125673", + "depositTokenBalance": "1189171530183405035520", + "pairedTokenBalance": "0", + "usedToken0": "290528711512960848906455", + "usedToken1": "159660997328470961511877", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "4140" + } + } + }, + { + "transactionHash": "0xa4bddd4a95572794a267fa7bdf7c5dad04bff3500e7616a9cd2be9e4c9fc37bf", + "state": { + "depositToken": 0, + "blockNumber": 46684421, + "lastRebalancePrice": "660221931006125673", + "state": "2", + "currentTick": "4296", + "currentPrice": "650783328152798291", + "twapSlow": "655289034647406259", + "twapFast": "652086132039635778", + "depositTokenBalance": "3746780897320741833565", + "pairedTokenBalance": "0", + "usedToken0": "292261194281400292860786", + "usedToken1": "162973508153489669864629", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4260", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3300", + "topTick": "4260" + } + } + }, + { + "transactionHash": "0xe0d5ee11624388e12948bb7c5688fae56c160256db4205e96112d221fc02078b", + "state": { + "depositToken": 0, + "blockNumber": 46686885, + "lastRebalancePrice": "650783328152798291", + "state": "2", + "currentTick": "4180", + "currentPrice": "658375987421923426", + "twapSlow": "662602894073789179", + "twapFast": "658375987421923426", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "301702393852829028400241", + "usedToken1": "148302367724688650450802", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4140", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "4140" + } + } + }, + { + "transactionHash": "0x3cb81e5c9aa269d958c07d1e924b41b639f85a4a25040b1145e4336872040d49", + "state": { + "depositToken": 0, + "blockNumber": 46689356, + "lastRebalancePrice": "658375987421923426", + "state": "2", + "currentTick": "4013", + "currentPrice": "669462627888295284", + "twapSlow": "669462627888295284", + "twapFast": "669462627888295284", + "depositTokenBalance": "1037204303945297788542", + "pairedTokenBalance": "0", + "usedToken0": "316675355069351564321931", + "usedToken1": "127554639877513115651453", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3000", + "topTick": "3960" + } + } + }, + { + "transactionHash": "0xd0a178643edc91853ce6b7f0c63894a4d0e6cae1fd44048c36c17f4c9c8be50d", + "state": { + "depositToken": 0, + "blockNumber": 46692703, + "lastRebalancePrice": "669462627888295284", + "state": "2", + "currentTick": "4026", + "currentPrice": "668592935378548184", + "twapSlow": "668592935378548184", + "twapFast": "668592935378548184", + "depositTokenBalance": "4777543463085696233455", + "pairedTokenBalance": "0", + "usedToken0": "321114361676634089972381", + "usedToken1": "127870460121400477608516", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4020", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3060", + "topTick": "4020" + } + } + }, + { + "transactionHash": "0x96e478173e0bf3fdfcffb6f90549b54433eeeeb834d28a98b73f947f4eee8c54", + "state": { + "depositToken": 0, + "blockNumber": 46695167, + "lastRebalancePrice": "668592935378548184", + "state": "2", + "currentTick": "3902", + "currentPrice": "676934682649941783", + "twapSlow": "673962861435834355", + "twapFast": "678018590843007524", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "331978208179552570939204", + "usedToken1": "111707711179320575402393", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3540", + "topTick": "6120" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3540" + } + } + }, + { + "transactionHash": "0x98bee844b9ed0a1b5616b41f35c705b9ce8ba6bbe002346fcf65795e805adf90", + "state": { + "depositToken": 0, + "blockNumber": 46697631, + "lastRebalancePrice": "676934682649941783", + "state": "1", + "currentTick": "4088", + "currentPrice": "664460688988179800", + "twapSlow": "664726513134074320", + "twapFast": "664460688988179800", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "302669239882566446795386", + "usedToken1": "155410293158807838132795", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4080", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3120", + "topTick": "4080" + } + } + }, + { + "transactionHash": "0x2a87099d522a271ae7242307627bfb001b4bea93f598690f8e059464fefb4d3c", + "state": { + "depositToken": 0, + "blockNumber": 46700095, + "lastRebalancePrice": "664460688988179800", + "state": "2", + "currentTick": "3787", + "currentPrice": "684763972176450440", + "twapSlow": "678561195598861153", + "twapFast": "684763972176450440", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "335270487087786775513306", + "usedToken1": "107094746555802854675873", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3420", + "topTick": "6000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3420" + } + } + }, + { + "transactionHash": "0x7ea271314e561bea578d5f28f47d1d2ee5ae07b21698682b45d8d2586307a991", + "state": { + "depositToken": 0, + "blockNumber": 46705250, + "lastRebalancePrice": "684763972176450440", + "state": "1", + "currentTick": "3946", + "currentPrice": "673962861435834355", + "twapSlow": "677273217691504704", + "twapFast": "675312068456787053", + "depositTokenBalance": "1358740298574763525263", + "pairedTokenBalance": "0", + "usedToken0": "311116800034314441811163", + "usedToken1": "144542833222845104496550", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3900", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2940", + "topTick": "3900" + } + } + }, + { + "transactionHash": "0xe978d561543d8586e381bc2c2e7c5d9d0272762946009171a89d043c557aef96", + "state": { + "depositToken": 0, + "blockNumber": 46707731, + "lastRebalancePrice": "673962861435834355", + "state": "2", + "currentTick": "3899", + "currentPrice": "677137783363454180", + "twapSlow": "674637127661447533", + "twapFast": "677137783363454180", + "depositTokenBalance": "25497789438064301496189", + "pairedTokenBalance": "0", + "usedToken0": "337403267716934366924221", + "usedToken1": "143077125698353548280746", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2940", + "topTick": "3840" + } + } + }, + { + "transactionHash": "0x8bc4d9261fdcf6c4644310854f007a985c4925419ba2db2d875b02b1bc960dcd", + "state": { + "depositToken": 0, + "blockNumber": 46710197, + "lastRebalancePrice": "677137783363454180", + "state": "2", + "currentTick": "4016", + "currentPrice": "669261829260992847", + "twapSlow": "683874401836392712", + "twapFast": "669261829260992847", + "depositTokenBalance": "43205044752099622082", + "pairedTokenBalance": "0", + "usedToken0": "335453424734864393021400", + "usedToken1": "146003266640633814519779", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3060", + "topTick": "3960" + } + } + }, + { + "transactionHash": "0x2ef204bf5ffa12f6b651029419a48cfeca9ecdc1ec8dd1f010cb02c23b3de4c6", + "state": { + "depositToken": 0, + "blockNumber": 46712662, + "lastRebalancePrice": "669261829260992847", + "state": "2", + "currentTick": "3771", + "currentPrice": "685860416632291853", + "twapSlow": "676799316018744874", + "twapFast": "685860416632291853", + "depositTokenBalance": "7174390949858129522376", + "pairedTokenBalance": "0", + "usedToken0": "364619613317285558286479", + "usedToken1": "113855464520175141582554", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3420", + "topTick": "6000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3420" + } + } + }, + { + "transactionHash": "0x143749144e737f148bab378fef5df23806982da0f317e0af63cbaa9a01719b8e", + "state": { + "depositToken": 0, + "blockNumber": 46716524, + "lastRebalancePrice": "685860416632291853", + "state": "1", + "currentTick": "3661", + "currentPrice": "693446146966420100", + "twapSlow": "695946926761517951", + "twapFast": "694070498197561001", + "depositTokenBalance": "8719188387513925854805", + "pairedTokenBalance": "0", + "usedToken0": "392784557591099123608914", + "usedToken1": "86489509135927556382101", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3420", + "topTick": "5880" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3420" + } + } + }, + { + "transactionHash": "0x753650c55dee8f22222732b1cc31b4fa790b7b9ae4ddfff82b8214390488b947", + "state": { + "depositToken": 0, + "blockNumber": 46718988, + "lastRebalancePrice": "693446146966420100", + "state": "1", + "currentTick": "3435", + "currentPrice": "709295662380741777", + "twapSlow": "702519341213366481", + "twapFast": "709295662380741777", + "depositTokenBalance": "585856926677617715647", + "pairedTokenBalance": "0", + "usedToken0": "435606769267818241138371", + "usedToken1": "25666097513053253578364", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3480" + }, + "limitPosition": { + "bottomTick": "3480", + "topTick": "5700" + } + } + }, + { + "transactionHash": "0x56eb1c4d1e6e185850d2644be9b64736c09cd889b866f9b11476519ff15cbc02", + "state": { + "depositToken": 0, + "blockNumber": 46722204, + "lastRebalancePrice": "709295662380741777", + "state": "0", + "currentTick": "3542", + "currentPrice": "701747033399946748", + "twapSlow": "705123347017886552", + "twapFast": "702027774320935789", + "depositTokenBalance": "648140863345624232929", + "pairedTokenBalance": "0", + "usedToken0": "423084227762768937277218", + "usedToken1": "43959671641596702491626", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3600" + }, + "limitPosition": { + "bottomTick": "3600", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0x0a1f120da8833584cbb95f685b88a7e2921e2aa331707de16c1179de8d697b92", + "state": { + "depositToken": 0, + "blockNumber": 46724668, + "lastRebalancePrice": "701747033399946748", + "state": "0", + "currentTick": "2729", + "currentPrice": "761179286241430525", + "twapSlow": "730165340939329917", + "twapFast": "757610315691989529", + "depositTokenBalance": "1851182109353898043579", + "pairedTokenBalance": "0", + "usedToken0": "426202985302185948355198", + "usedToken1": "42182784903413391367237", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "2760" + }, + "limitPosition": { + "bottomTick": "2760", + "topTick": "4980" + } + } + }, + { + "transactionHash": "0xa928d056b5d24dfb34b85faf9d43f04c99232f2873eb3039886e5695bba70f66", + "state": { + "depositToken": 0, + "blockNumber": 46726045, + "lastRebalancePrice": "761179286241430525", + "state": "0", + "currentTick": "3219", + "currentPrice": "724782328272623981", + "twapSlow": "745734730633748278", + "twapFast": "727250658558073232", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "334107889048024616952725", + "usedToken1": "166363524509670741599407", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3180" + } + } + }, + { + "transactionHash": "0x12597dade9e9fff2212c4b3e4e91c82e5c4b5da3d586f30eef86ee0c4e10abbd", + "state": { + "depositToken": 0, + "blockNumber": 46728507, + "lastRebalancePrice": "724782328272623981", + "state": "3", + "currentTick": "3610", + "currentPrice": "696991578212684197", + "twapSlow": "700345011921847662", + "twapFast": "696991578212684197", + "depositTokenBalance": "2637051081523632063", + "pairedTokenBalance": "0", + "usedToken0": "327641318331074395227608", + "usedToken1": "175481371592651537706595", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2640", + "topTick": "3600" + } + } + }, + { + "transactionHash": "0xd885eb66d5324d699404a59ba77724fd65bc281998c73abd9e39a963f687c35f", + "state": { + "depositToken": 0, + "blockNumber": 46731788, + "lastRebalancePrice": "696991578212684197", + "state": "2", + "currentTick": "3761", + "currentPrice": "686546585768429285", + "twapSlow": "694695411569628825", + "twapFast": "689849765513485548", + "depositTokenBalance": "172677104543573314243", + "pairedTokenBalance": "1", + "usedToken0": "325360577931180996681422", + "usedToken1": "179177831178153510002090", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2760", + "topTick": "3720" + } + } + }, + { + "transactionHash": "0x7e420c67e7ebfd15bf7e5b6e6018cf3bfa31511945a032ceff5703160389a6da", + "state": { + "depositToken": 0, + "blockNumber": 46738799, + "lastRebalancePrice": "686546585768429285", + "state": "2", + "currentTick": "3733", + "currentPrice": "688471513605208085", + "twapSlow": "688196193833150342", + "twapFast": "688471513605208085", + "depositTokenBalance": "5510034653347579367135", + "pairedTokenBalance": "0", + "usedToken0": "330180280786252061234332", + "usedToken1": "177810827295161632388568", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2760", + "topTick": "3720" + } + } + }, + { + "transactionHash": "0x47d19fad5a3470eac7bc1fcf5770243dcbb2291c3f3364a9fbc303dfe7be9c8f", + "state": { + "depositToken": 0, + "blockNumber": 46740627, + "lastRebalancePrice": "688471513605208085", + "state": "2", + "currentTick": "2979", + "currentPrice": "742386630622766110", + "twapSlow": "699155496251153619", + "twapFast": "736103399977359658", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "428803427674612664470381", + "usedToken1": "39773004996828760294890", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2940" + } + } + }, + { + "transactionHash": "0x7a213d411e2608cac1168465be008f8c43df8e4906dd88cf10d67661f9c4a31f", + "state": { + "depositToken": 0, + "blockNumber": 46743091, + "lastRebalancePrice": "742386630622766110", + "state": "3", + "currentTick": "3560", + "currentPrice": "700485087927682151", + "twapSlow": "709792318321325227", + "twapFast": "701536551387732350", + "depositTokenBalance": "758546115002608685666", + "pairedTokenBalance": "0", + "usedToken0": "416128432924791663826230", + "usedToken1": "56831750330434293215133", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3420", + "topTick": "5760" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3420" + } + } + }, + { + "transactionHash": "0xd65efaaaa5bbc5c5189687b88a6d0599fd6bf2bf65ee0ec998f33d19210bbd8f", + "state": { + "depositToken": 0, + "blockNumber": 46747298, + "lastRebalancePrice": "700485087927682151", + "state": "1", + "currentTick": "3729", + "currentPrice": "688746943521694940", + "twapSlow": "681008295687475887", + "twapFast": "688402673337874298", + "depositTokenBalance": "5328234321567275717849", + "pairedTokenBalance": "0", + "usedToken0": "383680209967292118171002", + "usedToken1": "105049160203388326806471", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3420", + "topTick": "5940" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3420" + } + } + }, + { + "transactionHash": "0x93633d69403e289a8515617f7cb0390529a1deb3dc68f91a733c5c8c0726cba9", + "state": { + "depositToken": 0, + "blockNumber": 46753340, + "lastRebalancePrice": "688746943521694940", + "state": "1", + "currentTick": "3812", + "currentPrice": "683054285727385510", + "twapSlow": "685037918853898475", + "twapFast": "683054285727385510", + "depositTokenBalance": "6179489419853305145802", + "pairedTokenBalance": "0", + "usedToken0": "373157820807435768448062", + "usedToken1": "125675041596623698714116", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3480", + "topTick": "6000" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3480" + } + } + }, + { + "transactionHash": "0x1021c8bee11fc8cef8f705976f2bae3dc066c320135bd0f860544c21db128b2b", + "state": { + "depositToken": 0, + "blockNumber": 46759665, + "lastRebalancePrice": "683054285727385510", + "state": "1", + "currentTick": "3977", + "currentPrice": "671876915747158001", + "twapSlow": "679307986234662473", + "twapFast": "674299910269578381", + "depositTokenBalance": "3377872077240200856374", + "pairedTokenBalance": "0", + "usedToken0": "347220644196037551661145", + "usedToken1": "170054542718965119741000", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3960", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3000", + "topTick": "3960" + } + } + }, + { + "transactionHash": "0x72aa17b0a04e45d0951ce7ed57cbf3516a60d5cc952457660f227e49c821c088", + "state": { + "depositToken": 0, + "blockNumber": 46762129, + "lastRebalancePrice": "671876915747158001", + "state": "2", + "currentTick": "3643", + "currentPrice": "694695411569628825", + "twapSlow": "682030523499669325", + "twapFast": "694695411569628825", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "384798800472947726964612", + "usedToken1": "111901101078514640285674", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3360", + "topTick": "5820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3360" + } + } + }, + { + "transactionHash": "0xe108bbdf0009d0c3079b4617ae8e59bc4beea4bc661d6135661c2e2a83984922", + "state": { + "depositToken": 0, + "blockNumber": 46764635, + "lastRebalancePrice": "694695411569628825", + "state": "1", + "currentTick": "3331", + "currentPrice": "716710456637552353", + "twapSlow": "700415046423039847", + "twapFast": "712637030993933004", + "depositTokenBalance": "40000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "438538859677698404308777", + "usedToken1": "36601976591491550439357", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3360" + }, + "limitPosition": { + "bottomTick": "3360", + "topTick": "5580" + } + } + }, + { + "transactionHash": "0x6a849cac712b2c35910e7ba870cdcc57dcb9eddd68d077b07d7a675f21c53846", + "state": { + "depositToken": 0, + "blockNumber": 46767100, + "lastRebalancePrice": "716710456637552353", + "state": "0", + "currentTick": "3139", + "currentPrice": "730603549683299058", + "twapSlow": "726233270842196070", + "twapFast": "727614356619690995", + "depositTokenBalance": "5089395520359536008095", + "pairedTokenBalance": "0", + "usedToken0": "443486584410234063096958", + "usedToken1": "35875180855370696274536", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3180" + }, + "limitPosition": { + "bottomTick": "3180", + "topTick": "5400" + } + } + }, + { + "transactionHash": "0xfcc7491745a08520035b784062180d39512db7fbc68b74d2c0b2b8bcb0e74627", + "state": { + "depositToken": 0, + "blockNumber": 46769565, + "lastRebalancePrice": "730603549683299058", + "state": "0", + "currentTick": "3191", + "currentPrice": "726814460844859810", + "twapSlow": "737872081273345037", + "twapFast": "729216790114476657", + "depositTokenBalance": "7933644580171289330543", + "pairedTokenBalance": "0", + "usedToken0": "449051644903949388813691", + "usedToken1": "39193278738922068554761", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3240" + }, + "limitPosition": { + "bottomTick": "3240", + "topTick": "5460" + } + } + }, + { + "transactionHash": "0x94db54d4fe682e67635867685c2a01dc27d46040c9e3197f1f4472a8be9c77e6", + "state": { + "depositToken": 0, + "blockNumber": 46772029, + "lastRebalancePrice": "726814460844859810", + "state": "0", + "currentTick": "3400", + "currentPrice": "711782422154321825", + "twapSlow": "732798541426043750", + "twapFast": "714206479751643762", + "depositTokenBalance": "619662933061679474633", + "pairedTokenBalance": "0", + "usedToken0": "408236361221232288966115", + "usedToken1": "85818072283763779199557", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3180", + "topTick": "5580" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3180" + } + } + }, + { + "transactionHash": "0x31847177c7857a540180ef12b6ab28e8fca0ff8e9f5691d594370c0ab6fe6ab5", + "state": { + "depositToken": 0, + "blockNumber": 46776860, + "lastRebalancePrice": "711782422154321825", + "state": "1", + "currentTick": "3649", + "currentPrice": "694278740169829286", + "twapSlow": "699435200401780548", + "twapFast": "694556493325398812", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "359295622445529674028247", + "usedToken1": "155055597722766568051906", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2640", + "topTick": "3600" + } + } + }, + { + "transactionHash": "0xf07794e8419042db65a8160927d7b0f066b962bab7ac20b2d46fca915940120a", + "state": { + "depositToken": 0, + "blockNumber": 46779324, + "lastRebalancePrice": "694278740169829286", + "state": "2", + "currentTick": "3439", + "currentPrice": "709012015031172287", + "twapSlow": "706040557566936181", + "twapFast": "709012015031172287", + "depositTokenBalance": "4505850110022309711823", + "pairedTokenBalance": "0", + "usedToken0": "383218270757578118385157", + "usedToken1": "127479615790034921159645", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3060", + "topTick": "5640" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3060" + } + } + }, + { + "transactionHash": "0x0c00a93de980fa3963dfef365cec2f9f41237280bf2280e92cf1d5774f378ff4", + "state": { + "depositToken": 0, + "blockNumber": 46781788, + "lastRebalancePrice": "709012015031172287", + "state": "1", + "currentTick": "2924", + "currentPrice": "746480801034514641", + "twapSlow": "730384412447302109", + "twapFast": "746480801034514641", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "453953409427737716528599", + "usedToken1": "29933818476464967913898", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "2940" + }, + "limitPosition": { + "bottomTick": "2940", + "topTick": "5160" + } + } + }, + { + "transactionHash": "0x04efff8e66b9c5e282a637d701f0612062f743f8697b5e28c138c30062d9b0f5", + "state": { + "depositToken": 0, + "blockNumber": 46786837, + "lastRebalancePrice": "746480801034514641", + "state": "0", + "currentTick": "2785", + "currentPrice": "756928807207540590", + "twapSlow": "751198238539093146", + "twapFast": "754133484919726894", + "depositTokenBalance": "515000000000000000001", + "pairedTokenBalance": "1", + "usedToken0": "453858914180422758703394", + "usedToken1": "29651386098439368352374", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "2820" + }, + "limitPosition": { + "bottomTick": "2820", + "topTick": "5040" + } + } + }, + { + "transactionHash": "0x8500569529b414ea81fa0a04bfc6c8fb0b69a83a7f3d81d810e59bb8133abc5b", + "state": { + "depositToken": 0, + "blockNumber": 46789308, + "lastRebalancePrice": "756928807207540590", + "state": "0", + "currentTick": "2424", + "currentPrice": "784751728376216048", + "twapSlow": "777565479212184463", + "twapFast": "783418850348076524", + "depositTokenBalance": "2540161256704274295278", + "pairedTokenBalance": "0", + "usedToken0": "456810518498539723722489", + "usedToken1": "29121849284371058429995", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "2460" + }, + "limitPosition": { + "bottomTick": "2460", + "topTick": "4680" + } + } + }, + { + "transactionHash": "0x57f3268792cea94ff02280f9af5d3ba96d98138ba065266ee2ddacb7156e2a8d", + "state": { + "depositToken": 0, + "blockNumber": 46791772, + "lastRebalancePrice": "784751728376216048", + "state": "0", + "currentTick": "2829", + "currentPrice": "753605802574327483", + "twapSlow": "770599133785578038", + "twapFast": "754812476607565935", + "depositTokenBalance": "10000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "387267920495763321281251", + "usedToken1": "132926430326694460934881", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2400", + "topTick": "5040" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2400" + } + } + }, + { + "transactionHash": "0x72c71b8105e7b8600b66da1ca4b1727e7174330f16d87c279f4e834da419b974", + "state": { + "depositToken": 0, + "blockNumber": 46795307, + "lastRebalancePrice": "753605802574327483", + "state": "1", + "currentTick": "2995", + "currentPrice": "741199821054087475", + "twapSlow": "760266464540818684", + "twapFast": "749622456176517819", + "depositTokenBalance": "99110281796279647258", + "pairedTokenBalance": "0", + "usedToken0": "357125759937973081065129", + "usedToken1": "174132783792581380115799", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2940", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2940" + } + } + }, + { + "transactionHash": "0xaad29adc0ba6505ad5f39bdb7805ad10f941ff362cb84f4386a48496e362fdc2", + "state": { + "depositToken": 0, + "blockNumber": 46797771, + "lastRebalancePrice": "741199821054087475", + "state": "3", + "currentTick": "3060", + "currentPrice": "736397885506499088", + "twapSlow": "736324253081190969", + "twapFast": "736397885506499088", + "depositTokenBalance": "1029989181866573020418", + "pairedTokenBalance": "0", + "usedToken0": "356586431545109296067894", + "usedToken1": "175236964143787177076624", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2100", + "topTick": "3000" + } + } + }, + { + "transactionHash": "0x243a6040bd8be4e029dcacf5ede1e1248a835746e1b89d1a334123b484713376", + "state": { + "depositToken": 0, + "blockNumber": 46800235, + "lastRebalancePrice": "736397885506499088", + "state": "2", + "currentTick": "3238", + "currentPrice": "723406617971899151", + "twapSlow": "717140590432438664", + "twapFast": "722539094024273595", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "353406375621263275933933", + "usedToken1": "179541664136788675207830", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2280", + "topTick": "3180" + } + } + }, + { + "transactionHash": "0xe60860c8ca47e000b6f3bae6f6bfeb7705941618f9282ddd7c96a48dbc469843", + "state": { + "depositToken": 0, + "blockNumber": 46802699, + "lastRebalancePrice": "723406617971899151", + "state": "2", + "currentTick": "3307", + "currentPrice": "718432541305726643", + "twapSlow": "718719957431075214", + "twapFast": "715278539713136426", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "352197292602652544749405", + "usedToken1": "181218943484936371896085", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2340", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0x74ef65bb085ad4b0414c2bd7995ab6afc03aa26b3fad9a6430dc2bc1053b177b", + "state": { + "depositToken": 0, + "blockNumber": 46805173, + "lastRebalancePrice": "718432541305726643", + "state": "2", + "currentTick": "3087", + "currentPrice": "734412392110857729", + "twapSlow": "728415132719949179", + "twapFast": "734412392110857729", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "382043531530392267788267", + "usedToken1": "140141893855174218345848", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3060", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2100", + "topTick": "3060" + } + } + }, + { + "transactionHash": "0x375f0c4639ebb3b2a0fa5338ec7f082c37601eaa16ae302a81f35552a2c792f2", + "state": { + "depositToken": 0, + "blockNumber": 46807637, + "lastRebalancePrice": "734412392110857729", + "state": "2", + "currentTick": "3194", + "currentPrice": "726596460108206948", + "twapSlow": "729800367768110716", + "twapFast": "726596460108206948", + "depositTokenBalance": "40517712791143094400", + "pairedTokenBalance": "0", + "usedToken0": "380035059073758479509864", + "usedToken1": "142949728728016658087981", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2220", + "topTick": "3180" + } + } + }, + { + "transactionHash": "0x991586d7ce641915346b52357cde41ff4a7a41b29e7e4dec5936310766cd4de0", + "state": { + "depositToken": 0, + "blockNumber": 46811217, + "lastRebalancePrice": "726596460108206948", + "state": "2", + "currentTick": "3086", + "currentPrice": "734485833350068815", + "twapSlow": "728196651877758099", + "twapFast": "733238330485337660", + "depositTokenBalance": "3060935671791614700303", + "pairedTokenBalance": "0", + "usedToken0": "393555243909930045668564", + "usedToken1": "128337291185527736604156", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "2700", + "topTick": "5280" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "2700" + } + } + }, + { + "transactionHash": "0xb4b40eed664870750734583b88e10684c4b3d828f8babb3c0df6f7270bc9c9db", + "state": { + "depositToken": 0, + "blockNumber": 46813689, + "lastRebalancePrice": "733898509010174698", + "state": "1", + "currentTick": "3198", + "currentPrice": "726305894169280290", + "twapSlow": "725870263116352517", + "twapFast": "726305894169280290", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "372939411888435354918184", + "usedToken1": "156507964873467094851934", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3180", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2220", + "topTick": "3180" + } + } + }, + { + "transactionHash": "0xa0974daec675ecbb2d53e9d8f470d0a2655c83b252dd8ddf374ad8d7bd139449", + "state": { + "depositToken": 0, + "blockNumber": 46816153, + "lastRebalancePrice": "726305894169280290", + "state": "2", + "currentTick": "3176", + "currentPrice": "727905446022110799", + "twapSlow": "729581471438505440", + "twapFast": "728051034390369681", + "depositTokenBalance": "5906977993094392997729", + "pairedTokenBalance": "0", + "usedToken0": "379696934755822986046249", + "usedToken1": "155408361693549070808364", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3120", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2220", + "topTick": "3120" + } + } + }, + { + "transactionHash": "0x8202f9c15aacc10a5ec522c5ce1d8da3844314674e2d3b831a82dcf41eea308e", + "state": { + "depositToken": 0, + "blockNumber": 46818625, + "lastRebalancePrice": "727905446022110799", + "state": "2", + "currentTick": "3544", + "currentPrice": "701606705042871123", + "twapSlow": "704559502100085631", + "twapFast": "701606705042871123", + "depositTokenBalance": "235521009493015976154", + "pairedTokenBalance": "0", + "usedToken0": "372950844328619902847320", + "usedToken1": "165160581039661936701168", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2580", + "topTick": "3540" + } + } + }, + { + "transactionHash": "0x844eddc889eb9ddffc8f8742dd3561e1a9b1ab26917b353c65b59f026fcb946e", + "state": { + "depositToken": 0, + "blockNumber": 46821090, + "lastRebalancePrice": "701606705042871123", + "state": "2", + "currentTick": "3541", + "currentPrice": "701817208103286743", + "twapSlow": "700765323994760510", + "twapFast": "701817208103286743", + "depositTokenBalance": "27496010736059276667096", + "pairedTokenBalance": "0", + "usedToken0": "400506359300210730925487", + "usedToken1": "165047201443075683104264", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3540", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2580", + "topTick": "3540" + } + } + }, + { + "transactionHash": "0x5385b630c1323bc2d434ade40f3cb66ee7ccaab254ebfb33e41534802aa23bd5", + "state": { + "depositToken": 0, + "blockNumber": 46827369, + "lastRebalancePrice": "701817208103286743", + "state": "2", + "currentTick": "3650", + "currentPrice": "694209319237905495", + "twapSlow": "698945791544617542", + "twapFast": "694625948974731352", + "depositTokenBalance": "3099246323634617239260", + "pairedTokenBalance": "0", + "usedToken0": "401458725325689827493637", + "usedToken1": "168169412337970564602465", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3600", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2640", + "topTick": "3600" + } + } + }, + { + "transactionHash": "0x8fd56b652fc437e73a714d38dc41c79c18731e16506a163e5f123566fcd34869", + "state": { + "depositToken": 0, + "blockNumber": 46829833, + "lastRebalancePrice": "694209319237905495", + "state": "2", + "currentTick": "3835", + "currentPrice": "681485144530036889", + "twapSlow": "682781132304864433", + "twapFast": "681962327266942631", + "depositTokenBalance": "17824640785586015868193", + "pairedTokenBalance": "0", + "usedToken0": "411917605476601442508027", + "usedToken1": "171993653336212353618416", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3780", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "2880", + "topTick": "3780" + } + } + }, + { + "transactionHash": "0x28a6cde304ccc0df032e76ce6b93eb6ecf9c8865f7b647e04d6c819bc4add98c", + "state": { + "depositToken": 0, + "blockNumber": 46836394, + "lastRebalancePrice": "681485144530036889", + "state": "2", + "currentTick": "3679", + "currentPrice": "692199128904678094", + "twapSlow": "685586141037965792", + "twapFast": "690263778864056497", + "depositTokenBalance": "151719673132103580956", + "pairedTokenBalance": "0", + "usedToken0": "426641802942196449180105", + "usedToken1": "150916176035479148556363", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "5880" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0x83f31983ab1e5b54be17950a58361fb6b2b2e9625dc8ce1450732c4239f073c0", + "state": { + "depositToken": 0, + "blockNumber": 46848356, + "lastRebalancePrice": "692199128904678094", + "state": "1", + "currentTick": "3592", + "currentPrice": "698247230019540161", + "twapSlow": "698107601518160513", + "twapFast": "698247230019540161", + "depositTokenBalance": "6638080977660094665611", + "pairedTokenBalance": "1", + "usedToken0": "443408534650026271477087", + "usedToken1": "123448855114979559773072", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "5820" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0x5bb53b373f894ec6850f026a674e3a4c48c64368e993fdb0a5e320993f844296", + "state": { + "depositToken": 0, + "blockNumber": 46852839, + "lastRebalancePrice": "698247230019540161", + "state": "1", + "currentTick": "3490", + "currentPrice": "705405438666915092", + "twapSlow": "706888272378148376", + "twapFast": "705969960570879093", + "depositTokenBalance": "5498306775672265826277", + "pairedTokenBalance": "0", + "usedToken0": "470743028518854765043061", + "usedToken1": "92471091975977938879443", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "3300", + "topTick": "5700" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "3300" + } + } + }, + { + "transactionHash": "0x0ca8e91ea021d6322c869a9962cb7558b063d873fba41abe3160eab13ca81cd0", + "state": { + "depositToken": 0, + "blockNumber": 46856458, + "lastRebalancePrice": "705405438666915092", + "state": "1", + "currentTick": "3364", + "currentPrice": "714349328189658889", + "twapSlow": "709012015031172287", + "twapFast": "713421323796002008", + "depositTokenBalance": "607749065696945657961", + "pairedTokenBalance": "0", + "usedToken0": "494928315959173291228640", + "usedToken1": "51690085471803220907776", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "3420" + }, + "limitPosition": { + "bottomTick": "3420", + "topTick": "5640" + } + } + }, + { + "transactionHash": "0x5f8ce08c29654adfc3bbae82bb5e525ed350eb7916f54ee944155ada7cc660f2", + "state": { + "depositToken": 0, + "blockNumber": 46912279, + "lastRebalancePrice": "714349328189658889", + "state": "0", + "currentTick": "4342", + "currentPrice": "647796748568899067", + "twapSlow": "647926314396580333", + "twapFast": "647796748568899067", + "depositTokenBalance": "134797946440390410841946", + "pairedTokenBalance": "1", + "usedToken0": "397130497162694567467433", + "usedToken1": "338810361759563549050058", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4320", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "4320" + } + } + }, + { + "transactionHash": "0x04b5f18318b640487192cc9ec0b54f74335f94597ca8ba0cdda1d6b5d11be753", + "state": { + "depositToken": 0, + "blockNumber": 46914743, + "lastRebalancePrice": "647796748568899067", + "state": "3", + "currentTick": "4523", + "currentPrice": "636177678143703163", + "twapSlow": "643278230513924546", + "twapFast": "636877823592374529", + "depositTokenBalance": "1000002000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "391345092847916602387359", + "usedToken1": "341538007163331635586139", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4500", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3540", + "topTick": "4500" + } + } + }, + { + "transactionHash": "0x555771e1f37b43a5313b37cdb9a958ee4b4ed54315d80ba09cdc5fa77b661174", + "state": { + "depositToken": 0, + "blockNumber": 46917207, + "lastRebalancePrice": "636177678143703163", + "state": "2", + "currentTick": "4560", + "currentPrice": "633828287255430274", + "twapSlow": "632372230103957611", + "twapFast": "633828287255430274", + "depositTokenBalance": "9411704235500000000000", + "pairedTokenBalance": "0", + "usedToken0": "400032243616414683001769", + "usedToken1": "342642227122825166174428", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4560", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3600", + "topTick": "4500" + } + } + }, + { + "transactionHash": "0xb2e4b520e854986ff58b5d1647d9e8697df50047881e3008797b2b3071158fb3", + "state": { + "depositToken": 0, + "blockNumber": 46925413, + "lastRebalancePrice": "633828287255430274", + "state": "2", + "currentTick": "4809", + "currentPrice": "618241601735273848", + "twapSlow": "629784940889903684", + "twapFast": "624080179192447236", + "depositTokenBalance": "2185092712487650408147", + "pairedTokenBalance": "0", + "usedToken0": "397163845707503986969881", + "usedToken1": "350442645659862122595562", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "4800", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "3840", + "topTick": "4800" + } + } + }, + { + "transactionHash": "0xf5cb85ae19d2ff4b3b0d4a558556342fed94ca01b6f6e02841650523c0ebe852", + "state": { + "depositToken": 0, + "blockNumber": 46927878, + "lastRebalancePrice": "618241601735273848", + "state": "2", + "currentTick": "5327", + "currentPrice": "587033514182876772", + "twapSlow": "590566125878119824", + "twapFast": "589032724904645728", + "depositTokenBalance": "1977764310011692301770", + "pairedTokenBalance": "0", + "usedToken0": "384700685181404294813641", + "usedToken1": "363360070383400867531323", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5280", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4320", + "topTick": "5280" + } + } + }, + { + "transactionHash": "0xcbc3941532ee8612370b7e63c322aec1fe03f68757122560b0f57f9292a79286", + "state": { + "depositToken": 0, + "blockNumber": 46930342, + "lastRebalancePrice": "587033514182876772", + "state": "2", + "currentTick": "5556", + "currentPrice": "573743858472600455", + "twapSlow": "578294157460238663", + "twapFast": "573743858472600455", + "depositTokenBalance": "53552137172108574990", + "pairedTokenBalance": "0", + "usedToken0": "378779767246611290658241", + "usedToken1": "369223436964595197806847", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4560", + "topTick": "5520" + } + } + }, + { + "transactionHash": "0x11487f66faee1dc6f6c0bbb07d5b51088e197379c90db14e02fb53b0645fc943", + "state": { + "depositToken": 0, + "blockNumber": 46932807, + "lastRebalancePrice": "573743858472600455", + "state": "2", + "currentTick": "5445", + "currentPrice": "580147569973552161", + "twapSlow": "578178515975258451", + "twapFast": "580147569973552161", + "depositTokenBalance": "5120758191735415068976", + "pairedTokenBalance": "0", + "usedToken0": "401250075276758811707061", + "usedToken1": "338417587411387917862623", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5400", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4440", + "topTick": "5400" + } + } + }, + { + "transactionHash": "0x32864ba8bf2768c33dc38f36678ade54c331b863118f48955ea49b646ae0b317", + "state": { + "depositToken": 0, + "blockNumber": 46935268, + "lastRebalancePrice": "580147569973552161", + "state": "2", + "currentTick": "5563", + "currentPrice": "573342398371767569", + "twapSlow": "577889513423816017", + "twapFast": "573342398371767569", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "398716078234237505964097", + "usedToken1": "342493057763921250183912", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5520", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4560", + "topTick": "5520" + } + } + }, + { + "transactionHash": "0xf432ccf42941c64bf1ffcf550911ea0984561f713ac82b02f56ae0d6f769772b", + "state": { + "depositToken": 0, + "blockNumber": 46937732, + "lastRebalancePrice": "573342398371767569", + "state": "2", + "currentTick": "5675", + "currentPrice": "566957107144219558", + "twapSlow": "569855828914834510", + "twapFast": "566957107144219558", + "depositTokenBalance": "150179551570763603880", + "pairedTokenBalance": "0", + "usedToken0": "394751299379644950889643", + "usedToken1": "344793391242090914706029", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5640", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4680", + "topTick": "5640" + } + } + }, + { + "transactionHash": "0xa2403ccd783ae87542af2b4bb73afeaa3f0ff3fcf78ae5a4fe97e62700fdbab0", + "state": { + "depositToken": 0, + "blockNumber": 46941464, + "lastRebalancePrice": "566957107144219558", + "state": "2", + "currentTick": "5631", + "currentPrice": "569457089346370296", + "twapSlow": "567864919181778074", + "twapFast": "570083805440029659", + "depositTokenBalance": "9095392077360676358657", + "pairedTokenBalance": "0", + "usedToken0": "406196186410791392698587", + "usedToken1": "340442698466545799353058", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5580", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4620", + "topTick": "5580" + } + } + }, + { + "transactionHash": "0x36a83f1782be589b67d513a4d9a37174b906a7d2bde499dfea93c719cc54893e", + "state": { + "depositToken": 0, + "blockNumber": 46943928, + "lastRebalancePrice": "569457089346370296", + "state": "2", + "currentTick": "5835", + "currentPrice": "557958424776943684", + "twapSlow": "558795948524402377", + "twapFast": "557791070721437340", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "399546404764096160986147", + "usedToken1": "345641094586482593916843", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5820", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4860", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0xdd4df77f1d4db8f18c0642ae61eb1e0db3754798f31c575885dbd8c00e4818fa", + "state": { + "depositToken": 0, + "blockNumber": 46946777, + "lastRebalancePrice": "557958424776943684", + "state": "2", + "currentTick": "5938", + "currentPrice": "552241232936670266", + "twapSlow": "557233586313130635", + "twapFast": "552627917789715228", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "397492811346415667228048", + "usedToken1": "349282125461952099310798", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5880", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "4980", + "topTick": "5880" + } + } + }, + { + "transactionHash": "0x915d7b397138ce8b4d5c4c14bbbbcad0e624b53e716ad1a8ff8af47bbd4b88a6", + "state": { + "depositToken": 0, + "blockNumber": 46951066, + "lastRebalancePrice": "552241232936670266", + "state": "2", + "currentTick": "6318", + "currentPrice": "531650791510050776", + "twapSlow": "548005515663798602", + "twapFast": "536778958523842939", + "depositTokenBalance": "1062537983337048907575", + "pairedTokenBalance": "0", + "usedToken0": "391103763561318341935144", + "usedToken1": "363192737344599978957031", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5340", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0x672ea749eba18db57bbec128c2ac74892fd97782d6646d3b431c184529c3ea23", + "state": { + "depositToken": 0, + "blockNumber": 46953531, + "lastRebalancePrice": "531650791510050776", + "state": "2", + "currentTick": "6722", + "currentPrice": "510601216217079061", + "twapSlow": "512801418483430798", + "twapFast": "515217136857866184", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "379164754082357516653084", + "usedToken1": "374181022311085128247974", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6720", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5760", + "topTick": "6720" + } + } + }, + { + "transactionHash": "0x7335a704b80fb2890f088ec733ee1e14a981e31c33a6a8f92e959bf22d501370", + "state": { + "depositToken": 0, + "blockNumber": 46961955, + "lastRebalancePrice": "510601216217079061", + "state": "2", + "currentTick": "6844", + "currentPrice": "504410033932390303", + "twapSlow": "511981633205539171", + "twapFast": "505874872779844888", + "depositTokenBalance": "1464017292473851430127", + "pairedTokenBalance": "1", + "usedToken0": "371687556422811630531630", + "usedToken1": "371925542781938206292129", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6840", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5880", + "topTick": "6840" + } + } + }, + { + "transactionHash": "0xfa257ad2ef7a63b1babe0061657af9b1782208cd6c8d168f4bf5711ee7a2c46e", + "state": { + "depositToken": 0, + "blockNumber": 46964421, + "lastRebalancePrice": "504410033932390303", + "state": "2", + "currentTick": "6525", + "currentPrice": "520759280715382094", + "twapSlow": "516042102826018388", + "twapFast": "520551029068610650", + "depositTokenBalance": "138649558999428986129", + "pairedTokenBalance": "0", + "usedToken0": "435477338694669837523225", + "usedToken1": "247986994337474029611407", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6480", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5520", + "topTick": "6480" + } + } + }, + { + "transactionHash": "0x6e77af1abec5d6a97c6a3497a6b1d2a78319be825d15adbd85a80e27008e2f46", + "state": { + "depositToken": 0, + "blockNumber": 46966885, + "lastRebalancePrice": "520759280715382094", + "state": "2", + "currentTick": "6417", + "currentPrice": "526413677014140999", + "twapSlow": "525361954318623300", + "twapFast": "526413677014140999", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "444605704343604448353806", + "usedToken1": "229554979329211941238122", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6360", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5460", + "topTick": "6360" + } + } + }, + { + "transactionHash": "0xcc9035673f86bbc08d233c2454b59ca6946328f3c73dc455675c524ef4310ee6", + "state": { + "depositToken": 0, + "blockNumber": 46969350, + "lastRebalancePrice": "526413677014140999", + "state": "2", + "currentTick": "6155", + "currentPrice": "540387271484316585", + "twapSlow": "540549403877920412", + "twapFast": "540387271484316585", + "depositTokenBalance": "93208315324979700115", + "pairedTokenBalance": "0", + "usedToken0": "468682114657777211820906", + "usedToken1": "172418483695125332675199", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5880", + "topTick": "8340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5880" + } + } + }, + { + "transactionHash": "0xb927ba7c38fbba13d22df8d908e0bf51515d3c52a11c3088f7252e07dcf2d39c", + "state": { + "depositToken": 0, + "blockNumber": 46971815, + "lastRebalancePrice": "540387271484316585", + "state": "1", + "currentTick": "6329", + "currentPrice": "531066326376913193", + "twapSlow": "534101895815831190", + "twapFast": "531066326376913193", + "depositTokenBalance": "61000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "428998461443683418931096", + "usedToken1": "246629098392998797794343", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "6300", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "5340", + "topTick": "6300" + } + } + }, + { + "transactionHash": "0xd4d6d088745fe579f77e273fdc037f27446725f111a49bfca7b74db9f0614cb7", + "state": { + "depositToken": 0, + "blockNumber": 46974279, + "lastRebalancePrice": "531066326376913193", + "state": "2", + "currentTick": "6156", + "currentPrice": "540333238160500535", + "twapSlow": "539361561685992244", + "twapFast": "540333238160500535", + "depositTokenBalance": "50000000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "499340591985919184489994", + "usedToken1": "207044911817408869036061", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5820", + "topTick": "8340" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5820" + } + } + }, + { + "transactionHash": "0x219c52ae7417882a4c34457ccf700078428028999f828bc5a766423f5730a3d5", + "state": { + "depositToken": 0, + "blockNumber": 46977850, + "lastRebalancePrice": "540333238160500535", + "state": "1", + "currentTick": "5832", + "currentPrice": "558125829043687469", + "twapSlow": "545817980962025521", + "twapFast": "556843678781319689", + "depositTokenBalance": "0", + "pairedTokenBalance": "1", + "usedToken0": "577833759216349896333598", + "usedToken1": "63651499978234684688549", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5880" + }, + "limitPosition": { + "bottomTick": "5880", + "topTick": "8100" + } + } + }, + { + "transactionHash": "0x2dd83d0a9ff3ad05b371738149075fa3c2d4b27c91bfde62ee72502921d80192", + "state": { + "depositToken": 0, + "blockNumber": 46997678, + "lastRebalancePrice": "558125829043687469", + "state": "0", + "currentTick": "5950", + "currentPrice": "551578974004367500", + "twapSlow": "559075402383847669", + "twapFast": "552186014335236742", + "depositTokenBalance": "1487156513447204972581", + "pairedTokenBalance": "0", + "usedToken0": "536817846271397512073024", + "usedToken1": "95101929817318670630114", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "6000" + }, + "limitPosition": { + "bottomTick": "6000", + "topTick": "8220" + } + } + }, + { + "transactionHash": "0x839435b3b694456222e4b47d4c8537218f58917cc950bb33b5c663a4cbdf52b6", + "state": { + "depositToken": 0, + "blockNumber": 47000372, + "lastRebalancePrice": "551578974004367500", + "state": "0", + "currentTick": "5842", + "currentPrice": "557568010061101968", + "twapSlow": "549542004364895097", + "twapFast": "557010748590821292", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "533279167538597321520866", + "usedToken1": "93831583805350791942910", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5880" + }, + "limitPosition": { + "bottomTick": "5880", + "topTick": "8100" + } + } + }, + { + "transactionHash": "0x0c7d6d8eb73600ad9cd0797f244fbc59b247d0bad5bfce6c39e0d3a19e095cb3", + "state": { + "depositToken": 0, + "blockNumber": 47003298, + "lastRebalancePrice": "557568010061101968", + "state": "0", + "currentTick": "5898", + "currentPrice": "554454510811227803", + "twapSlow": "558237459790754497", + "twapFast": "555286775007033498", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "528454864467162015388711", + "usedToken1": "102230516538466046165849", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "5760", + "topTick": "8100" + }, + "limitPosition": { + "bottomTick": "-887220", + "topTick": "5760" + } + } + }, + { + "transactionHash": "0x2bffb8e96d070ec6800647adcf47130fc7aff20aa4bb621ad6d5d4ebdb6a2fa8", + "state": { + "depositToken": 0, + "blockNumber": 47008667, + "lastRebalancePrice": "554454510811227803", + "state": "1", + "currentTick": "5781", + "currentPrice": "560979398513061657", + "twapSlow": "555453377698694145", + "twapFast": "559410931497770682", + "depositTokenBalance": "50000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "557559355927222322594920", + "usedToken1": "50467756676753111978704", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5820" + }, + "limitPosition": { + "bottomTick": "5820", + "topTick": "8040" + } + } + }, + { + "transactionHash": "0xbf3ebebd1bfe83b3127052a62b4d3311f13c1caa93748f7d7021544c4b4fc5ef", + "state": { + "depositToken": 0, + "blockNumber": 47011325, + "lastRebalancePrice": "560979398513061657", + "state": "0", + "currentTick": "5884", + "currentPrice": "555231251881845314", + "twapSlow": "558572486013413505", + "twapFast": "555731159938436074", + "depositTokenBalance": "0", + "pairedTokenBalance": "0", + "usedToken0": "536162865712168447510668", + "usedToken1": "79326015022539962123320", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5940" + }, + "limitPosition": { + "bottomTick": "5940", + "topTick": "8160" + } + } + }, + { + "transactionHash": "0x88fb9ee478c6e6f0c5afe22c8c9513a4d05b326fd734e9bcdfe55702dc175502", + "state": { + "depositToken": 0, + "blockNumber": 47017317, + "lastRebalancePrice": "555231251881845314", + "state": "0", + "currentTick": "5731", + "currentPrice": "563791178511386211", + "twapSlow": "554676325885040816", + "twapFast": "562552263169942275", + "depositTokenBalance": "147042764602616430320", + "pairedTokenBalance": "2", + "usedToken0": "536647863276858577502499", + "usedToken1": "78710408886900877371744", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5760" + }, + "limitPosition": { + "bottomTick": "5760", + "topTick": "7980" + } + } + }, + { + "transactionHash": "0xcf3db268fc7e52c135f92cdcede27e69b97688bda9e2445a5d5a420909c6c464", + "state": { + "depositToken": 0, + "blockNumber": 47019782, + "lastRebalancePrice": "563791178511386211", + "state": "0", + "currentTick": "5352", + "currentPrice": "585567836540468899", + "twapSlow": "576446666092030820", + "twapFast": "585567836540468899", + "depositTokenBalance": "1475671968839971965851", + "pairedTokenBalance": "0", + "usedToken0": "537637728516379471821119", + "usedToken1": "77070534125739921264046", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "5400" + }, + "limitPosition": { + "bottomTick": "5400", + "topTick": "7620" + } + } + }, + { + "transactionHash": "0xc282e83afd30af070bfedb127e40dc92b9b1624be139a3fff935bace0c6b207f", + "state": { + "depositToken": 0, + "blockNumber": 47022246, + "lastRebalancePrice": "585567836540468899", + "state": "0", + "currentTick": "4817", + "currentPrice": "617747230946693659", + "twapSlow": "618983899832857082", + "twapFast": "618674500708865524", + "depositTokenBalance": "25149752685318225442703", + "pairedTokenBalance": "0", + "usedToken0": "562717497076201885178962", + "usedToken1": "74825125047132179020799", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "4860" + }, + "limitPosition": { + "bottomTick": "4860", + "topTick": "7080" + } + } + }, + { + "transactionHash": "0xeb09e3cbdea4ba1268ff156f9802b5777701e75c0dfa6f009ad36af509415dde", + "state": { + "depositToken": 0, + "blockNumber": 47024711, + "lastRebalancePrice": "617747230946693659", + "state": "0", + "currentTick": "4552", + "currentPrice": "634335527392653871", + "twapSlow": "637068906046423827", + "twapFast": "634335527392653871", + "depositTokenBalance": "10909888669368284092892", + "pairedTokenBalance": "0", + "usedToken0": "573710209746800503786489", + "usedToken1": "73780727291320881472099", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "8000", + "underTrigger": "7700", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "500", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "2000", + "baseHighPct": "1000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "-887220", + "topTick": "4560" + }, + "limitPosition": { + "bottomTick": "4560", + "topTick": "6840" + } + } } ] } From 231a23299a001f6446025b4f052d8a2ba9b1c592 Mon Sep 17 00:00:00 2001 From: fourlen Date: Mon, 31 Mar 2025 18:24:10 +0300 Subject: [PATCH 22/42] if -> require --- src/plugin/contracts/AlgebraBasePluginALM.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index 88f5acaf4..94d35e473 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -61,7 +61,8 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { // console.log('entered after swap'); // to prevent pause rebalanceManager - if (rebalanceManager != address(0) && gasleft() >= 1600000) { + if (rebalanceManager != address(0)) { + require(gasleft() >= 1600000, 'Not enough gas left'); if (!_ableToGetTimepoints(slowTwapPeriod)) { return IAlgebraPlugin.afterSwap.selector; } From 021873b259c6463b1b2c76d1e41971dddf25a02c Mon Sep 17 00:00:00 2001 From: IliaAzhel Date: Tue, 1 Apr 2025 23:27:28 +0300 Subject: [PATCH 23/42] add alm custom pool deployer --- .../AlgebraALMCustomPluginDeployer.sol | 76 +++++++++++++++++++ .../IAlgebraALMCustomPoolDeployer.sol | 62 +++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol create mode 100644 src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol diff --git a/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol b/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol new file mode 100644 index 000000000..6887b4b7d --- /dev/null +++ b/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol @@ -0,0 +1,76 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity =0.8.20; + +import '@cryptoalgebra/integral-periphery/contracts/interfaces/IAlgebraCustomPoolEntryPoint.sol'; +import './interfaces/IAlgebraALMCustomPoolDeployer.sol'; +import './libraries/AdaptiveFee.sol'; +import './AlgebraBasePluginALM.sol'; + +/// @title Algebra Integral 1.2.1 ALM custom plugin deployer +contract AlgebraALMCustomPoolDeployer is IAlgebraALMCustomPoolDeployer { + /// @inheritdoc IAlgebraALMCustomPoolDeployer + bytes32 public constant override ALGEBRA_CUSTOM_PLUGIN_ADMINISTRATOR = keccak256('ALGEBRA_CUSTOM_PLUGIN_ADMINISTRATOR'); + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + address public immutable override algebraFactory; + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + address public immutable entryPoint; + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + address public override farmingAddress; + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + AlgebraFeeConfiguration public override defaultFeeConfiguration; // values of constants for sigmoids in fee calculation formula + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + mapping(address poolAddress => address pluginAddress) public override pluginByPool; + + modifier onlyAdministrator() { + require(IAlgebraFactory(algebraFactory).hasRoleOrOwner(ALGEBRA_CUSTOM_PLUGIN_ADMINISTRATOR, msg.sender), 'Only administrator'); + _; + } + + constructor(address _algebraFactory, address _entryPoint) { + entryPoint = _entryPoint; + algebraFactory = _algebraFactory; + } + + /// @inheritdoc IAlgebraPluginFactory + function beforeCreatePoolHook(address pool, address, address, address, address, bytes calldata) external override returns (address) { + require(msg.sender == entryPoint); + return _createPlugin(pool); + } + + /// @inheritdoc IAlgebraPluginFactory + function afterCreatePoolHook(address, address, address) external view override { + require(msg.sender == entryPoint); + } + + function _createPlugin(address pool) internal returns (address) { + require(pluginByPool[pool] == address(0), 'Already created'); + address plugin = address(new AlgebraBasePluginALM(pool, algebraFactory, address(this), defaultFeeConfiguration)); + pluginByPool[pool] = plugin; + return address(plugin); + } + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + function createCustomPool(address creator, address tokenA, address tokenB, bytes calldata data) external returns (address customPool) { + return IAlgebraCustomPoolEntryPoint(entryPoint).createCustomPool(address(this), creator, tokenA, tokenB, data); + } + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external override onlyAdministrator { + AdaptiveFee.validateFeeConfiguration(newConfig); + defaultFeeConfiguration = newConfig; + emit DefaultFeeConfiguration(newConfig); + } + + /// @inheritdoc IAlgebraALMCustomPoolDeployer + function setFarmingAddress(address newFarmingAddress) external override onlyAdministrator { + require(farmingAddress != newFarmingAddress); + farmingAddress = newFarmingAddress; + emit FarmingAddress(newFarmingAddress); + } + +} \ No newline at end of file diff --git a/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol b/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol new file mode 100644 index 000000000..513294a18 --- /dev/null +++ b/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol @@ -0,0 +1,62 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +pragma solidity >=0.5.0; +pragma abicoder v2; + +import '@cryptoalgebra/integral-core/contracts/interfaces/plugin/IAlgebraPluginFactory.sol'; +import '../base/AlgebraFeeConfiguration.sol'; + +/// @title The interface for the IAlgebraALMCustomPoolDeployer +interface IAlgebraALMCustomPoolDeployer is IAlgebraPluginFactory { + + /// @notice Emitted when the default fee configuration is changed + /// @param newConfig The structure with dynamic fee parameters + /// @dev See the AdaptiveFee library for more details + event DefaultFeeConfiguration(AlgebraFeeConfiguration newConfig); + + /// @notice Emitted when the farming address is changed + /// @param newFarmingAddress The farming address after the address was changed + event FarmingAddress(address newFarmingAddress); + + /// @notice The hash of 'ALGEBRA_CUSTOM_PLUGIN_ADMINISTRATOR' used as role + /// @dev allows to change settings of AlgebraALMCustomPoolDeployer + function ALGEBRA_CUSTOM_PLUGIN_ADMINISTRATOR() external pure returns (bytes32); + + /// @notice Returns the address of AlgebraFactory + /// @return The AlgebraFactory contract address + function algebraFactory() external view returns (address); + + /// @notice Returns the address of entryPoint + /// @return The entryPoint contract address + function entryPoint() external view returns (address); + + /// @notice Returns current farming address + /// @return The farming contract address + function farmingAddress() external view returns (address); + + /// @notice Current default dynamic fee configuration + /// @dev See the AdaptiveFee struct for more details about params. + /// This value is set by default in new plugins + function defaultFeeConfiguration() + external + view + returns (uint16 alpha1, uint16 alpha2, uint32 beta1, uint32 beta2, uint16 gamma1, uint16 gamma2, uint16 baseFee); + + /// @notice Returns address of plugin created for given AlgebraPool + /// @param pool The address of AlgebraPool + /// @return The address of corresponding plugin + function pluginByPool(address pool) external view returns (address); + + /// @notice Create custom pool + function createCustomPool(address creator, address tokenA, address tokenB, bytes calldata data) external returns (address customPool); + + /// @notice Changes initial fee configuration for new pools + /// @dev changes coefficients for sigmoids: α / (1 + e^( (β-x) / γ)) + /// alpha1 + alpha2 + baseFee (max possible fee) must be <= type(uint16).max and gammas must be > 0 + /// @param newConfig new default fee configuration. See the #AdaptiveFee.sol library for details + function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external; + + /// @dev updates farmings manager address on the factory + /// @param newFarmingAddress The new tokenomics contract address + function setFarmingAddress(address newFarmingAddress) external; + +} \ No newline at end of file From 5ff8b1ecfcc66ed0683c1c194797d3911961e1ae Mon Sep 17 00:00:00 2001 From: IliaAzhel Date: Wed, 2 Apr 2025 00:41:51 +0300 Subject: [PATCH 24/42] add custom plugin deployer test --- .../test/AlmPluginCustomDeployer.spec.ts | 116 ++++++++ src/plugin/test/shared/externalFixtures.ts | 276 +++++++++++------- 2 files changed, 281 insertions(+), 111 deletions(-) create mode 100644 src/plugin/test/AlmPluginCustomDeployer.spec.ts diff --git a/src/plugin/test/AlmPluginCustomDeployer.spec.ts b/src/plugin/test/AlmPluginCustomDeployer.spec.ts new file mode 100644 index 000000000..bc5d1212e --- /dev/null +++ b/src/plugin/test/AlmPluginCustomDeployer.spec.ts @@ -0,0 +1,116 @@ +import { Wallet } from 'ethers'; +import { ethers } from 'hardhat'; +import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'; +import { expect } from './shared/expect'; +import { algebraCoreFixture } from './shared/externalFixtures'; + +import { BasePluginV1Factory, AlgebraALMCustomPoolDeployer } from '../typechain'; +import { AlgebraFactory } from '@cryptoalgebra/integral-core/typechain'; + +describe('ALMPluginCustomDeployer', () => { + let wallet: Wallet, other: Wallet; + + let pluginFactory: BasePluginV1Factory; + let factory: AlgebraFactory; + let customPoolDeployer: AlgebraALMCustomPoolDeployer; + let tokens: [string, string]; + + const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000'; + + before('prepare signers', async () => { + [wallet, other] = await (ethers as any).getSigners(); + }); + + beforeEach('deploy test volatilityOracle & custom deployer', async () => { + const fix = await loadFixture(algebraCoreFixture) + factory = fix.factory; + const customDeployerFactory = await ethers.getContractFactory('AlgebraALMCustomPoolDeployer'); + customPoolDeployer = (await customDeployerFactory.deploy(factory, fix.entryPoint)) as any as AlgebraALMCustomPoolDeployer; + + tokens = ["0x0000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000002"]; + }); + + describe('#Create custom pool', () => { + it('only custom deployer', async () => { + expect(customPoolDeployer.beforeCreatePoolHook(wallet.address, ZERO_ADDRESS, ZERO_ADDRESS, ZERO_ADDRESS, ZERO_ADDRESS, '0x')).to.be + .revertedWithoutReason; + }); + + it('custom pool is created', async () => { + await customPoolDeployer.createCustomPool(wallet.address, tokens[0], tokens[1], '0x'); + + const poolAddress = await factory.customPoolByPair(customPoolDeployer, tokens[0], tokens[1]); + await expect(poolAddress).to.not.eq(ZERO_ADDRESS); + expect(await customPoolDeployer.pluginByPool(poolAddress)).to.not.eq(ZERO_ADDRESS); + }); + }); + + describe('#Default fee configuration', () => { + describe('#setDefaultFeeConfiguration', () => { + const configuration = { + alpha1: 3002, + alpha2: 10009, + beta1: 1001, + beta2: 1006, + gamma1: 20, + gamma2: 22, + baseFee: 150, + }; + it('fails if caller is not owner', async () => { + await expect(customPoolDeployer.connect(other).setDefaultFeeConfiguration(configuration)).to.be.revertedWith('Only administrator'); + }); + + it('updates defaultFeeConfiguration', async () => { + await customPoolDeployer.setDefaultFeeConfiguration(configuration); + + const newConfig = await customPoolDeployer.defaultFeeConfiguration(); + + expect(newConfig.alpha1).to.eq(configuration.alpha1); + expect(newConfig.alpha2).to.eq(configuration.alpha2); + expect(newConfig.beta1).to.eq(configuration.beta1); + expect(newConfig.beta2).to.eq(configuration.beta2); + expect(newConfig.gamma1).to.eq(configuration.gamma1); + expect(newConfig.gamma2).to.eq(configuration.gamma2); + expect(newConfig.baseFee).to.eq(configuration.baseFee); + }); + + it('emits event', async () => { + await expect(customPoolDeployer.setDefaultFeeConfiguration(configuration)) + .to.emit(customPoolDeployer, 'DefaultFeeConfiguration') + .withArgs([ + configuration.alpha1, + configuration.alpha2, + configuration.beta1, + configuration.beta2, + configuration.gamma1, + configuration.gamma2, + configuration.baseFee, + ]); + }); + + it('cannot exceed max fee', async () => { + const conf2 = { ...configuration }; + conf2.alpha1 = 30000; + conf2.alpha2 = 30000; + conf2.baseFee = 15000; + await expect(customPoolDeployer.setDefaultFeeConfiguration(conf2)).to.be.revertedWith('Max fee exceeded'); + }); + + it('cannot set zero gamma', async () => { + let conf2 = { ...configuration }; + conf2.gamma1 = 0; + await expect(customPoolDeployer.setDefaultFeeConfiguration(conf2)).to.be.revertedWith('Gammas must be > 0'); + + conf2 = { ...configuration }; + conf2.gamma2 = 0; + await expect(customPoolDeployer.setDefaultFeeConfiguration(conf2)).to.be.revertedWith('Gammas must be > 0'); + + conf2 = { ...configuration }; + conf2.gamma1 = 0; + conf2.gamma2 = 0; + await expect(customPoolDeployer.setDefaultFeeConfiguration(conf2)).to.be.revertedWith('Gammas must be > 0'); + }); + }); + }); + +}); diff --git a/src/plugin/test/shared/externalFixtures.ts b/src/plugin/test/shared/externalFixtures.ts index ac00b9d73..7eaa40803 100644 --- a/src/plugin/test/shared/externalFixtures.ts +++ b/src/plugin/test/shared/externalFixtures.ts @@ -1,111 +1,165 @@ -// import { -// abi as FACTORY_ABI, -// bytecode as FACTORY_BYTECODE, -// } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraFactory.sol/AlgebraFactory.json'; -// import { -// abi as TEST_CALLEE_ABI, -// bytecode as TEST_CALLEE_BYTECODE, -// } from '@cryptoalgebra/integral-core/artifacts/contracts/test/TestAlgebraCallee.sol/TestAlgebraCallee.json'; -// import { -// abi as POOL_DEPLOYER_ABI, -// bytecode as POOL_DEPLOYER_BYTECODE, -// } from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPoolDeployer.sol/MockTimeAlgebraPoolDeployer.json'; -// import { -// abi as POOL_ABI, -// bytecode as POOL_BYTECODE, -// } from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPool.sol/MockTimeAlgebraPool.json'; -// import { -// abi as COM_VAULT_DEPLOYER_ABI, -// bytecode as COM_VAULT_DEPLOYER_BYTECODE, -// } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraCommunityVault.sol/AlgebraCommunityVault.json'; -// import { -// abi as COM_VAULT_STUB_DEPLOYER_ABI, -// bytecode as COM_VAULT_STUB_DEPLOYER_BYTECODE, -// } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraVaultFactoryStub.sol/AlgebraVaultFactoryStub.json'; - -// import { ethers } from 'hardhat'; -// import { -// MockTimeAlgebraPoolDeployer, -// AlgebraCommunityVault, -// TestAlgebraCallee, -// MockTimeAlgebraPool, -// AlgebraFactory, -// TestERC20, -// } from '@cryptoalgebra/integral-core/typechain'; -// import { getCreateAddress } from 'ethers'; -// import { ZERO_ADDRESS } from './fixtures'; - -// interface TokensFixture { -// token0: TestERC20; -// token1: TestERC20; -// } - -// export async function tokensFixture(): Promise { -// const tokenFactory = await ethers.getContractFactory('TestERC20'); -// const tokenA = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; -// const tokenB = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; - -// tokenA.address = await tokenA.getAddress(); -// tokenB.address = await tokenB.getAddress(); - -// const [token0, token1] = [tokenA, tokenB].sort((_tokenA, _tokenB) => (_tokenA.address.toLowerCase() < _tokenB.address.toLowerCase() ? -1 : 1)); - -// return { token0, token1 }; -// } - -// interface MockPoolDeployerFixture extends TokensFixture { -// poolDeployer: MockTimeAlgebraPoolDeployer; -// swapTargetCallee: TestAlgebraCallee; -// factory: AlgebraFactory; -// createPool(firstToken?: TestERC20, secondToken?: TestERC20): Promise; -// } -// export const algebraPoolDeployerMockFixture: () => Promise = async () => { -// const { token0, token1 } = await tokensFixture(); - -// const [deployer] = await ethers.getSigners(); -// // precompute -// const poolDeployerAddress = getCreateAddress({ -// from: deployer.address, -// nonce: (await ethers.provider.getTransactionCount(deployer.address)) + 1, -// }); - -// const factoryFactory = await ethers.getContractFactory(FACTORY_ABI, FACTORY_BYTECODE); -// const factory = (await factoryFactory.deploy(poolDeployerAddress)) as any as AlgebraFactory; - -// const poolDeployerFactory = await ethers.getContractFactory(POOL_DEPLOYER_ABI, POOL_DEPLOYER_BYTECODE); -// const poolDeployer = (await poolDeployerFactory.deploy()) as any as MockTimeAlgebraPoolDeployer; - -// const ADMIN_ROLE = await factory.POOLS_ADMINISTRATOR_ROLE(); -// await factory.grantRole(ADMIN_ROLE, poolDeployer); - -// const vaultFactory = await ethers.getContractFactory(COM_VAULT_DEPLOYER_ABI, COM_VAULT_DEPLOYER_BYTECODE); -// const vault = (await vaultFactory.deploy(factory, deployer.address)) as any as AlgebraCommunityVault; - -// const vaultFactoryStubFactory = await ethers.getContractFactory(COM_VAULT_STUB_DEPLOYER_ABI, COM_VAULT_STUB_DEPLOYER_BYTECODE); -// const vaultFactoryStub = await vaultFactoryStubFactory.deploy(vault); - -// await factory.setVaultFactory(vaultFactoryStub); - -// const calleeContractFactory = await ethers.getContractFactory(TEST_CALLEE_ABI, TEST_CALLEE_BYTECODE); -// const swapTargetCallee = (await calleeContractFactory.deploy()) as any as TestAlgebraCallee; - -// const MockTimeAlgebraPoolFactory = await ethers.getContractFactory(POOL_ABI, POOL_BYTECODE); - -// return { -// poolDeployer, -// swapTargetCallee, -// token0, -// token1, -// factory, -// createPool: async (firstToken = token0, secondToken = token1) => { -// await poolDeployer.deployMock(factory, firstToken, secondToken); - -// const sortedTokens = -// BigInt(await firstToken.getAddress()) < BigInt(await secondToken.getAddress()) -// ? [await firstToken.getAddress(), await secondToken.getAddress()] -// : [await secondToken.getAddress(), await firstToken.getAddress()]; -// const poolAddress = await poolDeployer.computeAddress(sortedTokens[0], sortedTokens[1]); -// return MockTimeAlgebraPoolFactory.attach(poolAddress) as any as MockTimeAlgebraPool; -// }, -// }; -// }; +import { + abi as FACTORY_ABI, + bytecode as FACTORY_BYTECODE, +} from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraFactory.sol/AlgebraFactory.json'; +import { + abi as TEST_CALLEE_ABI, + bytecode as TEST_CALLEE_BYTECODE, +} from '@cryptoalgebra/integral-core/artifacts/contracts/test/TestAlgebraCallee.sol/TestAlgebraCallee.json'; +import { + abi as MOCK_POOL_DEPLOYER_ABI, + bytecode as MOCK_POOL_DEPLOYER_BYTECODE, +} from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPoolDeployer.sol/MockTimeAlgebraPoolDeployer.json'; +import { + abi as POOL_DEPLOYER_ABI, + bytecode as POOL_DEPLOYER_BYTECODE, + } from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraPoolDeployer.sol/AlgebraPoolDeployer.json'; +import { + abi as POOL_ABI, + bytecode as POOL_BYTECODE, +} from '@cryptoalgebra/integral-core/artifacts/contracts/test/MockTimeAlgebraPool.sol/MockTimeAlgebraPool.json'; +import { + abi as COM_VAULT_DEPLOYER_ABI, + bytecode as COM_VAULT_DEPLOYER_BYTECODE, +} from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraCommunityVault.sol/AlgebraCommunityVault.json'; +import { + abi as COM_VAULT_STUB_DEPLOYER_ABI, + bytecode as COM_VAULT_STUB_DEPLOYER_BYTECODE, +} from '@cryptoalgebra/integral-core/artifacts/contracts/AlgebraVaultFactoryStub.sol/AlgebraVaultFactoryStub.json'; +import { + abi as ENTRYPOINT_ABI, + bytecode as ENTRYPOINT_BYTECODE, +} from '@cryptoalgebra/integral-periphery/artifacts/contracts/AlgebraCustomPoolEntryPoint.sol/AlgebraCustomPoolEntryPoint.json'; + +import { ethers } from 'hardhat'; +import { + MockTimeAlgebraPoolDeployer, + AlgebraCommunityVault, + TestAlgebraCallee, + MockTimeAlgebraPool, + AlgebraPoolDeployer, + AlgebraFactory, + TestERC20, +} from '@cryptoalgebra/integral-core/typechain'; + +import { + AlgebraCustomPoolEntryPoint + } from '@cryptoalgebra/integral-periphery/typechain'; +import { getCreateAddress } from 'ethers'; +import { ZERO_ADDRESS } from './fixtures'; + +interface TokensFixture { + token0: TestERC20; + token1: TestERC20; +} + +export async function tokensFixture(): Promise { + const tokenFactory = await ethers.getContractFactory('TestERC20'); + const tokenA = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; + const tokenB = (await tokenFactory.deploy(2n ** 255n)) as any as TestERC20 & { address: string }; + + tokenA.address = await tokenA.getAddress(); + tokenB.address = await tokenB.getAddress(); + + const [token0, token1] = [tokenA, tokenB].sort((_tokenA, _tokenB) => (_tokenA.address.toLowerCase() < _tokenB.address.toLowerCase() ? -1 : 1)); + + return { token0, token1 }; +} + +interface MockPoolDeployerFixture extends TokensFixture { + poolDeployer: MockTimeAlgebraPoolDeployer; + swapTargetCallee: TestAlgebraCallee; + factory: AlgebraFactory; + createPool(firstToken?: TestERC20, secondToken?: TestERC20): Promise; +} +export const algebraPoolDeployerMockFixture: () => Promise = async () => { + const { token0, token1 } = await tokensFixture(); + + const [deployer] = await ethers.getSigners(); + // precompute + const poolDeployerAddress = getCreateAddress({ + from: deployer.address, + nonce: (await ethers.provider.getTransactionCount(deployer.address)) + 1, + }); + + const factoryFactory = await ethers.getContractFactory(FACTORY_ABI, FACTORY_BYTECODE); + const factory = (await factoryFactory.deploy(poolDeployerAddress)) as any as AlgebraFactory; + + const poolDeployerFactory = await ethers.getContractFactory(MOCK_POOL_DEPLOYER_ABI, MOCK_POOL_DEPLOYER_BYTECODE); + const poolDeployer = (await poolDeployerFactory.deploy()) as any as MockTimeAlgebraPoolDeployer; + + const ADMIN_ROLE = await factory.POOLS_ADMINISTRATOR_ROLE(); + await factory.grantRole(ADMIN_ROLE, poolDeployer); + + const vaultFactory = await ethers.getContractFactory(COM_VAULT_DEPLOYER_ABI, COM_VAULT_DEPLOYER_BYTECODE); + const vault = (await vaultFactory.deploy(factory, deployer.address)) as any as AlgebraCommunityVault; + + const vaultFactoryStubFactory = await ethers.getContractFactory(COM_VAULT_STUB_DEPLOYER_ABI, COM_VAULT_STUB_DEPLOYER_BYTECODE); + const vaultFactoryStub = await vaultFactoryStubFactory.deploy(vault); + + await factory.setVaultFactory(vaultFactoryStub); + + const calleeContractFactory = await ethers.getContractFactory(TEST_CALLEE_ABI, TEST_CALLEE_BYTECODE); + const swapTargetCallee = (await calleeContractFactory.deploy()) as any as TestAlgebraCallee; + + const MockTimeAlgebraPoolFactory = await ethers.getContractFactory(POOL_ABI, POOL_BYTECODE); + + return { + poolDeployer, + swapTargetCallee, + token0, + token1, + factory, + createPool: async (firstToken = token0, secondToken = token1) => { + await poolDeployer.deployMock(factory, firstToken, secondToken); + + const sortedTokens = + BigInt(await firstToken.getAddress()) < BigInt(await secondToken.getAddress()) + ? [await firstToken.getAddress(), await secondToken.getAddress()] + : [await secondToken.getAddress(), await firstToken.getAddress()]; + const poolAddress = await poolDeployer.computeAddress(sortedTokens[0], sortedTokens[1]); + return MockTimeAlgebraPoolFactory.attach(poolAddress) as any as MockTimeAlgebraPool; + }, + }; +}; + +interface algebraDeployFixture extends TokensFixture { + poolDeployer: AlgebraPoolDeployer; + factory: AlgebraFactory; + entrypoint: AlgebraCustomPoolEntryPoint; + } + export const algebraCoreFixture: () => Promise = async () => { + const { token0, token1 } = await tokensFixture(); + + const [deployer] = await ethers.getSigners(); + // precompute + const poolDeployerAddress = getCreateAddress({ + from: deployer.address, + nonce: (await ethers.provider.getTransactionCount(deployer.address)) + 1, + }); + + const factoryFactory = await ethers.getContractFactory(FACTORY_ABI, FACTORY_BYTECODE); + const factory = (await factoryFactory.deploy(poolDeployerAddress)) as any as AlgebraFactory; + + const poolDeployerFactory = await ethers.getContractFactory(POOL_DEPLOYER_ABI, POOL_DEPLOYER_BYTECODE); + const poolDeployer = (await poolDeployerFactory.deploy(factory)) as any as AlgebraPoolDeployer; + + const ADMIN_ROLE = await factory.POOLS_ADMINISTRATOR_ROLE(); + await factory.grantRole(ADMIN_ROLE, poolDeployer); + + const entrypointFactory = await ethers.getContractFactory(ENTRYPOINT_ABI, ENTRYPOINT_BYTECODE); + const entryPoint = await entrypointFactory.deploy(factory) as any as AlgebraCustomPoolEntryPoint; + + let customPoolDeployerRole = await factory.CUSTOM_POOL_DEPLOYER() + let poolAdministratorRole = await factory.POOLS_ADMINISTRATOR_ROLE() + await factory.grantRole(customPoolDeployerRole, await entryPoint.getAddress()); + await factory.grantRole(poolAdministratorRole, await entryPoint.getAddress()); + + return { + poolDeployer, + token0, + token1, + factory, + entryPoint + }; + }; \ No newline at end of file From b21a7943c461c6aceb63955158219581e335a22a Mon Sep 17 00:00:00 2001 From: IliaAzhel Date: Wed, 2 Apr 2025 00:43:26 +0300 Subject: [PATCH 25/42] remove farming from alm custom pool deployer --- .../contracts/AlgebraALMCustomPluginDeployer.sol | 11 +---------- .../interfaces/IAlgebraALMCustomPoolDeployer.sol | 8 -------- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol b/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol index 6887b4b7d..016469820 100644 --- a/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol +++ b/src/plugin/contracts/AlgebraALMCustomPluginDeployer.sol @@ -17,9 +17,6 @@ contract AlgebraALMCustomPoolDeployer is IAlgebraALMCustomPoolDeployer { /// @inheritdoc IAlgebraALMCustomPoolDeployer address public immutable entryPoint; - /// @inheritdoc IAlgebraALMCustomPoolDeployer - address public override farmingAddress; - /// @inheritdoc IAlgebraALMCustomPoolDeployer AlgebraFeeConfiguration public override defaultFeeConfiguration; // values of constants for sigmoids in fee calculation formula @@ -34,6 +31,7 @@ contract AlgebraALMCustomPoolDeployer is IAlgebraALMCustomPoolDeployer { constructor(address _algebraFactory, address _entryPoint) { entryPoint = _entryPoint; algebraFactory = _algebraFactory; + defaultFeeConfiguration = AdaptiveFee.initialFeeConfiguration(); } /// @inheritdoc IAlgebraPluginFactory @@ -66,11 +64,4 @@ contract AlgebraALMCustomPoolDeployer is IAlgebraALMCustomPoolDeployer { emit DefaultFeeConfiguration(newConfig); } - /// @inheritdoc IAlgebraALMCustomPoolDeployer - function setFarmingAddress(address newFarmingAddress) external override onlyAdministrator { - require(farmingAddress != newFarmingAddress); - farmingAddress = newFarmingAddress; - emit FarmingAddress(newFarmingAddress); - } - } \ No newline at end of file diff --git a/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol b/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol index 513294a18..7fbc3b351 100644 --- a/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol +++ b/src/plugin/contracts/interfaces/IAlgebraALMCustomPoolDeployer.sol @@ -29,10 +29,6 @@ interface IAlgebraALMCustomPoolDeployer is IAlgebraPluginFactory { /// @return The entryPoint contract address function entryPoint() external view returns (address); - /// @notice Returns current farming address - /// @return The farming contract address - function farmingAddress() external view returns (address); - /// @notice Current default dynamic fee configuration /// @dev See the AdaptiveFee struct for more details about params. /// This value is set by default in new plugins @@ -55,8 +51,4 @@ interface IAlgebraALMCustomPoolDeployer is IAlgebraPluginFactory { /// @param newConfig new default fee configuration. See the #AdaptiveFee.sol library for details function setDefaultFeeConfiguration(AlgebraFeeConfiguration calldata newConfig) external; - /// @dev updates farmings manager address on the factory - /// @param newFarmingAddress The new tokenomics contract address - function setFarmingAddress(address newFarmingAddress) external; - } \ No newline at end of file From ff4bcefe3099c15a1db32198a2eee6074005c3a8 Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 2 Apr 2025 14:33:03 +0300 Subject: [PATCH 26/42] -comments --- .../contracts/base/BaseRebalanceManager.sol | 243 +++--------------- .../contracts/test/MockRebalanceManager.sol | 61 ++++- src/plugin/test/AlgebraBasePluginALM.spec.ts | 38 ++- 3 files changed, 131 insertions(+), 211 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 599cb7dfb..b786e0081 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -19,24 +19,6 @@ import './AlgebraBasePlugin.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); - // address public pool; - // function _blockTimestamp() internal pure returns(uint32) { - // return 0; - // } - // function _authorize() internal pure { - // return; - // } - // result.currentTick = int24(0); // 0 - // result.currentPriceAccountingDecimals = 0; // 32 - // result.slowAvgPriceAccountingDecimals = 0; // 64 - // result.fastAvgPriceAccountingDecimals = 0; // 96 - // result.totalPairedInDeposit = 0; // 128 - // result.percentageOfDepositToken = 0; // 160 - // result.totalDepositToken = 0; // 192 - // result.totalPairedToken = 0; // 224 - // result.result.percentageOfDepositTokenUnused = 0; // 256 - // result.failedToObtainTWAP = False; // 288 - // result.sameBlock = False; // 320 struct TwapResult { uint256 currentPriceAccountingDecimals; uint256 slowAvgPriceAccountingDecimals; @@ -75,22 +57,21 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } struct Thresholds { - uint16 depositTokenUnusedThreshold; // STORAGE[0xb] = 100 (1%) - uint16 simulate; // 9300 93% maybe for moving a position towards price without changing the config - uint16 normalThreshold; // 80% (for what? normal trigger?) - uint16 underInventoryThreshold; // STORAGE[0xf] = 7700 Probably means 77% for under-inventory (opposite of _simulate) - uint16 overInventoryThreshold; // STORAGE[0xd] = 9100 91% (over-inv trigger?) - uint16 priceChangeThreshold; // STORAGE[0x8] = 100, в коде если пендинг, то 100, а если не пендинг то 50 - uint16 extremeVolatility; // STORAGE[0x4] = 2500 (25%) - uint16 highVolatility; // STORAGE[0x5] = 500 (5%) - uint16 someVolatility; // STORAGE[0x6] = 100 (1%) - uint16 dtrDelta; // STORAGE[0x7] = 300 - uint16 baseLowPct; // STORAGE[0x1c] = 2000 - uint16 baseHighPct; // STORAGE[0x1d] = 1000 - uint16 limitReservePct; // STORAGE[0x1e] = 500 - } - - // TODO: не забыть у твап не падать, а возвращать false если не получилось взять его + uint16 depositTokenUnusedThreshold; + uint16 simulate; + uint16 normalThreshold; + uint16 underInventoryThreshold; + uint16 overInventoryThreshold; + uint16 priceChangeThreshold; + uint16 extremeVolatility; + uint16 highVolatility; + uint16 someVolatility; + uint16 dtrDelta; + uint16 baseLowPct; + uint16 baseHighPct; + uint16 limitReservePct; + } + // TODO: норм упаковать address public vault; bool public isAlmInitialized; @@ -101,12 +82,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 public lastRebalanceCurrentPrice; Thresholds public thresholds; - address public pairedToken; // STORAGE[0x16] bytes 0 to 19 - uint8 public pairedTokenDecimals; // = 18 STORAGE[0x17] - address public depositToken; // STORAGE[0x18] bytes 0 to 19 - uint8 public depositTokenDecimals; // STORAGE[0x19] - uint8 public decimalsSum; // STORAGE[0x1a] // это че? (сумма decimals depositToken и pairedToken) а нахуя? - uint8 public tokenDecimals; // pairedTokenDecimals ? в чем отличие + address public pairedToken; + uint8 public pairedTokenDecimals; + address public depositToken; + uint8 public depositTokenDecimals; + uint8 public decimalsSum; + uint8 public tokenDecimals; int24 public tickSpacing; address public factory; address public pool; @@ -123,7 +104,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { _authorize(); require(_baseLowPct >= 100 && _baseLowPct <= 10000, 'Invalid base low percent'); require(_baseHighPct >= 100 && _baseHighPct <= 10000, 'Invalid base high percent'); - require(_limitReservePct >= 100 && _baseLowPct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); + require(_limitReservePct >= 100 && _limitReservePct <= 10000 - thresholds.simulate, 'Invalid limit reserve percent'); thresholds.baseLowPct = _baseLowPct; thresholds.baseHighPct = _baseHighPct; thresholds.limitReservePct = _limitReservePct; @@ -201,8 +182,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { emit Unpaused(); } - // TODO: написать obtainTWAPAndRebalance() - function obtainTWAPAndRebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) external { // console.log('entered obtainTWAPAndRebalance'); TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); @@ -223,7 +202,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function _rebalance(TwapResult memory obtainTWAPsResult) internal { - // require(!paused, 'Pausable: paused'); if (paused) return; if (vault == address(0)) return; @@ -232,17 +210,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('decide status: ', uint256(decideStatus)); // console.log('newState: ', uint256(newState)); - // TODO: сделать тут просто возвращаение результата, чтобы если ребаланс не нужен был, то вся транза не падала - // require(decideStatus != DecideStatus.NoNeed, "no need"); - // require(decideStatus != DecideStatus.TooSoon, "too soon"); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; if (decideStatus != DecideStatus.NoNeedWithPending) { if (decideStatus != DecideStatus.ExtremeVolatility) { Ranges memory ranges; if (decideStatus == DecideStatus.Normal) { - // require(twapResult.currentPriceAccountingDecimals != 0, 'middlePrice must be > 0'); - // require(twapResult.totalDepositToken > 0, 'no deposit tokens in the vault. need manual rebalance'); if ( obtainTWAPsResult.currentPriceAccountingDecimals == 0 || obtainTWAPsResult.totalDepositToken == 0 || @@ -256,12 +229,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges = _getRangesWithoutState(obtainTWAPsResult); } - // struct Ranges { - // int24 baseLower; - // int24 baseUpper; - // int24 limitLower; - // int24 limitUpper; - // } // console.log('RANGES START'); // console.logInt(ranges.baseLower); // console.logInt(ranges.baseUpper); @@ -269,14 +236,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.logInt(ranges.limitUpper); // console.log('RANGES END'); - // require(ranges.baseUpper - ranges.baseLower > 300 && - // ranges.limitUpper - ranges.limitLower > 300, 'positions are concentrated too much'); - if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - // что за v10 и v11? как их достать? (1 из них success call'a, а второй?) - // v10, /* bool */ v11 = address(_gnosis >> 8).execTransactionFromModule(_vault, 0, 128, 0, 164, v12, v12, v12, v12, v12, v9).gas(msg.gas); - - // TODO: swapquantity ? try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; @@ -308,24 +269,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 fastTwapTick, uint32 lastBlockTimestamp ) internal view returns (TwapResult memory twapResult) { - // достать проценты, хуенты - // достать резервы токенычей - // собрать TwapResult - - // struct TwapResult { - // uint256 currentPriceAccountingDecimals; done - // uint256 slowAvgPriceAccountingDecimals; done - // uint256 fastAvgPriceAccountingDecimals; done - // uint256 totalPairedInDeposit; done - // uint256 totalDepositToken; done - // uint256 totalPairedToken; done - // int24 currentTick; done - // uint16 percentageOfDepositTokenUnused; // 10000 = 100% done - // uint16 percentageOfDepositToken; // 10000 = 100% done - // bool failedToObtainTWAP; // всегда false прост done - // bool sameBlock; done - // } - // console.log('entered obtain twaps'); twapResult.failedToObtainTWAP = false; @@ -334,7 +277,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bool _allowToken1 = allowToken1; // console.log("allowToken1: ", allowToken1); if (_allowToken1) { - // почему они эту строку наверх не вынесли? + // почему они эту строку наверх не вынесли? (иначе тут stack too deep) (uint256 amount0, uint256 amount1) = IAlgebraVault(vault).getTotalAmounts(); twapResult.totalPairedToken = amount0; twapResult.totalDepositToken = amount1; @@ -361,11 +304,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.slowAvgPriceAccountingDecimals = slowPrice; twapResult.fastAvgPriceAccountingDecimals = fastPrice; - // uint256 slowPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), slowTwapTick); - // twapResult.slowAvgPriceAccountingDecimals = slowPrice; - // uint256 fastPrice = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), fastTwapTick); - // twapResult.fastAvgPriceAccountingDecimals = fastPrice; - // console.log('2'); // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); @@ -385,12 +323,11 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.percentageOfDepositToken = 10000; } else { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // // console.log("totalTokensAmount: ", totalTokensAmount); + // console.log("totalTokensAmount: ", totalTokensAmount); if (totalTokensAmount == 0) { twapResult.failedToObtainTWAP = true; return twapResult; } - // uint256 totalDepositTokenMultipliedByFactor = 10000 * twapResult.totalDepositToken; uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); twapResult.percentageOfDepositToken = percentageOfDepositToken; } @@ -403,46 +340,37 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (depositTokenBalance > 0) { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; // console.log('totalTokensAmount: ', totalTokensAmount); - // uint256 totalDepositTokenMultipliedByFactor = depositTokenBalance * 10000; - // че за v42 и v43, надо чекнуть первоначальный декомпайл - // V42 = v41 / v40 = (10000 * depositTokenBalance) / (result.totalDepositToken + result.totalPairedInDeposit) twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); } else { - // че за v44 - // v42 = v44 = 0; twapResult.percentageOfDepositTokenUnused = 0; } } function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { - // тут мы более глобально чекаем, получилось ли достать твап, какая ща волатильность - // куча куча ифов, в итоге в одном из случаев вызываем - // вычисления на основе twapResult И UpdateStatus, юзается вспомогательная функция _calcPercentageDiff - // UpdateStatus updStatus = _updateStatus(twapResult); - - if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { - return (DecideStatus.TooSoon, State.Special); - } - uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); // console.log('fastSlowDiff: ', fastSlowDiff); // console.log('fastCurrentDiff: ', fastCurrentDiff); + // console.log("thresholds.extremeVolatility: ", thresholds.extremeVolatility); bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; if (!isExtremeVolatility) { bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; + // console.log('thresholds.highVolatility: ', thresholds.highVolatility); if (!isHighVolatility) { + // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); if ( !((state == State.OverInventory || state == State.Normal) && lastRebalanceCurrentPrice != 0 && twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) ) { + if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { + return (DecideStatus.TooSoon, State.Special); + } + (bool needToRebalance, State newState) = _updateStatus(twapResult); // console.log('needToRebalance: ', needToRebalance); // console.log('newState: ', uint256(newState)); - // needToRebalance = true; - // newState = State.Normal; if (needToRebalance) { if (fastCurrentDiff < thresholds.someVolatility) { // console.log('fastCurrentDiff < thresholds.someVolatility'); @@ -451,7 +379,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (DecideStatus.TooSoon, newState); // too soon } } else { - return (DecideStatus.NoNeedWithPending, newState); // pending rebalance but no rebalance needed??? (this is when twapResult.percentageOfToken1 is less than 1%) + return (DecideStatus.NoNeedWithPending, newState); // when twapResult.percentageOfToken1 is less than 1% } } } else { @@ -471,8 +399,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } state = State.Special; - // какой-то спешл кейс, из-за него вызывается rebalanceWithoutState - return (DecideStatus.Special, State.Special); // выяснить чо он означает + return (DecideStatus.Special, State.Special); } else { // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается return (DecideStatus.ExtremeVolatility, State.Special); @@ -480,10 +407,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { - // тут мы сравниваем уже все проценты и решаем в какой стейт мы будем рабаланситься (и будем ли вообще) - // вычисления на оснвое twapResult, сохранение результата в сторадж, видимо нужно из-за двухэтапной ребалансировки (можно ли объединить в одну функцию?) - // внутри вызываетя вспомогательная функция _calcPercentageDiff - // v0 = state == 3 ? true : !lastRebalanceCurrentPrice + // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); + // console.log('thresholds.underInventoryThreshold: ', thresholds.underInventoryThreshold); if (state != State.Special && lastRebalanceCurrentPrice != 0) { if (state != State.Normal) { if (state != State.OverInventory) { @@ -492,14 +417,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { // if greater than 80% (REBALANCE TO NORMAL) - // sqrtStatus = 1; // state == UnderInventory || state == Special // 80% <= twapResult.percentageOfDepositToken <= 93% // типа из андеринветори или спешл ребалансим в НОРМАЛ return (true, State.Normal); } } else { - // sqrtStatus = 1; // state == UnderInventory || state == Special // twapResult.percentageOfDepositToken >= 93% return (true, State.OverInventory); @@ -508,7 +431,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // if greater than 77% if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { // if less than 91% (REBALANCE TO NORMAL) - // sqrtStatus = 1; // state == OverInventory // 77% <= twapResult.percentageOfDepositToken <= 91% // типа из оверинвентори в НОРМАЛ @@ -522,7 +444,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.UnderInventory); } - // TODO: unreachable код, подумать чо с ним делать (тесты все проходят) uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals // console.log('priceChange: ', priceChange); // console.log('priceChange: ', priceChange); @@ -575,16 +496,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.OverInventory); } } - - // сюда по идее никогда не попадаем (точно??) точно - return (false, State.Normal); } function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { // scope to prevent stack too deep { // console.log('entered _getRangesWithState'); - // State _state = state; bool _allowToken1 = allowToken1; int24 _tickSpacing = tickSpacing; uint8 _tokenDecimals = tokenDecimals; @@ -603,8 +520,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 tickForLowerPrice; if (newState == State.Normal) { // If HEALTHY status (NORMAL) use target price - // тут targetPrice без decimals (если deposittoken = token0) - // и с decimals если deposittoken = token1, без X96 или X192 int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); // console.log('targetTick'); // console.logInt(targetTick); @@ -622,8 +537,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.logInt(tickForHigherPrice); if (lowerPriceBound == 0) { - // Under-inventory state probably - // if depositToken == token0, надо бы это в сторадж наверное засунуть + // Under-inventory state // console.log('entered lowerPriceBound == 0'); int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing @@ -632,7 +546,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); } if (!_allowToken1) { - // if deposittoken == token0 // console.log('TICKS'); // console.logInt(int24(commonTick)); // console.logInt(int24(tickForLowerPrice)); @@ -644,26 +557,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.limitLower = int24(tickForHigherPrice); ranges.limitUpper = int24(commonTick); - // if (varg0 != 2) { - // v19 = 0x437d(int24(_gnosis >> 176), 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27618); - // v18.word2 = int24(v19); - // } - // assert(varg0 <= 3); - // if (varg0 == 2) { - // if (v4) { - // v20 = v21 = MEM[varg1]; - // } else { - // v20 = v22 = v18.word0; - // } - // v18.word0 = int24(v20); - // if (v4) { - // v23 = v24 = MEM[varg1] - int24(_gnosis >> 176); - // } else { - // v23 = v25 = v18.word3; - // } - // v18.word3 = int24(v23); - // } - if (newState != State.UnderInventory) { // if not under-inventory // we do not use v16 because if Token0 then we reverse the structure of ticks @@ -671,8 +564,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.limitLower = int24(roundedMinTick); // use MIN tick } else { // if under-inventorys - ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; // if tick is round set currentTick (useless operation?) - ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; // tick - tick spacing if round (avoid having the same tick if its round??) + ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; + ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; } if (newState == State.OverInventory) { @@ -711,8 +604,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } } - // просто возвращаем? (НЕ ПРОСТО ОКАЗЫВАЕТСЯ ВОЗВРАЩАЕМ) - // TODO: пофиксить stackTooDeep + if (newState == State.OverInventory) { (ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper) = ( ranges.limitLower, @@ -720,24 +612,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.baseLower, ranges.baseUpper ); - // v49.word0 = int24(MEM[64 + v17]); - // v49.word1 = int24(MEM[96 + v17]); - // v49.word2 = int24(MEM[v17]); - // v49.word3 = int24(MEM[32 + v17]); } } function _getRangesWithoutState(TwapResult memory twapResult) internal view returns (Ranges memory ranges) { - // возвращает что-то типа - // result.baseLower = currentTick - // result.baseUpper = maxUpperTick - // result.limitLower = minLowerTick - // result.limitUpper = currentTick - tickSpacing - int24 _tickSpacing = tickSpacing; bool _allowToken1 = allowToken1; - // внутри юзается roundTickToTickSpacingCondigeringNegative, roundTickToTickSpacing int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); // console.log('ticks in _getRangesWithoutState'); @@ -778,13 +659,11 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } - // поч uint128? поч uint256? - // потому что это не decimals, а 10 ** decimals function _getPriceAccountingDecimals( address token0, address token1, uint128 token1decimals, - /*uint256*/ int24 averageTick + int24 averageTick ) private pure returns (uint256 price) { uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); if (uint160(sqrtPriceX96) > type(uint128).max) { @@ -799,11 +678,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.logInt(int256(averageTick)); // console.log(sqrtPriceX96); // console.log(token1 < token0); - // if (token1 < token0) { - // v5 = v6 = MulDiv(uint192.max + 1, token1decimals, uint160(sqrtPrice96) * uint160(sqrtPrice96)); - // } else { - // v5 = v7 = MulDiv(uint160(sqrtPrice96) * uint160(sqrtPrice96), token1decimals, uint192.max + 1); - // } return token1 < token0 ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, uint256(type(uint192).max) + 1) @@ -811,27 +685,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } - // как будто у там эти функци вообще не нужны, мы берем твап из бейз плагина, не делаем лишних коллов - // // пока не очень понятно как она работает и что возвращает - // // TODO: реализовать getTwapMaybe, внутри вызывается только getTimepoints у пула - // function _getTWAPMaybe(uint256 secondsAgo, address pool) private { - - // } - - // // пока не очень понятно как она работает и что возвращает - // // TODO: реализовать getTwap, внутри вызывается только getTimepoints у пула - // function _getTWAP(uint32 varg0, address varg1) private { - - // } - - // function _getDepositTokenDecimals() internal virtual view returns (uint8) { - // return IERC20Metadata(depositToken).decimals(); - // } - - // function _getPairedTokenDecimals() internal virtual view returns (uint8) { - // return IERC20Metadata(depositToken).decimals(); - // } - function _authorize() internal view { require(IAlgebraFactory(factory).hasRoleOrOwner(ALGEBRA_BASE_PLUGIN_MANAGER, msg.sender)); } @@ -887,15 +740,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 lowerPriceBound = 0; if (_state != State.UnderInventory) { // if not under-inventory (because if under - we place lower as Min) - // v4 = _calcPart(baseLowPct, twapResult.currentPriceAccountingDecimals); // 20% of currentPriceAccountingDecimals - // v2 = v5 = _SafeSub(v4, v1); // lower price bound (-20%) - // currentPrice - 20% (почему не сделать twapResult.currentPriceAccountingDecimals * 0.8?) // console.log('baselowpct: ', thresholds.baseLowPct); lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); } - // v6 = _calcPart(baseHighPct, v1); // 10% of currentPriceAccountingDecimals - // v7 = v8 = _SafeAdd(v6, v1); // upper price bound (+10%) - // currentPriceAccountingDecimals + 10% uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); // console.log('targetPrice: ', targetPrice); // console.log('upperPriceBound: ', upperPriceBound); @@ -916,8 +763,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { targetPrice += _calcPart(excessCoef, targetPrice); } } - // ета залупа в каком случае срабатывает? (!allowToken1 -> depositToken = Token0) - // как связано какой депозит токен и то, убираем ли мы decimals или нет? // console.log('targetPrice before remove decimals: ', targetPrice); // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); // console.log('upperPriceBound before remove decimals: ', upperPriceBound); @@ -958,10 +803,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function getSqrtPriceX96(uint8 _tokenDecimals, uint256 _price) private pure returns (uint160) { - // price мы получаем из getRangesWithState, а там мы можем получить - // если state == normal, то без decimals, а если не normal, то с decimals - // и типа если price >= 10 ** tokenDecimals, то мы получили цену с decimals (ну и ХУЕТА) - // console.log(_price >= 10 ** _tokenDecimals); return _price >= 10 ** _tokenDecimals ? getSqrtPriceX96FromPriceWithDecimals(_tokenDecimals, _price) @@ -985,7 +826,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { require(_thresholds.simulate < 9500, 'Simulate must be < 9500'); require(_thresholds.baseLowPct >= 100 && _thresholds.baseLowPct <= 10000, 'Invalid base low percent'); require(_thresholds.baseHighPct >= 100 && _thresholds.baseHighPct <= 10000, 'Invalid base high percent'); - require(_thresholds.limitReservePct >= 100 && _thresholds.baseLowPct <= 10000 - _thresholds.simulate, 'Invalid limit reserve percent'); + require(_thresholds.limitReservePct >= 100 && _thresholds.limitReservePct <= 10000 - _thresholds.simulate, 'Invalid limit reserve percent'); require(_thresholds.dtrDelta <= 10000, '_dtrDelta must be <= 10000'); require(_thresholds.highVolatility >= _thresholds.someVolatility, '_highVolatility must be >= someVolatility'); require(_thresholds.someVolatility <= 300, '_someVolatility must be <= 300'); diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 82a89c825..36cf8eba3 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -4,23 +4,68 @@ pragma solidity =0.8.20; import '../RebalanceManager.sol'; contract MockRebalanceManager is RebalanceManager { - uint256 depositTokenVaultBalance; + uint256 public depositTokenBalance; + uint256 public slowPrice; + uint256 public fastPrice; + uint256 public currentPrice; + uint8 public depositDecimals; + uint8 public pairedDecimals; constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} - function setDepositTokenBalance(uint256 _depositTokenVaultBalance) external { - depositTokenVaultBalance = _depositTokenVaultBalance; + // function setDepositTokenBalance(uint256 _depositTokenVaultBalance) external { + // depositTokenBalance = _depositTokenVaultBalance; + // } + + // function _getDepositTokenDecimals() internal view override returns (uint8) { + // return 18; + // } + + // function _getPairedTokenDecimals() internal view override returns (uint8) { + // return 18; + // } + + //////////////////////////////////////// + + function setDepositTokenBalance(uint256 _depositTokenBalance) public { + depositTokenBalance = _depositTokenBalance; } - function _getDepositTokenDecimals() internal view override returns (uint8) { - return 18; + function setState(State _state) public { + state = _state; } - function _getPairedTokenDecimals() internal view override returns (uint8) { - return 18; + // function setPrices(uint256 _slowPrice, uint256 _fastPrice, uint256 _currentPrice) public { + // slowPrice = _slowPrice; + // fastPrice = _fastPrice; + // currentPrice = _currentPrice; + // } + + function setLastRebalanceCurrentPrice(uint256 _lastRebalanceCurrentPrice) public { + lastRebalanceCurrentPrice = _lastRebalanceCurrentPrice; + } + + function setDecimals(uint8 _depositDecimals, uint8 _pairedDecimals) public { + (depositTokenDecimals, pairedTokenDecimals) = (_depositDecimals, _pairedDecimals); + + decimalsSum = _depositDecimals + _pairedDecimals; + // console.log('decimals sum: ', decimalsSum); + tokenDecimals = allowToken1 ? _pairedDecimals : _depositDecimals; } function _getDepositTokenVaultBalance() internal view override returns (uint256) { - return depositTokenVaultBalance; + return depositTokenBalance; + } + + function _getDepositTokenDecimals() internal view override returns (uint8) { + return depositDecimals; } + + function _getPairedTokenDecimals() internal view override returns (uint8) { + return pairedDecimals; + } + + // function _getTwapPrices(address, address, uint8, int24, int24, int24) internal view override returns (uint256, uint256, uint256) { + // return (slowPrice, fastPrice, currentPrice); + // } } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index a16b93126..520e40c85 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -48,7 +48,8 @@ describe('AlgebraBasePluginALM', () => { const rebalanceManagerFactory = await ethers.getContractFactory('MockRebalanceManager'); rebalanceManager = (await rebalanceManagerFactory.deploy( await mockVault.getAddress(), - thresholds + 7200, + thresholds, )) as any as MockRebalanceManager; await plugin.setRebalanceManager(rebalanceManager); @@ -534,13 +535,14 @@ describe('AlgebraBasePluginALM', () => { }); describe('#AlmPlugin', () => { - it('first rebalance', async () => { + it('first rebalance (over -> over)', async () => { const defaultConfig = await plugin.defaultPluginConfig(); await mockPool.setPlugin(plugin); await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); await initializeAtZeroTick(mockPool); await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); await rebalanceManager.setDepositTokenBalance(10000n); @@ -548,6 +550,38 @@ describe('AlgebraBasePluginALM', () => { await plugin.advanceTime(5000); await mockPool.swapToTick(10); }); + + it('over -> normal', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await mockPool.swapToTick(10); + }); + + it('over -> special (extreme volatility)', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await mockPool.swapToTick(2000); + }); }); // describe('#FarmingPlugin', () => { From 021efe2d699b6327657f705c048377c52eb464fd Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 2 Apr 2025 14:35:37 +0300 Subject: [PATCH 27/42] -more comments --- .../contracts/test/MockRebalanceManager.sol | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 36cf8eba3..08912cba7 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -13,20 +13,6 @@ contract MockRebalanceManager is RebalanceManager { constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} - // function setDepositTokenBalance(uint256 _depositTokenVaultBalance) external { - // depositTokenBalance = _depositTokenVaultBalance; - // } - - // function _getDepositTokenDecimals() internal view override returns (uint8) { - // return 18; - // } - - // function _getPairedTokenDecimals() internal view override returns (uint8) { - // return 18; - // } - - //////////////////////////////////////// - function setDepositTokenBalance(uint256 _depositTokenBalance) public { depositTokenBalance = _depositTokenBalance; } @@ -35,12 +21,6 @@ contract MockRebalanceManager is RebalanceManager { state = _state; } - // function setPrices(uint256 _slowPrice, uint256 _fastPrice, uint256 _currentPrice) public { - // slowPrice = _slowPrice; - // fastPrice = _fastPrice; - // currentPrice = _currentPrice; - // } - function setLastRebalanceCurrentPrice(uint256 _lastRebalanceCurrentPrice) public { lastRebalanceCurrentPrice = _lastRebalanceCurrentPrice; } @@ -64,8 +44,4 @@ contract MockRebalanceManager is RebalanceManager { function _getPairedTokenDecimals() internal view override returns (uint8) { return pairedDecimals; } - - // function _getTwapPrices(address, address, uint8, int24, int24, int24) internal view override returns (uint256, uint256, uint256) { - // return (slowPrice, fastPrice, currentPrice); - // } } From 1ae46a7f6f3f7a207a6a4d0dfed6a3c1b093f454 Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 2 Apr 2025 16:47:10 +0300 Subject: [PATCH 28/42] token1Decimals -> pairedTokenDecimals --- .../contracts/base/BaseRebalanceManager.sol | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index b786e0081..7eb091f08 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -14,7 +14,7 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -// import 'hardhat/console.sol'; +import 'hardhat/console.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -206,9 +206,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (vault == address(0)) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - // console.log('rebalance entered'); - // console.log('decide status: ', uint256(decideStatus)); - // console.log('newState: ', uint256(newState)); + console.log('rebalance entered'); + console.log('decide status: ', uint256(decideStatus)); + console.log('newState: ', uint256(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; @@ -662,7 +662,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _getPriceAccountingDecimals( address token0, address token1, - uint128 token1decimals, + uint128 pairedTokendecimals, int24 averageTick ) private pure returns (uint256 price) { uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); @@ -670,8 +670,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); return token1 < token0 - ? FullMath.mulDiv(priceX128, token1decimals, uint256(type(uint128).max) + 1) - : FullMath.mulDiv(uint256(type(uint128).max) + 1, token1decimals, priceX128); + ? FullMath.mulDiv(priceX128, pairedTokendecimals, uint256(type(uint128).max) + 1) + : FullMath.mulDiv(uint256(type(uint128).max) + 1, pairedTokendecimals, priceX128); } else { // console.log(token0, token1); // console.log(token1decimals); @@ -680,8 +680,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log(token1 < token0); return token1 < token0 - ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), token1decimals, uint256(type(uint192).max) + 1) - : FullMath.mulDiv(uint256(type(uint192).max) + 1, token1decimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); + ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), pairedTokendecimals, uint256(type(uint192).max) + 1) + : FullMath.mulDiv(uint256(type(uint192).max) + 1, pairedTokendecimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); } } From 2824012016bbf1d6ce8bee6abfc4f98e22a2e3b4 Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 2 Apr 2025 16:48:04 +0300 Subject: [PATCH 29/42] -logs --- src/plugin/contracts/base/BaseRebalanceManager.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 7eb091f08..c91bf3fb3 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -14,7 +14,7 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -import 'hardhat/console.sol'; +// import 'hardhat/console.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -206,9 +206,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (vault == address(0)) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - console.log('rebalance entered'); - console.log('decide status: ', uint256(decideStatus)); - console.log('newState: ', uint256(newState)); + // console.log('rebalance entered'); + // console.log('decide status: ', uint256(decideStatus)); + // console.log('newState: ', uint256(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; From b63cf0b77dc77ce57092725f43eb79a804434788 Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 3 Apr 2025 11:14:37 +0300 Subject: [PATCH 30/42] +test --- .../contracts/base/BaseRebalanceManager.sol | 72 +- .../contracts/test/MockRebalanceManager.sol | 27 + src/plugin/test/AlgebraBasePluginALM.spec.ts | 113 +- src/plugin/test/AlmPlugin.spec.ts | 2 +- src/plugin/test/almRebalances2.json | 2584 +++-------------- 5 files changed, 568 insertions(+), 2230 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index c91bf3fb3..72f8d5299 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -14,7 +14,7 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -// import 'hardhat/console.sol'; +import 'hardhat/console.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -185,19 +185,20 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function obtainTWAPAndRebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) external { // console.log('entered obtainTWAPAndRebalance'); TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); - // console.log("TWAP RESULT START"); - // console.log(twapResult.currentPriceAccountingDecimals); - // console.log(twapResult.slowAvgPriceAccountingDecimals); - // console.log(twapResult.fastAvgPriceAccountingDecimals); - // console.log(twapResult.totalPairedInDeposit); - // console.log(twapResult.totalDepositToken); - // console.log(twapResult.totalPairedToken); - // console.logInt(twapResult.currentTick); - // console.log(twapResult.percentageOfDepositTokenUnused); - // console.log(twapResult.percentageOfDepositToken); - // console.log(twapResult.failedToObtainTWAP); - // console.log(twapResult.sameBlock); - // console.log("TWAP RESULT END"); + console.log("TWAP RESULT START"); + console.log('twapResult.currentPriceAccountingDecimals: ', twapResult.currentPriceAccountingDecimals); + console.log('twapResult.slowAvgPriceAccountingDecimals: ', twapResult.slowAvgPriceAccountingDecimals); + console.log('twapResult.fastAvgPriceAccountingDecimals: ', twapResult.fastAvgPriceAccountingDecimals); + console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); + console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); + console.log('twapResult.totalPairedToken :', twapResult.totalPairedToken); + console.logInt(twapResult.currentTick); + console.log('twapResult.percentageOfDepositTokenUnused: ', twapResult.percentageOfDepositTokenUnused); + console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); + console.log('twapResult.failedToObtainTWAP: ', twapResult.failedToObtainTWAP); + console.log('twapResult.sameBlock: ', twapResult.sameBlock); + console.log("TWAP RESULT END"); + console.log('blocknumber: ', block.number); _rebalance(twapResult); } @@ -206,9 +207,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (vault == address(0)) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - // console.log('rebalance entered'); - // console.log('decide status: ', uint256(decideStatus)); - // console.log('newState: ', uint256(newState)); + console.log('rebalance entered'); + console.log('decide status: ', uint256(decideStatus)); + console.log('newState: ', uint256(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; @@ -273,6 +274,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.failedToObtainTWAP = false; twapResult.currentTick = currentTick; + console.log('_blockTimestamp(): ', _blockTimestamp()); + console.log('lastBlockTimestamp: ', lastBlockTimestamp); twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; bool _allowToken1 = allowToken1; // console.log("allowToken1: ", allowToken1); @@ -335,7 +338,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('4'); uint256 depositTokenBalance = _getDepositTokenVaultBalance(); - // console.log('depositTokenBalance: ', depositTokenBalance); + console.log('depositTokenBalance: ', depositTokenBalance); if (depositTokenBalance > 0) { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; @@ -346,17 +349,18 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } - function _decideRebalance(TwapResult memory twapResult) internal returns (DecideStatus, State) { + function _decideRebalance(TwapResult memory twapResult) internal virtual returns (DecideStatus, State) { uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); - // console.log('fastSlowDiff: ', fastSlowDiff); - // console.log('fastCurrentDiff: ', fastCurrentDiff); - // console.log("thresholds.extremeVolatility: ", thresholds.extremeVolatility); + console.log('fastSlowDiff: ', fastSlowDiff); + console.log('fastCurrentDiff: ', fastCurrentDiff); + console.log("thresholds.extremeVolatility: ", thresholds.extremeVolatility); bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; if (!isExtremeVolatility) { bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; - // console.log('thresholds.highVolatility: ', thresholds.highVolatility); + console.log('thresholds.highVolatility: ', thresholds.highVolatility); + console.log('isHighVolatility: ', isHighVolatility); if (!isHighVolatility) { // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); if ( @@ -364,18 +368,25 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { lastRebalanceCurrentPrice != 0 && twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) ) { + console.log('111'); + console.log(_blockTimestamp()); + console.log(lastRebalanceTimestamp); + console.log(minTimeBetweenRebalances); if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { return (DecideStatus.TooSoon, State.Special); } (bool needToRebalance, State newState) = _updateStatus(twapResult); - // console.log('needToRebalance: ', needToRebalance); - // console.log('newState: ', uint256(newState)); + console.log('needToRebalance: ', needToRebalance); + console.log('newState: ', uint256(newState)); if (needToRebalance) { + console.log('fastCurrentDiff: ', fastCurrentDiff); + console.log('thresholds.someVolatility: ', thresholds.someVolatility); if (fastCurrentDiff < thresholds.someVolatility) { // console.log('fastCurrentDiff < thresholds.someVolatility'); return (DecideStatus.Normal, newState); // normal rebalance } else { + console.log('mi tutt?????'); return (DecideStatus.TooSoon, newState); // too soon } } else { @@ -389,16 +400,19 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { + console.log('fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock'); // Если fastCurrentDiff >= _someVolatility (low? - 1%): // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается return (DecideStatus.TooSoon, State.Special); } } else { // special -> noneed + console.log('mi je tut, right?'); return (DecideStatus.NoNeed, State.Special); } } state = State.Special; + console.log('special special????'); return (DecideStatus.Special, State.Special); } else { // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается @@ -406,11 +420,15 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } - function _updateStatus(TwapResult memory twapResult) internal view returns (bool, State) { + function _updateStatus(TwapResult memory twapResult) internal virtual returns (bool, State) { // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); // console.log('thresholds.underInventoryThreshold: ', thresholds.underInventoryThreshold); + console.log('entered updateStatus'); + console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); + console.log('state: ', uint16(state)); if (state != State.Special && lastRebalanceCurrentPrice != 0) { if (state != State.Normal) { + console.log('state != State.OverInventory: ', state != State.OverInventory); if (state != State.OverInventory) { if (twapResult.percentageOfDepositToken <= thresholds.simulate) { // if less than 93% @@ -428,6 +446,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.OverInventory); } } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { + console.log('else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold)'); // if greater than 77% if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { // if less than 91% (REBALANCE TO NORMAL) @@ -471,6 +490,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { // if less than 1% // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); + console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold????'); return (false, State.Normal); // no rebalance needed } else { // CASES: diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 08912cba7..485ef2b32 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -4,6 +4,9 @@ pragma solidity =0.8.20; import '../RebalanceManager.sol'; contract MockRebalanceManager is RebalanceManager { + event MockUpdateStatus(bool needToRebalance, State newState); + event MockDecideRebalance(DecideStatus decideStatus, State newState); + uint256 public depositTokenBalance; uint256 public slowPrice; uint256 public fastPrice; @@ -11,6 +14,8 @@ contract MockRebalanceManager is RebalanceManager { uint8 public depositDecimals; uint8 public pairedDecimals; + uint256 public time = 1601906400; + constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} function setDepositTokenBalance(uint256 _depositTokenBalance) public { @@ -44,4 +49,26 @@ contract MockRebalanceManager is RebalanceManager { function _getPairedTokenDecimals() internal view override returns (uint8) { return pairedDecimals; } + + function _updateStatus(TwapResult memory twapResult) internal override returns (bool, State) { + (bool needToRebalance, State newState) = super._updateStatus(twapResult); + emit MockUpdateStatus(needToRebalance, newState); + return (needToRebalance, newState); + } + + function _decideRebalance(TwapResult memory twapResult) internal override returns (DecideStatus, State) { + (DecideStatus decideStatus, State newState) = super._decideRebalance(twapResult); + emit MockDecideRebalance(decideStatus, newState); + return (decideStatus, newState); + } + + function advanceTime(uint256 by) external { + unchecked { + time += by; + } + } + + function _blockTimestamp() internal view override returns (uint32) { + return uint32(time); + } } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 520e40c85..47a05e979 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -1,5 +1,5 @@ import { Wallet, ZeroAddress } from 'ethers'; -import { ethers } from 'hardhat'; +import { ethers, network } from 'hardhat'; import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'; import checkTimepointEquals from './shared/checkTimepointEquals'; import { expect } from './shared/expect'; @@ -10,6 +10,22 @@ import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, Mo import snapshotGasCost from './shared/snapshotGasCost'; +enum DecideStatus { + Normal, + Special, + NoNeed, + TooSoon, + NoNeedWithPending, + ExtremeVolatility +} + +enum State { + OverInventory, + Normal, + UnderInventory, + Special +} + describe('AlgebraBasePluginALM', () => { let wallet: Wallet, other: Wallet; @@ -567,7 +583,7 @@ describe('AlgebraBasePluginALM', () => { await mockPool.swapToTick(10); }); - it('over -> special (extreme volatility)', async () => { + it('over -> special (high volatility)', async () => { const defaultConfig = await plugin.defaultPluginConfig(); await mockPool.setPlugin(plugin); await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); @@ -582,6 +598,99 @@ describe('AlgebraBasePluginALM', () => { await plugin.advanceTime(3600); await mockPool.swapToTick(2000); }); + + it('no rebalance - extreme volatility', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(3000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.ExtremeVolatility, State.Special); + }); + + it('no rebalance - too soon', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await mockPool.swapToTick(100); + await plugin.advanceTime(1800); + await expect(mockPool.swapToTick(1000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + }); + + it('no rebalance - volatility too low', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(250)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + }); + + it('no rebalance - percentageOfDepositTokenUnused too low', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + // await rebalanceManager.setDepositTokenBalance(0n); + await mockVault.setTotalAmounts(9200, 800); + await plugin.advanceTime(3600); + await mockPool.swapToTick(10); + await plugin.advanceTime(7200); + await rebalanceManager.advanceTime(7200); + + // await rebalanceManager.setState(1); // normal state + await expect(mockPool.swapToTick(11)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeedWithPending, State.Normal); + }); + + it('no rebalance - high volatility in the same block', async () => { + const defaultConfig = await plugin.defaultPluginConfig(); + await mockPool.setPlugin(plugin); + await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + + await initializeAtZeroTick(mockPool); + await deployAndSetRebalanceManager(); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await rebalanceManager.advanceTime(3600); + await network.provider.send("evm_setAutomine", [false]); + // https://github.com/NomicFoundation/hardhat/issues/4090 + await mockPool.swapToTick(1, { gasLimit: 2000000 }); + const tx = await mockPool.swapToTick(2000, { gasLimit: 2000000 }); + await network.provider.send("evm_mine"); + await expect(tx).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + }); }); // describe('#FarmingPlugin', () => { diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts index 20b5be041..190903ae9 100644 --- a/src/plugin/test/AlmPlugin.spec.ts +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -139,7 +139,7 @@ describe('#AlmPlugin', () => { const slowTick = 0n; const fastTick = 0n; - await almPlugin.setDecimals(6, 18); + await almPlugin.setDecimals(18, 18); await mockVault.setTotalAmounts( BigInt(state.usedToken0), diff --git a/src/plugin/test/almRebalances2.json b/src/plugin/test/almRebalances2.json index cf8417e73..f8f9dfeb3 100644 --- a/src/plugin/test/almRebalances2.json +++ b/src/plugin/test/almRebalances2.json @@ -1,2204 +1,386 @@ { - "rebalances2": [ - { - "transactionHash": "0x8bf188bb6b7dccc6e6a259bf0a842001cc6b4d3729a93d28b919acee0d6a19ba", - "state": { - "depositToken": 0, - "blockNumber": 52118373, - "lastRebalancePrice": "51878", - "state": "1", - "currentTick": "305819", - "currentPrice": "52373", - "twapSlow": "51738", - "twapFast": "51588", - "depositTokenBalance": "0", - "pairedTokenBalance": "3396736", - "usedToken0": "26633752", - "usedToken1": "85802082546924596827", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305760", - "topTick": "312720" - }, - "limitPosition": { - "bottomTick": "298860", - "topTick": "305760" - } - } - }, - { - "transactionHash": "0x48de1ac6aa72d6533e1df60538009c81923a85b19aca1e52579518005c8992a3", - "state": { - "depositToken": 0, - "blockNumber": 52120078, - "lastRebalancePrice": "52373", - "state": "3", - "currentTick": "305776", - "currentPrice": "52599", - "twapSlow": "52531", - "twapFast": "52599", - "depositTokenBalance": "0", - "pairedTokenBalance": "1154662", - "usedToken0": "26842809", - "usedToken1": "82197437312526019392", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305520", - "topTick": "307980" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305520" - } - } - }, - { - "transactionHash": "0x95e842455ecfc8e96f4967840d1f2969535be4b261c6ae63bee88b8db0b5dfbf", - "state": { - "depositToken": 0, - "blockNumber": 52122528, - "lastRebalancePrice": "52599", - "state": "1", - "currentTick": "305941", - "currentPrice": "51738", - "twapSlow": "52431", - "twapFast": "52232", - "depositTokenBalance": "0", - "pairedTokenBalance": "2738031", - "usedToken0": "24724519", - "usedToken1": "122852795821242097918", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305940", - "topTick": "312840" - }, - "limitPosition": { - "bottomTick": "298980", - "topTick": "305940" - } - } - }, - { - "transactionHash": "0xf4d477726be2d26365711ccca3589c5a4235102c7690a496658b155c342c1fce", - "state": { - "depositToken": 0, - "blockNumber": 52145294, - "lastRebalancePrice": "52384", - "state": "3", - "currentTick": "305837", - "currentPrice": "52279", - "twapSlow": "52300", - "twapFast": "52279", - "depositTokenBalance": "0", - "pairedTokenBalance": "541812", - "usedToken0": "24334136", - "usedToken1": "131589505378911613863", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305400", - "topTick": "308040" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305400" - } - } - }, - { - "transactionHash": "0x4b864ba4ddf8afd16d7bb2ec8d711186d3913d56b53dd21675c07b7014e66f26", - "state": { - "depositToken": 0, - "blockNumber": 52148572, - "lastRebalancePrice": "52279", - "state": "1", - "currentTick": "305637", - "currentPrice": "53335", - "twapSlow": "52426", - "twapFast": "52594", - "depositTokenBalance": "0", - "pairedTokenBalance": "3310751", - "usedToken0": "26672600", - "usedToken1": "87406360311992835312", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305580", - "topTick": "312540" - }, - "limitPosition": { - "bottomTick": "298680", - "topTick": "305580" - } - } - }, - { - "transactionHash": "0xea8caa37f7d0f10aaee664ee063d13a6389e5a167176134837aba58fa1bc58a4", - "state": { - "depositToken": 0, - "blockNumber": 52151867, - "lastRebalancePrice": "53335", - "state": "3", - "currentTick": "305586", - "currentPrice": "53608", - "twapSlow": "53651", - "twapFast": "53640", - "depositTokenBalance": "0", - "pairedTokenBalance": "870449", - "usedToken0": "26917686", - "usedToken1": "83047650462793719300", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305340", - "topTick": "307800" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305340" - } - } - }, - { - "transactionHash": "0x7f9056e572fdc28047d238fcd85173381979c60b1546bf6c819e649ef59a3fce", - "state": { - "depositToken": 0, - "blockNumber": 52155075, - "lastRebalancePrice": "53608", - "state": "1", - "currentTick": "305526", - "currentPrice": "53930", - "twapSlow": "53479", - "twapFast": "53914", - "depositTokenBalance": "0", - "pairedTokenBalance": "1786362", - "usedToken0": "27694467", - "usedToken1": "68642907954387482607", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305520", - "topTick": "312420" - }, - "limitPosition": { - "bottomTick": "298560", - "topTick": "305520" - } - } - }, - { - "transactionHash": "0xd7bdf9f01dc29c5e045ba50dcdff9188cb8a2ac74ce94c43064e844cf436f16b", - "state": { - "depositToken": 0, - "blockNumber": 52158469, - "lastRebalancePrice": "53930", - "state": "3", - "currentTick": "305601", - "currentPrice": "53527", - "twapSlow": "53635", - "twapFast": "53527", - "depositTokenBalance": "0", - "pairedTokenBalance": "557802", - "usedToken0": "27344900", - "usedToken1": "75320546611139607771", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305400", - "topTick": "307800" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305400" - } - } - }, - { - "transactionHash": "0x03276d66936eb15092dca4e950fab3d8b6b4d58d7c7e9efb2d4a767ba17c997b", - "state": { - "depositToken": 0, - "blockNumber": 52175965, - "lastRebalancePrice": "52815", - "state": "3", - "currentTick": "305304", - "currentPrice": "55141", - "twapSlow": "54702", - "twapFast": "55141", - "depositTokenBalance": "183028369", - "pairedTokenBalance": "1096595", - "usedToken0": "837163844", - "usedToken1": "202078850152129009402", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "305340" - }, - "limitPosition": { - "bottomTick": "305340", - "topTick": "307560" - } - } - }, - { - "transactionHash": "0x57577c81802dcc538e2579856b23e687d577415f4503f95f22637c2959f9ded2", - "state": { - "depositToken": 0, - "blockNumber": 52184327, - "lastRebalancePrice": "55191", - "state": "0", - "currentTick": "305351", - "currentPrice": "54882", - "twapSlow": "55351", - "twapFast": "54904", - "depositTokenBalance": "0", - "pairedTokenBalance": "623377", - "usedToken0": "4214810357", - "usedToken1": "741769483915778226292", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305340", - "topTick": "312240" - }, - "limitPosition": { - "bottomTick": "298380", - "topTick": "305340" - } - } - }, - { - "transactionHash": "0x80b7b0f6bc88f6003bf6c5a891d5fa9431b4759436c395eba0ab8fb2731092d2", - "state": { - "depositToken": 0, - "blockNumber": 52192001, - "lastRebalancePrice": "55268", - "state": "3", - "currentTick": "305250", - "currentPrice": "55440", - "twapSlow": "55318", - "twapFast": "55440", - "depositTokenBalance": "0", - "pairedTokenBalance": "1024393", - "usedToken0": "4141471019", - "usedToken1": "2127521829907067277518", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "305280" - }, - "limitPosition": { - "bottomTick": "305280", - "topTick": "307500" - } - } - }, - { - "transactionHash": "0xdb4acf10c61efbdbb51f4afc273dbc7dcf64717a0120daba6a3a59cbfe5ddb60", - "state": { - "depositToken": 0, - "blockNumber": 52205100, - "lastRebalancePrice": "56137", - "state": "3", - "currentTick": "305349", - "currentPrice": "54893", - "twapSlow": "55213", - "twapFast": "54893", - "depositTokenBalance": "0", - "pairedTokenBalance": "628488", - "usedToken0": "3781079039", - "usedToken1": "8655888168412370725806", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305160", - "topTick": "307560" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305160" - } - } - }, - { - "transactionHash": "0x0b00e0672d17c01eca4a7ab5e8ab3f7d496e65b0a640bb3bc74ffed3b9dcd721", - "state": { - "depositToken": 0, - "blockNumber": 52229731, - "lastRebalancePrice": "55562", - "state": "0", - "currentTick": "305261", - "currentPrice": "55379", - "twapSlow": "55517", - "twapFast": "55379", - "depositTokenBalance": "0", - "pairedTokenBalance": "3616263", - "usedToken0": "3945332883", - "usedToken1": "5722540941972001044523", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "305280" - }, - "limitPosition": { - "bottomTick": "305280", - "topTick": "307500" - } - } - }, - { - "transactionHash": "0xa6ab9b3b8db20a64f47f1aee0832a6c66821d224e541717949eb161aaca3a19a", - "state": { - "depositToken": 0, - "blockNumber": 52235227, - "lastRebalancePrice": "55712", - "state": "3", - "currentTick": "304936", - "currentPrice": "57208", - "twapSlow": "56894", - "twapFast": "57208", - "depositTokenBalance": "0", - "pairedTokenBalance": "352195", - "usedToken0": "4088793746", - "usedToken1": "3166108676571027099999", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "304980" - }, - "limitPosition": { - "bottomTick": "304980", - "topTick": "307200" - } - } - }, - { - "transactionHash": "0x53805c575a3d32fb0fd9a4df1a885aebcb986146df7ec8a8bb339f9859289a79", - "state": { - "depositToken": 0, - "blockNumber": 52244701, - "lastRebalancePrice": "54680", - "state": "3", - "currentTick": "305352", - "currentPrice": "54877", - "twapSlow": "54926", - "twapFast": "54828", - "depositTokenBalance": "541991", - "pairedTokenBalance": "908351", - "usedToken0": "3579130140", - "usedToken1": "12398301337603776326511", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "80", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305040", - "topTick": "307560" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305040" - } - } - }, - { - "transactionHash": "0x8ef0969c5f3f2c5a0955dbe7c574f61d3a756d152ac92cb4ad9e8f73966cf456", - "state": { - "depositToken": 0, - "blockNumber": 52251047, - "lastRebalancePrice": "54877", - "state": "1", - "currentTick": "305510", - "currentPrice": "54017", - "twapSlow": "54620", - "twapFast": "54174", - "depositTokenBalance": "1962899848", - "pairedTokenBalance": "72559", - "usedToken0": "5272380838", - "usedToken1": "17387273699179332512967", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305100", - "topTick": "309060" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305100" - } - } - }, - { - "transactionHash": "0x377a553bacfa7ffe9c8e3e70541b7ddf22b00c41532fc2159eda55152d142891", - "state": { - "depositToken": 0, - "blockNumber": 52255916, - "lastRebalancePrice": "53186", - "state": "3", - "currentTick": "305895", - "currentPrice": "51977", - "twapSlow": "52567", - "twapFast": "51977", - "depositTokenBalance": "0", - "pairedTokenBalance": "1214", - "usedToken0": "4824792674", - "usedToken1": "25833928427342171156197", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305220", - "topTick": "309420" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305220" - } - } - }, - { - "transactionHash": "0x26699e55a937fc04123f66beaed5b4b26183faa9559cd1db85d13b38cecbca45", - "state": { - "depositToken": 0, - "blockNumber": 52291589, - "lastRebalancePrice": "52510", - "state": "1", - "currentTick": "305469", - "currentPrice": "54239", - "twapSlow": "54342", - "twapFast": "54239", - "depositTokenBalance": "379000000", - "pairedTokenBalance": "1390901", - "usedToken0": "5971640526", - "usedToken1": "13393828837977646867893", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305220", - "topTick": "309000" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305220" - } - } - }, - { - "transactionHash": "0x6a30de26e17c203139db8f39a05ad080cbae81dbdd9be378b34a60c55ffd4a28", - "state": { - "depositToken": 0, - "blockNumber": 52296371, - "lastRebalancePrice": "54239", - "state": "1", - "currentTick": "305564", - "currentPrice": "53726", - "twapSlow": "53726", - "twapFast": "53726", - "depositTokenBalance": "1269773269", - "pairedTokenBalance": "220526", - "usedToken0": "7066180171", - "usedToken1": "16621850614887507710528", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305340", - "topTick": "309120" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305340" - } - } - }, - { - "transactionHash": "0xe1106781190be09a7aa81128d1bb54e7cda1473adddfd69429cd17354191d77c", - "state": { - "depositToken": 0, - "blockNumber": 52312810, - "lastRebalancePrice": "53726", - "state": "1", - "currentTick": "305663", - "currentPrice": "53197", - "twapSlow": "53372", - "twapFast": "53197", - "depositTokenBalance": "1140608343", - "pairedTokenBalance": "1989602", - "usedToken0": "7009206239", - "usedToken1": "17715806037462838295271", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305400", - "topTick": "309180" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305400" - } - } - }, - { - "transactionHash": "0x647bfc3b23d0ad26e858a3090fe4e4a40abe76bea0392e24269466368e3045c3", - "state": { - "depositToken": 0, - "blockNumber": 52319712, - "lastRebalancePrice": "53197", - "state": "1", - "currentTick": "305966", - "currentPrice": "51609", - "twapSlow": "53737", - "twapFast": "53538", - "depositTokenBalance": "0", - "pairedTokenBalance": "2498945", - "usedToken0": "6356025201", - "usedToken1": "30177131998379951939293", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305940", - "topTick": "312840" - }, - "limitPosition": { - "bottomTick": "298980", - "topTick": "305940" - } - } - }, - { - "transactionHash": "0x42d103517d0e0f909cd2f95d343cf0fd24ce7b3c624baa0145b2e4cadfdee612", - "state": { - "depositToken": 0, - "blockNumber": 52324931, - "lastRebalancePrice": "51609", - "state": "3", - "currentTick": "305850", - "currentPrice": "52211", - "twapSlow": "52065", - "twapFast": "52008", - "depositTokenBalance": "38360895", - "pairedTokenBalance": "566757", - "usedToken0": "6450376341", - "usedToken1": "29263409127481530892645", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305280", - "topTick": "309360" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305280" - } - } - }, - { - "transactionHash": "0x4d5d92fa3d8ddc7a369e6d38e61bd2826b94b1f12f7463e5388aecdec666f3ca", - "state": { - "depositToken": 0, - "blockNumber": 52357872, - "lastRebalancePrice": "52295", - "state": "1", - "currentTick": "305971", - "currentPrice": "51583", - "twapSlow": "51909", - "twapFast": "51594", - "depositTokenBalance": "459953920", - "pairedTokenBalance": "4157113", - "usedToken0": "6800168315", - "usedToken1": "34122257478041390060580", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305400", - "topTick": "309480" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305400" - } - } - }, - { - "transactionHash": "0xd5e8d4ab05aaf9f8be0393dbdfa9420b80260a5f3cffaf3181b6dcefe3905975", - "state": { - "depositToken": 0, - "blockNumber": 52363072, - "lastRebalancePrice": "51583", - "state": "1", - "currentTick": "305801", - "currentPrice": "52468", - "twapSlow": "52347", - "twapFast": "52468", - "depositTokenBalance": "5000000003", - "pairedTokenBalance": "2315938", - "usedToken0": "12162011586", - "usedToken1": "27181637665303955459738", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305580", - "topTick": "309360" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "305580" - } - } - }, - { - "transactionHash": "0x2489f148474aaf4983543639c0d3e6640e3718c247f460872d9566b0db97c95d", - "state": { - "depositToken": 0, - "blockNumber": 52375311, - "lastRebalancePrice": "52468", - "state": "1", - "currentTick": "305608", - "currentPrice": "53490", - "twapSlow": "52863", - "twapFast": "53490", - "depositTokenBalance": "0", - "pairedTokenBalance": "2707595", - "usedToken0": "12482949117", - "usedToken1": "13069874255451379270413", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "305640" - }, - "limitPosition": { - "bottomTick": "305640", - "topTick": "309180" - } - } - }, - { - "transactionHash": "0x55dd8d5a2de3577b07ccefe8f5d7e8e5581e3551f08869e353928c949701267e", - "state": { - "depositToken": 0, - "blockNumber": 52394217, - "lastRebalancePrice": "53635", - "state": "0", - "currentTick": "305656", - "currentPrice": "53234", - "twapSlow": "53511", - "twapFast": "53346", - "depositTokenBalance": "0", - "pairedTokenBalance": "2221024", - "usedToken0": "11986830429", - "usedToken1": "13787984341636322582855", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "305700" - }, - "limitPosition": { - "bottomTick": "305700", - "topTick": "309240" - } - } - }, - { - "transactionHash": "0x354cc327bc5a333e1baea560732af0f4e291a195b75d718429072bf7a3398439", - "state": { - "depositToken": 0, - "blockNumber": 52494665, - "lastRebalancePrice": "49432", - "state": "2", - "currentTick": "306704", - "currentPrice": "47938", - "twapSlow": "47938", - "twapFast": "47938", - "depositTokenBalance": "0", - "pairedTokenBalance": "91719", - "usedToken0": "5545823783", - "usedToken1": "41564842349498368665349", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "306660", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "305280", - "topTick": "306660" - } - } - }, - { - "transactionHash": "0x7f49f295f6bc5b2e32b14a1fdac2413469a52c92647f3462aae4b2688e27a917", - "state": { - "depositToken": 0, - "blockNumber": 52910328, - "lastRebalancePrice": "48638", - "state": "1", - "currentTick": "306202", - "currentPrice": "50405", - "twapSlow": "50446", - "twapFast": "50405", - "depositTokenBalance": "0", - "pairedTokenBalance": "1281863", - "usedToken0": "51920818714", - "usedToken1": "60104532807922050649715", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "306240" - }, - "limitPosition": { - "bottomTick": "306240", - "topTick": "309780" - } - } - }, - { - "transactionHash": "0xbdcefece118153758a170f016e875f1fdd25af8628a44e1b69226b8d47488d6d", - "state": { - "depositToken": 0, - "blockNumber": 52929893, - "lastRebalancePrice": "50405", - "state": "0", - "currentTick": "306364", - "currentPrice": "49595", - "twapSlow": "49481", - "twapFast": "49595", - "depositTokenBalance": "0", - "pairedTokenBalance": "2847416", - "usedToken0": "49945859414", - "usedToken1": "99945159702788799912236", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "3000", - "baseHighPct": "1500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "306180", - "topTick": "309900" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "306180" - } - } - }, - { - "transactionHash": "0x496f498e2494fab334fd5d8a3d8a3810766de6f6418f6f77889936255bc9982b", - "state": { - "depositToken": 0, - "blockNumber": 53001010, - "lastRebalancePrice": "46647", - "state": "2", - "currentTick": "306920", - "currentPrice": "46913", - "twapSlow": "46913", - "twapFast": "46913", - "depositTokenBalance": "152993873", - "pairedTokenBalance": "73542", - "usedToken0": "29092211844", - "usedToken1": "186347567699054640648894", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "306900", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "306420", - "topTick": "306900" - } - } - }, - { - "transactionHash": "0x7284baaa953b82e6f4e88ee1fa32501cad207333472ffbc9ab6e86c3a3855236", - "state": { - "depositToken": 0, - "blockNumber": 53168157, - "lastRebalancePrice": "45581", - "state": "2", - "currentTick": "307384", - "currentPrice": "44786", - "twapSlow": "45128", - "twapFast": "44885", - "depositTokenBalance": "285609895", - "pairedTokenBalance": "57815", - "usedToken0": "33147272623", - "usedToken1": "281299803196902979524378", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "307380", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "306840", - "topTick": "307380" - } - } - }, - { - "transactionHash": "0xbf2798a2548d0996720447749b3fb12ee82862fc6a3d1dc9d73c8f3b756a4f0d", - "state": { - "depositToken": 0, - "blockNumber": 53208372, - "lastRebalancePrice": "45810", - "state": "1", - "currentTick": "306930", - "currentPrice": "46866", - "twapSlow": "46866", - "twapFast": "46866", - "depositTokenBalance": "1102666280", - "pairedTokenBalance": "2982997", - "usedToken0": "45099132284", - "usedToken1": "46553054160901135303587", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "306960" - }, - "limitPosition": { - "bottomTick": "306960", - "topTick": "308040" - } - } - }, - { - "transactionHash": "0x63b6027981899ce41dd9ea4741b851450252b970e5b0433514a843d56a4aa200", - "state": { - "depositToken": 0, - "blockNumber": 53228192, - "lastRebalancePrice": "46866", - "state": "0", - "currentTick": "306872", - "currentPrice": "47139", - "twapSlow": "46838", - "twapFast": "47148", - "depositTokenBalance": "1035634886", - "pairedTokenBalance": "62526", - "usedToken0": "45969651695", - "usedToken1": "46383992480626488537275", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "306900" - }, - "limitPosition": { - "bottomTick": "306900", - "topTick": "307980" - } - } - }, - { - "transactionHash": "0x7330f777fb9cf0a5c661534de6ce3e77de8333c3475aca31f9482133b954e29c", - "state": { - "depositToken": 0, - "blockNumber": 53288720, - "lastRebalancePrice": "48696", - "state": "0", - "currentTick": "306404", - "currentPrice": "49397", - "twapSlow": "49397", - "twapFast": "49397", - "depositTokenBalance": "0", - "pairedTokenBalance": "2993903", - "usedToken0": "45702486604", - "usedToken1": "18868686817785061036899", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "306420" - }, - "limitPosition": { - "bottomTick": "306420", - "topTick": "307500" - } - } - }, - { - "transactionHash": "0x901bd51e285bcb6fe2d88c9322e69ab3651aa843eb17a443e3d6526c5b8985c8", - "state": { - "depositToken": 0, - "blockNumber": 53296955, - "lastRebalancePrice": "49397", - "state": "0", - "currentTick": "306044", - "currentPrice": "51208", - "twapSlow": "50134", - "twapFast": "51172", - "depositTokenBalance": "0", - "pairedTokenBalance": "350592", - "usedToken0": "45719457280", - "usedToken1": "18532247691715796729261", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "306000", - "topTick": "312960" - }, - "limitPosition": { - "bottomTick": "299100", - "topTick": "306000" - } - } - }, - { - "transactionHash": "0x566773b18dae517c7947f7dfc47458a3e41929191954a71866b6cffc0069174f", - "state": { - "depositToken": 0, - "blockNumber": 53339066, - "lastRebalancePrice": "51868", - "state": "0", - "currentTick": "305963", - "currentPrice": "51625", - "twapSlow": "51888", - "twapFast": "51625", - "depositTokenBalance": "0", - "pairedTokenBalance": "3814386", - "usedToken0": "22118658656", - "usedToken1": "15709140655475407132230", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "306000" - }, - "limitPosition": { - "bottomTick": "306000", - "topTick": "307020" - } - } - }, - { - "transactionHash": "0x560f8264d536cbcde0de0041edbe007e5622a0e8256fe9ab8c408ba2bf318f86", - "state": { - "depositToken": 0, - "blockNumber": 53497646, - "lastRebalancePrice": "59751", - "state": "2", - "currentTick": "304705", - "currentPrice": "58545", - "twapSlow": "58586", - "twapFast": "58545", - "depositTokenBalance": "2011640662", - "pairedTokenBalance": "48163", - "usedToken0": "20001213414", - "usedToken1": "118081131363835443839732", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304680", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "304200", - "topTick": "304680" - } - } - }, - { - "transactionHash": "0x2a387d172df03e83450d603bcd2d4191a58e3214fb88525f48e0b354b7aafb47", - "state": { - "depositToken": 0, - "blockNumber": 53507043, - "lastRebalancePrice": "58545", - "state": "2", - "currentTick": "304326", - "currentPrice": "60806", - "twapSlow": "59507", - "twapFast": "60739", - "depositTokenBalance": "32499096", - "pairedTokenBalance": "2631", - "usedToken0": "25268417340", - "usedToken1": "30938211583463709266052", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304320", - "topTick": "311220" - }, - "limitPosition": { - "bottomTick": "297360", - "topTick": "304320" - } - } - }, - { - "transactionHash": "0x3425ff3c1d251c386ea259425bd76d08b365885c0560e9950d09898a7def0211", - "state": { - "depositToken": 0, - "blockNumber": 53637850, - "lastRebalancePrice": "57328", - "state": "0", - "currentTick": "305079", - "currentPrice": "56396", - "twapSlow": "56317", - "twapFast": "56396", - "depositTokenBalance": "10761706446", - "pairedTokenBalance": "3407563", - "usedToken0": "54536449059", - "usedToken1": "199668242511296620543280", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304920", - "topTick": "306120" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "304920" - } - } - }, - { - "transactionHash": "0x15ecff25ba1072e5a5f451e67459daf15516d823c847469b59b7209f3e5142be", - "state": { - "depositToken": 0, - "blockNumber": 53656869, - "lastRebalancePrice": "56396", - "state": "1", - "currentTick": "304924", - "currentPrice": "57277", - "twapSlow": "57019", - "twapFast": "57277", - "depositTokenBalance": "17755989867", - "pairedTokenBalance": "3042705", - "usedToken0": "80739567880", - "usedToken1": "52150261718886275170961", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "304980" - }, - "limitPosition": { - "bottomTick": "304980", - "topTick": "306000" - } - } - }, - { - "transactionHash": "0xc32c1cccee5e4b74b5cd42824051dd86051dcb47572e65c6d0c17c719fe11999", - "state": { - "depositToken": 0, - "blockNumber": 53750958, - "lastRebalancePrice": "57082", - "state": "3", - "currentTick": "305136", - "currentPrice": "56075", - "twapSlow": "56441", - "twapFast": "56075", - "depositTokenBalance": "158479950", - "pairedTokenBalance": "558883", - "usedToken0": "47423982039", - "usedToken1": "488664903550421737649778", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "305100", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "304620", - "topTick": "305100" - } - } - }, - { - "transactionHash": "0xb909267996439e0975a625a60a3cc58983edd6fb1169c3244a17c1e66e080ef8", - "state": { - "depositToken": 0, - "blockNumber": 53866630, - "lastRebalancePrice": "56548", - "state": "0", - "currentTick": "304630", - "currentPrice": "58985", - "twapSlow": "57328", - "twapFast": "58527", - "depositTokenBalance": "1238929384", - "pairedTokenBalance": "3727241", - "usedToken0": "71425614830", - "usedToken1": "64713852817662524386564", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304620", - "topTick": "311520" - }, - "limitPosition": { - "bottomTick": "297660", - "topTick": "304620" - } - } - }, - { - "transactionHash": "0x850f13b8579f8639eebfb22c6b5e725fae8f159b6d4fb9cd51b9f4096274b902", - "state": { - "depositToken": 0, - "blockNumber": 53912841, - "lastRebalancePrice": "63218", - "state": "3", - "currentTick": "304188", - "currentPrice": "61651", - "twapSlow": "61700", - "twapFast": "61651", - "depositTokenBalance": "492119442", - "pairedTokenBalance": "236649", - "usedToken0": "69228194735", - "usedToken1": "109850680083620936173657", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304140", - "topTick": "305220" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "304140" - } - } - }, - { - "transactionHash": "0x77eb622162ef0483dbdebafc2a89294035906c3819712051e5c22864016dea9d", - "state": { - "depositToken": 0, - "blockNumber": 53933313, - "lastRebalancePrice": "61651", - "state": "1", - "currentTick": "304376", - "currentPrice": "60503", - "twapSlow": "60569", - "twapFast": "60503", - "depositTokenBalance": "60760677", - "pairedTokenBalance": "335179", - "usedToken0": "56082644322", - "usedToken1": "319558878933819970682064", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304320", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "303840", - "topTick": "304320" - } - } - }, - { - "transactionHash": "0x884873d62d97e051d9ca65a8e387954169b036c870f9f7af39738d8e02268d95", - "state": { - "depositToken": 0, - "blockNumber": 53953460, - "lastRebalancePrice": "60503", - "state": "2", - "currentTick": "304295", - "currentPrice": "60995", - "twapSlow": "60666", - "twapFast": "60995", - "depositTokenBalance": "253594783", - "pairedTokenBalance": "77526", - "usedToken0": "57425751447", - "usedToken1": "300112402951949788783723", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304260", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "303780", - "topTick": "304260" - } - } - }, - { - "transactionHash": "0xe0878917d337a26066f5d908f0719d0b0fb75db41c67fd5275d139f740717c63", - "state": { - "depositToken": 0, - "blockNumber": 53973387, - "lastRebalancePrice": "60995", - "state": "2", - "currentTick": "304408", - "currentPrice": "60310", - "twapSlow": "60539", - "twapFast": "60310", - "depositTokenBalance": "2854846", - "pairedTokenBalance": "31515", - "usedToken0": "57107327686", - "usedToken1": "305482580252812203464662", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "304380", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "303900", - "topTick": "304380" - } - } - }, - { - "transactionHash": "0xf5f5f24e3a7ae7dd4dc97bcb645d2cf2ff74fd55b99464db43b7f6d45c43e317", - "state": { - "depositToken": 0, - "blockNumber": 54187887, - "lastRebalancePrice": "66679", - "state": "0", - "currentTick": "303176", - "currentPrice": "68216", - "twapSlow": "67971", - "twapFast": "68155", - "depositTokenBalance": "2519558490", - "pairedTokenBalance": "213371", - "usedToken0": "76612178512", - "usedToken1": "1869849452847666523778", - "priceChangeTrigger": "30", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "200", - "someVolatility": "40", - "dtrDelta": "300", - "baseLowPct": "1000", - "baseHighPct": "500", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "303180" - }, - "limitPosition": { - "bottomTick": "303180", - "topTick": "304260" - } - } - }, - { - "transactionHash": "0x13ef3c342a1f899db083ae2af2e66f478e330e463aa1a0b9c9c3ff392fef51c3", - "state": { - "depositToken": 0, - "blockNumber": 54233034, - "lastRebalancePrice": "92035", - "state": "0", - "currentTick": "300353", - "currentPrice": "90466", - "twapSlow": "90258", - "twapFast": "90466", - "depositTokenBalance": "1119597262", - "pairedTokenBalance": "1174889", - "usedToken0": "75025075555", - "usedToken1": "61597351301907434394494", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "300360" - }, - "limitPosition": { - "bottomTick": "300360", - "topTick": "309540" - } - } - }, - { - "transactionHash": "0xce867ab0c3556163152aab2436cef19d26569d43ad25404943f1816a94ca32a2", - "state": { - "depositToken": 0, - "blockNumber": 54314568, - "lastRebalancePrice": "75783", - "state": "1", - "currentTick": "301950", - "currentPrice": "77114", - "twapSlow": "77144", - "twapFast": "77114", - "depositTokenBalance": "3401821280", - "pairedTokenBalance": "451859", - "usedToken0": "82614151909", - "usedToken1": "267991667492686461151072", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "300840", - "topTick": "311100" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "300840" - } - } - }, - { - "transactionHash": "0xbebe6f9ebe0ba0728eca68bd9eace083e35edab473214998748a6f6f89ad5a04", - "state": { - "depositToken": 0, - "blockNumber": 54466135, - "lastRebalancePrice": "89530", - "state": "0", - "currentTick": "300226", - "currentPrice": "91622", - "twapSlow": "89664", - "twapFast": "91604", - "depositTokenBalance": "0", - "pairedTokenBalance": "2709850", - "usedToken0": "105326526857", - "usedToken1": "66260246286421327979026", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "300240" - }, - "limitPosition": { - "bottomTick": "300240", - "topTick": "309420" - } - } - }, - { - "transactionHash": "0x93cba7a528226a899a7548d6f3431b6c82151b9f5cee9b2ce61063cc13e92f75", - "state": { - "depositToken": 0, - "blockNumber": 54471661, - "lastRebalancePrice": "91622", - "state": "0", - "currentTick": "300427", - "currentPrice": "89799", - "twapSlow": "90974", - "twapFast": "89880", - "depositTokenBalance": "0", - "pairedTokenBalance": "2701454", - "usedToken0": "102652685268", - "usedToken1": "95724173885994544440903", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "300480" - }, - "limitPosition": { - "bottomTick": "300480", - "topTick": "309600" - } - } - }, - { - "transactionHash": "0x57e443e73e6709f7286eabb5291e5365a9aee6676391c00fae0448e4123776b5", - "state": { - "depositToken": 0, - "blockNumber": 54480383, - "lastRebalancePrice": "89799", - "state": "0", - "currentTick": "300480", - "currentPrice": "89324", - "twapSlow": "89476", - "twapFast": "89324", - "depositTokenBalance": "1952013388", - "pairedTokenBalance": "2205725", - "usedToken0": "104575860575", - "usedToken1": "96311745193017595905733", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "300480" - }, - "limitPosition": { - "bottomTick": "300540", - "topTick": "309660" - } - } - }, - { - "transactionHash": "0x3d86f536a5e2d022e0e032c31f53700aa26ba01c1191a7d0163f4ac3c5c263e3", - "state": { - "depositToken": 0, - "blockNumber": 54509361, - "lastRebalancePrice": "87197", - "state": "1", - "currentTick": "300920", - "currentPrice": "85479", - "twapSlow": "85087", - "twapFast": "85411", - "depositTokenBalance": "7500704901", - "pairedTokenBalance": "2384494", - "usedToken0": "106890637567", - "usedToken1": "157691200002589602566938", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "300480", - "topTick": "310080" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "300480" - } - } - }, - { - "transactionHash": "0x74c43cd5288dbe8d734839e02b7e7c39bc6fe87af4cce24e7decc8a4488f58fc", - "state": { - "depositToken": 0, - "blockNumber": 54534891, - "lastRebalancePrice": "85479", - "state": "1", - "currentTick": "300511", - "currentPrice": "89048", - "twapSlow": "88444", - "twapFast": "88968", - "depositTokenBalance": "351996270", - "pairedTokenBalance": "521349", - "usedToken0": "113288774305", - "usedToken1": "88710011432890673735403", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-887220", - "topTick": "300540" - }, - "limitPosition": { - "bottomTick": "300540", - "topTick": "309720" - } - } - }, - { - "transactionHash": "0xd82b4d4e5bb542356879b0cf25c020fec18bc8c214c55bcbaaa9740212487244", - "state": { - "depositToken": 0, - "blockNumber": 54563764, - "lastRebalancePrice": "90901", - "state": "0", - "currentTick": "300485", - "currentPrice": "89280", - "twapSlow": "89835", - "twapFast": "89280", - "depositTokenBalance": "1785684", - "pairedTokenBalance": "1195863", - "usedToken0": "113236487780", - "usedToken1": "126910015690890056813748", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "6000", - "baseHighPct": "3000", - "limitReservePct": "10000" - }, - "rebalance": { - "basePosition": { - "bottomTick": "300180", - "topTick": "309600" - }, - "limitPosition": { - "bottomTick": "-887220", - "topTick": "300180" - } - } +"rebalances2": [ + { + "transactionHash": "0x39e7591f007489a377aa9ff49eeb6e044e11674f50d09f73fe78a5b2a914b4fd", + "state": { + "depositToken": 0, + "blockNumber": 49637327, + "lastRebalancePrice": "0", + "state": "0", + "currentTick": "82759", + "currentPrice": "3926431325209865374904", + "twapSlow": "3926431325209865374904", + "twapFast": "3926431325209865374904", + "depositTokenBalance": "2000000000000000000", + "pairedTokenBalance": "0", + "usedToken0": "0", + "usedToken1": "2000000000000000000", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "77640", + "topTick": "82740" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x5a8da9b81fb247428674440a1bc12a5eb1cf0fbcdc9593248deb96ac9f830296", + "state": { + "depositToken": 0, + "blockNumber": 49651219, + "lastRebalancePrice": "3926431325209865374904", + "state": "0", + "currentTick": "82771", + "currentPrice": "3931145635108801132863", + "twapSlow": "3931145635108801132863", + "twapFast": "3931145635108801132863", + "depositTokenBalance": "100000000000000000007", + "pairedTokenBalance": "0", + "usedToken0": "0", + "usedToken1": "101999999999999999999", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "77640", + "topTick": "82740" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x4826fdb0e2bd90c872a55b4cfef9589d6ff67e48a06151684eae5a681bcf6aa8", + "state": { + "depositToken": 0, + "blockNumber": 49669140, + "lastRebalancePrice": "3931145635108801132863", + "state": "0", + "currentTick": "82820", + "currentPrice": "3950454551504296877811", + "twapSlow": "3950454551504296877811", + "twapFast": "3950454551504296877811", + "depositTokenBalance": "788527663489850081411082", + "pairedTokenBalance": "0", + "usedToken0": "0", + "usedToken1": "788629663489850081411069", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "77700", + "topTick": "82800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x1775b114ee825d300509c2a015d274abed6b17212a4611a398ab6948cc25019e", + "state": { + "depositToken": 0, + "blockNumber": 49727332, + "lastRebalancePrice": "3950454551504296877811", + "state": "0", + "currentTick": "82803", + "currentPrice": "3943744819136126105932", + "twapSlow": "3943744819136126105932", + "twapFast": "3943744819136126105932", + "depositTokenBalance": "9116380871261460085256", + "pairedTokenBalance": "0", + "usedToken0": "0", + "usedToken1": "797746044361111541496320", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "77640", + "topTick": "82800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xc314a349dc8e2db54ca2c840730640d60b3ccc83a8d8038872c0a3d6dfa87298", + "state": { + "depositToken": 0, + "blockNumber": 49730816, + "lastRebalancePrice": "3943744819136126105932", + "state": "0", + "currentTick": "82803", + "currentPrice": "3943744819136126105932", + "twapSlow": "3943744819136126105932", + "twapFast": "3943744819136126105932", + "depositTokenBalance": "18314048083270805594410", + "pairedTokenBalance": "0", + "usedToken0": "0", + "usedToken1": "815937130670240908057439", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "77640", + "topTick": "82800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0xe8f625146fd585071b897f517460a6c73ebeff43a44ad9ea6e6c6f7c9eb9e34d", + "state": { + "depositToken": 0, + "blockNumber": 49734976, + "lastRebalancePrice": "3943744819136126105932", + "state": "0", + "currentTick": "82804", + "currentPrice": "3944139193618039718543", + "twapSlow": "3943744819136126105932", + "twapFast": "3944139193618039718543", + "depositTokenBalance": "23666417892540000763907", + "pairedTokenBalance": "0", + "usedToken0": "0", + "usedToken1": "839603548562780908821340", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "77640", + "topTick": "82800" + }, + "limitPosition": null + } + }, + { + "transactionHash": "0x7a08813c39ff8058967d491375bea822366dca3c64b47a30e4b62582d45de8fc", + "state": { + "depositToken": 0, + "blockNumber": 49736980, + "lastRebalancePrice": "3944139193618039718543", + "state": "0", + "currentTick": "82790", + "currentPrice": "3938621537885348180754", + "twapSlow": "3940591242555832828108", + "twapFast": "3938621537885348180754", + "depositTokenBalance": "10809276920180000161804", + "pairedTokenBalance": "0", + "usedToken0": "455700966135985311", + "usedToken1": "848622454655351372204550", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "82740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "77640", + "topTick": "82740" + } + } + }, + { + "transactionHash": "0xd16f8e654245fd62cb21b0a3a258a57a353fb7cf607ec179123ba8debd430aa1", + "state": { + "depositToken": 0, + "blockNumber": 49738801, + "lastRebalancePrice": "3938621537885348180754", + "state": "0", + "currentTick": "82789", + "currentPrice": "3938227715113836797074", + "twapSlow": "3938227715113836797074", + "twapFast": "3938227715113836797074", + "depositTokenBalance": "60023784327253657803858", + "pairedTokenBalance": "0", + "usedToken0": "455165252472082105", + "usedToken1": "907870230648225704981931", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "82740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "77640", + "topTick": "82740" + } + } + }, + { + "transactionHash": "0xec3c98a1db70226e9456d8c4eb82dbd2765f896fa111f4a995d21c4bf3ca36ee", + "state": { + "depositToken": 0, + "blockNumber": 49747900, + "lastRebalancePrice": "3938227715113836797074", + "state": "0", + "currentTick": "82791", + "currentPrice": "3939015400039136715572", + "twapSlow": "3939015400039136715572", + "twapFast": "3939015400039136715572", + "depositTokenBalance": "13390432685530000654347", + "pairedTokenBalance": "0", + "usedToken0": "455113046410199993", + "usedToken1": "921260869711344996635371", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "82740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "77640", + "topTick": "82740" + } + } + }, + { + "transactionHash": "0x6fed8e8b1cdc0145c2359e1b76d267dea870231959309baf48644370bbd22a5f", + "state": { + "depositToken": 0, + "blockNumber": 49787073, + "lastRebalancePrice": "3939015400039136715572", + "state": "0", + "currentTick": "82795", + "currentPrice": "3940591242555832828108", + "twapSlow": "3940591242555832828108", + "twapFast": "3940591242555832828108", + "depositTokenBalance": "19107809878110000402444", + "pairedTokenBalance": "0", + "usedToken0": "455030814334198275", + "usedToken1": "940369005040161522096607", + "priceChangeTrigger": "100", + "simulateTrigger": "9300", + "normalTrigger": "7700", + "underTrigger": "7500", + "overTrigger": "9100", + "depositTokenUnusedThreshold": "100", + "extremeVolatility": "2500", + "highVolatility": "600", + "someVolatility": "100", + "dtrDelta": "300", + "baseLowPct": "4000", + "baseHighPct": "2000", + "limitReservePct": "500" + }, + "rebalance": { + "basePosition": { + "bottomTick": "82740", + "topTick": "887220" + }, + "limitPosition": { + "bottomTick": "77640", + "topTick": "82740" } - ] + } + } + ] } From 88bf37d0772c88593ee0f7206ed01a9f8275ed80 Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 3 Apr 2025 18:20:27 +0300 Subject: [PATCH 31/42] only plugin --- .../contracts/base/BaseRebalanceManager.sol | 249 +++++++++--------- src/plugin/contracts/plugins/AlmPlugin.sol | 1 - 2 files changed, 126 insertions(+), 124 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 72f8d5299..72b0719cf 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -6,6 +6,7 @@ import '@cryptoalgebra/integral-core/contracts/libraries/Plugins.sol'; import '@cryptoalgebra/integral-core/contracts/libraries/TickMath.sol'; import '@cryptoalgebra/integral-core/contracts/libraries/FullMath.sol'; import '@cryptoalgebra/integral-core/contracts/base/common/Timestamp.sol'; +import '@cryptoalgebra/integral-core/contracts/interfaces/IAlgebraPool.sol'; import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; import '@openzeppelin/contracts/utils/math/Math.sol'; @@ -14,7 +15,7 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -import 'hardhat/console.sol'; +// import 'hardhat/console.sol'; abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -183,22 +184,23 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function obtainTWAPAndRebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) external { - // console.log('entered obtainTWAPAndRebalance'); + // // console.log('entered obtainTWAPAndRebalance'); + require(msg.sender == IAlgebraPool(pool).plugin(), 'Should only called by plugin'); TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); - console.log("TWAP RESULT START"); - console.log('twapResult.currentPriceAccountingDecimals: ', twapResult.currentPriceAccountingDecimals); - console.log('twapResult.slowAvgPriceAccountingDecimals: ', twapResult.slowAvgPriceAccountingDecimals); - console.log('twapResult.fastAvgPriceAccountingDecimals: ', twapResult.fastAvgPriceAccountingDecimals); - console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); - console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); - console.log('twapResult.totalPairedToken :', twapResult.totalPairedToken); - console.logInt(twapResult.currentTick); - console.log('twapResult.percentageOfDepositTokenUnused: ', twapResult.percentageOfDepositTokenUnused); - console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); - console.log('twapResult.failedToObtainTWAP: ', twapResult.failedToObtainTWAP); - console.log('twapResult.sameBlock: ', twapResult.sameBlock); - console.log("TWAP RESULT END"); - console.log('blocknumber: ', block.number); + // console.log("TWAP RESULT START"); + // console.log('twapResult.currentPriceAccountingDecimals: ', twapResult.currentPriceAccountingDecimals); + // console.log('twapResult.slowAvgPriceAccountingDecimals: ', twapResult.slowAvgPriceAccountingDecimals); + // console.log('twapResult.fastAvgPriceAccountingDecimals: ', twapResult.fastAvgPriceAccountingDecimals); + // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); + // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); + // console.log('twapResult.totalPairedToken :', twapResult.totalPairedToken); + // console.logInt(twapResult.currentTick); + // console.log('twapResult.percentageOfDepositTokenUnused: ', twapResult.percentageOfDepositTokenUnused); + // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); + // console.log('twapResult.failedToObtainTWAP: ', twapResult.failedToObtainTWAP); + // console.log('twapResult.sameBlock: ', twapResult.sameBlock); + // console.log("TWAP RESULT END"); + // console.log('blocknumber: ', block.number); _rebalance(twapResult); } @@ -207,9 +209,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (vault == address(0)) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - console.log('rebalance entered'); - console.log('decide status: ', uint256(decideStatus)); - console.log('newState: ', uint256(newState)); + // console.log('rebalance entered'); + // console.log('decide status: ', uint256(decideStatus)); + // console.log('newState: ', uint256(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; @@ -230,12 +232,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges = _getRangesWithoutState(obtainTWAPsResult); } - // console.log('RANGES START'); - // console.logInt(ranges.baseLower); - // console.logInt(ranges.baseUpper); - // console.logInt(ranges.limitLower); - // console.logInt(ranges.limitUpper); - // console.log('RANGES END'); + // // console.log('RANGES START'); + // // console.logInt(ranges.baseLower); + // // console.logInt(ranges.baseUpper); + // // console.logInt(ranges.limitLower); + // // console.logInt(ranges.limitUpper); + // // console.log('RANGES END'); if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; @@ -270,15 +272,15 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 fastTwapTick, uint32 lastBlockTimestamp ) internal view returns (TwapResult memory twapResult) { - // console.log('entered obtain twaps'); + // // console.log('entered obtain twaps'); twapResult.failedToObtainTWAP = false; twapResult.currentTick = currentTick; - console.log('_blockTimestamp(): ', _blockTimestamp()); - console.log('lastBlockTimestamp: ', lastBlockTimestamp); + // console.log('_blockTimestamp(): ', _blockTimestamp()); + // console.log('lastBlockTimestamp: ', lastBlockTimestamp); twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; bool _allowToken1 = allowToken1; - // console.log("allowToken1: ", allowToken1); + // // console.log("allowToken1: ", allowToken1); if (_allowToken1) { // почему они эту строку наверх не вынесли? (иначе тут stack too deep) (uint256 amount0, uint256 amount1) = IAlgebraVault(vault).getTotalAmounts(); @@ -289,7 +291,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.totalPairedToken = amount1; twapResult.totalDepositToken = amount0; } - // console.log('after getTotalAmounts obtain twaps'); + // // console.log('after getTotalAmounts obtain twaps'); address _depositToken = depositToken; address _pairedToken = pairedToken; @@ -307,26 +309,26 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.slowAvgPriceAccountingDecimals = slowPrice; twapResult.fastAvgPriceAccountingDecimals = fastPrice; - // console.log('2'); + // // console.log('2'); // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); - // console.log('2.5'); - // console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); - // console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); - // console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); + // // console.log('2.5'); + // // console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); + // // console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); + // // console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); twapResult.totalPairedInDeposit = totalPairedInDeposit; - // console.log('3'); + // // console.log('3'); - // console.log('totalPairedInDeposit: ', totalPairedInDeposit); + // // console.log('totalPairedInDeposit: ', totalPairedInDeposit); if (totalPairedInDeposit == 0) { twapResult.percentageOfDepositToken = 10000; } else { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // console.log("totalTokensAmount: ", totalTokensAmount); + // // console.log("totalTokensAmount: ", totalTokensAmount); if (totalTokensAmount == 0) { twapResult.failedToObtainTWAP = true; return twapResult; @@ -335,14 +337,14 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.percentageOfDepositToken = percentageOfDepositToken; } - // console.log('4'); + // // console.log('4'); uint256 depositTokenBalance = _getDepositTokenVaultBalance(); - console.log('depositTokenBalance: ', depositTokenBalance); + // console.log('depositTokenBalance: ', depositTokenBalance); if (depositTokenBalance > 0) { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // console.log('totalTokensAmount: ', totalTokensAmount); + // // console.log('totalTokensAmount: ', totalTokensAmount); twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); } else { twapResult.percentageOfDepositTokenUnused = 0; @@ -352,41 +354,41 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _decideRebalance(TwapResult memory twapResult) internal virtual returns (DecideStatus, State) { uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); - console.log('fastSlowDiff: ', fastSlowDiff); - console.log('fastCurrentDiff: ', fastCurrentDiff); - console.log("thresholds.extremeVolatility: ", thresholds.extremeVolatility); + // console.log('fastSlowDiff: ', fastSlowDiff); + // console.log('fastCurrentDiff: ', fastCurrentDiff); + // console.log("thresholds.extremeVolatility: ", thresholds.extremeVolatility); bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; if (!isExtremeVolatility) { bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; - console.log('thresholds.highVolatility: ', thresholds.highVolatility); - console.log('isHighVolatility: ', isHighVolatility); + // console.log('thresholds.highVolatility: ', thresholds.highVolatility); + // console.log('isHighVolatility: ', isHighVolatility); if (!isHighVolatility) { - // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); + // // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); if ( !((state == State.OverInventory || state == State.Normal) && lastRebalanceCurrentPrice != 0 && twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) ) { - console.log('111'); - console.log(_blockTimestamp()); - console.log(lastRebalanceTimestamp); - console.log(minTimeBetweenRebalances); + // console.log('111'); + // console.log(_blockTimestamp()); + // console.log(lastRebalanceTimestamp); + // console.log(minTimeBetweenRebalances); if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { return (DecideStatus.TooSoon, State.Special); } (bool needToRebalance, State newState) = _updateStatus(twapResult); - console.log('needToRebalance: ', needToRebalance); - console.log('newState: ', uint256(newState)); + // console.log('needToRebalance: ', needToRebalance); + // console.log('newState: ', uint256(newState)); if (needToRebalance) { - console.log('fastCurrentDiff: ', fastCurrentDiff); - console.log('thresholds.someVolatility: ', thresholds.someVolatility); + // console.log('fastCurrentDiff: ', fastCurrentDiff); + // console.log('thresholds.someVolatility: ', thresholds.someVolatility); if (fastCurrentDiff < thresholds.someVolatility) { - // console.log('fastCurrentDiff < thresholds.someVolatility'); + // // console.log('fastCurrentDiff < thresholds.someVolatility'); return (DecideStatus.Normal, newState); // normal rebalance } else { - console.log('mi tutt?????'); + // console.log('mi tutt?????'); return (DecideStatus.TooSoon, newState); // too soon } } else { @@ -400,19 +402,20 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { - console.log('fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock'); + // console.log('fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock'); // Если fastCurrentDiff >= _someVolatility (low? - 1%): // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается return (DecideStatus.TooSoon, State.Special); } } else { // special -> noneed - console.log('mi je tut, right?'); + // console.log('mi je tut, right?'); return (DecideStatus.NoNeed, State.Special); } } + // high volatility, fastSlowDiff >= thresholds.highVolatility state = State.Special; - console.log('special special????'); + // console.log('special special????'); return (DecideStatus.Special, State.Special); } else { // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается @@ -421,18 +424,18 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function _updateStatus(TwapResult memory twapResult) internal virtual returns (bool, State) { - // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); - // console.log('thresholds.underInventoryThreshold: ', thresholds.underInventoryThreshold); - console.log('entered updateStatus'); - console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); - console.log('state: ', uint16(state)); + // // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); + // // console.log('thresholds.underInventoryThreshold: ', thresholds.underInventoryThreshold); + // console.log('entered updateStatus'); + // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); + // console.log('state: ', uint16(state)); if (state != State.Special && lastRebalanceCurrentPrice != 0) { if (state != State.Normal) { - console.log('state != State.OverInventory: ', state != State.OverInventory); + // console.log('state != State.OverInventory: ', state != State.OverInventory); if (state != State.OverInventory) { if (twapResult.percentageOfDepositToken <= thresholds.simulate) { // if less than 93% - // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); + // // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { // if greater than 80% (REBALANCE TO NORMAL) // state == UnderInventory || state == Special @@ -446,7 +449,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.OverInventory); } } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - console.log('else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold)'); + // console.log('else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold)'); // if greater than 77% if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { // if less than 91% (REBALANCE TO NORMAL) @@ -464,15 +467,15 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals - // console.log('priceChange: ', priceChange); - // console.log('priceChange: ', priceChange); - // console.log('threshold: ', thresholds.priceChangeThreshold); + // // console.log('priceChange: ', priceChange); + // // console.log('priceChange: ', priceChange); + // // console.log('threshold: ', thresholds.priceChangeThreshold); if (priceChange > thresholds.priceChangeThreshold) { // CASES: // 1. we are still under-inventory and price changed by more than (1/0.5)% // 2. we are still over-inventory and price changed by more than (1/0.5)% - // console.log('priceChange > thresholds.priceChangeThreshold'); + // // console.log('priceChange > thresholds.priceChangeThreshold'); return (true, state); } } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { @@ -489,8 +492,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { // if less than 1% - // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); - console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold????'); + // // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); + // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold????'); return (false, State.Normal); // no rebalance needed } else { // CASES: @@ -521,18 +524,18 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { // scope to prevent stack too deep { - // console.log('entered _getRangesWithState'); + // // console.log('entered _getRangesWithState'); bool _allowToken1 = allowToken1; int24 _tickSpacing = tickSpacing; uint8 _tokenDecimals = tokenDecimals; (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); - // console.log('upperPriceBound: ', upperPriceBound); - // console.log('targetPrice: ', targetPrice); - // console.log('lowerPriceBound: ', lowerPriceBound); + // // console.log('upperPriceBound: ', upperPriceBound); + // // console.log('targetPrice: ', targetPrice); + // // console.log('lowerPriceBound: ', lowerPriceBound); - // console.log('tickSpacing'); - // console.logInt(_tickSpacing); + // // console.log('tickSpacing'); + // // console.logInt(_tickSpacing); int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); bool currentTickIsRound = roundedTick == twapResult.currentTick; @@ -541,24 +544,24 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (newState == State.Normal) { // If HEALTHY status (NORMAL) use target price int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); - // console.log('targetTick'); - // console.logInt(targetTick); + // // console.log('targetTick'); + // // console.logInt(targetTick); commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); } else { - // console.log('entered else in newState == State.Normal'); + // // console.log('entered else in newState == State.Normal'); commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); } int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); - // console.log('upperTick'); - // console.logInt(upperTick); + // // console.log('upperTick'); + // // console.logInt(upperTick); int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); - // console.log('tickForHigherPrice'); - // console.logInt(tickForHigherPrice); + // // console.log('tickForHigherPrice'); + // // console.logInt(tickForHigherPrice); if (lowerPriceBound == 0) { // Under-inventory state - // console.log('entered lowerPriceBound == 0'); + // // console.log('entered lowerPriceBound == 0'); int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing } else { @@ -566,12 +569,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); } if (!_allowToken1) { - // console.log('TICKS'); - // console.logInt(int24(commonTick)); - // console.logInt(int24(tickForLowerPrice)); - // console.logInt(int24(tickForHigherPrice)); - // console.logInt(int24(commonTick)); - // console.log('TICKS END'); + // // console.log('TICKS'); + // // console.logInt(int24(commonTick)); + // // console.logInt(int24(tickForLowerPrice)); + // // console.logInt(int24(tickForHigherPrice)); + // // console.logInt(int24(commonTick)); + // // console.log('TICKS END'); ranges.baseLower = int24(commonTick); ranges.baseUpper = int24(tickForLowerPrice); ranges.limitLower = int24(tickForHigherPrice); @@ -641,9 +644,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); - // console.log('ticks in _getRangesWithoutState'); - // console.logInt(tickRoundedDown); - // console.logInt(tickRounded); + // // console.log('ticks in _getRangesWithoutState'); + // // console.logInt(tickRoundedDown); + // // console.logInt(tickRounded); if (!_allowToken1) { if (twapResult.currentTick == tickRounded) { @@ -693,11 +696,11 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ? FullMath.mulDiv(priceX128, pairedTokendecimals, uint256(type(uint128).max) + 1) : FullMath.mulDiv(uint256(type(uint128).max) + 1, pairedTokendecimals, priceX128); } else { - // console.log(token0, token1); - // console.log(token1decimals); - // console.logInt(int256(averageTick)); - // console.log(sqrtPriceX96); - // console.log(token1 < token0); + // // console.log(token0, token1); + // // console.log(token1decimals); + // // console.logInt(int256(averageTick)); + // // console.log(sqrtPriceX96); + // // console.log(token1 < token0); return token1 < token0 ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), pairedTokendecimals, uint256(type(uint192).max) + 1) @@ -760,22 +763,22 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 lowerPriceBound = 0; if (_state != State.UnderInventory) { // if not under-inventory (because if under - we place lower as Min) - // console.log('baselowpct: ', thresholds.baseLowPct); + // // console.log('baselowpct: ', thresholds.baseLowPct); lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); } uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); - // console.log('targetPrice: ', targetPrice); - // console.log('upperPriceBound: ', upperPriceBound); + // // console.log('targetPrice: ', targetPrice); + // // console.log('upperPriceBound: ', upperPriceBound); - // console.log('state????: ', uint256(_state)); + // // console.log('state????: ', uint256(_state)); if (_state == State.Normal) { - // console.log('mi tut???'); - // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); - // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); + // // console.log('mi tut???'); + // // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); + // // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 - // console.log('limitReservePct: ', thresholds.limitReservePct); - // console.log('partOfTotalTokens: ', partOfTotalTokens); + // // console.log('limitReservePct: ', thresholds.limitReservePct); + // // console.log('partOfTotalTokens: ', partOfTotalTokens); uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; @@ -783,19 +786,19 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { targetPrice += _calcPart(excessCoef, targetPrice); } } - // console.log('targetPrice before remove decimals: ', targetPrice); - // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); - // console.log('upperPriceBound before remove decimals: ', upperPriceBound); - // console.log('decimalsSum: ', decimalsSum); - // console.log(_allowToken1); + // // console.log('targetPrice before remove decimals: ', targetPrice); + // // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); + // // console.log('upperPriceBound before remove decimals: ', upperPriceBound); + // // console.log('decimalsSum: ', decimalsSum); + // // console.log(_allowToken1); if (!_allowToken1) { - // console.log('??????'); + // // console.log('??????'); targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound - // console.log('targetPrice after remove decimals: ', targetPrice); - // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); - // console.log('upperPriceBound after remove decimals: ', upperPriceBound); + // // console.log('targetPrice after remove decimals: ', targetPrice); + // // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); + // // console.log('upperPriceBound after remove decimals: ', upperPriceBound); } return (upperPriceBound, targetPrice, lowerPriceBound); @@ -806,8 +809,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { - // console.log('amount: ', amount); - // console.log('decimals: ', decimals); + // // console.log('amount: ', amount); + // // console.log('decimals: ', decimals); return amount != 0 ? (10 ** decimals) / amount : amount; } @@ -818,7 +821,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); - // console.log("_tokenDecimals: ", _tokenDecimals); + // // console.log("_tokenDecimals: ", _tokenDecimals); return TickMath.getTickAtSqrtRatio(sqrtPriceX96); } diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index e50aa11ae..6af786f3c 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -36,7 +36,6 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { function setRebalanceManager(address _rebalanceManager) external { // console.log('setRebalanceManager called'); _authorize(); - require(_rebalanceManager != address(0), '_rebalanceManager must be non zero address'); rebalanceManager = _rebalanceManager; } From 6d5be5f2a6d83d920249458203479a71bce932bc Mon Sep 17 00:00:00 2001 From: IliaAzhel Date: Fri, 4 Apr 2025 11:45:08 +0300 Subject: [PATCH 32/42] add base chain to hh config --- hardhat.base.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hardhat.base.config.ts b/hardhat.base.config.ts index fa3e22ddb..e764e81cc 100644 --- a/hardhat.base.config.ts +++ b/hardhat.base.config.ts @@ -92,6 +92,11 @@ export default { chainId: 84532, accounts: [`0x${MNEMONIC || '1000000000000000000000000000000000000000000000000000000000000000'}`], }, + base: { + url: `https://base-mainnet.public.blastapi.io`, + chainId: 8453, + accounts: [`0x${MNEMONIC || '1000000000000000000000000000000000000000000000000000000000000000'}`], + }, maticMainnet: { url: `https://rpc-mainnet.matic.quiknode.pro`, chainId: 137, From 55014efd4c2883b224f59159b51f68144192012e Mon Sep 17 00:00:00 2001 From: debych Date: Fri, 4 Apr 2025 15:03:25 +0300 Subject: [PATCH 33/42] Add deploy script --- src/plugin/scripts/deployRebalanceManager.js | 46 ++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/plugin/scripts/deployRebalanceManager.js diff --git a/src/plugin/scripts/deployRebalanceManager.js b/src/plugin/scripts/deployRebalanceManager.js new file mode 100644 index 000000000..5053230db --- /dev/null +++ b/src/plugin/scripts/deployRebalanceManager.js @@ -0,0 +1,46 @@ +const hre = require("hardhat"); + +async function main() { + const constructorArgs = [ + "0x7eba5e139d1192384dca805bb39076a75dd027f0", // vault + 600, + [ + 100, + 9400, + 8100, + 7800, + 9100, + 100, + 2500, + 900, + 200, + 300, + 3000, + 1500, + 500, + ] + ] + + const RebalanceManagerFactory = await hre.ethers.getContractFactory("RebalanceManager"); + const RebalanceManager = await RebalanceManagerFactory.deploy( + ...constructorArgs + ); + + await RebalanceManager.waitForDeployment() + + console.log("RebalanceManager to:", RebalanceManager.target); + + await hre.run("verify:verify", { + address: RebalanceManager.target, + constructorArguments: constructorArgs, + }); +} + +// We recommend this pattern to be able to use async/await everywhere +// and properly handle errors. +main() + .then(() => process.exit(0)) + .catch((error) => { + console.error(error); + process.exit(1); + }); \ No newline at end of file From 4d691fb0883d98bbafae07cbbd5a2bdd60766b2d Mon Sep 17 00:00:00 2001 From: debych Date: Fri, 4 Apr 2025 15:41:34 +0300 Subject: [PATCH 34/42] add factory address to the constructor --- src/plugin/contracts/RebalanceManager.sol | 1 + src/plugin/contracts/test/MockPool.sol | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index 389f08999..188c4327c 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -10,6 +10,7 @@ contract RebalanceManager is BaseRebalanceManager { // TODO: добавить require'ов vault = _vault; pool = IAlgebraVault(vault).pool(); + factory = IAlgebraPool(pool).factory(); tickSpacing = IAlgebraPool(pool).tickSpacing(); diff --git a/src/plugin/contracts/test/MockPool.sol b/src/plugin/contracts/test/MockPool.sol index 8f8bad16a..fde227fab 100644 --- a/src/plugin/contracts/test/MockPool.sol +++ b/src/plugin/contracts/test/MockPool.sol @@ -53,6 +53,8 @@ contract MockPool is IAlgebraPoolActions, IAlgebraPoolPermissionedActions, IAlge /// @inheritdoc IAlgebraPoolState address public override plugin; + address public factory; + address public override communityVault; /// @inheritdoc IAlgebraPoolState From 4024746660ad58de89e922377e16d14a3820fb71 Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 10 Apr 2025 12:37:17 +0300 Subject: [PATCH 35/42] fix state, add some tests --- .../contracts/base/BaseRebalanceManager.sol | 41 +-- .../contracts/test/MockRebalanceManager.sol | 10 +- src/plugin/test/AlgebraBasePluginALM.spec.ts | 244 ++++++++++++++---- .../AlgebraBasePluginALM.spec.ts.snap | 90 +++++++ 4 files changed, 319 insertions(+), 66 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 72b0719cf..d254a1e37 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -224,8 +224,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { obtainTWAPsResult.totalDepositToken == 0 || (newState == State.Normal && obtainTWAPsResult.totalPairedInDeposit <= - _calcPart(obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit, thresholds.limitReservePct) - ) + _calcPart(obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit, thresholds.limitReservePct)) ) return; ranges = _getRangesWithState(newState, obtainTWAPsResult); } else { @@ -239,25 +238,26 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // // console.logInt(ranges.limitUpper); // // console.log('RANGES END'); - if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { - lastRebalanceTimestamp = _blockTimestamp(); - lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - } catch { - state = State.Special; - _pause(); - } - } else { - IAlgebraVault(vault).setDepositMax(0, 0); - // pendingRebalanceTimestamp = 0; + try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + state = newState; + } catch { state = State.Special; _pause(); } } else { + IAlgebraVault(vault).setDepositMax(0, 0); // pendingRebalanceTimestamp = 0; - lastRebalanceTimestamp = _blockTimestamp(); - lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + state = State.Special; + _pause(); + } + } else { + // pendingRebalanceTimestamp = 0; + lastRebalanceTimestamp = _blockTimestamp(); + lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; } // чекируем decideStatus @@ -329,6 +329,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } else { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; // // console.log("totalTokensAmount: ", totalTokensAmount); + // TOOD: планировали убирать failedToObtainTwap, подумать что с этим делать (наверное в rebalance прост) + // if (twapResult.totalDepositToken + twapResult.totalPairedInDeposit) return; if (totalTokensAmount == 0) { twapResult.failedToObtainTWAP = true; return twapResult; @@ -364,7 +366,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('thresholds.highVolatility: ', thresholds.highVolatility); // console.log('isHighVolatility: ', isHighVolatility); if (!isHighVolatility) { - // // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); + // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); if ( !((state == State.OverInventory || state == State.Normal) && lastRebalanceCurrentPrice != 0 && @@ -375,6 +377,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log(lastRebalanceTimestamp); // console.log(minTimeBetweenRebalances); if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { + // console.log('too soon'); return (DecideStatus.TooSoon, State.Special); } @@ -409,7 +412,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } else { // special -> noneed - // console.log('mi je tut, right?'); return (DecideStatus.NoNeed, State.Special); } } @@ -430,12 +432,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); // console.log('state: ', uint16(state)); if (state != State.Special && lastRebalanceCurrentPrice != 0) { + // console.log('state:? ', uint16(state)); if (state != State.Normal) { // console.log('state != State.OverInventory: ', state != State.OverInventory); if (state != State.OverInventory) { if (twapResult.percentageOfDepositToken <= thresholds.simulate) { // if less than 93% - // // console.log('twapResult.percentageOfDepositToken <= thresholds.simulate'); if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { // if greater than 80% (REBALANCE TO NORMAL) // state == UnderInventory || state == Special @@ -475,7 +477,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { // 1. we are still under-inventory and price changed by more than (1/0.5)% // 2. we are still over-inventory and price changed by more than (1/0.5)% - // // console.log('priceChange > thresholds.priceChangeThreshold'); + // console.log('priceChange > thresholds.priceChangeThreshold'); return (true, state); } } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { @@ -490,6 +492,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { return (true, State.OverInventory); } + // console.log('percentageOfDepositTokenUnused: ', twapResult.percentageOfDepositTokenUnused); if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { // if less than 1% // // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 485ef2b32..210d01e58 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -16,7 +16,15 @@ contract MockRebalanceManager is RebalanceManager { uint256 public time = 1601906400; - constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} + constructor( + address _vault, + uint32 _minTimeBetweenRebalances, + Thresholds memory _thresholds + ) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} + + function setTokens(address _depositToken, address _pairedToken) public { + (depositToken, pairedToken) = (_depositToken, _pairedToken); + } function setDepositTokenBalance(uint256 _depositTokenBalance) public { depositTokenBalance = _depositTokenBalance; diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 47a05e979..21cc5c10f 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -550,46 +550,117 @@ describe('AlgebraBasePluginALM', () => { }); }); - describe('#AlmPlugin', () => { - it('first rebalance (over -> over)', async () => { + describe('#AlmBasePlugin', () => { + beforeEach('initialize pool', async () => { const defaultConfig = await plugin.defaultPluginConfig(); await mockPool.setPlugin(plugin); await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); await initializeAtZeroTick(mockPool); await deployAndSetRebalanceManager(); + }); + + async function checkState(expectedState: State) { + expect((await rebalanceManager.state())).to.be.eq(expectedState); + } + + it('first rebalance over -> over', async () => { await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); await rebalanceManager.setDepositTokenBalance(10000n); await mockVault.setTotalAmounts(10000, 0); await plugin.advanceTime(5000); - await mockPool.swapToTick(10); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); }); - it('over -> normal', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + it('first rebalance over -> over, pairedToken < depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); + await rebalanceManager.setDepositTokenBalance(10000n); + await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('over state no rebalance - some volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('over state no rebalance - some volatility, pairedToken < depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('under -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(0n); + await rebalanceManager.setState(State.UnderInventory); + await mockVault.setTotalAmounts(0, 10000); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); + + it('under state no rebalance - some volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(0n); + await rebalanceManager.setState(State.UnderInventory); + await mockVault.setTotalAmounts(0, 10000); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.UnderInventory); + await checkState(State.UnderInventory); + }); + + it('over -> normal', async () => { await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); await rebalanceManager.setDepositTokenBalance(10000n); await mockVault.setTotalAmounts(8000, 2000); await plugin.advanceTime(3600); - await mockPool.swapToTick(10); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); }); - it('over -> special (high volatility)', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); + it('over -> normal -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal); + await checkState(State.Normal); + await mockVault.setTotalAmounts(10000, 0); + await rebalanceManager.advanceTime(7200); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('over -> special, high volatility', async () => { await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -597,15 +668,10 @@ describe('AlgebraBasePluginALM', () => { await mockVault.setTotalAmounts(8000, 2000); await plugin.advanceTime(3600); await mockPool.swapToTick(2000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); }); it('no rebalance - extreme volatility', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -613,15 +679,10 @@ describe('AlgebraBasePluginALM', () => { await mockVault.setTotalAmounts(8000, 2000); await plugin.advanceTime(3600); await expect(mockPool.swapToTick(3000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.ExtremeVolatility, State.Special); + await checkState(State.Special); }); it('no rebalance - too soon', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -629,17 +690,13 @@ describe('AlgebraBasePluginALM', () => { await mockVault.setTotalAmounts(8000, 2000); await plugin.advanceTime(3600); await mockPool.swapToTick(100); + await checkState(State.Normal); await plugin.advanceTime(1800); await expect(mockPool.swapToTick(1000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + await checkState(State.Normal); }); it('no rebalance - volatility too low', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -647,15 +704,10 @@ describe('AlgebraBasePluginALM', () => { await mockVault.setTotalAmounts(8000, 2000); await plugin.advanceTime(3600); await expect(mockPool.swapToTick(250)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + await checkState(State.OverInventory); }); it('no rebalance - percentageOfDepositTokenUnused too low', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -663,20 +715,17 @@ describe('AlgebraBasePluginALM', () => { await mockVault.setTotalAmounts(9200, 800); await plugin.advanceTime(3600); await mockPool.swapToTick(10); + await checkState(State.Normal); + await plugin.advanceTime(7200); await rebalanceManager.advanceTime(7200); // await rebalanceManager.setState(1); // normal state await expect(mockPool.swapToTick(11)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeedWithPending, State.Normal); + await checkState(State.Normal); }); it('no rebalance - high volatility in the same block', async () => { - const defaultConfig = await plugin.defaultPluginConfig(); - await mockPool.setPlugin(plugin); - await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - - await initializeAtZeroTick(mockPool); - await deployAndSetRebalanceManager(); await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -690,6 +739,109 @@ describe('AlgebraBasePluginALM', () => { const tx = await mockPool.swapToTick(2000, { gasLimit: 2000000 }); await network.provider.send("evm_mine"); await expect(tx).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + await checkState(State.Normal); + await network.provider.send("evm_setAutomine", [true]); + }); + + it('rebalance not triggered for low volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + await checkState(State.OverInventory); + }); + + it('rebalance triggered for high volatility after time threshold', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(3600); + await mockPool.swapToTick(2000); + await checkState(State.Special); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(10)) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeed, State.Special); + await checkState(State.Special); + }); + + it('over -> over -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await mockVault.setTotalAmounts(8100, 1900); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(10)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); + + it('over -> normal -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8100, 1900); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(10)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); + + it('over -> under -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(7500, 2500); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await mockVault.setTotalAmounts(9500, 500); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('over -> under -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(7500, 2500); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await mockVault.setTotalAmounts(8100, 1900); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); }); }); diff --git a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap index 125f25465..37e36db29 100644 --- a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap +++ b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap @@ -1,3 +1,93 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +exports[`AlgebraBasePluginALM #DynamicFeeManager #adaptiveFee single huge spike after day 1`] = ` +Array [ + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 123 ", + "Fee: 124 ", + "Fee: 124 ", + "Fee: 124 ", + "Fee: 124 ", + "Fee: 100 ", +] +`; + +exports[`AlgebraBasePluginALM #DynamicFeeManager #adaptiveFee single huge spike after initialization 1`] = ` +Array [ + "Fee: 3714 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 2965 ", + "Fee: 2602 ", + "Fee: 1733 ", + "Fee: 995 ", + "Fee: 607 ", + "Fee: 411 ", + "Fee: 309 ", + "Fee: 250 ", + "Fee: 215 ", + "Fee: 191 ", + "Fee: 174 ", + "Fee: 163 ", + "Fee: 154 ", + "Fee: 147 ", + "Fee: 142 ", + "Fee: 139 ", + "Fee: 135 ", + "Fee: 132 ", + "Fee: 130 ", + "Fee: 128 ", + "Fee: 126 ", + "Fee: 100 ", +] +`; + +exports[`AlgebraBasePluginALM #DynamicFeeManager #adaptiveFee single huge step after day 1`] = ` +Array [ + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 3000 ", + "Fee: 100 ", +] +`; + exports[`AlgebraBasePluginALM AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `21065`; From 9970bab87e5731aaff193deaf1ac4b8d57468f6a Mon Sep 17 00:00:00 2001 From: fourlen Date: Thu, 10 Apr 2025 12:44:48 +0300 Subject: [PATCH 36/42] -comments --- src/plugin/contracts/base/BaseRebalanceManager.sol | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index d254a1e37..67ab31527 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -250,20 +250,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } else { IAlgebraVault(vault).setDepositMax(0, 0); - // pendingRebalanceTimestamp = 0; state = State.Special; _pause(); } } else { - // pendingRebalanceTimestamp = 0; lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; } - - // чекируем decideStatus - // если нужен ребаланс - // вызываем getrangeswithstate или getRangesWithoutState, получаем ренжи - // IAlgebraVault(vault).rebalance(ranges.tick1, ranges.tick2, ....); } function _obtainTWAPs( From 82c0778af4c0a53e0d980b700b9a5125e40cfa5e Mon Sep 17 00:00:00 2001 From: fourlen Date: Fri, 11 Apr 2025 17:48:18 +0300 Subject: [PATCH 37/42] -failedToObtainTWAPs, +tests --- src/plugin/contracts/RebalanceManager.sol | 2 +- .../contracts/base/BaseRebalanceManager.sol | 16 +--- src/plugin/contracts/test/AlmPluginTest.sol | 1 - src/plugin/contracts/test/MockPool.sol | 4 + src/plugin/test/AlgebraBasePluginALM.spec.ts | 91 ++++++++++++++++++- src/plugin/test/shared/fixtures.ts | 2 + 6 files changed, 99 insertions(+), 17 deletions(-) diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index 188c4327c..ee54ffcc7 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -19,7 +19,7 @@ contract RebalanceManager is BaseRebalanceManager { minTimeBetweenRebalances = _minTimeBetweenRebalances; allowToken1 = _allowToken1; - state = State.OverInventory; // поч overinventory? + state = State.OverInventory; lastRebalanceTimestamp = 0; lastRebalanceCurrentPrice = 0; diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 67ab31527..64b988f30 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -30,7 +30,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 currentTick; uint16 percentageOfDepositTokenUnused; // 10000 = 100% uint16 percentageOfDepositToken; // 10000 = 100% - bool failedToObtainTWAP; bool sameBlock; } @@ -207,6 +206,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _rebalance(TwapResult memory obtainTWAPsResult) internal { if (paused) return; if (vault == address(0)) return; + if (obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit == 0) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); // console.log('rebalance entered'); @@ -266,7 +266,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint32 lastBlockTimestamp ) internal view returns (TwapResult memory twapResult) { // // console.log('entered obtain twaps'); - twapResult.failedToObtainTWAP = false; twapResult.currentTick = currentTick; // console.log('_blockTimestamp(): ', _blockTimestamp()); @@ -322,13 +321,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } else { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; // // console.log("totalTokensAmount: ", totalTokensAmount); - // TOOD: планировали убирать failedToObtainTwap, подумать что с этим делать (наверное в rebalance прост) - // if (twapResult.totalDepositToken + twapResult.totalPairedInDeposit) return; - if (totalTokensAmount == 0) { - twapResult.failedToObtainTWAP = true; - return twapResult; - } - uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); + uint16 percentageOfDepositToken = totalTokensAmount == 0 ? 0 : uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); twapResult.percentageOfDepositToken = percentageOfDepositToken; } @@ -462,9 +455,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals - // // console.log('priceChange: ', priceChange); - // // console.log('priceChange: ', priceChange); - // // console.log('threshold: ', thresholds.priceChangeThreshold); + // console.log('priceChange: ', priceChange); + // console.log('threshold: ', thresholds.priceChangeThreshold); if (priceChange > thresholds.priceChangeThreshold) { // CASES: // 1. we are still under-inventory and price changed by more than (1/0.5)% diff --git a/src/plugin/contracts/test/AlmPluginTest.sol b/src/plugin/contracts/test/AlmPluginTest.sol index d96504f9e..a2fd757f8 100644 --- a/src/plugin/contracts/test/AlmPluginTest.sol +++ b/src/plugin/contracts/test/AlmPluginTest.sol @@ -79,7 +79,6 @@ contract AlmPluginTest is BaseRebalanceManager { console.logInt(twapResult.currentTick); console.log(twapResult.percentageOfDepositTokenUnused); console.log(twapResult.percentageOfDepositToken); - console.log(twapResult.failedToObtainTWAP); console.log(twapResult.sameBlock); console.log('TWAP RESULT END'); diff --git a/src/plugin/contracts/test/MockPool.sol b/src/plugin/contracts/test/MockPool.sol index fde227fab..862fff53a 100644 --- a/src/plugin/contracts/test/MockPool.sol +++ b/src/plugin/contracts/test/MockPool.sol @@ -246,6 +246,10 @@ contract MockPool is IAlgebraPoolActions, IAlgebraPoolPermissionedActions, IAlge communityVault = newCommunityVault; } + function setFactory(address _factory) external { + factory = _factory; + } + /// @inheritdoc IAlgebraPoolPermissionedActions function sync() external pure override { revert('Not implemented'); diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 21cc5c10f..afc6edf04 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -6,7 +6,7 @@ import { expect } from './shared/expect'; import { TEST_POOL_START_TIME, pluginFixtureALM } from './shared/fixtures'; import { PLUGIN_FLAGS, encodePriceSqrt, expandTo18Decimals, getMaxTick, getMinTick } from './shared/utilities'; -import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, MockTimeVirtualPool, MockVault, RebalanceManager, MockRebalanceManager } from '../typechain'; +import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, MockTimeVirtualPool, MockVault, RebalanceManager, MockRebalanceManager, MockFactory } from '../typechain'; import snapshotGasCost from './shared/snapshotGasCost'; @@ -34,6 +34,7 @@ describe('AlgebraBasePluginALM', () => { let plugin: MockAlgebraBasePluginALM; // modified plugin let mockPluginFactory: MockAlgebraBasePluginALMFactory; // modified plugin factory let mockPool: MockPool; // mock of AlgebraPool + let mockFactory: MockFactory; let minTick = getMinTick(60); let maxTick = getMaxTick(60); @@ -51,7 +52,7 @@ describe('AlgebraBasePluginALM', () => { normalThreshold: 8100, // было 8000 underInventoryThreshold: 7800, // было 7700 overInventoryThreshold: 9100, - priceChangeThreshold: 100, + priceChangeThreshold: 50, extremeVolatility: 2500, highVolatility: 900, // было 500 someVolatility: 200, // было 100 @@ -76,7 +77,7 @@ describe('AlgebraBasePluginALM', () => { }); beforeEach('deploy test AlgebraBasePlugin', async () => { - ({ mockVault, plugin, mockPluginFactory, mockPool } = await loadFixture(pluginFixtureALM)); + ({ mockVault, plugin, mockPluginFactory, mockPool, mockFactory } = await loadFixture(pluginFixtureALM)); }); describe('#Initialize', async () => { @@ -560,6 +561,33 @@ describe('AlgebraBasePluginALM', () => { await deployAndSetRebalanceManager(); }); + describe('setters', () => { + before('prepare signers', async () => { + [wallet, other] = await (ethers as any).getSigners(); + }); + + beforeEach('grant role', async () => { + await mockFactory.grantRole(await rebalanceManager.ALGEBRA_BASE_PLUGIN_MANAGER(), wallet); + expect(await mockFactory.hasRoleOrOwner(await rebalanceManager.ALGEBRA_BASE_PLUGIN_MANAGER(), wallet)).to.be.equals(true); + }); + + it('setPriceChangeThreshold', async () => { + await expect(rebalanceManager.setPriceChangeThreshold(10000)).to.be.revertedWith('Invalid price change threshold'); + await rebalanceManager.setPriceChangeThreshold(50); + expect((await rebalanceManager.thresholds())[5]).to.be.equals(50); + }); + + it('setPercentages', async () => { + await expect(rebalanceManager.setPercentages(0, 0, 0)).to.be.revertedWith('Invalid base low percent'); + await expect(rebalanceManager.setPercentages(100, 0, 0)).to.be.revertedWith('Invalid base high percent'); + await expect(rebalanceManager.setPercentages(100, 100, 0)).to.be.revertedWith('Invalid limit reserve percent'); + await rebalanceManager.setPercentages(100, 200, 300); + expect((await rebalanceManager.thresholds())[10]).to.be.equals(100); + expect((await rebalanceManager.thresholds())[11]).to.be.equals(200); + expect((await rebalanceManager.thresholds())[12]).to.be.equals(300); + }); + }); + async function checkState(expectedState: State) { expect((await rebalanceManager.state())).to.be.eq(expectedState); } @@ -843,6 +871,63 @@ describe('AlgebraBasePluginALM', () => { .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); await checkState(State.Normal); }); + + it('over -> over -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await mockVault.setTotalAmounts(7500, 2500); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); + + it('over -> over -> current, priceChange < priceChangeThreshold', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(10000, 0); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await mockVault.setTotalAmounts(9200, 800); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(100)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('over -> normal -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await mockVault.setTotalAmounts(8000, 2000); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await mockVault.setTotalAmounts(7700, 2300); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); }); // describe('#FarmingPlugin', () => { diff --git a/src/plugin/test/shared/fixtures.ts b/src/plugin/test/shared/fixtures.ts index 11d01a2ec..0399bf560 100644 --- a/src/plugin/test/shared/fixtures.ts +++ b/src/plugin/test/shared/fixtures.ts @@ -115,6 +115,8 @@ export const pluginFixtureALM: Fixture = async function (): Pr const mockPoolFactory = await ethers.getContractFactory('MockPool'); const mockPool = (await mockPoolFactory.deploy()) as any as MockPool; + await mockPool.setFactory(mockFactory); + const mockPluginFactoryFactory = await ethers.getContractFactory('MockAlgebraBasePluginALMFactory'); const mockPluginFactory = (await mockPluginFactoryFactory.deploy(mockFactory)) as any as MockAlgebraBasePluginALMFactory; From 72ab6162ad2b3df90245e4865187ebd1305ff885 Mon Sep 17 00:00:00 2001 From: fourlen Date: Mon, 21 Apr 2025 13:47:48 +0300 Subject: [PATCH 38/42] some fixes, +tests --- src/plugin/contracts/AlgebraBasePluginALM.sol | 13 +- src/plugin/contracts/RebalanceManager.sol | 4 - .../contracts/base/BaseRebalanceManager.sol | 210 +---- src/plugin/contracts/plugins/AlmPlugin.sol | 10 +- .../plugins/VolatilityOraclePlugin.sol | 4 - src/plugin/contracts/test/AlmPluginTest.sol | 44 - src/plugin/contracts/test/MockPool.sol | 3 - .../contracts/test/MockRebalanceManager.sol | 5 +- src/plugin/contracts/test/MockVault.sol | 13 +- src/plugin/test/AlgebraBasePluginALM.spec.ts | 780 +++++++++++------- src/plugin/test/AlmPlugin.spec.ts | 49 -- .../AlgebraBasePluginALM.spec.ts.snap | 30 + src/plugin/test/almRebalances2.json | 386 --------- 13 files changed, 551 insertions(+), 1000 deletions(-) delete mode 100644 src/plugin/test/almRebalances2.json diff --git a/src/plugin/contracts/AlgebraBasePluginALM.sol b/src/plugin/contracts/AlgebraBasePluginALM.sol index 94d35e473..cc5f4146b 100644 --- a/src/plugin/contracts/AlgebraBasePluginALM.sol +++ b/src/plugin/contracts/AlgebraBasePluginALM.sol @@ -10,8 +10,6 @@ import './plugins/AlmPlugin.sol'; import './plugins/SlidingFeePlugin.sol'; import './plugins/VolatilityOraclePlugin.sol'; -// import 'hardhat/console.sol'; - /// @title Algebra Integral 1.2.1 ALM plugin contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePlugin { using Plugins for uint8; @@ -59,15 +57,9 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl } function afterSwap(address, address, bool, int256, uint160, int256, int256, bytes calldata) external override onlyPool returns (bytes4) { - // console.log('entered after swap'); - // to prevent pause rebalanceManager if (rebalanceManager != address(0)) { - require(gasleft() >= 1600000, 'Not enough gas left'); - if (!_ableToGetTimepoints(slowTwapPeriod)) { - return IAlgebraPlugin.afterSwap.selector; - } - - ( , int24 currentTick, , ) = _getPoolState(); + if (!_ableToGetTimepoints(slowTwapPeriod)) return IAlgebraPlugin.afterSwap.selector; + (, int24 currentTick, , ) = _getPoolState(); uint32 lastBlockTimestamp = _getLastBlockTimestamp(); int24 slowTwapTick = _getTwapTick(slowTwapPeriod); @@ -75,7 +67,6 @@ contract AlgebraBasePluginALM is AlmPlugin, DynamicFeePlugin, VolatilityOraclePl _obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); } - return IAlgebraPlugin.afterSwap.selector; } diff --git a/src/plugin/contracts/RebalanceManager.sol b/src/plugin/contracts/RebalanceManager.sol index ee54ffcc7..a55d9843f 100644 --- a/src/plugin/contracts/RebalanceManager.sol +++ b/src/plugin/contracts/RebalanceManager.sol @@ -7,7 +7,6 @@ contract RebalanceManager is BaseRebalanceManager { constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds) { require(_vault != address(0), 'Invalid vault address'); paused = false; - // TODO: добавить require'ов vault = _vault; pool = IAlgebraVault(vault).pool(); factory = IAlgebraPool(pool).factory(); @@ -32,17 +31,14 @@ contract RebalanceManager is BaseRebalanceManager { address _pairedToken = _allowToken1 ? token0 : token1; pairedToken = _pairedToken; uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); - // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); pairedTokenDecimals = _pairedTokenDecimals; address _depositToken = _allowToken1 ? token1 : token0; depositToken = _depositToken; uint8 _depositTokenDecimals = _getDepositTokenDecimals(); depositTokenDecimals = _depositTokenDecimals; - // console.log('_depositTokenDecimals: ', _depositTokenDecimals); decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; - // console.log('decimals sum: ', decimalsSum); tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; } } diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 64b988f30..09bac4212 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -15,8 +15,6 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -// import 'hardhat/console.sol'; - abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -72,9 +70,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint16 limitReservePct; } - // TODO: норм упаковать address public vault; - bool public isAlmInitialized; bool public paused; bool public allowToken1; State public state; @@ -183,35 +179,22 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function obtainTWAPAndRebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) external { - // // console.log('entered obtainTWAPAndRebalance'); require(msg.sender == IAlgebraPool(pool).plugin(), 'Should only called by plugin'); + if (vault == address(0)) return; TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); - // console.log("TWAP RESULT START"); - // console.log('twapResult.currentPriceAccountingDecimals: ', twapResult.currentPriceAccountingDecimals); - // console.log('twapResult.slowAvgPriceAccountingDecimals: ', twapResult.slowAvgPriceAccountingDecimals); - // console.log('twapResult.fastAvgPriceAccountingDecimals: ', twapResult.fastAvgPriceAccountingDecimals); - // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); - // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); - // console.log('twapResult.totalPairedToken :', twapResult.totalPairedToken); - // console.logInt(twapResult.currentTick); - // console.log('twapResult.percentageOfDepositTokenUnused: ', twapResult.percentageOfDepositTokenUnused); - // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); - // console.log('twapResult.failedToObtainTWAP: ', twapResult.failedToObtainTWAP); - // console.log('twapResult.sameBlock: ', twapResult.sameBlock); - // console.log("TWAP RESULT END"); - // console.log('blocknumber: ', block.number); _rebalance(twapResult); } function _rebalance(TwapResult memory obtainTWAPsResult) internal { if (paused) return; - if (vault == address(0)) return; if (obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit == 0) return; + if ( + obtainTWAPsResult.currentPriceAccountingDecimals == 0 || + obtainTWAPsResult.slowAvgPriceAccountingDecimals == 0 || + obtainTWAPsResult.fastAvgPriceAccountingDecimals == 0 + ) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - // console.log('rebalance entered'); - // console.log('decide status: ', uint256(decideStatus)); - // console.log('newState: ', uint256(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; @@ -231,15 +214,9 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges = _getRangesWithoutState(obtainTWAPsResult); } - // // console.log('RANGES START'); - // // console.logInt(ranges.baseLower); - // // console.logInt(ranges.baseUpper); - // // console.logInt(ranges.limitLower); - // // console.logInt(ranges.limitUpper); - // // console.log('RANGES END'); - if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + require(gasleft() >= 1000000, 'Not enough gas left'); try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; @@ -265,16 +242,11 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 fastTwapTick, uint32 lastBlockTimestamp ) internal view returns (TwapResult memory twapResult) { - // // console.log('entered obtain twaps'); - twapResult.currentTick = currentTick; - // console.log('_blockTimestamp(): ', _blockTimestamp()); - // console.log('lastBlockTimestamp: ', lastBlockTimestamp); twapResult.sameBlock = _blockTimestamp() == lastBlockTimestamp; bool _allowToken1 = allowToken1; - // // console.log("allowToken1: ", allowToken1); + if (_allowToken1) { - // почему они эту строку наверх не вынесли? (иначе тут stack too deep) (uint256 amount0, uint256 amount1) = IAlgebraVault(vault).getTotalAmounts(); twapResult.totalPairedToken = amount0; twapResult.totalDepositToken = amount1; @@ -283,7 +255,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.totalPairedToken = amount1; twapResult.totalDepositToken = amount0; } - // // console.log('after getTotalAmounts obtain twaps'); address _depositToken = depositToken; address _pairedToken = pairedToken; @@ -301,38 +272,23 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.slowAvgPriceAccountingDecimals = slowPrice; twapResult.fastAvgPriceAccountingDecimals = fastPrice; - // // console.log('2'); - - // uint256 currentPriceAccountingDecimals = _getPriceAccountingDecimals(_depositToken, _pairedToken, uint128(10 ** _pairedTokenDecimals), twapResult.currentTick); - // // console.log('2.5'); - // // console.log("currentPriceAccountingDecimals: ", currentPriceAccountingDecimals); - // // console.log("twapResult.totalPairedToken: ", twapResult.totalPairedToken); - // // console.log("_pairedTokenDecimals: ", _pairedTokenDecimals); twapResult.currentPriceAccountingDecimals = currentPriceAccountingDecimals; uint256 totalPairedInDepositWithDecimals = currentPriceAccountingDecimals * twapResult.totalPairedToken; uint256 totalPairedInDeposit = totalPairedInDepositWithDecimals / (10 ** _pairedTokenDecimals); twapResult.totalPairedInDeposit = totalPairedInDeposit; - // // console.log('3'); - - // // console.log('totalPairedInDeposit: ', totalPairedInDeposit); if (totalPairedInDeposit == 0) { twapResult.percentageOfDepositToken = 10000; } else { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // // console.log("totalTokensAmount: ", totalTokensAmount); uint16 percentageOfDepositToken = totalTokensAmount == 0 ? 0 : uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); twapResult.percentageOfDepositToken = percentageOfDepositToken; } - // // console.log('4'); - uint256 depositTokenBalance = _getDepositTokenVaultBalance(); - // console.log('depositTokenBalance: ', depositTokenBalance); if (depositTokenBalance > 0) { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - // // console.log('totalTokensAmount: ', totalTokensAmount); twapResult.percentageOfDepositTokenUnused = uint16((depositTokenBalance * 10000) / totalTokensAmount); } else { twapResult.percentageOfDepositTokenUnused = 0; @@ -342,42 +298,25 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _decideRebalance(TwapResult memory twapResult) internal virtual returns (DecideStatus, State) { uint256 fastSlowDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.slowAvgPriceAccountingDecimals); uint256 fastCurrentDiff = _calcPercentageDiff(twapResult.fastAvgPriceAccountingDecimals, twapResult.currentPriceAccountingDecimals); - // console.log('fastSlowDiff: ', fastSlowDiff); - // console.log('fastCurrentDiff: ', fastCurrentDiff); - // console.log("thresholds.extremeVolatility: ", thresholds.extremeVolatility); bool isExtremeVolatility = fastSlowDiff >= thresholds.extremeVolatility || fastCurrentDiff >= thresholds.extremeVolatility; if (!isExtremeVolatility) { bool isHighVolatility = fastSlowDiff >= thresholds.highVolatility || fastCurrentDiff >= thresholds.highVolatility; - // console.log('thresholds.highVolatility: ', thresholds.highVolatility); - // console.log('isHighVolatility: ', isHighVolatility); if (!isHighVolatility) { - // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); if ( !((state == State.OverInventory || state == State.Normal) && lastRebalanceCurrentPrice != 0 && twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold - thresholds.dtrDelta) ) { - // console.log('111'); - // console.log(_blockTimestamp()); - // console.log(lastRebalanceTimestamp); - // console.log(minTimeBetweenRebalances); if (_blockTimestamp() < lastRebalanceTimestamp + minTimeBetweenRebalances) { - // console.log('too soon'); return (DecideStatus.TooSoon, State.Special); } (bool needToRebalance, State newState) = _updateStatus(twapResult); - // console.log('needToRebalance: ', needToRebalance); - // console.log('newState: ', uint256(newState)); if (needToRebalance) { - // console.log('fastCurrentDiff: ', fastCurrentDiff); - // console.log('thresholds.someVolatility: ', thresholds.someVolatility); if (fastCurrentDiff < thresholds.someVolatility) { - // // console.log('fastCurrentDiff < thresholds.someVolatility'); return (DecideStatus.Normal, newState); // normal rebalance } else { - // console.log('mi tutt?????'); return (DecideStatus.TooSoon, newState); // too soon } } else { @@ -386,14 +325,8 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } } else { // handle high volatility - // Если fastSlowDiff >= _highVolatility ИЛИ fastCurrentDiff => _highVolatility (5%), то считаем, что сейчас высокая волатильность. if (state != State.Special) { - // Проверяем, что сейчас Status != SPECIAL, иначе - ребаланс не делается - if (fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock) { - // console.log('fastCurrentDiff >= thresholds.someVolatility && twapResult.sameBlock'); - // Если fastCurrentDiff >= _someVolatility (low? - 1%): - // Проверяем, что последний timepoint был записан не в том же блоке, в котором мы исполняем транзакцию, иначе - ребаланс не делается return (DecideStatus.TooSoon, State.Special); } } else { @@ -403,107 +336,56 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } // high volatility, fastSlowDiff >= thresholds.highVolatility state = State.Special; - // console.log('special special????'); return (DecideStatus.Special, State.Special); } else { - // Если fastSlowDiff >= _extremeVolatility ИЛИ fastCurrentDiff => _extremeVolatility (25%), то считаем, что сейчас экстремальная волатильность и ребаланс не делается return (DecideStatus.ExtremeVolatility, State.Special); } } function _updateStatus(TwapResult memory twapResult) internal virtual returns (bool, State) { - // // console.log('twapResult.percentageOfDepositToken: ', twapResult.percentageOfDepositToken); - // // console.log('thresholds.underInventoryThreshold: ', thresholds.underInventoryThreshold); - // console.log('entered updateStatus'); - // console.log('lastRebalanceCurrentPrice: ', lastRebalanceCurrentPrice); - // console.log('state: ', uint16(state)); if (state != State.Special && lastRebalanceCurrentPrice != 0) { - // console.log('state:? ', uint16(state)); if (state != State.Normal) { - // console.log('state != State.OverInventory: ', state != State.OverInventory); if (state != State.OverInventory) { if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - // if less than 93% if (twapResult.percentageOfDepositToken >= thresholds.normalThreshold) { - // if greater than 80% (REBALANCE TO NORMAL) - // state == UnderInventory || state == Special - // 80% <= twapResult.percentageOfDepositToken <= 93% - // типа из андеринветори или спешл ребалансим в НОРМАЛ return (true, State.Normal); } } else { - // state == UnderInventory || state == Special - // twapResult.percentageOfDepositToken >= 93% return (true, State.OverInventory); } } else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - // console.log('else if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold)'); - // if greater than 77% if (twapResult.percentageOfDepositToken <= thresholds.overInventoryThreshold) { - // if less than 91% (REBALANCE TO NORMAL) - // state == OverInventory - // 77% <= twapResult.percentageOfDepositToken <= 91% - // типа из оверинвентори в НОРМАЛ return (true, State.Normal); } - // WHAT IF GREATER THAN 91%? (STAYING OVER-INVENTORY) } else { - // state == OverInventory - // twapResult.percentageOfDepositToken <= 77% - // из оверинвентори хуячимся в андеринвентори return (true, State.UnderInventory); } uint256 priceChange = _calcPercentageDiff(lastRebalanceCurrentPrice, twapResult.currentPriceAccountingDecimals); // percentage diff between lastRebalanceCurrentPrice and currentPriceAccountingDecimals - // console.log('priceChange: ', priceChange); - // console.log('threshold: ', thresholds.priceChangeThreshold); if (priceChange > thresholds.priceChangeThreshold) { - // CASES: - // 1. we are still under-inventory and price changed by more than (1/0.5)% - // 2. we are still over-inventory and price changed by more than (1/0.5)% - - // console.log('priceChange > thresholds.priceChangeThreshold'); return (true, state); } } else if (twapResult.percentageOfDepositToken <= thresholds.simulate) { if (twapResult.percentageOfDepositToken < thresholds.underInventoryThreshold) { - // state == Normal - // twapResult.percentageOfDepositToken < 77% <= 93 % return (true, State.UnderInventory); } } else { - // state == Normal - // twapResult.percentageOfDepositToken > 93% return (true, State.OverInventory); } - // console.log('percentageOfDepositTokenUnused: ', twapResult.percentageOfDepositTokenUnused); if (twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold) { - // if less than 1% - // // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold'); - // console.log('twapResult.percentageOfDepositTokenUnused <= thresholds.depositTokenUnusedThreshold????'); return (false, State.Normal); // no rebalance needed } else { - // CASES: - // 1. state == Normal and 75% < twapResult.percentageOfDepositToken < 93% return (true, state); } } else { if (twapResult.percentageOfDepositToken <= thresholds.simulate) { - // if less than 93% if (twapResult.percentageOfDepositToken >= thresholds.underInventoryThreshold) { - // if greater than 77% (REBALANCE TO NORMAL) - // state == Special OR not lastRebalanceCurrentPrice - // 77% <= twapResult.percentageOfDepositToken <= 93% return (true, State.Normal); } else { - // state == Special OR not lastRebalanceCurrentPrice - // twapResult.percentageOfDepositToken <= 77% return (true, State.UnderInventory); } } else { - // state == Special OR not lastRebalanceCurrentPrice - // twapResult.percentageOfDepositToken > 93% return (true, State.OverInventory); } } @@ -512,44 +394,27 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _getRangesWithState(State newState, TwapResult memory twapResult) internal view returns (Ranges memory ranges) { // scope to prevent stack too deep { - // // console.log('entered _getRangesWithState'); bool _allowToken1 = allowToken1; int24 _tickSpacing = tickSpacing; uint8 _tokenDecimals = tokenDecimals; (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); - // // console.log('upperPriceBound: ', upperPriceBound); - // // console.log('targetPrice: ', targetPrice); - // // console.log('lowerPriceBound: ', lowerPriceBound); - - // // console.log('tickSpacing'); - // // console.logInt(_tickSpacing); int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); bool currentTickIsRound = roundedTick == twapResult.currentTick; int24 commonTick; int24 tickForLowerPrice; if (newState == State.Normal) { - // If HEALTHY status (NORMAL) use target price int24 targetTick = getTickAtPrice(_tokenDecimals, targetPrice); - // // console.log('targetTick'); - // // console.logInt(targetTick); commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, targetTick); } else { - // // console.log('entered else in newState == State.Normal'); commonTick = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); } int24 upperTick = getTickAtPrice(_tokenDecimals, upperPriceBound); - // // console.log('upperTick'); - // // console.logInt(upperTick); int24 tickForHigherPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, upperTick); - // // console.log('tickForHigherPrice'); - // // console.logInt(tickForHigherPrice); if (lowerPriceBound == 0) { - // Under-inventory state - // // console.log('entered lowerPriceBound == 0'); int24 lowerTick = _allowToken1 ? TickMath.MIN_TICK : TickMath.MAX_TICK; tickForLowerPrice = (lowerTick / _tickSpacing) * _tickSpacing; // adjust to tick spacing } else { @@ -557,30 +422,20 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); } if (!_allowToken1) { - // // console.log('TICKS'); - // // console.logInt(int24(commonTick)); - // // console.logInt(int24(tickForLowerPrice)); - // // console.logInt(int24(tickForHigherPrice)); - // // console.logInt(int24(commonTick)); - // // console.log('TICKS END'); ranges.baseLower = int24(commonTick); ranges.baseUpper = int24(tickForLowerPrice); ranges.limitLower = int24(tickForHigherPrice); ranges.limitUpper = int24(commonTick); if (newState != State.UnderInventory) { - // if not under-inventory - // we do not use v16 because if Token0 then we reverse the structure of ticks int24 roundedMinTick = roundTickToTickSpacing(_tickSpacing, TickMath.MIN_TICK); ranges.limitLower = int24(roundedMinTick); // use MIN tick } else { - // if under-inventorys ranges.baseLower = currentTickIsRound ? twapResult.currentTick : ranges.baseLower; ranges.limitUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.limitUpper; } if (newState == State.OverInventory) { - // if over-inventory ranges.limitUpper = currentTickIsRound ? twapResult.currentTick : _tickSpacing + ranges.limitUpper; ranges.baseLower = currentTickIsRound ? _tickSpacing + twapResult.currentTick : _tickSpacing + ranges.baseLower; ranges.baseUpper = int24(ranges.baseUpper + _tickSpacing); @@ -632,9 +487,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 tickRoundedDown = roundTickToTickSpacingConsideringNegative(_tickSpacing, twapResult.currentTick); int24 tickRounded = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); - // // console.log('ticks in _getRangesWithoutState'); - // // console.logInt(tickRoundedDown); - // // console.logInt(tickRounded); if (!_allowToken1) { if (twapResult.currentTick == tickRounded) { @@ -673,7 +525,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function _getPriceAccountingDecimals( address token0, address token1, - uint128 pairedTokendecimals, + uint128 _pairedTokenDecimals, int24 averageTick ) private pure returns (uint256 price) { uint160 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(averageTick); @@ -681,18 +533,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 priceX128 = FullMath.mulDiv(uint160(sqrtPriceX96), uint160(sqrtPriceX96), uint256(type(uint64).max) + 1); return token1 < token0 - ? FullMath.mulDiv(priceX128, pairedTokendecimals, uint256(type(uint128).max) + 1) - : FullMath.mulDiv(uint256(type(uint128).max) + 1, pairedTokendecimals, priceX128); + ? FullMath.mulDiv(priceX128, _pairedTokenDecimals, uint256(type(uint128).max) + 1) + : FullMath.mulDiv(uint256(type(uint128).max) + 1, _pairedTokenDecimals, priceX128); } else { - // // console.log(token0, token1); - // // console.log(token1decimals); - // // console.logInt(int256(averageTick)); - // // console.log(sqrtPriceX96); - // // console.log(token1 < token0); return token1 < token0 - ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), pairedTokendecimals, uint256(type(uint192).max) + 1) - : FullMath.mulDiv(uint256(type(uint192).max) + 1, pairedTokendecimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); + ? FullMath.mulDiv(uint256(sqrtPriceX96) * uint256(sqrtPriceX96), _pairedTokenDecimals, uint256(type(uint192).max) + 1) + : FullMath.mulDiv(uint256(type(uint192).max) + 1, _pairedTokenDecimals, uint256(sqrtPriceX96) * uint256(sqrtPriceX96)); } } @@ -750,43 +597,25 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint256 lowerPriceBound = 0; if (_state != State.UnderInventory) { - // if not under-inventory (because if under - we place lower as Min) - // // console.log('baselowpct: ', thresholds.baseLowPct); lowerPriceBound = targetPrice - _calcPart(thresholds.baseLowPct, targetPrice); } uint256 upperPriceBound = targetPrice + _calcPart(thresholds.baseHighPct, targetPrice); - // // console.log('targetPrice: ', targetPrice); - // // console.log('upperPriceBound: ', upperPriceBound); - // // console.log('state????: ', uint256(_state)); if (_state == State.Normal) { - // // console.log('mi tut???'); - // // console.log('twapResult.totalDepositToken: ', twapResult.totalDepositToken); - // // console.log('twapResult.totalPairedInDeposit: ', twapResult.totalPairedInDeposit); uint256 totalTokens = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; uint256 partOfTotalTokens = _calcPart(totalTokens, thresholds.limitReservePct); // 5% of totalTokensInToken0 - // // console.log('limitReservePct: ', thresholds.limitReservePct); - // // console.log('partOfTotalTokens: ', partOfTotalTokens); uint256 excess = twapResult.totalPairedInDeposit - partOfTotalTokens; - uint256 partOfExcess = excess * thresholds.baseLowPct; // 20% of excess + uint256 partOfExcess = excess * thresholds.baseLowPct; uint256 excessCoef = partOfExcess / twapResult.totalDepositToken; if (excessCoef != 0) { targetPrice += _calcPart(excessCoef, targetPrice); } } - // // console.log('targetPrice before remove decimals: ', targetPrice); - // // console.log('lowerPriceBound before remove decimals: ', lowerPriceBound); - // // console.log('upperPriceBound before remove decimals: ', upperPriceBound); - // // console.log('decimalsSum: ', decimalsSum); - // // console.log(_allowToken1); + if (!_allowToken1) { - // // console.log('??????'); - targetPrice = _removeDecimals(targetPrice, decimalsSum); // targetPrice - lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); // lowerPriceBound - upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); // upperPriceBound - // // console.log('targetPrice after remove decimals: ', targetPrice); - // // console.log('lowerPriceBound after remove decimals: ', lowerPriceBound); - // // console.log('upperPriceBound after remove decimals: ', upperPriceBound); + targetPrice = _removeDecimals(targetPrice, decimalsSum); + lowerPriceBound = _removeDecimals(lowerPriceBound, decimalsSum); + upperPriceBound = _removeDecimals(upperPriceBound, decimalsSum); } return (upperPriceBound, targetPrice, lowerPriceBound); @@ -797,8 +626,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { } function _removeDecimals(uint256 amount, uint8 decimals) private pure returns (uint256) { - // // console.log('amount: ', amount); - // // console.log('decimals: ', decimals); return amount != 0 ? (10 ** decimals) / amount : amount; } @@ -809,7 +636,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { function getTickAtPrice(uint8 _tokenDecimals, uint256 _price) private pure returns (int24) { uint160 sqrtPriceX96 = getSqrtPriceX96(_tokenDecimals, _price); - // // console.log("_tokenDecimals: ", _tokenDecimals); return TickMath.getTickAtSqrtRatio(sqrtPriceX96); } diff --git a/src/plugin/contracts/plugins/AlmPlugin.sol b/src/plugin/contracts/plugins/AlmPlugin.sol index 6af786f3c..f129bdcdf 100644 --- a/src/plugin/contracts/plugins/AlmPlugin.sol +++ b/src/plugin/contracts/plugins/AlmPlugin.sol @@ -5,8 +5,6 @@ import '../base/AlgebraBasePlugin.sol'; import '../interfaces/plugins/IAlmPlugin.sol'; import '../interfaces/IRebalanceManager.sol'; -// import 'hardhat/console.sol'; - abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { address public rebalanceManager; uint32 public slowTwapPeriod; @@ -34,17 +32,11 @@ abstract contract AlmPlugin is AlgebraBasePlugin, IAlmPlugin { } function setRebalanceManager(address _rebalanceManager) external { - // console.log('setRebalanceManager called'); _authorize(); rebalanceManager = _rebalanceManager; } - function _obtainTWAPAndRebalance( - int24 currentTick, - int24 slowTwapTick, - int24 fastTwapTick, - uint32 lastBlockTimestamp - ) internal { + function _obtainTWAPAndRebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) internal { IRebalanceManager(rebalanceManager).obtainTWAPAndRebalance(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); } } diff --git a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol index cb7e605b3..d401f61ca 100644 --- a/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol +++ b/src/plugin/contracts/plugins/VolatilityOraclePlugin.sol @@ -10,8 +10,6 @@ import '../interfaces/plugins/IVolatilityOracle.sol'; import '../libraries/VolatilityOracle.sol'; import '../base/AlgebraBasePlugin.sol'; -// import 'hardhat/console.sol'; - /// @title Algebra Integral 1.2.1 VolatilityOraclePlugin plugin /// @notice This contract stores timepoints and calculates adaptive fee and statistical averages abstract contract VolatilityOraclePlugin is AlgebraBasePlugin, IVolatilityOracle { @@ -36,9 +34,7 @@ abstract contract VolatilityOraclePlugin is AlgebraBasePlugin, IVolatilityOracle /// @inheritdoc IVolatilityOracle function initialize() external override { - // console.log('initialize called'); require(!isInitialized, 'Already initialized'); - // console.log("plugin address in solidity: ", address(this)); require(_getPluginInPool() == address(this), 'Plugin not attached'); (uint160 price, int24 tick, , ) = _getPoolState(); require(price != 0, 'Pool is not initialized'); diff --git a/src/plugin/contracts/test/AlmPluginTest.sol b/src/plugin/contracts/test/AlmPluginTest.sol index a2fd757f8..f870fed62 100644 --- a/src/plugin/contracts/test/AlmPluginTest.sol +++ b/src/plugin/contracts/test/AlmPluginTest.sol @@ -3,8 +3,6 @@ pragma solidity =0.8.20; import '../base/BaseRebalanceManager.sol'; -import 'hardhat/console.sol'; - contract AlmPluginTest is BaseRebalanceManager { uint256 public depositTokenBalance; uint256 public slowPrice; @@ -14,8 +12,6 @@ contract AlmPluginTest is BaseRebalanceManager { uint8 public pairedDecimals; constructor(address _vault, uint32 _minTimeBetweenRebalances, Thresholds memory _thresholds, int24 _tickSpacing) { - require(!isAlmInitialized, 'Already initialized'); - isAlmInitialized = true; paused = false; // TODO: добавить require'ов vault = _vault; @@ -39,58 +35,19 @@ contract AlmPluginTest is BaseRebalanceManager { address _pairedToken = _allowToken1 ? token0 : token1; pairedToken = _pairedToken; uint8 _pairedTokenDecimals = _getPairedTokenDecimals(); - // console.log('_pairedTokenDecimals: ', _pairedTokenDecimals); pairedTokenDecimals = _pairedTokenDecimals; address _depositToken = _allowToken1 ? token1 : token0; depositToken = _depositToken; uint8 _depositTokenDecimals = _getDepositTokenDecimals(); depositTokenDecimals = _depositTokenDecimals; - // console.log('_depositTokenDecimals: ', _depositTokenDecimals); decimalsSum = _depositTokenDecimals + _pairedTokenDecimals; - // console.log('decimals sum: ', decimalsSum); tokenDecimals = _allowToken1 ? _pairedTokenDecimals : _depositTokenDecimals; } function rebalance(int24 currentTick, int24 slowTwapTick, int24 fastTwapTick, uint32 lastBlockTimestamp) public { TwapResult memory twapResult = _obtainTWAPs(currentTick, slowTwapTick, fastTwapTick, lastBlockTimestamp); - - // struct TwapResult { - // uint256 currentPriceAccountingDecimals; - // uint256 slowAvgPriceAccountingDecimals; - // uint256 fastAvgPriceAccountingDecimals; - // uint256 totalPairedInDeposit; - // uint256 totalDepositToken; - // uint256 totalPairedToken; - // int24 currentTick; - // uint16 percentageOfDepositTokenUnused; // 10000 = 100% - // uint16 percentageOfDepositToken; // 10000 = 100% - // bool failedToObtainTWAP; - // bool sameBlock; - // } - console.log('TWAP RESULT START'); - console.log(twapResult.currentPriceAccountingDecimals); - console.log(twapResult.slowAvgPriceAccountingDecimals); - console.log(twapResult.fastAvgPriceAccountingDecimals); - console.log(twapResult.totalPairedInDeposit); - console.log(twapResult.totalDepositToken); - console.log(twapResult.totalPairedToken); - console.logInt(twapResult.currentTick); - console.log(twapResult.percentageOfDepositTokenUnused); - console.log(twapResult.percentageOfDepositToken); - console.log(twapResult.sameBlock); - console.log('TWAP RESULT END'); - - console.log('STATE IN THE BEGINNING: ', uint256(state)); - - // int24 currentTick; - // uint16 percentageOfDepositTokenUnused; // 10000 = 100% - // uint16 percentageOfDepositToken; // 10000 = 100% - // bool failedToObtainTWAP; - // bool sameBlock; - // } - _rebalance(twapResult); } @@ -116,7 +73,6 @@ contract AlmPluginTest is BaseRebalanceManager { (depositTokenDecimals, pairedTokenDecimals) = (_depositDecimals, _pairedDecimals); decimalsSum = _depositDecimals + _pairedDecimals; - // console.log('decimals sum: ', decimalsSum); tokenDecimals = allowToken1 ? _pairedDecimals : _depositDecimals; } diff --git a/src/plugin/contracts/test/MockPool.sol b/src/plugin/contracts/test/MockPool.sol index 862fff53a..5adb5b827 100644 --- a/src/plugin/contracts/test/MockPool.sol +++ b/src/plugin/contracts/test/MockPool.sol @@ -13,8 +13,6 @@ import '@cryptoalgebra/integral-core/contracts/interfaces/pool/IAlgebraPoolPermi import '@cryptoalgebra/integral-core/contracts/interfaces/pool/IAlgebraPoolErrors.sol'; import '@cryptoalgebra/integral-core/contracts/interfaces/plugin/IAlgebraPlugin.sol'; -import 'hardhat/console.sol'; - /// @title Mock of Algebra concentrated liquidity pool for plugins testing contract MockPool is IAlgebraPoolActions, IAlgebraPoolPermissionedActions, IAlgebraPoolState { struct GlobalState { @@ -184,7 +182,6 @@ contract MockPool is IAlgebraPoolActions, IAlgebraPoolPermissionedActions, IAlge globalState.price = TickMath.getSqrtRatioAtTick(targetTick); globalState.tick = targetTick; - console.log('pluginConfig: ', globalState.pluginConfig); if (globalState.pluginConfig & Plugins.AFTER_SWAP_FLAG != 0) { _plugin.afterSwap(msg.sender, msg.sender, true, 0, 0, 0, 0, ''); } diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 210d01e58..808b8b541 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -34,6 +34,10 @@ contract MockRebalanceManager is RebalanceManager { state = _state; } + function setAllowToken1(bool _allowToken1) public { + allowToken1 = _allowToken1; + } + function setLastRebalanceCurrentPrice(uint256 _lastRebalanceCurrentPrice) public { lastRebalanceCurrentPrice = _lastRebalanceCurrentPrice; } @@ -42,7 +46,6 @@ contract MockRebalanceManager is RebalanceManager { (depositTokenDecimals, pairedTokenDecimals) = (_depositDecimals, _pairedDecimals); decimalsSum = _depositDecimals + _pairedDecimals; - // console.log('decimals sum: ', decimalsSum); tokenDecimals = allowToken1 ? _pairedDecimals : _depositDecimals; } diff --git a/src/plugin/contracts/test/MockVault.sol b/src/plugin/contracts/test/MockVault.sol index f173f0ca3..c550e1c24 100644 --- a/src/plugin/contracts/test/MockVault.sol +++ b/src/plugin/contracts/test/MockVault.sol @@ -6,8 +6,6 @@ import {ERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {IAlgebraPool} from '@cryptoalgebra/integral-core/contracts/interfaces/IAlgebraPool.sol'; -import 'hardhat/console.sol'; - contract MockVault is IAlgebraVault, ERC20 { event MockRebalance(int24 baseLower, int24 baseUpper, int24 limitLower, int24 limitUpper); @@ -47,6 +45,7 @@ contract MockVault is IAlgebraVault, ERC20 { uint256 public totalAmount0; uint256 public totalAmount1; + bool public shouldRevertOnRebalance; constructor( address _pool, @@ -81,6 +80,10 @@ contract MockVault is IAlgebraVault, ERC20 { // affiliate = NULL_ADDRESS; // by default there is no affiliate address } + function setShouldRevertOnRebalance(bool _shouldRevertOnRebalance) public { + shouldRevertOnRebalance = _shouldRevertOnRebalance; + } + function setAllowTokens(bool _allowToken0, bool _allowToken1) public { (allowToken0, allowToken1) = (_allowToken0, _allowToken1); } @@ -94,11 +97,7 @@ contract MockVault is IAlgebraVault, ERC20 { function withdraw(uint256, address) external returns (uint256, uint256) {} function rebalance(int24 _baseLower, int24 _baseUpper, int24 _limitLower, int24 _limitUpper, int256 swapQuantity) external { - console.log('VAULT REBALANCE CALLED'); - console.logInt(_baseLower); - console.logInt(_baseUpper); - console.logInt(_limitLower); - console.logInt(_limitUpper); + if (shouldRevertOnRebalance) revert('shouldRevertOnRebalance'); emit MockRebalance(_baseLower, _baseUpper, _limitLower, _limitUpper); } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index afc6edf04..1366dadfa 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -3,7 +3,7 @@ import { ethers, network } from 'hardhat'; import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'; import checkTimepointEquals from './shared/checkTimepointEquals'; import { expect } from './shared/expect'; -import { TEST_POOL_START_TIME, pluginFixtureALM } from './shared/fixtures'; +import { TEST_POOL_START_TIME, ZERO_ADDRESS, pluginFixtureALM } from './shared/fixtures'; import { PLUGIN_FLAGS, encodePriceSqrt, expandTo18Decimals, getMaxTick, getMinTick } from './shared/utilities'; import { MockPool, MockAlgebraBasePluginALM, MockAlgebraBasePluginALMFactory, MockTimeVirtualPool, MockVault, RebalanceManager, MockRebalanceManager, MockFactory } from '../typechain'; @@ -43,6 +43,10 @@ describe('AlgebraBasePluginALM', () => { await pool.initialize(encodePriceSqrt(1, 1)); } + async function initializeAtTick(pool: MockPool, tick: number) { + await pool.initialize(tick >= 0 ? encodePriceSqrt(Math.pow(1.0001, tick), 1) : encodePriceSqrt(1, Math.pow(1.0001, tick))); + } + // сделал отдельной фикстурой, потому что сначала пул должен проинициализироваться // потом уже должен деплоиться rebalanceManager, потому что он в конструкторе достает из пула tickSpacing async function deployAndSetRebalanceManager() { @@ -552,12 +556,14 @@ describe('AlgebraBasePluginALM', () => { }); describe('#AlmBasePlugin', () => { + let initTick = 0; + beforeEach('initialize pool', async () => { const defaultConfig = await plugin.defaultPluginConfig(); await mockPool.setPlugin(plugin); await mockPool.setPluginConfig(BigInt(PLUGIN_FLAGS.AFTER_SWAP_FLAG) | defaultConfig); - await initializeAtZeroTick(mockPool); + await initializeAtTick(mockPool, initTick); await deployAndSetRebalanceManager(); }); @@ -586,347 +592,541 @@ describe('AlgebraBasePluginALM', () => { expect((await rebalanceManager.thresholds())[11]).to.be.equals(200); expect((await rebalanceManager.thresholds())[12]).to.be.equals(300); }); + + it('setTriggers', async () => { + await expect( + rebalanceManager.setTriggers(7000, 7001, 6000, 7002) + ).to.be.revertedWith('_underInventoryThreshold must be > 6000'); + await expect( + rebalanceManager.setTriggers(8000, 7000, 7000, 8001) + ).to.be.revertedWith('_normalThreshold must be > _underInventoryThreshold'); + await expect( + rebalanceManager.setTriggers(8500, 8000, 7000, 8000) + ).to.be.revertedWith('_overInventoryThreshold must be > _normalThreshold'); + await expect( + rebalanceManager.setTriggers(8000, 7500, 7000, 8001) + ).to.be.revertedWith('Simulate must be > _overInventoryThreshold'); + await expect( + rebalanceManager.setTriggers(9500, 8100, 8000, 8200) + ).to.be.revertedWith('Simulate must be < 9500'); + + await rebalanceManager.setTriggers(9000, 8100, 8000, 8200); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[1]).to.be.equal(9000); + expect(thresholds[2]).to.be.equal(8100); + expect(thresholds[3]).to.be.equal(8000); + expect(thresholds[4]).to.be.equal(8200); + }); + + it('setDtrDelta', async () => { + await expect( + rebalanceManager.setDtrDelta(10001) + ).to.be.revertedWith('_dtrDelta must be <= 10000'); + + await rebalanceManager.setDtrDelta(5000); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[9]).to.be.equal(5000); // dtrDelta + }); + + it('setHighVolatility', async () => { + await expect( + rebalanceManager.setHighVolatility(199) + ).to.be.revertedWith('_highVolatility must be >= someVolatility'); + + await rebalanceManager.setHighVolatility(300); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[7]).to.be.equal(300); + }); + + it('setSomeVolatility', async () => { + await expect( + rebalanceManager.setSomeVolatility(301) + ).to.be.revertedWith('_someVolatility must be <= 300'); + + await rebalanceManager.setSomeVolatility(200); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[8]).to.be.equal(200); // someVolatility + }); + + it('setHighVolatility', async () => { + // Сначала устанавливаем someVolatility + await rebalanceManager.setSomeVolatility(250); + + // Проверка: _highVolatility < someVolatility + await expect( + rebalanceManager.setHighVolatility(200) + ).to.be.revertedWith('_highVolatility must be >= someVolatility'); + + // Успешный вызов + await rebalanceManager.setHighVolatility(300); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[7]).to.be.equal(300); // highVolatility + }); + + it('setExtremeVolatility', async () => { + // Сначала устанавливаем highVolatility + await rebalanceManager.setHighVolatility(400); + + // Проверка: _extremeVolatility < highVolatility + await expect( + rebalanceManager.setExtremeVolatility(399) + ).to.be.revertedWith('_extremeVolatility must be >= highVolatility'); + + // Успешный вызов + await rebalanceManager.setExtremeVolatility(500); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[6]).to.be.equal(500); // extremeVolatility + }); + + it('setDepositTokenUnusedThreshold', async () => { + await expect( + rebalanceManager.setDepositTokenUnusedThreshold(99) + ).to.be.revertedWith('_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); + + await expect( + rebalanceManager.setDepositTokenUnusedThreshold(10001) + ).to.be.revertedWith('_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); + + await rebalanceManager.setDepositTokenUnusedThreshold(300); + const thresholds = await rebalanceManager.thresholds(); + expect(thresholds[0]).to.be.equal(300); + }); + + it('setMinTimeBetweenRebalances', async () => { + await rebalanceManager.setMinTimeBetweenRebalances(3600); + const value = await rebalanceManager.minTimeBetweenRebalances(); + expect(value).to.be.equal(3600); + }); + + it('setVault', async () => { + const newVault = '0x1234567890123456789012345678901234567890'; + await rebalanceManager.setVault(newVault); + const vault = await rebalanceManager.vault(); + expect(vault).to.equal(newVault); + }); }); + async function setTotalAmounts(amount0: bigint, amount1: bigint, allowToken1: boolean) { + if (allowToken1) { + await mockVault.setTotalAmounts(amount1, amount0); + } else { + await mockVault.setTotalAmounts(amount0, amount1); + } + } + async function checkState(expectedState: State) { expect((await rebalanceManager.state())).to.be.eq(expectedState); } - it('first rebalance over -> over', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + const allowTokenCombos = [ + { allowToken1: false }, + { allowToken1: true }, + ]; - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + allowTokenCombos.forEach(({allowToken1 }) => { + describe(`rebalances (allowToken1=${allowToken1})`, () => { + beforeEach(async () => { + await rebalanceManager.setAllowToken1(allowToken1); + }); - it('first rebalance over -> over, pairedToken < depositToken', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('first rebalance over -> over, pairedToken >= depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - it('over state no rebalance - some volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('first rebalance over -> over, pairedToken < depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - it('over state no rebalance - some volatility, pairedToken < depositToken', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over state no rebalance - some volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); + await checkState(State.OverInventory); + }); - it('under -> under', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over state no rebalance - some volatility, pairedToken < depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(0n); - await rebalanceManager.setState(State.UnderInventory); - await mockVault.setTotalAmounts(0, 10000); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); + await checkState(State.OverInventory); + }); - it('under state no rebalance - some volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('under -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(0n); - await rebalanceManager.setState(State.UnderInventory); - await mockVault.setTotalAmounts(0, 10000); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.UnderInventory); - await checkState(State.UnderInventory); - }); + await rebalanceManager.setDepositTokenBalance(0n); + await rebalanceManager.setState(State.UnderInventory); + await setTotalAmounts(0n, 10000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('over -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('under state no rebalance - some volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + await rebalanceManager.setDepositTokenBalance(0n); + await rebalanceManager.setState(State.UnderInventory); + await setTotalAmounts(0n, 10000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('over -> normal -> over', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal); - await checkState(State.Normal); - await mockVault.setTotalAmounts(10000, 0); - await rebalanceManager.advanceTime(7200); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - it('over -> special, high volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> normal -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal); + await checkState(State.Normal); + await setTotalAmounts(10000n, 0n, allowToken1); + await rebalanceManager.advanceTime(7200); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory); + await checkState(State.OverInventory); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await mockPool.swapToTick(2000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - }); + it('over -> special, high volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - extreme volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(3000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.ExtremeVolatility, State.Special); - await checkState(State.Special); - }); + it('over -> special, high volatility, rounded tick', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - too soon', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(2040)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await mockPool.swapToTick(100); - await checkState(State.Normal); - await plugin.advanceTime(1800); - await expect(mockPool.swapToTick(1000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - await checkState(State.Normal); - }); + it('no rebalance - extreme volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - volatility too low', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(3000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.ExtremeVolatility, State.Special); + await checkState(State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(250)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); - await checkState(State.OverInventory); - }); + it('no rebalance - too soon', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - percentageOfDepositTokenUnused too low', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await mockPool.swapToTick(100); + await checkState(State.Normal); + await plugin.advanceTime(1800); + await expect(mockPool.swapToTick(1000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + await checkState(State.Normal); + }); - // await rebalanceManager.setDepositTokenBalance(0n); - await mockVault.setTotalAmounts(9200, 800); - await plugin.advanceTime(3600); - await mockPool.swapToTick(10); - await checkState(State.Normal); + it('no rebalance - volatility too low', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await plugin.advanceTime(7200); - await rebalanceManager.advanceTime(7200); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(250)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + await checkState(State.OverInventory); + }); - // await rebalanceManager.setState(1); // normal state - await expect(mockPool.swapToTick(11)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeedWithPending, State.Normal); - await checkState(State.Normal); - }); + it('no rebalance - percentageOfDepositTokenUnused too low', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - high volatility in the same block', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + // await rebalanceManager.setDepositTokenBalance(0n); + await setTotalAmounts(9200n, 800n, allowToken1); + await plugin.advanceTime(3600); + await mockPool.swapToTick(10); + await checkState(State.Normal); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await rebalanceManager.advanceTime(3600); - await network.provider.send("evm_setAutomine", [false]); - // https://github.com/NomicFoundation/hardhat/issues/4090 - await mockPool.swapToTick(1, { gasLimit: 2000000 }); - const tx = await mockPool.swapToTick(2000, { gasLimit: 2000000 }); - await network.provider.send("evm_mine"); - await expect(tx).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - await checkState(State.Normal); - await network.provider.send("evm_setAutomine", [true]); - }); + await plugin.advanceTime(7200); + await rebalanceManager.advanceTime(7200); - it('rebalance not triggered for low volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + // await rebalanceManager.setState(1); // normal state + await expect(mockPool.swapToTick(11)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeedWithPending, State.Normal); + await checkState(State.Normal); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); - await checkState(State.OverInventory); - }); + it('no rebalance - high volatility in the same block', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await rebalanceManager.advanceTime(3600); + await network.provider.send("evm_setAutomine", [false]); + // https://github.com/NomicFoundation/hardhat/issues/4090 + await mockPool.swapToTick(1, { gasLimit: 2000000 }); + const tx = await mockPool.swapToTick(2000, { gasLimit: 2000000 }); + await network.provider.send("evm_mine"); + await expect(tx).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + await checkState(State.Normal); + await network.provider.send("evm_setAutomine", [true]); + }); - it('rebalance triggered for high volatility after time threshold', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('rebalance not triggered for low volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(3600); - await mockPool.swapToTick(2000); - await checkState(State.Special); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(10)) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeed, State.Special); - await checkState(State.Special); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + await checkState(State.OverInventory); + }); - it('over -> over -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('rebalance triggered for high volatility after time threshold', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await mockPool.swapToTick(2000); + await checkState(State.Special); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(10)) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeed, State.Special); + await checkState(State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - - await mockVault.setTotalAmounts(8100, 1900); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(10)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + it('over -> over -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await setTotalAmounts(8100n, 1900n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(10)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - it('over -> normal -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> normal -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8100n, 1900n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(10)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8100, 1900); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(10)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + it('over -> under -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(7500n, 2500n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await setTotalAmounts(9500n, 500n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - it('over -> under -> over', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> under -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(7500n, 2500n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await setTotalAmounts(8100n, 1900n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(7500, 2500); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - - await mockVault.setTotalAmounts(9500, 500); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + it('over -> over -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await setTotalAmounts(7500n, 2500n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('over -> under -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> over -> current, priceChange < priceChangeThreshold', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await setTotalAmounts(9200n, 800n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(100)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(7500, 2500); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - - await mockVault.setTotalAmounts(8100, 1900); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + it('over -> normal -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await setTotalAmounts(7700n, 2300n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(0)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('over -> over -> under', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('no rebalance - no vault, should pause', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await mockVault.setShouldRevertOnRebalance(true); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(5000); + await mockPool.swapToTick(0); + expect(await rebalanceManager.paused()).to.be.eq(true); + await checkState(State.Special); + + await expect(mockPool.swapToTick(0)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + + await rebalanceManager.unpause(); + expect(await rebalanceManager.paused()).to.be.eq(false); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - - await mockVault.setTotalAmounts(7500, 2500); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - }); + it('no rebalance without rebalance manager', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('over -> over -> current, priceChange < priceChangeThreshold', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await plugin.setRebalanceManager(ZERO_ADDRESS); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(10000, 0); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - - await mockVault.setTotalAmounts(9200, 800); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(100)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + it('no rebalance without vault', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('over -> normal -> under', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setVault(ZERO_ADDRESS); + + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(500_000, {gasLimit: 1_000_000})).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + }); + + it('no rebalance on extreme ticks', async () => { + initTick = 500_000; - await rebalanceManager.setDepositTokenBalance(10000n); - await mockVault.setTotalAmounts(8000, 2000); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - - await mockVault.setTotalAmounts(7700, 2300); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(500_000)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + await checkState(State.OverInventory); + }); + }); }); }); diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts index 190903ae9..82bd6463a 100644 --- a/src/plugin/test/AlmPlugin.spec.ts +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -114,55 +114,6 @@ describe('#AlmPlugin', () => { } }); - describe('#rebalance2', () => { - for (const rebalance of rebalances2) { - it(`rebalance for tx ${rebalance.transactionHash}`, async () => { - const { almPlugin, mockVault } = await almPluginFixture({ - depositTokenUnusedThreshold: rebalance.state.depositTokenUnusedThreshold, - simulate: rebalance.state.simulateTrigger, - normalThreshold: rebalance.state.normalTrigger, - underInventoryThreshold: rebalance.state.underTrigger, - overInventoryThreshold: rebalance.state.overTrigger, - priceChangeThreshold: rebalance.state.priceChangeTrigger, - extremeVolatility: rebalance.state.extremeVolatility, - highVolatility: rebalance.state.highVolatility, - someVolatility: rebalance.state.someVolatility, - dtrDelta: rebalance.state.dtrDelta, - baseLowPct: rebalance.state.baseLowPct, - baseHighPct: rebalance.state.baseHighPct, - limitReservePct: rebalance.state.limitReservePct, - }, 60, true, false); - - const state = rebalance.state; - const currentTick = BigInt(state.currentTick); - const lastBlockTimestamp = 0n; - const slowTick = 0n; - const fastTick = 0n; - - await almPlugin.setDecimals(18, 18); - - await mockVault.setTotalAmounts( - BigInt(state.usedToken0), - BigInt(state.usedToken1) - ); - - await almPlugin.setPrices( - BigInt(state.twapSlow), - BigInt(state.twapFast), - BigInt(state.currentPrice) - ); - - await almPlugin.setDepositTokenBalance(state.depositTokenBalance); - - await almPlugin.setLastRebalanceCurrentPrice(BigInt(state.lastRebalancePrice)); - await almPlugin.setState(BigInt(state.state)); - - await expect(almPlugin.rebalance(currentTick, slowTick, fastTick, lastBlockTimestamp)).to.emit(mockVault, 'MockRebalance') - .withArgs(rebalance.rebalance.basePosition.bottomTick, rebalance.rebalance.basePosition.topTick, rebalance.rebalance.limitPosition.bottomTick, rebalance.rebalance.limitPosition.topTick); - }); - } - }); - describe('#rebalance3', () => { for (const rebalance of rebalances3.slice(0,30)) { it(`rebalance for tx ${rebalance.transactionHash}`, async () => { diff --git a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap index 37e36db29..3b0fed83a 100644 --- a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap +++ b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap @@ -90,4 +90,34 @@ Array [ ] `; +exports[`AlgebraBasePluginALM #DynamicFeeManager #adaptiveFee single huge step after initialization 1`] = ` +Array [ + "Fee: 15000 ", + "Fee: 15000 ", + "Fee: 15000 ", + "Fee: 15000 ", + "Fee: 14311 ", + "Fee: 11402 ", + "Fee: 7651 ", + "Fee: 5386 ", + "Fee: 4312 ", + "Fee: 3795 ", + "Fee: 3525 ", + "Fee: 3371 ", + "Fee: 3277 ", + "Fee: 3216 ", + "Fee: 3174 ", + "Fee: 3144 ", + "Fee: 3123 ", + "Fee: 3106 ", + "Fee: 3093 ", + "Fee: 3083 ", + "Fee: 3075 ", + "Fee: 3068 ", + "Fee: 3062 ", + "Fee: 3058 ", + "Fee: 3037 ", +] +`; + exports[`AlgebraBasePluginALM AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `21065`; diff --git a/src/plugin/test/almRebalances2.json b/src/plugin/test/almRebalances2.json deleted file mode 100644 index f8f9dfeb3..000000000 --- a/src/plugin/test/almRebalances2.json +++ /dev/null @@ -1,386 +0,0 @@ -{ -"rebalances2": [ - { - "transactionHash": "0x39e7591f007489a377aa9ff49eeb6e044e11674f50d09f73fe78a5b2a914b4fd", - "state": { - "depositToken": 0, - "blockNumber": 49637327, - "lastRebalancePrice": "0", - "state": "0", - "currentTick": "82759", - "currentPrice": "3926431325209865374904", - "twapSlow": "3926431325209865374904", - "twapFast": "3926431325209865374904", - "depositTokenBalance": "2000000000000000000", - "pairedTokenBalance": "0", - "usedToken0": "0", - "usedToken1": "2000000000000000000", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "77640", - "topTick": "82740" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x5a8da9b81fb247428674440a1bc12a5eb1cf0fbcdc9593248deb96ac9f830296", - "state": { - "depositToken": 0, - "blockNumber": 49651219, - "lastRebalancePrice": "3926431325209865374904", - "state": "0", - "currentTick": "82771", - "currentPrice": "3931145635108801132863", - "twapSlow": "3931145635108801132863", - "twapFast": "3931145635108801132863", - "depositTokenBalance": "100000000000000000007", - "pairedTokenBalance": "0", - "usedToken0": "0", - "usedToken1": "101999999999999999999", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "77640", - "topTick": "82740" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x4826fdb0e2bd90c872a55b4cfef9589d6ff67e48a06151684eae5a681bcf6aa8", - "state": { - "depositToken": 0, - "blockNumber": 49669140, - "lastRebalancePrice": "3931145635108801132863", - "state": "0", - "currentTick": "82820", - "currentPrice": "3950454551504296877811", - "twapSlow": "3950454551504296877811", - "twapFast": "3950454551504296877811", - "depositTokenBalance": "788527663489850081411082", - "pairedTokenBalance": "0", - "usedToken0": "0", - "usedToken1": "788629663489850081411069", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "77700", - "topTick": "82800" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x1775b114ee825d300509c2a015d274abed6b17212a4611a398ab6948cc25019e", - "state": { - "depositToken": 0, - "blockNumber": 49727332, - "lastRebalancePrice": "3950454551504296877811", - "state": "0", - "currentTick": "82803", - "currentPrice": "3943744819136126105932", - "twapSlow": "3943744819136126105932", - "twapFast": "3943744819136126105932", - "depositTokenBalance": "9116380871261460085256", - "pairedTokenBalance": "0", - "usedToken0": "0", - "usedToken1": "797746044361111541496320", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "77640", - "topTick": "82800" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0xc314a349dc8e2db54ca2c840730640d60b3ccc83a8d8038872c0a3d6dfa87298", - "state": { - "depositToken": 0, - "blockNumber": 49730816, - "lastRebalancePrice": "3943744819136126105932", - "state": "0", - "currentTick": "82803", - "currentPrice": "3943744819136126105932", - "twapSlow": "3943744819136126105932", - "twapFast": "3943744819136126105932", - "depositTokenBalance": "18314048083270805594410", - "pairedTokenBalance": "0", - "usedToken0": "0", - "usedToken1": "815937130670240908057439", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "77640", - "topTick": "82800" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0xe8f625146fd585071b897f517460a6c73ebeff43a44ad9ea6e6c6f7c9eb9e34d", - "state": { - "depositToken": 0, - "blockNumber": 49734976, - "lastRebalancePrice": "3943744819136126105932", - "state": "0", - "currentTick": "82804", - "currentPrice": "3944139193618039718543", - "twapSlow": "3943744819136126105932", - "twapFast": "3944139193618039718543", - "depositTokenBalance": "23666417892540000763907", - "pairedTokenBalance": "0", - "usedToken0": "0", - "usedToken1": "839603548562780908821340", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "77640", - "topTick": "82800" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x7a08813c39ff8058967d491375bea822366dca3c64b47a30e4b62582d45de8fc", - "state": { - "depositToken": 0, - "blockNumber": 49736980, - "lastRebalancePrice": "3944139193618039718543", - "state": "0", - "currentTick": "82790", - "currentPrice": "3938621537885348180754", - "twapSlow": "3940591242555832828108", - "twapFast": "3938621537885348180754", - "depositTokenBalance": "10809276920180000161804", - "pairedTokenBalance": "0", - "usedToken0": "455700966135985311", - "usedToken1": "848622454655351372204550", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "82740", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "77640", - "topTick": "82740" - } - } - }, - { - "transactionHash": "0xd16f8e654245fd62cb21b0a3a258a57a353fb7cf607ec179123ba8debd430aa1", - "state": { - "depositToken": 0, - "blockNumber": 49738801, - "lastRebalancePrice": "3938621537885348180754", - "state": "0", - "currentTick": "82789", - "currentPrice": "3938227715113836797074", - "twapSlow": "3938227715113836797074", - "twapFast": "3938227715113836797074", - "depositTokenBalance": "60023784327253657803858", - "pairedTokenBalance": "0", - "usedToken0": "455165252472082105", - "usedToken1": "907870230648225704981931", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "82740", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "77640", - "topTick": "82740" - } - } - }, - { - "transactionHash": "0xec3c98a1db70226e9456d8c4eb82dbd2765f896fa111f4a995d21c4bf3ca36ee", - "state": { - "depositToken": 0, - "blockNumber": 49747900, - "lastRebalancePrice": "3938227715113836797074", - "state": "0", - "currentTick": "82791", - "currentPrice": "3939015400039136715572", - "twapSlow": "3939015400039136715572", - "twapFast": "3939015400039136715572", - "depositTokenBalance": "13390432685530000654347", - "pairedTokenBalance": "0", - "usedToken0": "455113046410199993", - "usedToken1": "921260869711344996635371", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "82740", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "77640", - "topTick": "82740" - } - } - }, - { - "transactionHash": "0x6fed8e8b1cdc0145c2359e1b76d267dea870231959309baf48644370bbd22a5f", - "state": { - "depositToken": 0, - "blockNumber": 49787073, - "lastRebalancePrice": "3939015400039136715572", - "state": "0", - "currentTick": "82795", - "currentPrice": "3940591242555832828108", - "twapSlow": "3940591242555832828108", - "twapFast": "3940591242555832828108", - "depositTokenBalance": "19107809878110000402444", - "pairedTokenBalance": "0", - "usedToken0": "455030814334198275", - "usedToken1": "940369005040161522096607", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "7700", - "underTrigger": "7500", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "2000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "82740", - "topTick": "887220" - }, - "limitPosition": { - "bottomTick": "77640", - "topTick": "82740" - } - } - } - ] -} From d07f460c24e0d56ed2a6346dbee9d130045a5854 Mon Sep 17 00:00:00 2001 From: fourlen Date: Tue, 22 Apr 2025 13:08:56 +0300 Subject: [PATCH 39/42] fix tests --- src/plugin/test/AlgebraBasePluginALM.spec.ts | 2 + src/plugin/test/AlmPlugin.spec.ts | 90 +++---- .../__snapshots__/AdaptiveFee.spec.ts.snap | 6 +- .../AlgebraBasePluginALM.spec.ts.snap | 2 +- .../AlgebraBasePluginV1.spec.ts.snap | 2 +- .../AlgebraPool.gas.spec.ts.snap | 142 +++++------ .../__snapshots__/OracleLibrary.spec.ts.snap | 4 +- .../__snapshots__/SlidingFee.spec.ts.snap | 6 +- .../VolatilityOracle.spec.ts.snap | 72 +++--- src/plugin/test/almRebalances.json | 185 --------------- src/plugin/test/almRebalances3.json | 222 ------------------ 11 files changed, 165 insertions(+), 568 deletions(-) diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 1366dadfa..6e526f585 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -1125,6 +1125,8 @@ describe('AlgebraBasePluginALM', () => { await plugin.advanceTime(5000); await expect(mockPool.swapToTick(500_000)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); await checkState(State.OverInventory); + + initTick = 0; }); }); }); diff --git a/src/plugin/test/AlmPlugin.spec.ts b/src/plugin/test/AlmPlugin.spec.ts index 82bd6463a..523b95448 100644 --- a/src/plugin/test/AlmPlugin.spec.ts +++ b/src/plugin/test/AlmPlugin.spec.ts @@ -116,50 +116,52 @@ describe('#AlmPlugin', () => { describe('#rebalance3', () => { for (const rebalance of rebalances3.slice(0,30)) { - it(`rebalance for tx ${rebalance.transactionHash}`, async () => { - const { almPlugin, mockVault } = await almPluginFixture({ - depositTokenUnusedThreshold: rebalance.state.depositTokenUnusedThreshold, - simulate: rebalance.state.simulateTrigger, - normalThreshold: rebalance.state.normalTrigger, - underInventoryThreshold: rebalance.state.underTrigger, - overInventoryThreshold: rebalance.state.overTrigger, - priceChangeThreshold: (BigInt(rebalance.state.priceChangeTrigger) / 2n).toString(), - extremeVolatility: rebalance.state.extremeVolatility, - highVolatility: rebalance.state.highVolatility, - someVolatility: rebalance.state.someVolatility, - dtrDelta: rebalance.state.dtrDelta, - baseLowPct: rebalance.state.baseLowPct, - baseHighPct: rebalance.state.baseHighPct, - limitReservePct: rebalance.state.limitReservePct, - }, 200, false, true); - - const state = rebalance.state; - const currentTick = BigInt(state.currentTick); - const lastBlockTimestamp = 0n; - const slowTick = 0n; - const fastTick = 0n; - - await almPlugin.setDecimals(6, 18); - - await mockVault.setTotalAmounts( - BigInt(state.usedToken0), - BigInt(state.usedToken1) - ); - - await almPlugin.setPrices( - BigInt(state.twapSlow), - BigInt(state.twapFast), - BigInt(state.currentPrice) - ); - - await almPlugin.setDepositTokenBalance(state.depositTokenBalance); - - await almPlugin.setLastRebalanceCurrentPrice(BigInt(state.lastRebalancePrice)); - await almPlugin.setState(BigInt(state.state)); - - await expect(almPlugin.rebalance(currentTick, slowTick, fastTick, lastBlockTimestamp)).to.emit(mockVault, 'MockRebalance') - .withArgs(rebalance.rebalance.basePosition.bottomTick, rebalance.rebalance.basePosition.topTick, rebalance.rebalance.limitPosition.bottomTick, rebalance.rebalance.limitPosition.topTick); - }); + if (rebalance.rebalance.limitPosition != null) { + it(`rebalance for tx ${rebalance.transactionHash}`, async () => { + const { almPlugin, mockVault } = await almPluginFixture({ + depositTokenUnusedThreshold: rebalance.state.depositTokenUnusedThreshold, + simulate: rebalance.state.simulateTrigger, + normalThreshold: rebalance.state.normalTrigger, + underInventoryThreshold: rebalance.state.underTrigger, + overInventoryThreshold: rebalance.state.overTrigger, + priceChangeThreshold: (BigInt(rebalance.state.priceChangeTrigger) / 2n).toString(), + extremeVolatility: rebalance.state.extremeVolatility, + highVolatility: rebalance.state.highVolatility, + someVolatility: rebalance.state.someVolatility, + dtrDelta: rebalance.state.dtrDelta, + baseLowPct: rebalance.state.baseLowPct, + baseHighPct: rebalance.state.baseHighPct, + limitReservePct: rebalance.state.limitReservePct, + }, 200, false, true); + + const state = rebalance.state; + const currentTick = BigInt(state.currentTick); + const lastBlockTimestamp = 0n; + const slowTick = 0n; + const fastTick = 0n; + + await almPlugin.setDecimals(6, 18); + + await mockVault.setTotalAmounts( + BigInt(state.usedToken0), + BigInt(state.usedToken1) + ); + + await almPlugin.setPrices( + BigInt(state.twapSlow), + BigInt(state.twapFast), + BigInt(state.currentPrice) + ); + + await almPlugin.setDepositTokenBalance(state.depositTokenBalance); + + await almPlugin.setLastRebalanceCurrentPrice(BigInt(state.lastRebalancePrice)); + await almPlugin.setState(BigInt(state.state)); + + await expect(almPlugin.rebalance(currentTick, slowTick, fastTick, lastBlockTimestamp)).to.emit(mockVault, 'MockRebalance') + .withArgs(rebalance.rebalance.basePosition.bottomTick, rebalance.rebalance.basePosition.topTick, rebalance.rebalance.limitPosition.bottomTick, rebalance.rebalance.limitPosition.topTick); + }); + } } }); }); diff --git a/src/plugin/test/__snapshots__/AdaptiveFee.spec.ts.snap b/src/plugin/test/__snapshots__/AdaptiveFee.spec.ts.snap index eac7392e6..9df969fba 100644 --- a/src/plugin/test/__snapshots__/AdaptiveFee.spec.ts.snap +++ b/src/plugin/test/__snapshots__/AdaptiveFee.spec.ts.snap @@ -41,8 +41,8 @@ Max error: 0.27% " `; -exports[`AdaptiveFee #getFee gas cost [ @skip-on-coverage ] gas cost of 0 volatility 1`] = `548`; +exports[`AdaptiveFee #getFee gas cost [ @skip-on-coverage ] gas cost of 0 volatility 1`] = `584`; -exports[`AdaptiveFee #getFee gas cost [ @skip-on-coverage ] gas cost of 100 volatility 1`] = `548`; +exports[`AdaptiveFee #getFee gas cost [ @skip-on-coverage ] gas cost of 100 volatility 1`] = `584`; -exports[`AdaptiveFee #getFee gas cost [ @skip-on-coverage ] gas cost of 2000 volatility 1`] = `1272`; +exports[`AdaptiveFee #getFee gas cost [ @skip-on-coverage ] gas cost of 2000 volatility 1`] = `1308`; diff --git a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap index 3b0fed83a..0d79e7421 100644 --- a/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap +++ b/src/plugin/test/__snapshots__/AlgebraBasePluginALM.spec.ts.snap @@ -120,4 +120,4 @@ Array [ ] `; -exports[`AlgebraBasePluginALM AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `21065`; +exports[`AlgebraBasePluginALM AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `23794`; diff --git a/src/plugin/test/__snapshots__/AlgebraBasePluginV1.spec.ts.snap b/src/plugin/test/__snapshots__/AlgebraBasePluginV1.spec.ts.snap index f1a709f59..2a0e8404c 100644 --- a/src/plugin/test/__snapshots__/AlgebraBasePluginV1.spec.ts.snap +++ b/src/plugin/test/__snapshots__/AlgebraBasePluginV1.spec.ts.snap @@ -120,4 +120,4 @@ Array [ ] `; -exports[`AlgebraBasePluginV1 AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `23708`; +exports[`AlgebraBasePluginV1 AlgebraBasePluginV1 external methods #changeFeeConfiguration feeConfig getter gas cost [ @skip-on-coverage ] 1`] = `23816`; diff --git a/src/plugin/test/__snapshots__/AlgebraPool.gas.spec.ts.snap b/src/plugin/test/__snapshots__/AlgebraPool.gas.spec.ts.snap index d407c3cde..9d5d29cde 100644 --- a/src/plugin/test/__snapshots__/AlgebraPool.gas.spec.ts.snap +++ b/src/plugin/test/__snapshots__/AlgebraPool.gas.spec.ts.snap @@ -1,143 +1,143 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee large swap crossing several initialized ticks 1`] = `215202`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee large swap crossing several initialized ticks 1`] = `216015`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle 1`] = `164907`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle 1`] = `165720`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle after 4h 1`] = `200345`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle after 4h 1`] = `201158`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle after 8h 1`] = `193131`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle after 8h 1`] = `193938`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle after 24h 1`] = `163709`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps dynamic fee small swap with filled volatilityOracle after 24h 1`] = `164522`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee large swap crossing several initialized ticks 1`] = `213973`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee large swap crossing several initialized ticks 1`] = `214750`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle 1`] = `163720`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle 1`] = `164497`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle after 4h 1`] = `197185`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle after 4h 1`] = `197962`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle after 8h 1`] = `208119`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle after 8h 1`] = `208896`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle after 24h 1`] = `163192`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Filled VolatilityOracle swaps static fee small swap with filled volatilityOracle after 24h 1`] = `163969`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn above current price burn when only position using ticks 1`] = `117289`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn above current price burn when only position using ticks 1`] = `117379`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn above current price entire position burn but other positions are using the ticks 1`] = `111137`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn above current price entire position burn but other positions are using the ticks 1`] = `111249`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn above current price partial position burn 1`] = `115937`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn above current price partial position burn 1`] = `116049`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn around current price burn when only position using ticks 1`] = `127168`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn around current price burn when only position using ticks 1`] = `127258`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn around current price entire position burn but other positions are using the ticks 1`] = `115545`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn around current price entire position burn but other positions are using the ticks 1`] = `115657`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn around current price partial position burn 1`] = `120345`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn around current price partial position burn 1`] = `120457`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn below current price burn when only position using ticks 1`] = `126725`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn below current price burn when only position using ticks 1`] = `126815`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn below current price entire position burn but other positions are using the ticks 1`] = `111798`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn below current price entire position burn but other positions are using the ticks 1`] = `111910`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn below current price partial position burn 1`] = `116598`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #burn below current price partial position burn 1`] = `116710`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #collect close to worst case 1`] = `52593`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #collect close to worst case 1`] = `52718`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #collect close to worst case, two tokens 1`] = `70312`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #collect close to worst case, two tokens 1`] = `70562`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint above current price add to position existing 1`] = `128469`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint above current price add to position existing 1`] = `128719`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint above current price new position mint first in range 1`] = `282332`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint above current price new position mint first in range 1`] = `282582`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint above current price second position in same range 1`] = `145569`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint above current price second position in same range 1`] = `145819`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint around current price add to position existing 1`] = `153538`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint around current price add to position existing 1`] = `153926`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint around current price new position mint first in range 1`] = `360446`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint around current price new position mint first in range 1`] = `360834`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint around current price second position in same range 1`] = `170638`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint around current price second position in same range 1`] = `171026`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint below current price add to position existing 1`] = `129037`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint below current price add to position existing 1`] = `129287`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint below current price new position mint first in range 1`] = `356677`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint below current price new position mint first in range 1`] = `356927`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint below current price second position in same range 1`] = `146137`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #mint below current price second position in same range 1`] = `146387`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #poke best case 1`] = `63711`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] Positions #poke best case 1`] = `63823`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block moves tick, no initialized crossings 1`] = `156630`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block moves tick, no initialized crossings 1`] = `157401`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block with no tick movement 1`] = `156599`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block with no tick movement 1`] = `157370`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block with no tick movement, static fee 1`] = `156075`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block with no tick movement, static fee 1`] = `156810`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block, large swap crossing a single initialized tick 1`] = `173190`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block, large swap crossing a single initialized tick 1`] = `173961`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block, large swap crossing several initialized ticks 1`] = `206740`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block, large swap crossing several initialized ticks 1`] = `207511`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block, large swap, no initialized crossings 1`] = `156697`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 first swap in block, large swap, no initialized crossings 1`] = `157468`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 large swap crossing several initialized ticks after some time passes 1`] = `206740`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 large swap crossing several initialized ticks after some time passes 1`] = `207511`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 large swap crossing several initialized ticks second time after some time passes 1`] = `225940`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 large swap crossing several initialized ticks second time after some time passes 1`] = `226711`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block moves tick, no initialized crossings 1`] = `126863`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block moves tick, no initialized crossings 1`] = `127400`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block with no tick movement 1`] = `126827`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block with no tick movement 1`] = `127364`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block, large swap crossing a single initialized tick 1`] = `142608`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block, large swap crossing a single initialized tick 1`] = `143145`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block, large swap crossing several initialized ticks 1`] = `176979`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 second swap in block, large swap crossing several initialized ticks 1`] = `177516`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 several large swaps with pauses 1`] = `233702`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 several large swaps with pauses 1`] = `234515`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 small swap after several large swaps with pauses 1`] = `164230`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact0For1 small swap after several large swaps with pauses 1`] = `165043`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact1For0 first swap in block moves tick, no initialized crossings 1`] = `156691`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact1For0 first swap in block moves tick, no initialized crossings 1`] = `157462`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact1For0 first swap in block with no tick movement 1`] = `156639`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact1For0 first swap in block with no tick movement 1`] = `157410`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact1For0 second swap in block with no tick movement 1`] = `126888`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap #swapExact1For0 second swap in block with no tick movement 1`] = `127425`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap farming connected first swap in block moves tick, no initialized crossings 1`] = `188038`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap farming connected first swap in block moves tick, no initialized crossings 1`] = `189457`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap farming connected first swap in block with no tick movement 1`] = `187986`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap farming connected first swap in block with no tick movement 1`] = `189405`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap farming connected second swap in block with no tick movement 1`] = `141135`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is off #swap farming connected second swap in block with no tick movement 1`] = `142320`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block moves tick, no initialized crossings 1`] = `165429`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block moves tick, no initialized crossings 1`] = `166200`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block with no tick movement 1`] = `165398`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block with no tick movement 1`] = `166169`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block with no tick movement, static fee 1`] = `156312`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block with no tick movement, static fee 1`] = `157047`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block, large swap crossing a single initialized tick 1`] = `182226`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block, large swap crossing a single initialized tick 1`] = `182997`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block, large swap crossing several initialized ticks 1`] = `216487`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block, large swap crossing several initialized ticks 1`] = `217258`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block, large swap, no initialized crossings 1`] = `165496`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 first swap in block, large swap, no initialized crossings 1`] = `166267`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 large swap crossing several initialized ticks after some time passes 1`] = `216487`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 large swap crossing several initialized ticks after some time passes 1`] = `217258`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 large swap crossing several initialized ticks second time after some time passes 1`] = `235687`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 large swap crossing several initialized ticks second time after some time passes 1`] = `236458`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block moves tick, no initialized crossings 1`] = `135662`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block moves tick, no initialized crossings 1`] = `136199`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block with no tick movement 1`] = `135626`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block with no tick movement 1`] = `136163`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block, large swap crossing a single initialized tick 1`] = `151644`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block, large swap crossing a single initialized tick 1`] = `152181`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block, large swap crossing several initialized ticks 1`] = `186726`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 second swap in block, large swap crossing several initialized ticks 1`] = `187263`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 several large swaps with pauses 1`] = `243449`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 several large swaps with pauses 1`] = `244262`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 small swap after several large swaps with pauses 1`] = `164467`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact0For1 small swap after several large swaps with pauses 1`] = `165280`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact1For0 first swap in block moves tick, no initialized crossings 1`] = `165501`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact1For0 first swap in block moves tick, no initialized crossings 1`] = `166272`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact1For0 first swap in block with no tick movement 1`] = `165449`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact1For0 first swap in block with no tick movement 1`] = `166220`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact1For0 second swap in block with no tick movement 1`] = `135698`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap #swapExact1For0 second swap in block with no tick movement 1`] = `136235`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap farming connected first swap in block moves tick, no initialized crossings 1`] = `196848`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap farming connected first swap in block moves tick, no initialized crossings 1`] = `198267`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap farming connected first swap in block with no tick movement 1`] = `196796`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap farming connected first swap in block with no tick movement 1`] = `198215`; -exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap farming connected second swap in block with no tick movement 1`] = `149945`; +exports[`AlgebraPool gas tests [ @skip-on-coverage ] fee is on #swap farming connected second swap in block with no tick movement 1`] = `151130`; diff --git a/src/plugin/test/__snapshots__/OracleLibrary.spec.ts.snap b/src/plugin/test/__snapshots__/OracleLibrary.spec.ts.snap index 48c52fdca..d2f715728 100644 --- a/src/plugin/test/__snapshots__/OracleLibrary.spec.ts.snap +++ b/src/plugin/test/__snapshots__/OracleLibrary.spec.ts.snap @@ -1,5 +1,5 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`OracleLibrary #consult gas test [ @skip-on-coverage ] 1`] = `12255`; +exports[`OracleLibrary #consult gas test [ @skip-on-coverage ] 1`] = `12593`; -exports[`OracleLibrary #getQuoteAtTick gas test [ @skip-on-coverage ] 1`] = `1134`; +exports[`OracleLibrary #getQuoteAtTick gas test [ @skip-on-coverage ] 1`] = `1224`; diff --git a/src/plugin/test/__snapshots__/SlidingFee.spec.ts.snap b/src/plugin/test/__snapshots__/SlidingFee.spec.ts.snap index 08bddc64a..1bf91b34b 100644 --- a/src/plugin/test/__snapshots__/SlidingFee.spec.ts.snap +++ b/src/plugin/test/__snapshots__/SlidingFee.spec.ts.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`SlidingFee #getFee gas cost [ @skip-on-coverage ] gas cost of same tick 1`] = `26776`; +exports[`SlidingFee #getFee gas cost [ @skip-on-coverage ] gas cost of same tick 1`] = `26936`; -exports[`SlidingFee #getFee gas cost [ @skip-on-coverage ] gas cost of tick decrease 1`] = `31875`; +exports[`SlidingFee #getFee gas cost [ @skip-on-coverage ] gas cost of tick decrease 1`] = `32188`; -exports[`SlidingFee #getFee gas cost [ @skip-on-coverage ] gas cost of tick increase 1`] = `31766`; +exports[`SlidingFee #getFee gas cost [ @skip-on-coverage ] gas cost of tick increase 1`] = `32031`; diff --git a/src/plugin/test/__snapshots__/VolatilityOracle.spec.ts.snap b/src/plugin/test/__snapshots__/VolatilityOracle.spec.ts.snap index a1c05ceea..0865c8115 100644 --- a/src/plugin/test/__snapshots__/VolatilityOracle.spec.ts.snap +++ b/src/plugin/test/__snapshots__/VolatilityOracle.spec.ts.snap @@ -1,10 +1,10 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`VolatilityOracle #getTimepoints before initialization gas for getTimepoints since most recent [ @skip-on-coverage ] 1`] = `8271`; +exports[`VolatilityOracle #getTimepoints before initialization gas for getTimepoints since most recent [ @skip-on-coverage ] 1`] = `8472`; -exports[`VolatilityOracle #getTimepoints before initialization gas for single timepoint at current time [ @skip-on-coverage ] 1`] = `6327`; +exports[`VolatilityOracle #getTimepoints before initialization gas for single timepoint at current time [ @skip-on-coverage ] 1`] = `6480`; -exports[`VolatilityOracle #getTimepoints before initialization gas for single timepoint at current time after some time [ @skip-on-coverage ] 1`] = `8137`; +exports[`VolatilityOracle #getTimepoints before initialization gas for single timepoint at current time after some time [ @skip-on-coverage ] 1`] = `8338`; exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 fetch many values 1`] = ` Object { @@ -20,17 +20,17 @@ Object { } `; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas all of last 20 seconds [ @skip-on-coverage ] 1`] = `100743`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas all of last 20 seconds [ @skip-on-coverage ] 1`] = `103620`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas between oldest and oldest + 1 [ @skip-on-coverage ] 1`] = `17966`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas between oldest and oldest + 1 [ @skip-on-coverage ] 1`] = `18155`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas latest equal [ @skip-on-coverage ] 1`] = `6327`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas latest equal [ @skip-on-coverage ] 1`] = `6480`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas latest transform [ @skip-on-coverage ] 1`] = `10137`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas latest transform [ @skip-on-coverage ] 1`] = `10338`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas middle [ @skip-on-coverage ] 1`] = `17453`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas middle [ @skip-on-coverage ] 1`] = `17642`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas oldest [ @skip-on-coverage ] 1`] = `17030`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 5 gas oldest [ @skip-on-coverage ] 1`] = `17231`; exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 fetch many values 1`] = ` Object { @@ -46,56 +46,56 @@ Object { } `; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas all of last 20 seconds [ @skip-on-coverage ] 1`] = `100395`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas all of last 20 seconds [ @skip-on-coverage ] 1`] = `103272`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas between oldest and oldest + 1 [ @skip-on-coverage ] 1`] = `17908`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas between oldest and oldest + 1 [ @skip-on-coverage ] 1`] = `18097`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas latest equal [ @skip-on-coverage ] 1`] = `6327`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas latest equal [ @skip-on-coverage ] 1`] = `6480`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas latest transform [ @skip-on-coverage ] 1`] = `10166`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas latest transform [ @skip-on-coverage ] 1`] = `10367`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas middle [ @skip-on-coverage ] 1`] = `17424`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas middle [ @skip-on-coverage ] 1`] = `17613`; -exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas oldest [ @skip-on-coverage ] 1`] = `16972`; +exports[`VolatilityOracle #getTimepoints initialized with 5 timepoints with starting time of 4294967291 gas oldest [ @skip-on-coverage ] 1`] = `17173`; -exports[`VolatilityOracle #initialize gas [ @skip-on-coverage ] 1`] = `50443`; +exports[`VolatilityOracle #initialize gas [ @skip-on-coverage ] 1`] = `50781`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(0) [ @skip-on-coverage ] 1`] = `6335`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(0) [ @skip-on-coverage ] 1`] = `6488`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(0) after 5 seconds [ @skip-on-coverage ] 1`] = `16887`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(0) after 5 seconds [ @skip-on-coverage ] 1`] = `17106`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(5) after 5 seconds [ @skip-on-coverage ] 1`] = `6469`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(5) after 5 seconds [ @skip-on-coverage ] 1`] = `6622`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(24h ago) [ @skip-on-coverage ] 1`] = `13127`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(24h ago) [ @skip-on-coverage ] 1`] = `13316`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(24h ago) after 5 seconds [ @skip-on-coverage ] 1`] = `14592`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(24h ago) after 5 seconds [ @skip-on-coverage ] 1`] = `14781`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(24h ago) after 15 minutes [ @skip-on-coverage ] 1`] = `54263`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(24h ago) after 15 minutes [ @skip-on-coverage ] 1`] = `54452`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(200 * 13 + 5) [ @skip-on-coverage ] 1`] = `49033`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(200 * 13 + 5) [ @skip-on-coverage ] 1`] = `49222`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(200 * 13) [ @skip-on-coverage ] 1`] = `48978`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(200 * 13) [ @skip-on-coverage ] 1`] = `49179`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(middle) [ @skip-on-coverage ] 1`] = `12476`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(middle) [ @skip-on-coverage ] 1`] = `12677`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(oldest) [ @skip-on-coverage ] 1`] = `47091`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(oldest) [ @skip-on-coverage ] 1`] = `47244`; -exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(oldest) after 5 seconds [ @skip-on-coverage ] 1`] = `47091`; +exports[`VolatilityOracle full volatilityOracle gas cost of getTimepoints(oldest) after 5 seconds [ @skip-on-coverage ] 1`] = `47244`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(0) [ @skip-on-coverage ] 1`] = `6335`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(0) [ @skip-on-coverage ] 1`] = `6488`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(0) after 5 seconds [ @skip-on-coverage ] 1`] = `8174`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(0) after 5 seconds [ @skip-on-coverage ] 1`] = `8375`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(5) after 5 seconds [ @skip-on-coverage ] 1`] = `6469`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(5) after 5 seconds [ @skip-on-coverage ] 1`] = `6622`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(24h ago) after 12 hours [ @skip-on-coverage ] 1`] = `69074`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(24h ago) after 12 hours [ @skip-on-coverage ] 1`] = `69275`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(200 * 1 + 5) [ @skip-on-coverage ] 1`] = `71383`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(200 * 1 + 5) [ @skip-on-coverage ] 1`] = `71584`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(200 * 1) [ @skip-on-coverage ] 1`] = `65785`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(200 * 1) [ @skip-on-coverage ] 1`] = `65938`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(middle) [ @skip-on-coverage ] 1`] = `12516`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(middle) [ @skip-on-coverage ] 1`] = `12717`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(oldest) [ @skip-on-coverage ] 1`] = `47131`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(oldest) [ @skip-on-coverage ] 1`] = `47284`; -exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(oldest) after 5 seconds [ @skip-on-coverage ] 1`] = `47131`; +exports[`VolatilityOracle full volatilityOracle, maximal density gas cost of getTimepoints(oldest) after 5 seconds [ @skip-on-coverage ] 1`] = `47284`; diff --git a/src/plugin/test/almRebalances.json b/src/plugin/test/almRebalances.json index 3a207b6c7..54751b7be 100644 --- a/src/plugin/test/almRebalances.json +++ b/src/plugin/test/almRebalances.json @@ -22440,117 +22440,6 @@ } } }, - { - "transactionHash": "0x538e4461d7fa7d0b9100f63654e32d0e82cf1ae62877b71fe86e31d562e481bb", - "state": { - "depositToken": 0, - "blockNumber": 38112445, - "lastRebalancePrice": "370296838670246037", - "state": "2", - "currentTick": "8224", - "currentPrice": "439393952267665177", - "twapSlow": "377210740912768029", - "twapFast": "414842641430683733", - "depositTokenBalance": "0", - "pairedTokenBalance": "0", - "usedToken0": "293692461285167642596904", - "usedToken1": "0", - "priceChangeTrigger": "100", - "simulateTrigger": "9400", - "normalTrigger": "8000", - "underTrigger": "7700", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "900", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "8220", - "topTick": "887220" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x96921e5895ea65640a1a8317c4c3beed28ffd528f0fd1f50733e5c6008e39d09", - "state": { - "depositToken": 0, - "blockNumber": 38114903, - "lastRebalancePrice": "439393952267665177", - "state": "3", - "currentTick": "8173", - "currentPrice": "441640472858491523", - "twapSlow": "444965061803580467", - "twapFast": "441640472858491523", - "depositTokenBalance": "282135261859350582752780", - "pairedTokenBalance": "0", - "usedToken0": "282135261859350582754688", - "usedToken1": "0", - "priceChangeTrigger": "100", - "simulateTrigger": "9400", - "normalTrigger": "8000", - "underTrigger": "7700", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "900", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "8220", - "topTick": "13320" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x72c90cb3986552ec557d883b66970e06ce4f803100c31915300e9d1e10294b1b", - "state": { - "depositToken": 0, - "blockNumber": 38117364, - "lastRebalancePrice": "441640472858491523", - "state": "0", - "currentTick": "7911", - "currentPrice": "453363771736942526", - "twapSlow": "453001243876122102", - "twapFast": "453363771736942526", - "depositTokenBalance": "3201196668600000000000", - "pairedTokenBalance": "0", - "usedToken0": "285336458527950582754687", - "usedToken1": "0", - "priceChangeTrigger": "100", - "simulateTrigger": "9400", - "normalTrigger": "8000", - "underTrigger": "7700", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "900", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "4000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "7920", - "topTick": "13020" - }, - "limitPosition": null - } - }, { "transactionHash": "0xf150e13166d2d0f6a87316dc51567708a55ff4b38212c39019acf7e1a9e5368b", "state": { @@ -40431,43 +40320,6 @@ } } }, - { - "transactionHash": "0x31991eeba6c6894168339939958bba4d86d1a08137ed7b0162e9341dc2560cf7", - "state": { - "depositToken": 0, - "blockNumber": 44349151, - "lastRebalancePrice": "210762757486194186", - "state": "2", - "currentTick": "517", - "currentPrice": "949616162817984047", - "twapSlow": "952183462389618715", - "twapFast": "948477363777678762", - "depositTokenBalance": "81818660638796358128589", - "pairedTokenBalance": "0", - "usedToken0": "275421033294174531318774", - "usedToken1": "658759974015514072037", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "8000", - "underTrigger": "7700", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "900", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2500", - "baseHighPct": "1500", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "540", - "topTick": "3420" - }, - "limitPosition": null - } - }, { "transactionHash": "0x97c4f5788937c30acf7d3f5930b04b2ba46de5ecd9451dbc54c0114e777435f5", "state": { @@ -59308,43 +59160,6 @@ } } }, - { - "transactionHash": "0xa99259be21f4de03cff3760f312a59d4430bbeca2193a91b8af777399d99ee8d", - "state": { - "depositToken": 0, - "blockNumber": 46510117, - "lastRebalancePrice": "463772298795160589", - "state": "2", - "currentTick": "6547", - "currentPrice": "519614926765430097", - "twapSlow": "520342860701676913", - "twapFast": "519614926765430097", - "depositTokenBalance": "2948031285363365473117", - "pairedTokenBalance": "1", - "usedToken0": "425167551670617577643857", - "usedToken1": "1", - "priceChangeTrigger": "100", - "simulateTrigger": "9300", - "normalTrigger": "8000", - "underTrigger": "7700", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "500", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "6600", - "topTick": "8820" - }, - "limitPosition": null - } - }, { "transactionHash": "0x7e3a1b9c0330ac510e9b5f497aa9aa0c74e9a0f256acc33081be9e7efad79693", "state": { diff --git a/src/plugin/test/almRebalances3.json b/src/plugin/test/almRebalances3.json index 50329e755..76a5ddb1e 100644 --- a/src/plugin/test/almRebalances3.json +++ b/src/plugin/test/almRebalances3.json @@ -360,117 +360,6 @@ } } }, - { - "transactionHash": "0x15b3cf212abf442811e6faff815a161c2f1d1530ed4269c584415f0f79193935", - "state": { - "depositToken": 0, - "blockNumber": 194538919, - "lastRebalancePrice": "2839563", - "state": "0", - "currentTick": "-265887", - "currentPrice": "2839563", - "twapSlow": "2839563", - "twapFast": "2839563", - "depositTokenBalance": "0", - "pairedTokenBalance": "487081", - "usedToken0": "18724326255997967371", - "usedToken1": "532774914", - "priceChangeTrigger": "200", - "simulateTrigger": "9300", - "normalTrigger": "8300", - "underTrigger": "8000", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-268000", - "topTick": "-265600" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x7538a1e74e393079e6b5d8f7e1d912de5f56377f476d67121ade5dae83b4a3bd", - "state": { - "depositToken": 0, - "blockNumber": 194554563, - "lastRebalancePrice": "2839563", - "state": "1", - "currentTick": "-265887", - "currentPrice": "2839563", - "twapSlow": "2839563", - "twapFast": "2839563", - "depositTokenBalance": "158057790", - "pairedTokenBalance": "7108", - "usedToken0": "18724326255997967370", - "usedToken1": "532774913", - "priceChangeTrigger": "200", - "simulateTrigger": "9300", - "normalTrigger": "8300", - "underTrigger": "8000", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-268000", - "topTick": "-265600" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0xbfea609fe663e8a669ae9221ecbd2e181baff14135bec93fe75899189779d1a5", - "state": { - "depositToken": 0, - "blockNumber": 194570065, - "lastRebalancePrice": "2839563", - "state": "1", - "currentTick": "-265887", - "currentPrice": "2839563", - "twapSlow": "2839563", - "twapFast": "2839563", - "depositTokenBalance": "158057789", - "pairedTokenBalance": "7107", - "usedToken0": "18724326255997967369", - "usedToken1": "532774912", - "priceChangeTrigger": "200", - "simulateTrigger": "9300", - "normalTrigger": "8300", - "underTrigger": "8000", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-268000", - "topTick": "-265600" - }, - "limitPosition": null - } - }, { "transactionHash": "0xff58ed421bb8c26c28dc627a03a87946c9b3d0bb54601b58592e67cddaa728d2", "state": { @@ -1231,117 +1120,6 @@ } } }, - { - "transactionHash": "0x343185e10a6bf5f677da2a068ee4e62d7c24b674757fd33c8bd441256639da66", - "state": { - "depositToken": 0, - "blockNumber": 197209213, - "lastRebalancePrice": "2192984", - "state": "2", - "currentTick": "-268149", - "currentPrice": "2264744", - "twapSlow": "2207726", - "twapFast": "2264744", - "depositTokenBalance": "0", - "pairedTokenBalance": "14244", - "usedToken0": "33329082425109916983", - "usedToken1": "491000683", - "priceChangeTrigger": "200", - "simulateTrigger": "9300", - "normalTrigger": "8300", - "underTrigger": "8000", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-270200", - "topTick": "-267800" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0x1f0651fcc5e0ea1620652e7817f93e7fb6f10990d1db9be169875d789db60c20", - "state": { - "depositToken": 0, - "blockNumber": 197224685, - "lastRebalancePrice": "2264744", - "state": "1", - "currentTick": "-268149", - "currentPrice": "2264744", - "twapSlow": "2264744", - "twapFast": "2264744", - "depositTokenBalance": "63935637", - "pairedTokenBalance": "6120", - "usedToken0": "33390890482911399578", - "usedToken1": "491436975", - "priceChangeTrigger": "200", - "simulateTrigger": "9300", - "normalTrigger": "8300", - "underTrigger": "8000", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-270200", - "topTick": "-267800" - }, - "limitPosition": null - } - }, - { - "transactionHash": "0xa2d7ea3399b9e30aecafc878148a78f4add259b0afb295bfa5e2f956bbb88e90", - "state": { - "depositToken": 0, - "blockNumber": 197240240, - "lastRebalancePrice": "2264744", - "state": "1", - "currentTick": "-268197", - "currentPrice": "2253899", - "twapSlow": "2262028", - "twapFast": "2253899", - "depositTokenBalance": "63935636", - "pairedTokenBalance": "6119", - "usedToken0": "38108136077448945920", - "usedToken1": "480778551", - "priceChangeTrigger": "200", - "simulateTrigger": "9300", - "normalTrigger": "8300", - "underTrigger": "8000", - "overTrigger": "9100", - "depositTokenUnusedThreshold": "100", - "extremeVolatility": "2500", - "highVolatility": "600", - "someVolatility": "100", - "dtrDelta": "300", - "baseLowPct": "2000", - "baseHighPct": "1000", - "limitReservePct": "500" - }, - "rebalance": { - "basePosition": { - "bottomTick": "-270400", - "topTick": "-267800" - }, - "limitPosition": null - } - }, { "transactionHash": "0x644b06288c264f23be7eadf665c4625604c1783d9773a13efef193241c4a5685", "state": { From 7de653b6307ecd47cdfba908fadd27b87e97da6f Mon Sep 17 00:00:00 2001 From: fourlen Date: Wed, 30 Apr 2025 14:34:14 +0300 Subject: [PATCH 40/42] +tests --- .../contracts/base/BaseRebalanceManager.sol | 4 +- .../contracts/test/MockRebalanceManager.sol | 4 + src/plugin/test/AlgebraBasePluginALM.spec.ts | 901 ++++++++++-------- 3 files changed, 534 insertions(+), 375 deletions(-) diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 09bac4212..8bbdcf239 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -216,7 +216,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - require(gasleft() >= 1000000, 'Not enough gas left'); + require(gasleft() >= 1600000, 'Not enough gas left'); try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; @@ -281,7 +281,7 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { twapResult.percentageOfDepositToken = 10000; } else { uint256 totalTokensAmount = twapResult.totalDepositToken + twapResult.totalPairedInDeposit; - uint16 percentageOfDepositToken = totalTokensAmount == 0 ? 0 : uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); + uint16 percentageOfDepositToken = uint16((twapResult.totalDepositToken * 10000) / totalTokensAmount); twapResult.percentageOfDepositToken = percentageOfDepositToken; } diff --git a/src/plugin/contracts/test/MockRebalanceManager.sol b/src/plugin/contracts/test/MockRebalanceManager.sol index 808b8b541..0994b6e4d 100644 --- a/src/plugin/contracts/test/MockRebalanceManager.sol +++ b/src/plugin/contracts/test/MockRebalanceManager.sol @@ -22,6 +22,10 @@ contract MockRebalanceManager is RebalanceManager { Thresholds memory _thresholds ) RebalanceManager(_vault, _minTimeBetweenRebalances, _thresholds) {} + function validateThresholds(Thresholds memory _thresholds) public pure { + _validateThresholds(_thresholds); + } + function setTokens(address _depositToken, address _pairedToken) public { (depositToken, pairedToken) = (_depositToken, _pairedToken); } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 6e526f585..c210f16d3 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -39,6 +39,22 @@ describe('AlgebraBasePluginALM', () => { let minTick = getMinTick(60); let maxTick = getMaxTick(60); + const DEFAULT_THRESHOLDS = { + depositTokenUnusedThreshold: 100, + simulate: 9400, // было 9300 + normalThreshold: 8100, // было 8000 + underInventoryThreshold: 7800, // было 7700 + overInventoryThreshold: 9100, + priceChangeThreshold: 50, + extremeVolatility: 2500, + highVolatility: 900, // было 500 + someVolatility: 200, // было 100 + dtrDelta: 300, + baseLowPct: 3000, // было 2000 + baseHighPct: 1500, // было 3000 + limitReservePct: 500, + } + async function initializeAtZeroTick(pool: MockPool) { await pool.initialize(encodePriceSqrt(1, 1)); } @@ -50,27 +66,11 @@ describe('AlgebraBasePluginALM', () => { // сделал отдельной фикстурой, потому что сначала пул должен проинициализироваться // потом уже должен деплоиться rebalanceManager, потому что он в конструкторе достает из пула tickSpacing async function deployAndSetRebalanceManager() { - const thresholds = { - depositTokenUnusedThreshold: 100, - simulate: 9400, // было 9300 - normalThreshold: 8100, // было 8000 - underInventoryThreshold: 7800, // было 7700 - overInventoryThreshold: 9100, - priceChangeThreshold: 50, - extremeVolatility: 2500, - highVolatility: 900, // было 500 - someVolatility: 200, // было 100 - dtrDelta: 300, - baseLowPct: 3000, // было 2000 - baseHighPct: 1500, // было 3000 - limitReservePct: 500, - } - const rebalanceManagerFactory = await ethers.getContractFactory('MockRebalanceManager'); rebalanceManager = (await rebalanceManagerFactory.deploy( await mockVault.getAddress(), 7200, - thresholds, + DEFAULT_THRESHOLDS, )) as any as MockRebalanceManager; await plugin.setRebalanceManager(rebalanceManager); @@ -567,6 +567,87 @@ describe('AlgebraBasePluginALM', () => { await deployAndSetRebalanceManager(); }); + describe('validate thresholds', () => { + it('should revert with invalid price change threshold', async () => { + const t = { ...DEFAULT_THRESHOLDS, priceChangeThreshold: 10000 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('Invalid price change threshold'); + }); + + it('should revert with invalid base low percent', async () => { + const t = { ...DEFAULT_THRESHOLDS, baseLowPct: 0 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('Invalid base low percent'); + }); + + it('should revert with invalid base high percent', async () => { + const t = { ...DEFAULT_THRESHOLDS, baseHighPct: 0 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('Invalid base high percent'); + }); + + it('should revert with invalid limit reserve percent', async () => { + const t = { ...DEFAULT_THRESHOLDS, limitReservePct: 0 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('Invalid limit reserve percent'); + }); + + it('should revert if _underInventoryThreshold <= 6000', async () => { + const t = { ...DEFAULT_THRESHOLDS, underInventoryThreshold: 6000 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_underInventoryThreshold must be > 6000'); + }); + + it('should revert if _normalThreshold <= _underInventoryThreshold', async () => { + const t = { ...DEFAULT_THRESHOLDS, underInventoryThreshold: 7000, normalThreshold: 7000 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_normalThreshold must be > _underInventoryThreshold'); + }); + + it('should revert if _overInventoryThreshold <= _normalThreshold', async () => { + const t = { ...DEFAULT_THRESHOLDS, normalThreshold: 8000, overInventoryThreshold: 8000 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_overInventoryThreshold must be > _normalThreshold'); + }); + + it('should revert if simulate <= _overInventoryThreshold', async () => { + const t = { ...DEFAULT_THRESHOLDS, overInventoryThreshold: 8500, simulate: 8500 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('Simulate must be > _overInventoryThreshold'); + }); + + it('should revert if simulate >= stopThresholdBps', async () => { + const t = { ...DEFAULT_THRESHOLDS, stopThresholdBps: 9500, simulate: 9500 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('Simulate must be < 9500'); + }); + + it('should revert if _dtrDelta > 10000', async () => { + const t = { ...DEFAULT_THRESHOLDS, dtrDelta: 10001 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_dtrDelta must be <= 10000'); + }); + + it('should revert if highVolatility < someVolatility', async () => { + const t = { ...DEFAULT_THRESHOLDS, someVolatility: 300, highVolatility: 299 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_highVolatility must be >= someVolatility'); + }); + + it('should revert if extremeVolatility < highVolatility', async () => { + const t = { ...DEFAULT_THRESHOLDS, highVolatility: 400, extremeVolatility: 399 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_extremeVolatility must be >= highVolatility'); + }); + + it('should revert if depositTokenUnusedThreshold < 100', async () => { + const t = { ...DEFAULT_THRESHOLDS, depositTokenUnusedThreshold: 99 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); + }); + + it('should revert if depositTokenUnusedThreshold > 10000', async () => { + const t = { ...DEFAULT_THRESHOLDS, depositTokenUnusedThreshold: 10001 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_depositTokenUnusedThreshold must be 100 <= _depositTokenUnusedThreshold <= 10000'); + }); + + it('should revert if someVolatility > 300', async () => { + const t = { ...DEFAULT_THRESHOLDS, someVolatility: 301 }; + await expect(rebalanceManager.validateThresholds(t)).to.be.revertedWith('_someVolatility must be <= 300'); + }); + + it('should pass with valid thresholds', async () => { + await rebalanceManager.validateThresholds(DEFAULT_THRESHOLDS); + }); + }); + describe('setters', () => { before('prepare signers', async () => { [wallet, other] = await (ethers as any).getSigners(); @@ -577,6 +658,11 @@ describe('AlgebraBasePluginALM', () => { expect(await mockFactory.hasRoleOrOwner(await rebalanceManager.ALGEBRA_BASE_PLUGIN_MANAGER(), wallet)).to.be.equals(true); }); + it('should revert for unauthorized address', async () => { + const newVault = '0x1234567890123456789012345678901234567890'; + await expect(rebalanceManager.connect(other).setVault(newVault)).to.be.reverted; + }); + it('setPriceChangeThreshold', async () => { await expect(rebalanceManager.setPriceChangeThreshold(10000)).to.be.revertedWith('Invalid price change threshold'); await rebalanceManager.setPriceChangeThreshold(50); @@ -721,412 +807,481 @@ describe('AlgebraBasePluginALM', () => { const allowTokenCombos = [ { allowToken1: false }, { allowToken1: true }, - ]; + ]; + + const defaultSwapToTickCombos = [ + {defaultSwapToTick: 0}, + {defaultSwapToTick: 1} + ] + + defaultSwapToTickCombos.forEach(({ defaultSwapToTick }) => { + allowTokenCombos.forEach(({allowToken1 }) => { + describe(`rebalances (allowToken1=${allowToken1})`, () => { + beforeEach(async () => { + await rebalanceManager.setAllowToken1(allowToken1); + }); - allowTokenCombos.forEach(({allowToken1 }) => { - describe(`rebalances (allowToken1=${allowToken1})`, () => { - beforeEach(async () => { - await rebalanceManager.setAllowToken1(allowToken1); - }); + it('rebalance could call only plugin', async () => { + await expect(rebalanceManager.obtainTWAPAndRebalance(0n, 0n, 0n, 0n)).to.be.revertedWith('Should only called by plugin'); + }); - it('first rebalance over -> over, pairedToken >= depositToken', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('first rebalance over -> over, pairedToken >= depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - it('first rebalance over -> over, pairedToken < depositToken', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('first rebalance with low percentageOfDepositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); - it('over state no rebalance - some volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await setTotalAmounts(1000n, 9000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); - await checkState(State.OverInventory); - }); + it('first rebalance over -> over, pairedToken < depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('over state no rebalance - some volatility, pairedToken < depositToken', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); - await checkState(State.OverInventory); - }); + it('over state no rebalance - some volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('under -> under', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); + await checkState(State.OverInventory); + }); - await rebalanceManager.setDepositTokenBalance(0n); - await rebalanceManager.setState(State.UnderInventory); - await setTotalAmounts(0n, 10000n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - }); + it('over state no rebalance - some volatility, pairedToken < depositToken', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('under state no rebalance - some volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await rebalanceManager.setTokens('0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000000'); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.OverInventory); + await checkState(State.OverInventory); + }); - await rebalanceManager.setDepositTokenBalance(0n); - await rebalanceManager.setState(State.UnderInventory); - await setTotalAmounts(0n, 10000n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.UnderInventory); - await checkState(State.UnderInventory); - }); + it('under -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('over -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(0n); + await rebalanceManager.setState(State.UnderInventory); + await setTotalAmounts(0n, 10000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + it('under state no rebalance - some volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('over -> normal -> over', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal); - await checkState(State.Normal); - await setTotalAmounts(10000n, 0n, allowToken1); - await rebalanceManager.advanceTime(7200); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory); - await checkState(State.OverInventory); - }); + await rebalanceManager.setDepositTokenBalance(0n); + await rebalanceManager.setState(State.UnderInventory); + await setTotalAmounts(0n, 10000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('over -> special, high volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - it('over -> special, high volatility, rounded tick', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> normal -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal); + await checkState(State.Normal); + await setTotalAmounts(10000n, 0n, allowToken1); + await rebalanceManager.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory); + await checkState(State.OverInventory); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(2040)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - }); + it('over -> special, high volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - extreme volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(3000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.ExtremeVolatility, State.Special); - await checkState(State.Special); - }); + it('over -> special, high volatility, rounded tick', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - too soon', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(2040)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await mockPool.swapToTick(100); - await checkState(State.Normal); - await plugin.advanceTime(1800); - await expect(mockPool.swapToTick(1000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - await checkState(State.Normal); - }); + it('no rebalance - extreme volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('no rebalance - volatility too low', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(3000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.ExtremeVolatility, State.Special); + await checkState(State.Special); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(250)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); - await checkState(State.OverInventory); - }); + it('no rebalance - too soon', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await mockPool.swapToTick(100); + await checkState(State.Normal); + await plugin.advanceTime(1800); + await expect(mockPool.swapToTick(1000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + await checkState(State.Normal); + }); - it('no rebalance - percentageOfDepositTokenUnused too low', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('no rebalance - volatility too low', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - // await rebalanceManager.setDepositTokenBalance(0n); - await setTotalAmounts(9200n, 800n, allowToken1); - await plugin.advanceTime(3600); - await mockPool.swapToTick(10); - await checkState(State.Normal); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(250)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + await checkState(State.OverInventory); + }); - await plugin.advanceTime(7200); - await rebalanceManager.advanceTime(7200); + it('no rebalance - percentageOfDepositTokenUnused too low', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - // await rebalanceManager.setState(1); // normal state - await expect(mockPool.swapToTick(11)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeedWithPending, State.Normal); - await checkState(State.Normal); - }); + // await rebalanceManager.setDepositTokenBalance(0n); + await setTotalAmounts(9200n, 800n, allowToken1); + await plugin.advanceTime(3600); + await mockPool.swapToTick(defaultSwapToTick); + await checkState(State.Normal); - it('no rebalance - high volatility in the same block', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await rebalanceManager.advanceTime(3600); - await network.provider.send("evm_setAutomine", [false]); - // https://github.com/NomicFoundation/hardhat/issues/4090 - await mockPool.swapToTick(1, { gasLimit: 2000000 }); - const tx = await mockPool.swapToTick(2000, { gasLimit: 2000000 }); - await network.provider.send("evm_mine"); - await expect(tx).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); - await checkState(State.Normal); - await network.provider.send("evm_setAutomine", [true]); - }); + await plugin.advanceTime(7200); + await rebalanceManager.advanceTime(7200); - it('rebalance not triggered for low volatility', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + // await rebalanceManager.setState(1); // normal state + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeedWithPending, State.Normal); + await checkState(State.Normal); + }); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); - await checkState(State.OverInventory); - }); + it('no rebalance - high volatility in the same block', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await rebalanceManager.advanceTime(3600); + await network.provider.send("evm_setAutomine", [false]); + // https://github.com/NomicFoundation/hardhat/issues/4090 + await mockPool.swapToTick(1, { gasLimit: 2000000 }); + const tx = await mockPool.swapToTick(2000, { gasLimit: 2000000 }); + await network.provider.send("evm_mine"); + await expect(tx).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Special); + await checkState(State.Normal); + await network.provider.send("evm_setAutomine", [true]); + }); - it('rebalance triggered for high volatility after time threshold', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(3600); - await mockPool.swapToTick(2000); - await checkState(State.Special); - await plugin.advanceTime(3600); - await expect(mockPool.swapToTick(10)) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeed, State.Special); - await checkState(State.Special); - }); + it('rebalance not triggered for low volatility', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - it('over -> over -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - - await setTotalAmounts(8100n, 1900n, allowToken1); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(10)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(300)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.TooSoon, State.Normal); + await checkState(State.OverInventory); + }); - it('over -> normal -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8100n, 1900n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(10)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(10)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + it('rebalance triggered for high volatility after time threshold', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(3600); + await mockPool.swapToTick(2000); + await checkState(State.Special); + await plugin.advanceTime(3600); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeed, State.Special); + await checkState(State.Special); + }); - it('over -> under -> over', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(7500n, 2500n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - - await setTotalAmounts(9500n, 500n, allowToken1); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + it('over -> over -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await setTotalAmounts(8100n, 1900n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - it('over -> under -> normal', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(7500n, 2500n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - - await setTotalAmounts(8100n, 1900n, allowToken1); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - }); + it('over -> normal -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8100n, 1900n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - it('over -> over -> under', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - - await setTotalAmounts(7500n, 2500n, allowToken1); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - }); + it('over -> under -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(7500n, 2500n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await setTotalAmounts(9500n, 500n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - it('over -> over -> current, priceChange < priceChangeThreshold', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - - await setTotalAmounts(9200n, 800n, allowToken1); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(100)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); - await checkState(State.OverInventory); - }); + it('over -> under -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(7500n, 2500n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await setTotalAmounts(8100n, 1900n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.Normal) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); - it('over -> normal -> under', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); - await checkState(State.Normal); - - await setTotalAmounts(7700n, 2300n, allowToken1); - await rebalanceManager.advanceTime(7200); - await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(0)) - .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) - .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); - await checkState(State.UnderInventory); - }); + it('over -> under -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(7500n, 2500n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await setTotalAmounts(8000n, 2000n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('no rebalance - no vault, should pause', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); - - await mockVault.setShouldRevertOnRebalance(true); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(8000n, 2000n, allowToken1); - await plugin.advanceTime(5000); - await mockPool.swapToTick(0); - expect(await rebalanceManager.paused()).to.be.eq(true); - await checkState(State.Special); - - await expect(mockPool.swapToTick(0)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); - - await rebalanceManager.unpause(); - expect(await rebalanceManager.paused()).to.be.eq(false); - }); + it('over -> over -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await setTotalAmounts(7500n, 2500n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('no rebalance without rebalance manager', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('over -> over -> current, priceChange < priceChangeThreshold', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + + await setTotalAmounts(9200n, 800n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(100)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.OverInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); - await plugin.setRebalanceManager(ZERO_ADDRESS); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(0)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); - }); + it('over -> normal -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await setTotalAmounts(7700n, 2300n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(defaultSwapToTick)) + .to.emit(rebalanceManager, 'MockUpdateStatus').withArgs(true, State.UnderInventory) + .to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); - it('no rebalance without vault', async () => { - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + it('no rebalance - no vault, should pause', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await mockVault.setShouldRevertOnRebalance(true); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(5000); + await mockPool.swapToTick(defaultSwapToTick); + expect(await rebalanceManager.paused()).to.be.eq(true); + await checkState(State.Special); + + await expect(mockPool.swapToTick(defaultSwapToTick)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + + await rebalanceManager.unpause(); + await expect(rebalanceManager.unpause()).to.be.revertedWith('Already unpaused'); + expect(await rebalanceManager.paused()).to.be.eq(false); + }); - await rebalanceManager.setVault(ZERO_ADDRESS); - - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(500_000, {gasLimit: 1_000_000})).not.to.emit(rebalanceManager, 'MockDecideRebalance'); - }); + it('no rebalance without rebalance manager', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await plugin.setRebalanceManager(ZERO_ADDRESS); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + }); + + it('no rebalance without vault', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setVault(ZERO_ADDRESS); + + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick, {gasLimit: 1_000_000})).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + }); + + it('should revert with insufficient gas limit', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(0, {gasLimit: 1_000_000})).to.revertedWith('Not enough gas left'); + }); + + it('should not rebalance with narrow positions', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setPercentages(100n, 100n, 100n); - it('no rebalance on extreme ticks', async () => { - initTick = 500_000; + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await mockPool.swapToTick(0); + expect(await rebalanceManager.lastRebalanceTimestamp()).to.be.equals(0n); + }); + + it('no rebalance on extreme ticks', async () => { + initTick = 500_000; - await rebalanceManager.setDecimals(18, 18); - await plugin.initializeALM(rebalanceManager, 3600, 300); + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); - await rebalanceManager.setDepositTokenBalance(10000n); - await setTotalAmounts(10000n, 0n, allowToken1); - await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(500_000)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); - await checkState(State.OverInventory); + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(500_000)).not.to.emit(rebalanceManager, 'MockDecideRebalance'); + await checkState(State.OverInventory); - initTick = 0; + initTick = 0; + }); }); }); }); From 4e2fe0048dc1ff522eed028a810b4e60da80e29b Mon Sep 17 00:00:00 2001 From: fourlen Date: Tue, 27 May 2025 03:12:10 +0300 Subject: [PATCH 41/42] ?? --- src/plugin/.solcover.js | 1 + .../contracts/base/BaseRebalanceManager.sol | 40 ++++++++- src/plugin/test/AlgebraBasePluginALM.spec.ts | 89 ++++++++++++++++++- 3 files changed, 127 insertions(+), 3 deletions(-) diff --git a/src/plugin/.solcover.js b/src/plugin/.solcover.js index e256b0977..a0bc99acd 100644 --- a/src/plugin/.solcover.js +++ b/src/plugin/.solcover.js @@ -6,6 +6,7 @@ const skipFiles = testContracts.map((x) => "test/" + x) module.exports = { skipFiles: skipFiles, testfiles: "test/*.ts", + configureYulOptimizer: true, mocha: { grep: "@skip-on-coverage", // Find everything with this tag invert: true // Run the grep's inverse set. diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index 8bbdcf239..e721dc113 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -15,6 +15,8 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; +import 'hardhat/console.sol'; + abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -195,13 +197,19 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); + console.log('decide status: ', uint(decideStatus)); + console.log('new state: ', uint(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; + console.log('1'); if (decideStatus != DecideStatus.NoNeedWithPending) { + console.log('2'); if (decideStatus != DecideStatus.ExtremeVolatility) { + console.log('3'); Ranges memory ranges; if (decideStatus == DecideStatus.Normal) { + console.log('4'); if ( obtainTWAPsResult.currentPriceAccountingDecimals == 0 || obtainTWAPsResult.totalDepositToken == 0 || @@ -209,17 +217,25 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { obtainTWAPsResult.totalPairedInDeposit <= _calcPart(obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit, thresholds.limitReservePct)) ) return; + console.log('WITH STATE'); ranges = _getRangesWithState(newState, obtainTWAPsResult); } else { + console.log('WITHOUT STATE'); ranges = _getRangesWithoutState(obtainTWAPsResult); } - + console.log('6'); + console.logInt(ranges.baseLower); + console.logInt(ranges.baseUpper); + console.logInt(ranges.limitLower); + console.logInt(ranges.limitUpper); if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; + console.log('7'); require(gasleft() >= 1600000, 'Not enough gas left'); try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; + console.log('new state: ', uint256(newState)); state = newState; } catch { state = State.Special; @@ -399,6 +415,10 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint8 _tokenDecimals = tokenDecimals; (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); + console.log('prices: '); + console.log('lower: ', lowerPriceBound); + console.log('target: ', targetPrice); + console.log('upper: ', upperPriceBound); int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); bool currentTickIsRound = roundedTick == twapResult.currentTick; @@ -421,6 +441,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); } + + console.log('ticks'); + console.logInt(tickForLowerPrice); + console.logInt(commonTick); + console.logInt(tickForHigherPrice); + if (!_allowToken1) { ranges.baseLower = int24(commonTick); ranges.baseUpper = int24(tickForLowerPrice); @@ -446,6 +472,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.limitLower = int24(commonTick); ranges.limitUpper = int24(tickForHigherPrice); + console.log('TICKS BEFORE: '); + console.logInt(ranges.baseLower); + console.logInt(ranges.baseUpper); + console.logInt(ranges.limitLower); + console.logInt(ranges.limitUpper); + if (newState != State.UnderInventory) { ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); } @@ -468,6 +500,12 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; } + + console.log('TICKS AFTER: '); + console.logInt(ranges.baseLower); + console.logInt(ranges.baseUpper); + console.logInt(ranges.limitLower); + console.logInt(ranges.limitUpper); } } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index c210f16d3..26b14ac06 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -805,13 +805,13 @@ describe('AlgebraBasePluginALM', () => { } const allowTokenCombos = [ - { allowToken1: false }, + // { allowToken1: false }, { allowToken1: true }, ]; const defaultSwapToTickCombos = [ {defaultSwapToTick: 0}, - {defaultSwapToTick: 1} + // {defaultSwapToTick: 1} ] defaultSwapToTickCombos.forEach(({ defaultSwapToTick }) => { @@ -1150,6 +1150,23 @@ describe('AlgebraBasePluginALM', () => { await checkState(State.UnderInventory); }); + it('over -> under -> special', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(7500n, 2500n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + + await setTotalAmounts(8000n, 2000n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await checkState(State.Special); + }); + it('over -> over -> under', async () => { await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); @@ -1207,6 +1224,74 @@ describe('AlgebraBasePluginALM', () => { await checkState(State.UnderInventory); }); + it('over -> normal -> special', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(8000n, 2000n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(defaultSwapToTick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + + await setTotalAmounts(7700n, 2300n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await checkState(State.Special); + }); + + it('over -> special -> over', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await checkState(State.Special); + + // await setTotalAmounts(10000n, 0n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.OverInventory); + await checkState(State.OverInventory); + }); + + it('over -> special -> normal', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await checkState(State.Special); + + await setTotalAmounts(8000n, 2000n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.Normal); + await checkState(State.Normal); + }); + + it.only('over -> special -> under', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await checkState(State.Special); + + await setTotalAmounts(7000n, 3000n, allowToken1); + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await checkState(State.UnderInventory); + }); + it('no rebalance - no vault, should pause', async () => { await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); From b95d2c4dc3c0bc908ff71f8aee800aeca9f88001 Mon Sep 17 00:00:00 2001 From: fourlen Date: Tue, 27 May 2025 18:42:00 +0300 Subject: [PATCH 42/42] +tests --- src/plugin/.DS_Store | Bin 0 -> 6148 bytes src/plugin/.solcover.js | 1 - .../contracts/base/BaseRebalanceManager.sol | 40 +----------------- src/plugin/test/AlgebraBasePluginALM.spec.ts | 31 +++++++++++--- 4 files changed, 27 insertions(+), 45 deletions(-) create mode 100644 src/plugin/.DS_Store diff --git a/src/plugin/.DS_Store b/src/plugin/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1ad899dbcdc748036dd701eacb0ec11e243703d4 GIT binary patch literal 6148 zcmeHKyJ`bL3>+mc4$`I(2Sbbi#2M3J zT*oXyY@Q(Y!ZDE|1kgGlC+ZoQs7@HV6)|Fx!@~RZ=JlH_u58Z)4k@C?#6Xc7@{2$qaAbO f?f5y0vab1>=e=-D3_9~cC+cUwb&*MdzgFN1-fR_w literal 0 HcmV?d00001 diff --git a/src/plugin/.solcover.js b/src/plugin/.solcover.js index a0bc99acd..e256b0977 100644 --- a/src/plugin/.solcover.js +++ b/src/plugin/.solcover.js @@ -6,7 +6,6 @@ const skipFiles = testContracts.map((x) => "test/" + x) module.exports = { skipFiles: skipFiles, testfiles: "test/*.ts", - configureYulOptimizer: true, mocha: { grep: "@skip-on-coverage", // Find everything with this tag invert: true // Run the grep's inverse set. diff --git a/src/plugin/contracts/base/BaseRebalanceManager.sol b/src/plugin/contracts/base/BaseRebalanceManager.sol index e721dc113..8bbdcf239 100644 --- a/src/plugin/contracts/base/BaseRebalanceManager.sol +++ b/src/plugin/contracts/base/BaseRebalanceManager.sol @@ -15,8 +15,6 @@ import '../interfaces/IRebalanceManager.sol'; import './AlgebraBasePlugin.sol'; -import 'hardhat/console.sol'; - abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { bytes32 public constant ALGEBRA_BASE_PLUGIN_MANAGER = keccak256('ALGEBRA_BASE_PLUGIN_MANAGER'); @@ -197,19 +195,13 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ) return; (DecideStatus decideStatus, State newState) = _decideRebalance(obtainTWAPsResult); - console.log('decide status: ', uint(decideStatus)); - console.log('new state: ', uint(newState)); if (decideStatus == DecideStatus.NoNeed || decideStatus == DecideStatus.TooSoon) return; - console.log('1'); if (decideStatus != DecideStatus.NoNeedWithPending) { - console.log('2'); if (decideStatus != DecideStatus.ExtremeVolatility) { - console.log('3'); Ranges memory ranges; if (decideStatus == DecideStatus.Normal) { - console.log('4'); if ( obtainTWAPsResult.currentPriceAccountingDecimals == 0 || obtainTWAPsResult.totalDepositToken == 0 || @@ -217,25 +209,17 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { obtainTWAPsResult.totalPairedInDeposit <= _calcPart(obtainTWAPsResult.totalDepositToken + obtainTWAPsResult.totalPairedInDeposit, thresholds.limitReservePct)) ) return; - console.log('WITH STATE'); ranges = _getRangesWithState(newState, obtainTWAPsResult); } else { - console.log('WITHOUT STATE'); ranges = _getRangesWithoutState(obtainTWAPsResult); } - console.log('6'); - console.logInt(ranges.baseLower); - console.logInt(ranges.baseUpper); - console.logInt(ranges.limitLower); - console.logInt(ranges.limitUpper); + if (ranges.baseUpper - ranges.baseLower <= 300 || ranges.limitUpper - ranges.limitLower <= 300) return; - console.log('7'); require(gasleft() >= 1600000, 'Not enough gas left'); try IAlgebraVault(vault).rebalance(ranges.baseLower, ranges.baseUpper, ranges.limitLower, ranges.limitUpper, 0) { lastRebalanceTimestamp = _blockTimestamp(); lastRebalanceCurrentPrice = obtainTWAPsResult.currentPriceAccountingDecimals; - console.log('new state: ', uint256(newState)); state = newState; } catch { state = State.Special; @@ -415,10 +399,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { uint8 _tokenDecimals = tokenDecimals; (uint256 upperPriceBound, uint256 targetPrice, uint256 lowerPriceBound) = _getPriceBounds(newState, twapResult, _allowToken1); - console.log('prices: '); - console.log('lower: ', lowerPriceBound); - console.log('target: ', targetPrice); - console.log('upper: ', upperPriceBound); int24 roundedTick = roundTickToTickSpacing(_tickSpacing, twapResult.currentTick); bool currentTickIsRound = roundedTick == twapResult.currentTick; @@ -441,12 +421,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { int24 lowerTick = getTickAtPrice(_tokenDecimals, lowerPriceBound); tickForLowerPrice = roundTickToTickSpacingConsideringNegative(_tickSpacing, lowerTick); } - - console.log('ticks'); - console.logInt(tickForLowerPrice); - console.logInt(commonTick); - console.logInt(tickForHigherPrice); - if (!_allowToken1) { ranges.baseLower = int24(commonTick); ranges.baseUpper = int24(tickForLowerPrice); @@ -472,12 +446,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.limitLower = int24(commonTick); ranges.limitUpper = int24(tickForHigherPrice); - console.log('TICKS BEFORE: '); - console.logInt(ranges.baseLower); - console.logInt(ranges.baseUpper); - console.logInt(ranges.limitLower); - console.logInt(ranges.limitUpper); - if (newState != State.UnderInventory) { ranges.limitUpper = roundTickToTickSpacing(_tickSpacing, TickMath.MAX_TICK); } @@ -500,12 +468,6 @@ abstract contract BaseRebalanceManager is IRebalanceManager, Timestamp { ranges.baseUpper = currentTickIsRound ? twapResult.currentTick - _tickSpacing : ranges.baseUpper; ranges.limitLower = currentTickIsRound ? twapResult.currentTick : ranges.limitLower; } - - console.log('TICKS AFTER: '); - console.logInt(ranges.baseLower); - console.logInt(ranges.baseUpper); - console.logInt(ranges.limitLower); - console.logInt(ranges.limitUpper); } } diff --git a/src/plugin/test/AlgebraBasePluginALM.spec.ts b/src/plugin/test/AlgebraBasePluginALM.spec.ts index 26b14ac06..d0d146dd7 100644 --- a/src/plugin/test/AlgebraBasePluginALM.spec.ts +++ b/src/plugin/test/AlgebraBasePluginALM.spec.ts @@ -805,13 +805,13 @@ describe('AlgebraBasePluginALM', () => { } const allowTokenCombos = [ - // { allowToken1: false }, + { allowToken1: false }, { allowToken1: true }, ]; const defaultSwapToTickCombos = [ {defaultSwapToTick: 0}, - // {defaultSwapToTick: 1} + {defaultSwapToTick: 1} ] defaultSwapToTickCombos.forEach(({ defaultSwapToTick }) => { @@ -1275,23 +1275,44 @@ describe('AlgebraBasePluginALM', () => { await checkState(State.Normal); }); - it.only('over -> special -> under', async () => { + it('over -> special -> under', async () => { + let tick = 2000; + if (allowToken1) { + tick = -tick; + } + await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300); await rebalanceManager.setDepositTokenBalance(10000n); await setTotalAmounts(10000n, 0n, allowToken1); await plugin.advanceTime(5000); - await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await expect(mockPool.swapToTick(tick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); await checkState(State.Special); await setTotalAmounts(7000n, 3000n, allowToken1); await rebalanceManager.advanceTime(7200); await plugin.advanceTime(7200); - await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); + await expect(mockPool.swapToTick(tick)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Normal, State.UnderInventory); await checkState(State.UnderInventory); }); + it('over -> special -> special', async () => { + await rebalanceManager.setDecimals(18, 18); + await plugin.initializeALM(rebalanceManager, 3600, 300); + + await rebalanceManager.setDepositTokenBalance(10000n); + await setTotalAmounts(10000n, 0n, allowToken1); + await plugin.advanceTime(5000); + await expect(mockPool.swapToTick(2000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.Special, State.Special); + await checkState(State.Special); + + await rebalanceManager.advanceTime(7200); + await plugin.advanceTime(7200); + await expect(mockPool.swapToTick(4000)).to.emit(rebalanceManager, 'MockDecideRebalance').withArgs(DecideStatus.NoNeed, State.Special); + await checkState(State.Special); + }); + it('no rebalance - no vault, should pause', async () => { await rebalanceManager.setDecimals(18, 18); await plugin.initializeALM(rebalanceManager, 3600, 300);